Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created August 5, 2019 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/f1aefbb36db0a97f3e64acf713cbbf38 to your computer and use it in GitHub Desktop.
Save ryantm/f1aefbb36db0a97f3e64acf713cbbf38 to your computer and use it in GitHub Desktop.
/nix/store/yhcgrj51lcpf134bhb9jj1wvnd939qql-python3.7-Jug-1.6.8
├── bin
│   ├── jug
│   └── jug-execute
├── lib
│   └── python3.7
│   └── site-packages
│   ├── jug
│   │   ├── backends
│   │   │   ├── base.py
│   │   │   ├── dict_store.py
│   │   │   ├── encode.py
│   │   │   ├── file_store.py
│   │   │   ├── __init__.py
│   │   │   ├── memoize_store.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── dict_store.cpython-37.pyc
│   │   │   │   ├── encode.cpython-37.pyc
│   │   │   │   ├── file_store.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── memoize_store.cpython-37.pyc
│   │   │   │   ├── redis_store.cpython-37.pyc
│   │   │   │   └── select.cpython-37.pyc
│   │   │   ├── redis_store.py
│   │   │   └── select.py
│   │   ├── barrier.py
│   │   ├── compound.py
│   │   ├── hash.py
│   │   ├── hooks
│   │   │   ├── execution.py
│   │   │   ├── exit_checks.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── execution.cpython-37.pyc
│   │   │   │   ├── exit_checks.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── register.cpython-37.pyc
│   │   │   └── register.py
│   │   ├── __init__.py
│   │   ├── io.py
│   │   ├── jug.py
│   │   ├── jug_version.py
│   │   ├── mapreduce.py
│   │   ├── options.py
│   │   ├── __pycache__
│   │   │   ├── barrier.cpython-37.pyc
│   │   │   ├── compound.cpython-37.pyc
│   │   │   ├── hash.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── io.cpython-37.pyc
│   │   │   ├── jug.cpython-37.pyc
│   │   │   ├── jug_version.cpython-37.pyc
│   │   │   ├── mapreduce.cpython-37.pyc
│   │   │   ├── options.cpython-37.pyc
│   │   │   ├── task.cpython-37.pyc
│   │   │   └── utils.cpython-37.pyc
│   │   ├── subcommands
│   │   │   ├── check.py
│   │   │   ├── cleanup.py
│   │   │   ├── count.py
│   │   │   ├── demo.py
│   │   │   ├── execute.py
│   │   │   ├── graph.py
│   │   │   ├── __init__.py
│   │   │   ├── internal_validation.py
│   │   │   ├── invalidate.py
│   │   │   ├── __pycache__
│   │   │   │   ├── check.cpython-37.pyc
│   │   │   │   ├── cleanup.cpython-37.pyc
│   │   │   │   ├── count.cpython-37.pyc
│   │   │   │   ├── demo.cpython-37.pyc
│   │   │   │   ├── execute.cpython-37.pyc
│   │   │   │   ├── graph.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── internal_validation.cpython-37.pyc
│   │   │   │   ├── invalidate.cpython-37.pyc
│   │   │   │   ├── shell.cpython-37.pyc
│   │   │   │   ├── status.cpython-37.pyc
│   │   │   │   └── webstatus.cpython-37.pyc
│   │   │   ├── shell.py
│   │   │   ├── status.py
│   │   │   └── webstatus.py
│   │   ├── task.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── jugfiles
│   │   │   │   ├── barrier_mapreduce.py
│   │   │   │   ├── barrier_recurse.py
│   │   │   │   ├── builtin_function.py
│   │   │   │   ├── bvalue.py
│   │   │   │   ├── compound_nonsimple.py
│   │   │   │   ├── compound.py
│   │   │   │   ├── compound_wbarrier.py
│   │   │   │   ├── custom_hash_function.py
│   │   │   │   ├── empty_mapreduce.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── iteratetask.py
│   │   │   │   ├── mapgenerator.py
│   │   │   │   ├── mapreduce_generator.py
│   │   │   │   ├── no_load.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── barrier_mapreduce.cpython-37.pyc
│   │   │   │   │   ├── barrier_recurse.cpython-37.pyc
│   │   │   │   │   ├── builtin_function.cpython-37.pyc
│   │   │   │   │   ├── bvalue.cpython-37.pyc
│   │   │   │   │   ├── compound.cpython-37.pyc
│   │   │   │   │   ├── compound_nonsimple.cpython-37.pyc
│   │   │   │   │   ├── compound_wbarrier.cpython-37.pyc
│   │   │   │   │   ├── custom_hash_function.cpython-37.pyc
│   │   │   │   │   ├── empty_mapreduce.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── iteratetask.cpython-37.pyc
│   │   │   │   │   ├── mapgenerator.cpython-37.pyc
│   │   │   │   │   ├── mapreduce_generator.cpython-37.pyc
│   │   │   │   │   ├── no_load.cpython-37.pyc
│   │   │   │   │   ├── simple.cpython-37.pyc
│   │   │   │   │   ├── simple_multiple.cpython-37.pyc
│   │   │   │   │   ├── sleep_until_tasklet.cpython-37.pyc
│   │   │   │   │   ├── slice_task.cpython-37.pyc
│   │   │   │   │   ├── tasklets.cpython-37.pyc
│   │   │   │   │   ├── tasklet_simple.cpython-37.pyc
│   │   │   │   │   ├── wbarrier.cpython-37.pyc
│   │   │   │   │   └── write_with_meta.cpython-37.pyc
│   │   │   │   ├── simple_multiple.py
│   │   │   │   ├── simple.py
│   │   │   │   ├── sleep_until_tasklet.py
│   │   │   │   ├── slice_task.py
│   │   │   │   ├── tasklet_simple.py
│   │   │   │   ├── tasklets.py
│   │   │   │   ├── wbarrier.py
│   │   │   │   └── write_with_meta.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── task_reset.cpython-37.pyc
│   │   │   │   ├── test_barrier.cpython-37.pyc
│   │   │   │   ├── test_compound.cpython-37.pyc
│   │   │   │   ├── test_encode.cpython-37.pyc
│   │   │   │   ├── test_file_store.cpython-37.pyc
│   │   │   │   ├── test_hash.cpython-37.pyc
│   │   │   │   ├── test_hooks.cpython-37.pyc
│   │   │   │   ├── test_io.cpython-37.pyc
│   │   │   │   ├── test_jug_check.cpython-37.pyc
│   │   │   │   ├── test_jug_execute.cpython-37.pyc
│   │   │   │   ├── test_jug_invalidate.cpython-37.pyc
│   │   │   │   ├── test_lock.cpython-37.pyc
│   │   │   │   ├── test_mapreduce.cpython-37.pyc
│   │   │   │   ├── test_no_load.cpython-37.pyc
│   │   │   │   ├── test_options.cpython-37.pyc
│   │   │   │   ├── test_status.cpython-37.pyc
│   │   │   │   ├── test_store.cpython-37.pyc
│   │   │   │   ├── test_subcommand_api.cpython-37.pyc
│   │   │   │   ├── test_sys_argv.cpython-37.pyc
│   │   │   │   ├── test_tasklet.cpython-37.pyc
│   │   │   │   ├── test_tasks.cpython-37.pyc
│   │   │   │   ├── test_utils_customhash.cpython-37.pyc
│   │   │   │   ├── test_utils_identity.cpython-37.pyc
│   │   │   │   ├── test_utils_timed_path.cpython-37.pyc
│   │   │   │   ├── test_webstatus.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── task_reset.py
│   │   │   ├── test_barrier.py
│   │   │   ├── test_compound.py
│   │   │   ├── test_encode.py
│   │   │   ├── test_file_store.py
│   │   │   ├── test_hash.py
│   │   │   ├── test_hooks.py
│   │   │   ├── test_io.py
│   │   │   ├── test_jug_check.py
│   │   │   ├── test_jug_execute.py
│   │   │   ├── test_jug_invalidate.py
│   │   │   ├── test_lock.py
│   │   │   ├── test_mapreduce.py
│   │   │   ├── test_no_load.py
│   │   │   ├── test_options.py
│   │   │   ├── test_status.py
│   │   │   ├── test_store.py
│   │   │   ├── test_subcommand_api.py
│   │   │   ├── test_sys_argv.py
│   │   │   ├── test_tasklet.py
│   │   │   ├── test_tasks.py
│   │   │   ├── test_utils_customhash.py
│   │   │   ├── test_utils_identity.py
│   │   │   ├── test_utils_timed_path.py
│   │   │   ├── test_webstatus.py
│   │   │   └── utils.py
│   │   └── utils.py
│   └── Jug-1.6.8.dist-info
│   ├── COPYING.MIT
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
18 directories, 178 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment