Skip to content

Commit 6dd83cd

Browse files
Add Espresso
2 parents 21a3c29 + 83badae commit 6dd83cd

File tree

464 files changed

+104642
-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.

464 files changed

+104642
-0
lines changed

espresso/.gitignore

+397
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,397 @@
1+
2+
# Created by https://www.gitignore.io/api/c,java,python,eclipse,intellij+iml
3+
4+
### C ###
5+
# Prerequisites
6+
*.d
7+
8+
# Object files
9+
*.o
10+
*.ko
11+
*.obj
12+
*.elf
13+
14+
# Linker output
15+
*.ilk
16+
*.map
17+
*.exp
18+
19+
# Precompiled Headers
20+
*.gch
21+
*.pch
22+
23+
# Libraries
24+
*.lib
25+
*.a
26+
*.la
27+
*.lo
28+
29+
# Shared objects (inc. Windows DLLs)
30+
*.dll
31+
*.so
32+
*.so.*
33+
*.dylib
34+
35+
# Executables
36+
*.exe
37+
*.out
38+
*.app
39+
*.i*86
40+
*.x86_64
41+
*.hex
42+
43+
# Debug files
44+
*.dSYM/
45+
*.su
46+
*.idb
47+
*.pdb
48+
49+
# Kernel Module Compile Results
50+
*.mod*
51+
*.cmd
52+
.tmp_versions/
53+
modules.order
54+
Module.symvers
55+
Mkfile.old
56+
dkms.conf
57+
58+
### Eclipse ###
59+
60+
.metadata
61+
bin/
62+
tmp/
63+
*.tmp
64+
*.bak
65+
*.swp
66+
*~.nib
67+
local.properties
68+
.settings/
69+
.loadpath
70+
.recommenders
71+
72+
# External tool builders
73+
.externalToolBuilders/
74+
75+
# Locally stored "Eclipse launch configurations"
76+
*.launch
77+
78+
# PyDev specific (Python IDE for Eclipse)
79+
*.pydevproject
80+
81+
# CDT-specific (C/C++ Development Tooling)
82+
.cproject
83+
84+
# CDT- autotools
85+
.autotools
86+
87+
# Java annotation processor (APT)
88+
.factorypath
89+
90+
# PDT-specific (PHP Development Tools)
91+
.buildpath
92+
93+
# sbteclipse plugin
94+
.target
95+
96+
# Tern plugin
97+
.tern-project
98+
99+
# TeXlipse plugin
100+
.texlipse
101+
102+
# STS (Spring Tool Suite)
103+
.springBeans
104+
105+
# Code Recommenders
106+
.recommenders/
107+
108+
# Annotation Processing
109+
.apt_generated/
110+
111+
# Scala IDE specific (Scala & Java development for Eclipse)
112+
.cache-main
113+
.scala_dependencies
114+
.worksheet
115+
116+
### Eclipse Patch ###
117+
# Eclipse Core
118+
.project
119+
120+
# JDT-specific (Eclipse Java Development Tools)
121+
.classpath
122+
123+
# Annotation Processing
124+
.apt_generated
125+
126+
.sts4-cache/
127+
128+
### Intellij+iml ###
129+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
130+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
131+
132+
# User-specific stuff
133+
.idea/**/workspace.xml
134+
.idea/**/tasks.xml
135+
.idea/**/usage.statistics.xml
136+
.idea/**/dictionaries
137+
.idea/**/shelf
138+
139+
# Generated files
140+
.idea/**/contentModel.xml
141+
142+
# Sensitive or high-churn files
143+
.idea/**/dataSources/
144+
.idea/**/dataSources.ids
145+
.idea/**/dataSources.local.xml
146+
.idea/**/sqlDataSources.xml
147+
.idea/**/dynamic.xml
148+
.idea/**/uiDesigner.xml
149+
.idea/**/dbnavigator.xml
150+
151+
# Gradle
152+
.idea/**/gradle.xml
153+
.idea/**/libraries
154+
155+
# Gradle and Maven with auto-import
156+
# When using Gradle or Maven with auto-import, you should exclude module files,
157+
# since they will be recreated, and may cause churn. Uncomment if using
158+
# auto-import.
159+
# .idea/modules.xml
160+
# .idea/*.iml
161+
# .idea/modules
162+
163+
# CMake
164+
cmake-build-*/
165+
166+
# Mongo Explorer plugin
167+
.idea/**/mongoSettings.xml
168+
169+
# File-based project format
170+
*.iws
171+
172+
# IntelliJ
173+
out/
174+
175+
# mpeltonen/sbt-idea plugin
176+
.idea_modules/
177+
178+
# JIRA plugin
179+
atlassian-ide-plugin.xml
180+
181+
# Cursive Clojure plugin
182+
.idea/replstate.xml
183+
184+
# Crashlytics plugin (for Android Studio and IntelliJ)
185+
com_crashlytics_export_strings.xml
186+
crashlytics.properties
187+
crashlytics-build.properties
188+
fabric.properties
189+
190+
# Editor-based Rest Client
191+
.idea/httpRequests
192+
193+
# Android studio 3.1+ serialized cache file
194+
.idea/caches/build_file_checksums.ser
195+
196+
### Intellij+iml Patch ###
197+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
198+
199+
*.iml
200+
modules.xml
201+
.idea/misc.xml
202+
*.ipr
203+
204+
### Java ###
205+
# Compiled class file
206+
*.class
207+
208+
# Log file
209+
*.log
210+
211+
# BlueJ files
212+
*.ctxt
213+
214+
# Mobile Tools for Java (J2ME)
215+
.mtj.tmp/
216+
217+
# Package Files #
218+
*.jar
219+
*.war
220+
*.nar
221+
*.ear
222+
*.zip
223+
*.tar.gz
224+
*.rar
225+
226+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
227+
hs_err_pid*
228+
229+
### Python ###
230+
# Byte-compiled / optimized / DLL files
231+
__pycache__/
232+
*.py[cod]
233+
*$py.class
234+
235+
# C extensions
236+
237+
# Distribution / packaging
238+
.Python
239+
build/
240+
develop-eggs/
241+
dist/
242+
downloads/
243+
eggs/
244+
.eggs/
245+
lib/
246+
lib64/
247+
parts/
248+
sdist/
249+
var/
250+
wheels/
251+
*.egg-info/
252+
.installed.cfg
253+
*.egg
254+
MANIFEST
255+
256+
# PyInstaller
257+
# Usually these files are written by a python script from a template
258+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
259+
*.manifest
260+
*.spec
261+
262+
# Installer logs
263+
pip-log.txt
264+
pip-delete-this-directory.txt
265+
266+
# Unit test / coverage reports
267+
htmlcov/
268+
.tox/
269+
.nox/
270+
.coverage
271+
.coverage.*
272+
.cache
273+
nosetests.xml
274+
coverage.xml
275+
*.cover
276+
.hypothesis/
277+
.pytest_cache/
278+
279+
# Translations
280+
*.mo
281+
*.pot
282+
283+
# Django stuff:
284+
local_settings.py
285+
db.sqlite3
286+
287+
# Flask stuff:
288+
instance/
289+
.webassets-cache
290+
291+
# Scrapy stuff:
292+
.scrapy
293+
294+
# Sphinx documentation
295+
docs/_build/
296+
297+
# PyBuilder
298+
target/
299+
300+
# Jupyter Notebook
301+
.ipynb_checkpoints
302+
303+
# IPython
304+
profile_default/
305+
ipython_config.py
306+
307+
# pyenv
308+
.python-version
309+
310+
# celery beat schedule file
311+
celerybeat-schedule
312+
313+
# SageMath parsed files
314+
*.sage.py
315+
316+
# Environments
317+
.env
318+
.venv
319+
env/
320+
venv/
321+
ENV/
322+
env.bak/
323+
venv.bak/
324+
325+
# Spyder project settings
326+
.spyderproject
327+
.spyproject
328+
329+
# Rope project settings
330+
.ropeproject
331+
332+
# mkdocs documentation
333+
/site
334+
335+
# mypy
336+
.mypy_cache/
337+
.dmypy.json
338+
dmypy.json
339+
340+
### Python Patch ###
341+
.venv/
342+
343+
# Graal dev specific
344+
*~
345+
*.aux
346+
*.bak
347+
*.bgv
348+
*.cfg
349+
*.class
350+
*.config
351+
*.csv
352+
*.dot
353+
*.hprof
354+
*.iml
355+
*.jar
356+
*.log
357+
*.o
358+
*.obj
359+
*.orig
360+
*.pdf
361+
*.pyc
362+
*.rej
363+
*.swn
364+
*.swo
365+
*.swp
366+
*.zip
367+
.DS_Store
368+
.checkstyle
369+
.classpath
370+
.externalToolBuilders
371+
.factorypath
372+
.idea
373+
.metadata/
374+
.project
375+
.pydevproject
376+
.settings/
377+
bin/
378+
build.xml
379+
clibraries/
380+
svmbuild/
381+
core.*
382+
eclipse-launches/
383+
env
384+
hs_err_pid*.log
385+
javadoc/
386+
lib/
387+
mx.imports/
388+
mxbuild/
389+
nbproject/
390+
scratch/
391+
src_gen/
392+
test-output/
393+
workingsets.xml
394+
bench-results.json
395+
jmh_result.json
396+
397+
# End of https://www.gitignore.io/api/c,java,python,eclipse,intellij+iml

0 commit comments

Comments
 (0)