Skip to content

Commit 3d8f72b

Browse files
Add Machine Learning 6.x code
0 parents  commit 3d8f72b

File tree

2,069 files changed

+825457
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,069 files changed

+825457
-0
lines changed

.dockerignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Please keep this .dockerignore file in-sync with the .gitignore file in the same directory
2+
3+
# intellij files
4+
.idea/
5+
*.iml
6+
*.ipr
7+
*.iws
8+
build-idea/
9+
10+
# eclipse files
11+
.project
12+
.classpath
13+
.settings
14+
build-eclipse/
15+
16+
# netbeans files
17+
nb-configuration.xml
18+
nbactions.xml
19+
20+
# gradle stuff
21+
.gradle/
22+
build/
23+
generated-resources/
24+
25+
# testing stuff
26+
**/.local*
27+
.vagrant/
28+
29+
# osx stuff
30+
.DS_Store
31+
.AppleDouble
32+
Thumbs.db
33+
34+
# native binary stuff:
35+
*.o
36+
*.obj
37+
*.i
38+
*.d
39+
*.a
40+
*.lib
41+
*.so
42+
*.dylib
43+
*.dll
44+
*.exe
45+
ml_test
46+
*.swp
47+
*.pdb
48+
*.map
49+
*.exp
50+
*.sdf
51+
*.res
52+
*.plist
53+
*.gcno
54+
*.gcda
55+
.cproject
56+
unit_test_skip_dirs.csv
57+
gcovr-unit-report.xml
58+
cppunit_results.xml
59+
**/.objs/*.*
60+
!**/.objs/.gitignore
61+

.gitignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Please keep this .gitignore file in-sync with the .dockerignore file in the same directory
2+
3+
# intellij files
4+
.idea/
5+
*.iml
6+
*.ipr
7+
*.iws
8+
build-idea/
9+
10+
# eclipse files
11+
.project
12+
.classpath
13+
.settings
14+
build-eclipse/
15+
16+
# netbeans files
17+
nb-configuration.xml
18+
nbactions.xml
19+
20+
# gradle stuff
21+
.gradle/
22+
build/
23+
generated-resources/
24+
25+
# testing stuff
26+
**/.local*
27+
.vagrant/
28+
29+
# osx stuff
30+
.DS_Store
31+
.AppleDouble
32+
Thumbs.db
33+
34+
# native binary stuff:
35+
*.o
36+
*.obj
37+
*.i
38+
*.d
39+
*.a
40+
*.lib
41+
*.so
42+
*.dylib
43+
*.dll
44+
*.exe
45+
ml_test
46+
*.swp
47+
*.pdb
48+
*.map
49+
*.exp
50+
*.sdf
51+
*.res
52+
*.plist
53+
*.gcno
54+
*.gcda
55+
.cproject
56+
unit_test_skip_dirs.csv
57+
gcovr-unit-report.xml
58+
cppunit_results.xml
59+
**/.objs/*.*
60+
!**/.objs/.gitignore
61+

0 commit comments

Comments
 (0)