Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.gitignore 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. ####### MacOS Start #######
  2. # General
  3. .DS_Store
  4. .AppleDouble
  5. .LSOverride
  6. # Icon must end with two \r
  7. Icon
  8. # Thumbnails
  9. ._*
  10. # Files that might appear in the root of a volume
  11. .DocumentRevisions-V100
  12. .fseventsd
  13. .Spotlight-V100
  14. .TemporaryItems
  15. .Trashes
  16. .VolumeIcon.icns
  17. .com.apple.timemachine.donotpresent
  18. # Directories potentially created on remote AFP share
  19. .AppleDB
  20. .AppleDesktop
  21. Network Trash Folder
  22. Temporary Items
  23. .apdisk
  24. ####### MacOS End #######
  25. ####### Windows Start #######
  26. # Windows thumbnail cache files
  27. Thumbs.db
  28. ehthumbs.db
  29. ehthumbs_vista.db
  30. # Dump file
  31. *.stackdump
  32. # Folder config file
  33. [Dd]esktop.ini
  34. # Recycle Bin used on file shares
  35. $RECYCLE.BIN/
  36. # Windows Installer files
  37. *.cab
  38. *.msi
  39. *.msix
  40. *.msm
  41. *.msp
  42. # Windows shortcuts
  43. *.lnk
  44. ####### Windows End #######
  45. ####### Python Start #######
  46. # Byte-compiled / optimized / DLL files
  47. __pycache__/
  48. *.py[cod]
  49. *$py.class
  50. # C extensions
  51. *.so
  52. # Distribution / packaging
  53. .Python
  54. build/
  55. develop-eggs/
  56. dist/
  57. downloads/
  58. eggs/
  59. .eggs/
  60. lib/
  61. lib64/
  62. parts/
  63. sdist/
  64. var/
  65. wheels/
  66. *.egg-info/
  67. .installed.cfg
  68. *.egg
  69. MANIFEST
  70. # PyInstaller
  71. # Usually these files are written by a python script from a template
  72. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  73. *.manifest
  74. *.spec
  75. # Installer logs
  76. pip-log.txt
  77. pip-delete-this-directory.txt
  78. pip-selfcheck.json
  79. # Unit test / coverage reports
  80. htmlcov/
  81. .tox/
  82. .nox/
  83. .coverage
  84. .coverage.*
  85. docs/source/coverage/*
  86. !docs/source/coverage/extract_source.py
  87. docs/source/api/*
  88. .cache
  89. nosetests.xml
  90. coverage.xml
  91. *.cover
  92. .hypothesis/
  93. .pytest_cache/
  94. .pylint.d/
  95. # Translations
  96. *.mo
  97. *.pot
  98. # Django stuff:
  99. *.log
  100. local_settings.py
  101. db.sqlite3
  102. static/*
  103. !static/.touch
  104. # Flask stuff:
  105. instance/
  106. .webassets-cache
  107. # Scrapy stuff:
  108. .scrapy
  109. # Sphinx documentation
  110. docs/_build/
  111. docs/build/
  112. # PyBuilder
  113. target/
  114. # Jupyter Notebook
  115. .ipynb_checkpoints
  116. # IPython
  117. profile_default/
  118. ipython_config.py
  119. # pyenv
  120. .python-version
  121. # celery beat schedule file
  122. celerybeat-schedule
  123. # SageMath parsed files
  124. *.sage.py
  125. # Environments
  126. .env
  127. .envrc
  128. .venv
  129. env/
  130. venv/
  131. ENV/
  132. env.bak/
  133. venv.bak/
  134. # Spyder project settings
  135. .spyderproject
  136. .spyproject
  137. # Rope project settings
  138. .ropeproject
  139. # mkdocs documentation
  140. /site
  141. # mypy
  142. .mypy_cache/
  143. .dmypy.json
  144. dmypy.json
  145. ####### Python End #######