-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
124 lines (106 loc) · 1.91 KB
/
Copy path.gitignore
File metadata and controls
124 lines (106 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Build artifacts
*.o
*.a
*.so
*.so.*
*.dylib
*.P
obj/
objg/
# Library output
/lib/
/libg/
# Executables
kaspr/src/kaspr
kaspr/src/kaspr[gd]
actors/cpp/global_registry
actors/cpp/group_manager
actors/cpp/run_tests
actors/cpp/run_coord_tests
actors/cpp/run_registry_tests
actors/cpp/examples/ping_pong
actors/cpp/examples/remote_ping
actors/cpp/examples/remote_pong
actors/cpp/tests/**/test_*
actors/cpp/src/coordination/group_manager_main
actors/cpp/src/registry/global_registry_main
# Data files
*.bin
*.gz
*.zip
*.zst
*.parquet
*.csv
!kaspr/config/universe.csv
!unit_test/config/universe.csv
# Logs
*.log
*.out
nohup.*
# Core dumps
/core
core.*
vgcore.*
# Editor/IDE
*.swp
*.swo
*~
.vscode/
.idea/
*.sublime-*
.vs/
# OS
.DS_Store
Thumbs.db
# Python
__pycache__/
*.py[cod]
*.egg-info/
# Temp
*.tmp
*.temp
*.bak
# CMake
build/
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
# Debug
*.dSYM/
*.gcno
*.gcda
*.gcov
# NFS
.nfs*
**/.nfs*
# dbento_pcap_parse build artifacts
dbento_pcap_parse/*/src/obj/
dbento_pcap_parse/*/src/objg/
dbento_pcap_parse/*/src/*.P
dbento_pcap_parse/dbento_pcap_to_bin/src/dbento_pcap_to_bin
dbento_pcap_parse/build_universe/src/build_universe
dbento_pcap_parse/merge_bins/src/merge_bins
dbento_pcap_parse/verify_merged/src/verify_merged
dbento_pcap_parse/pcap_list_ips/src/pcap_list_ips
dbento_pcap_parse/binstats/src/binstats
dbento_pcap_parse/scripts/out/
# genconfig outputs are fetched from CME SFTP by genconfig.sh, not committed
genconfig/*.info
# built binaries
sim/src/sim
sim/src/simg
unit_test/src/run_tests
unit_test/src/run_testsg
# core dumps
core
core.*
# Generated data products, not source: bins, universes and the per-date volume
# stats are rebuilt by dbento_pcap_parse/scripts from the captures.
dbento_pcap_parse/scripts/out/
dbento_pcap_parse/*/src/*.P
dbento_pcap_parse/filter_bin/src/filter_bin
# LaTeX build artifacts
tech_reports/*.aux
tech_reports/*.log
tech_reports/*.out
tech_reports/*.toc