Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created June 2, 2019 16:58
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/3b1a0670e3061e5a3ea0b6f3766e5a98 to your computer and use it in GitHub Desktop.
Save ryantm/3b1a0670e3061e5a3ea0b6f3766e5a98 to your computer and use it in GitHub Desktop.
/nix/store/m1vxak65yq9lbxskx4sk9mwq9lg1xmab-python3.7-distributed-1.28.1
├── bin
│   ├── dask-mpi
│   ├── dask-remote
│   ├── dask-scheduler
│   ├── dask-ssh
│   ├── dask-submit
│   └── dask-worker
├── lib
│   └── python3.7
│   └── site-packages
│   ├── distributed
│   │   ├── actor.py
│   │   ├── asyncio.py
│   │   ├── batched.py
│   │   ├── bokeh
│   │   │   ├── components.py
│   │   │   ├── core.py
│   │   │   ├── export_tool.coffee
│   │   │   ├── export_tool.js
│   │   │   ├── export_tool.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── components.cpython-37.pyc
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── export_tool.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── scheduler.cpython-37.pyc
│   │   │   │   ├── scheduler_html.cpython-37.pyc
│   │   │   │   ├── utils.cpython-37.pyc
│   │   │   │   ├── worker.cpython-37.pyc
│   │   │   │   └── worker_html.cpython-37.pyc
│   │   │   ├── scheduler_html.py
│   │   │   ├── scheduler.py
│   │   │   ├── static
│   │   │   │   ├── css
│   │   │   │   │   ├── base.css
│   │   │   │   │   ├── status.css
│   │   │   │   │   └── system.css
│   │   │   │   └── images
│   │   │   │   ├── dask-logo.svg
│   │   │   │   └── fa-bars.svg
│   │   │   ├── templates
│   │   │   │   ├── base.html
│   │   │   │   ├── call-stack.html
│   │   │   │   ├── json-index.html
│   │   │   │   ├── logs.html
│   │   │   │   ├── main.html
│   │   │   │   ├── simple.html
│   │   │   │   ├── status.html
│   │   │   │   ├── system.html
│   │   │   │   ├── task.html
│   │   │   │   ├── worker.html
│   │   │   │   ├── workers.html
│   │   │   │   └── worker-table.html
│   │   │   ├── tests
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── test_components.cpython-37.pyc
│   │   │   │   │   ├── test_scheduler_bokeh.cpython-37.pyc
│   │   │   │   │   ├── test_scheduler_bokeh_html.cpython-37.pyc
│   │   │   │   │   ├── test_worker_bokeh.cpython-37.pyc
│   │   │   │   │   └── test_worker_bokeh_html.cpython-37.pyc
│   │   │   │   ├── test_components.py
│   │   │   │   ├── test_scheduler_bokeh_html.py
│   │   │   │   ├── test_scheduler_bokeh.py
│   │   │   │   ├── test_worker_bokeh_html.py
│   │   │   │   └── test_worker_bokeh.py
│   │   │   ├── theme.yaml
│   │   │   ├── utils.py
│   │   │   ├── worker_html.py
│   │   │   └── worker.py
│   │   ├── cfexecutor.py
│   │   ├── cli
│   │   │   ├── dask_mpi.py
│   │   │   ├── dask_remote.py
│   │   │   ├── dask_scheduler.py
│   │   │   ├── dask_ssh.py
│   │   │   ├── dask_submit.py
│   │   │   ├── dask_worker.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── dask_mpi.cpython-37.pyc
│   │   │   │   ├── dask_remote.cpython-37.pyc
│   │   │   │   ├── dask_scheduler.cpython-37.pyc
│   │   │   │   ├── dask_ssh.cpython-37.pyc
│   │   │   │   ├── dask_submit.cpython-37.pyc
│   │   │   │   ├── dask_worker.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── tests
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── test_cli_utils.cpython-37.pyc
│   │   │   │   │   ├── test_dask_mpi.cpython-37.pyc
│   │   │   │   │   ├── test_dask_remote.cpython-37.pyc
│   │   │   │   │   ├── test_dask_scheduler.cpython-37.pyc
│   │   │   │   │   ├── test_dask_submit.cpython-37.pyc
│   │   │   │   │   ├── test_dask_worker.cpython-37.pyc
│   │   │   │   │   └── test_tls_cli.cpython-37.pyc
│   │   │   │   ├── test_cli_utils.py
│   │   │   │   ├── test_dask_mpi.py
│   │   │   │   ├── test_dask_remote.py
│   │   │   │   ├── test_dask_scheduler.py
│   │   │   │   ├── test_dask_submit.py
│   │   │   │   ├── test_dask_worker.py
│   │   │   │   └── test_tls_cli.py
│   │   │   └── utils.py
│   │   ├── client.py
│   │   ├── comm
│   │   │   ├── addressing.py
│   │   │   ├── core.py
│   │   │   ├── __init__.py
│   │   │   ├── inproc.py
│   │   │   ├── __pycache__
│   │   │   │   ├── addressing.cpython-37.pyc
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── inproc.cpython-37.pyc
│   │   │   │   ├── registry.cpython-37.pyc
│   │   │   │   ├── tcp.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── registry.py
│   │   │   ├── tcp.py
│   │   │   ├── tests
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── test_comms.cpython-37.pyc
│   │   │   │   └── test_comms.py
│   │   │   └── utils.py
│   │   ├── compatibility.py
│   │   ├── _concurrent_futures_thread.py
│   │   ├── config.py
│   │   ├── core.py
│   │   ├── counter.py
│   │   ├── deploy
│   │   │   ├── adaptive.py
│   │   │   ├── cluster.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── __pycache__
│   │   │   │   ├── adaptive.cpython-37.pyc
│   │   │   │   ├── cluster.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── local.cpython-37.pyc
│   │   │   │   ├── ssh.cpython-37.pyc
│   │   │   │   └── utils_test.cpython-37.pyc
│   │   │   ├── ssh.py
│   │   │   ├── tests
│   │   │   │   ├── py3_test_deploy.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── py3_test_deploy.cpython-37.pyc
│   │   │   │   │   ├── test_adaptive.cpython-37.pyc
│   │   │   │   │   ├── test_local.cpython-37.pyc
│   │   │   │   │   └── test_ssh.cpython-37.pyc
│   │   │   │   ├── test_adaptive.py
│   │   │   │   ├── test_local.py
│   │   │   │   └── test_ssh.py
│   │   │   └── utils_test.py
│   │   ├── diagnostics
│   │   │   ├── eventstream.py
│   │   │   ├── graph_layout.py
│   │   │   ├── __init__.py
│   │   │   ├── plugin.py
│   │   │   ├── progressbar.py
│   │   │   ├── progress.py
│   │   │   ├── progress_stream.py
│   │   │   ├── __pycache__
│   │   │   │   ├── eventstream.cpython-37.pyc
│   │   │   │   ├── graph_layout.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── plugin.cpython-37.pyc
│   │   │   │   ├── progressbar.cpython-37.pyc
│   │   │   │   ├── progress.cpython-37.pyc
│   │   │   │   ├── progress_stream.cpython-37.pyc
│   │   │   │   └── task_stream.cpython-37.pyc
│   │   │   ├── task_stream.py
│   │   │   └── tests
│   │   │   ├── __pycache__
│   │   │   │   ├── test_eventstream.cpython-37.pyc
│   │   │   │   ├── test_graph_layout.cpython-37.pyc
│   │   │   │   ├── test_plugin.cpython-37.pyc
│   │   │   │   ├── test_progressbar.cpython-37.pyc
│   │   │   │   ├── test_progress.cpython-37.pyc
│   │   │   │   ├── test_progress_stream.cpython-37.pyc
│   │   │   │   ├── test_task_stream.cpython-37.pyc
│   │   │   │   └── test_widgets.cpython-37.pyc
│   │   │   ├── test_eventstream.py
│   │   │   ├── test_graph_layout.py
│   │   │   ├── test_plugin.py
│   │   │   ├── test_progressbar.py
│   │   │   ├── test_progress.py
│   │   │   ├── test_progress_stream.py
│   │   │   ├── test_task_stream.py
│   │   │   └── test_widgets.py
│   │   ├── diskutils.py
│   │   ├── distributed.yaml
│   │   ├── __init__.py
│   │   ├── _ipython_utils.py
│   │   ├── joblib.py
│   │   ├── locket.py
│   │   ├── lock.py
│   │   ├── metrics.py
│   │   ├── nanny.py
│   │   ├── node.py
│   │   ├── preloading.py
│   │   ├── process.py
│   │   ├── proctitle.py
│   │   ├── profile.py
│   │   ├── protocol
│   │   │   ├── arrow.py
│   │   │   ├── compression.py
│   │   │   ├── core.py
│   │   │   ├── h5py.py
│   │   │   ├── __init__.py
│   │   │   ├── keras.py
│   │   │   ├── netcdf4.py
│   │   │   ├── numpy.py
│   │   │   ├── pickle.py
│   │   │   ├── __pycache__
│   │   │   │   ├── arrow.cpython-37.pyc
│   │   │   │   ├── compression.cpython-37.pyc
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── h5py.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── keras.cpython-37.pyc
│   │   │   │   ├── netcdf4.cpython-37.pyc
│   │   │   │   ├── numpy.cpython-37.pyc
│   │   │   │   ├── pickle.cpython-37.pyc
│   │   │   │   ├── serialize.cpython-37.pyc
│   │   │   │   ├── sparse.cpython-37.pyc
│   │   │   │   ├── torch.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── serialize.py
│   │   │   ├── sparse.py
│   │   │   ├── tests
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── test_arrow.cpython-37.pyc
│   │   │   │   │   ├── test_h5py.cpython-37.pyc
│   │   │   │   │   ├── test_keras.cpython-37.pyc
│   │   │   │   │   ├── test_netcdf4.cpython-37.pyc
│   │   │   │   │   ├── test_numpy.cpython-37.pyc
│   │   │   │   │   ├── test_pandas.cpython-37.pyc
│   │   │   │   │   ├── test_pickle.cpython-37.pyc
│   │   │   │   │   ├── test_protocol.cpython-37.pyc
│   │   │   │   │   ├── test_protocol_utils.cpython-37.pyc
│   │   │   │   │   ├── test_serialize.cpython-37.pyc
│   │   │   │   │   ├── test_sklearn.cpython-37.pyc
│   │   │   │   │   ├── test_sparse.cpython-37.pyc
│   │   │   │   │   └── test_torch.cpython-37.pyc
│   │   │   │   ├── test_arrow.py
│   │   │   │   ├── test_h5py.py
│   │   │   │   ├── test_keras.py
│   │   │   │   ├── test_netcdf4.py
│   │   │   │   ├── test_numpy.py
│   │   │   │   ├── test_pandas.py
│   │   │   │   ├── test_pickle.py
│   │   │   │   ├── test_protocol.py
│   │   │   │   ├── test_protocol_utils.py
│   │   │   │   ├── test_serialize.py
│   │   │   │   ├── test_sklearn.py
│   │   │   │   ├── test_sparse.py
│   │   │   │   └── test_torch.py
│   │   │   ├── torch.py
│   │   │   └── utils.py
│   │   ├── publish.py
│   │   ├── pubsub.py
│   │   ├── __pycache__
│   │   │   ├── actor.cpython-37.pyc
│   │   │   ├── asyncio.cpython-37.pyc
│   │   │   ├── batched.cpython-37.pyc
│   │   │   ├── cfexecutor.cpython-37.pyc
│   │   │   ├── client.cpython-37.pyc
│   │   │   ├── compatibility.cpython-37.pyc
│   │   │   ├── _concurrent_futures_thread.cpython-37.pyc
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── core.cpython-37.pyc
│   │   │   ├── counter.cpython-37.pyc
│   │   │   ├── diskutils.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── _ipython_utils.cpython-37.pyc
│   │   │   ├── joblib.cpython-37.pyc
│   │   │   ├── lock.cpython-37.pyc
│   │   │   ├── locket.cpython-37.pyc
│   │   │   ├── metrics.cpython-37.pyc
│   │   │   ├── nanny.cpython-37.pyc
│   │   │   ├── node.cpython-37.pyc
│   │   │   ├── preloading.cpython-37.pyc
│   │   │   ├── process.cpython-37.pyc
│   │   │   ├── proctitle.cpython-37.pyc
│   │   │   ├── profile.cpython-37.pyc
│   │   │   ├── publish.cpython-37.pyc
│   │   │   ├── pubsub.cpython-37.pyc
│   │   │   ├── pytest_resourceleaks.cpython-37.pyc
│   │   │   ├── queues.cpython-37.pyc
│   │   │   ├── recreate_exceptions.cpython-37.pyc
│   │   │   ├── scheduler.cpython-37.pyc
│   │   │   ├── security.cpython-37.pyc
│   │   │   ├── sizeof.cpython-37.pyc
│   │   │   ├── stealing.cpython-37.pyc
│   │   │   ├── submit.cpython-37.pyc
│   │   │   ├── system_monitor.cpython-37.pyc
│   │   │   ├── threadpoolexecutor.cpython-37.pyc
│   │   │   ├── utils_comm.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   ├── utils_perf.cpython-37.pyc
│   │   │   ├── utils_test.cpython-37.pyc
│   │   │   ├── variable.cpython-37.pyc
│   │   │   ├── _version.cpython-37.pyc
│   │   │   ├── versions.cpython-37.pyc
│   │   │   ├── worker_client.cpython-37.pyc
│   │   │   └── worker.cpython-37.pyc
│   │   ├── pytest_resourceleaks.py
│   │   ├── queues.py
│   │   ├── recreate_exceptions.py
│   │   ├── scheduler.py
│   │   ├── security.py
│   │   ├── sizeof.py
│   │   ├── stealing.py
│   │   ├── submit.py
│   │   ├── system_monitor.py
│   │   ├── tests
│   │   │   ├── make_tls_certs.py
│   │   │   ├── py3_test_asyncio.py
│   │   │   ├── py3_test_client.py
│   │   │   ├── py3_test_pubsub.py
│   │   │   ├── py3_test_utils_tst.py
│   │   │   ├── __pycache__
│   │   │   │   ├── make_tls_certs.cpython-37.pyc
│   │   │   │   ├── py3_test_asyncio.cpython-37.pyc
│   │   │   │   ├── py3_test_client.cpython-37.pyc
│   │   │   │   ├── py3_test_pubsub.cpython-37.pyc
│   │   │   │   ├── py3_test_utils_tst.cpython-37.pyc
│   │   │   │   ├── test_actor.cpython-37.pyc
│   │   │   │   ├── test_as_completed.cpython-37.pyc
│   │   │   │   ├── test_asyncio.cpython-37.pyc
│   │   │   │   ├── test_asyncprocess.cpython-37.pyc
│   │   │   │   ├── test_batched.cpython-37.pyc
│   │   │   │   ├── test_client.cpython-37.pyc
│   │   │   │   ├── test_client_executor.cpython-37.pyc
│   │   │   │   ├── test_collections.cpython-37.pyc
│   │   │   │   ├── test_compatibility.cpython-37.pyc
│   │   │   │   ├── test_config.cpython-37.pyc
│   │   │   │   ├── test_core.cpython-37.pyc
│   │   │   │   ├── test_counter.cpython-37.pyc
│   │   │   │   ├── test_diskutils.cpython-37.pyc
│   │   │   │   ├── test_failed_workers.cpython-37.pyc
│   │   │   │   ├── test_ipython.cpython-37.pyc
│   │   │   │   ├── test_locks.cpython-37.pyc
│   │   │   │   ├── test_metrics.cpython-37.pyc
│   │   │   │   ├── test_nanny.cpython-37.pyc
│   │   │   │   ├── test_preload.cpython-37.pyc
│   │   │   │   ├── test_priorities.cpython-37.pyc
│   │   │   │   ├── test_profile.cpython-37.pyc
│   │   │   │   ├── test_publish.cpython-37.pyc
│   │   │   │   ├── test_pubsub.cpython-37.pyc
│   │   │   │   ├── test_queues.cpython-37.pyc
│   │   │   │   ├── test_resources.cpython-37.pyc
│   │   │   │   ├── test_scheduler.cpython-37.pyc
│   │   │   │   ├── test_security.cpython-37.pyc
│   │   │   │   ├── test_steal.cpython-37.pyc
│   │   │   │   ├── test_stress.cpython-37.pyc
│   │   │   │   ├── test_submit_cli.cpython-37.pyc
│   │   │   │   ├── test_submit_remote_client.cpython-37.pyc
│   │   │   │   ├── test_system_monitor.cpython-37.pyc
│   │   │   │   ├── test_threadpoolexecutor.cpython-37.pyc
│   │   │   │   ├── test_tls_functional.cpython-37.pyc
│   │   │   │   ├── test_utils_comm.cpython-37.pyc
│   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   ├── test_utils_perf.cpython-37.pyc
│   │   │   │   ├── test_utils_test.cpython-37.pyc
│   │   │   │   ├── test_variable.cpython-37.pyc
│   │   │   │   ├── test_worker_client.cpython-37.pyc
│   │   │   │   └── test_worker.cpython-37.pyc
│   │   │   ├── test_actor.py
│   │   │   ├── test_as_completed.py
│   │   │   ├── test_asyncio.py
│   │   │   ├── test_asyncprocess.py
│   │   │   ├── test_batched.py
│   │   │   ├── test_client_executor.py
│   │   │   ├── test_client.py
│   │   │   ├── test_collections.py
│   │   │   ├── test_compatibility.py
│   │   │   ├── test_config.py
│   │   │   ├── test_core.py
│   │   │   ├── test_counter.py
│   │   │   ├── test_diskutils.py
│   │   │   ├── test_failed_workers.py
│   │   │   ├── test_ipython.py
│   │   │   ├── test_locks.py
│   │   │   ├── test_metrics.py
│   │   │   ├── test_nanny.py
│   │   │   ├── test_preload.py
│   │   │   ├── test_priorities.py
│   │   │   ├── test_profile.py
│   │   │   ├── test_publish.py
│   │   │   ├── test_pubsub.py
│   │   │   ├── test_queues.py
│   │   │   ├── test_resources.py
│   │   │   ├── test_scheduler.py
│   │   │   ├── test_security.py
│   │   │   ├── test_steal.py
│   │   │   ├── test_stress.py
│   │   │   ├── test_submit_cli.py
│   │   │   ├── test_submit_remote_client.py
│   │   │   ├── test_system_monitor.py
│   │   │   ├── test_threadpoolexecutor.py
│   │   │   ├── test_tls_functional.py
│   │   │   ├── test_utils_comm.py
│   │   │   ├── test_utils_perf.py
│   │   │   ├── test_utils.py
│   │   │   ├── test_utils_test.py
│   │   │   ├── test_variable.py
│   │   │   ├── test_worker_client.py
│   │   │   ├── test_worker.py
│   │   │   ├── tls-ca-cert.pem
│   │   │   ├── tls-ca-key.pem
│   │   │   ├── tls-cert-chain.pem
│   │   │   ├── tls-cert.pem
│   │   │   ├── tls-key-cert.pem
│   │   │   ├── tls-key.pem
│   │   │   ├── tls-self-signed-cert.pem
│   │   │   └── tls-self-signed-key.pem
│   │   ├── threadpoolexecutor.py
│   │   ├── utils_comm.py
│   │   ├── utils_perf.py
│   │   ├── utils.py
│   │   ├── utils_test.py
│   │   ├── variable.py
│   │   ├── _version.py
│   │   ├── versions.py
│   │   ├── worker_client.py
│   │   └── worker.py
│   └── distributed-1.28.1.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE.txt
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
38 directories, 401 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment