-
Notifications
You must be signed in to change notification settings - Fork 276
/
.gitignore
144 lines (120 loc) · 2.02 KB
/
.gitignore
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# .gitignore uses glob patterns instead of regex
# file names without extension
*
!*.*
!*/
# names with special characters
*#*
*~*
# names with given extension
*.a
*.app
*.autobak
*.class
*.d
*.dll
*.dylib
*.exe
*.gch
*.gz
*.l.cc
*.la
*.lai
*.lib
*.lo
*.log
*.log.*
*.mod
*.o
*.obj
*.orig
*.out
*.output
*.pb.h
*.pb.cc
*.pch
*.pyc
*.slo
*.smod
*.so
*.tab.c
*.tab.h
*.tab.cc
*.tab.hh
*.tar
*.tgz
*.zip
*.tar.bz2
*.xz
*_BACKUP_*
*_BASE_*
*_LOCAL_*
*_REMOTE_*
.DS_Store
# build directory of Gradle, CMake etc
build*/
cmake-build-*
.idea
# ignore compilation configure file
src/bin/compilation_config.h
src/bin/compilation_config.cppm
# bison output file
parser.output
# ignore parser auto generated files
#lexer.cpp
#lexer.h
#parser.cpp
#parser.h
#location.h
#location.hh
#query_lexer.h
#query_lexer.cpp
#query_parser.h
#query_parser.cpp
test/sql/**/*gen*.slt
test/sql/**/*big*.slt
test/sql/**/*fvecs*.slt
test/sql/**/*csr*.slt
test/data/**/*gen*
test/data/csv/**/*big*.csv
test/data/csv/*9_commas.csv
test/data/fvecs/*big*.fvecs
test/data/fvecs/test.fvecs
test/data/csr/test.csr
test/data/fvecs/pysdk_test.fvecs
test/data/csv/pysdk_test_import_with_different_size.csv
test/data/bvecs/
test/sql/dml/import/test_bvecs.slt
invalid/*
benchmark/toml/toml_config.h
benchmark/csv/csv_config.h
# py thrift rpc
#python/infinity/remote_thrift/infinity_thrift_rpc/constants.py
#python/infinity/remote_thrift/infinity_thrift_rpc/InfinityService.py
#python/infinity/remote_thrift/infinity_thrift_rpc/InfinityService-remote
#python/infinity/remote_thrift/infinity_thrift_rpc/ttypes.py
# cpp rpc
#src/network/infinity_thrift/*
#python sdk
python/build
python/dist
python/.idea
python/infinity_sdk.egg-info
sift_1m
# ignore all fvecs benchmark file
test/data/benchmark/*
# ignore valgrind output file
callgrind.out.*
# ignore vscode config file
.vscode/
# ignore vscode clangd cache file
.cache/
# ignore all benchmark datasets
python/benchmark/datasets/
.venv*/
tmp*/
dist/
python/infinity_sdk/infinity_sdk.egg-info/
minio/
# not ignore Dockerfile
!Dockerfile*