taskflow 5.12.0__py3-none-any.whl → 6.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- taskflow/atom.py +3 -5
- taskflow/conductors/backends/__init__.py +0 -2
- taskflow/conductors/backends/impl_blocking.py +1 -3
- taskflow/conductors/backends/impl_executor.py +3 -6
- taskflow/conductors/backends/impl_nonblocking.py +1 -3
- taskflow/conductors/base.py +1 -3
- taskflow/deciders.py +0 -2
- taskflow/engines/__init__.py +0 -2
- taskflow/engines/action_engine/actions/base.py +1 -3
- taskflow/engines/action_engine/actions/retry.py +1 -3
- taskflow/engines/action_engine/actions/task.py +1 -3
- taskflow/engines/action_engine/builder.py +2 -4
- taskflow/engines/action_engine/compiler.py +9 -11
- taskflow/engines/action_engine/completer.py +5 -7
- taskflow/engines/action_engine/deciders.py +1 -3
- taskflow/engines/action_engine/engine.py +4 -26
- taskflow/engines/action_engine/executor.py +2 -4
- taskflow/engines/action_engine/runtime.py +1 -3
- taskflow/engines/action_engine/scheduler.py +3 -5
- taskflow/engines/action_engine/scopes.py +3 -5
- taskflow/engines/action_engine/selector.py +1 -3
- taskflow/engines/action_engine/traversal.py +0 -2
- taskflow/engines/base.py +1 -3
- taskflow/engines/helpers.py +0 -2
- taskflow/engines/worker_based/dispatcher.py +2 -4
- taskflow/engines/worker_based/endpoint.py +1 -3
- taskflow/engines/worker_based/engine.py +1 -4
- taskflow/engines/worker_based/executor.py +0 -2
- taskflow/engines/worker_based/protocol.py +1 -3
- taskflow/engines/worker_based/proxy.py +2 -4
- taskflow/engines/worker_based/server.py +3 -5
- taskflow/engines/worker_based/types.py +6 -7
- taskflow/engines/worker_based/worker.py +4 -6
- taskflow/examples/99_bottles.py +0 -2
- taskflow/examples/alphabet_soup.py +0 -2
- taskflow/examples/build_a_car.py +1 -3
- taskflow/examples/buildsystem.py +1 -3
- taskflow/examples/calculate_in_parallel.py +1 -3
- taskflow/examples/calculate_linear.py +3 -5
- taskflow/examples/create_parallel_volume.py +2 -5
- taskflow/examples/delayed_return.py +1 -3
- taskflow/examples/distance_calculator.py +12 -24
- taskflow/examples/dump_memory_backend.py +1 -3
- taskflow/examples/echo_listener.py +0 -2
- taskflow/examples/example_utils.py +1 -3
- taskflow/examples/fake_billing.py +9 -11
- taskflow/examples/graph_flow.py +2 -4
- taskflow/examples/hello_world.py +2 -4
- taskflow/examples/jobboard_produce_consume_colors.py +3 -5
- taskflow/examples/parallel_table_multiply.py +1 -3
- taskflow/examples/persistence_example.py +1 -3
- taskflow/examples/pseudo_scoping.py +2 -4
- taskflow/examples/resume_from_backend.py +1 -3
- taskflow/examples/resume_many_flows/my_flows.py +0 -2
- taskflow/examples/resume_many_flows/resume_all.py +1 -3
- taskflow/examples/resume_many_flows/run_flow.py +2 -4
- taskflow/examples/resume_many_flows.py +0 -2
- taskflow/examples/resume_vm_boot.py +12 -15
- taskflow/examples/resume_volume_create.py +3 -5
- taskflow/examples/retry_flow.py +0 -2
- taskflow/examples/reverting_linear.py +1 -3
- taskflow/examples/run_by_iter.py +0 -2
- taskflow/examples/run_by_iter_enumerate.py +1 -3
- taskflow/examples/share_engine_thread.py +2 -4
- taskflow/examples/simple_linear.py +0 -2
- taskflow/examples/simple_linear_listening.py +1 -3
- taskflow/examples/simple_linear_pass.py +0 -2
- taskflow/examples/simple_map_reduce.py +0 -2
- taskflow/examples/switch_graph_flow.py +1 -3
- taskflow/examples/timing_listener.py +1 -3
- taskflow/examples/tox_conductor.py +3 -5
- taskflow/examples/wbe_event_sender.py +0 -2
- taskflow/examples/wbe_mandelbrot.py +0 -2
- taskflow/examples/wbe_simple_linear.py +0 -2
- taskflow/examples/wrapped_exception.py +0 -2
- taskflow/exceptions.py +7 -9
- taskflow/flow.py +1 -3
- taskflow/formatters.py +22 -8
- taskflow/jobs/backends/__init__.py +0 -2
- taskflow/jobs/backends/impl_redis.py +22 -18
- taskflow/jobs/backends/impl_zookeeper.py +7 -8
- taskflow/jobs/base.py +5 -7
- taskflow/listeners/base.py +1 -3
- taskflow/listeners/capturing.py +1 -3
- taskflow/listeners/claims.py +1 -3
- taskflow/listeners/logging.py +10 -6
- taskflow/listeners/printing.py +1 -3
- taskflow/listeners/timing.py +10 -13
- taskflow/logging.py +0 -2
- taskflow/patterns/graph_flow.py +2 -4
- taskflow/patterns/linear_flow.py +4 -9
- taskflow/patterns/unordered_flow.py +4 -9
- taskflow/persistence/backends/__init__.py +1 -3
- taskflow/persistence/backends/impl_dir.py +3 -6
- taskflow/persistence/backends/impl_memory.py +6 -9
- taskflow/persistence/backends/impl_sqlalchemy.py +4 -6
- taskflow/persistence/backends/impl_zookeeper.py +2 -4
- taskflow/persistence/backends/sqlalchemy/alembic/env.py +0 -2
- taskflow/persistence/backends/sqlalchemy/alembic/versions/00af93df9d77_add_unique_into_all_indexes.py +74 -0
- taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py +0 -2
- taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py +0 -2
- taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py +0 -2
- taskflow/persistence/backends/sqlalchemy/alembic/versions/2ad4984f2864_switch_postgres_to_json_native.py +0 -2
- taskflow/persistence/backends/sqlalchemy/alembic/versions/3162c0f3f8e4_add_revert_results_and_revert_failure_.py +0 -2
- taskflow/persistence/backends/sqlalchemy/alembic/versions/589dccdf2b6e_rename_taskdetails_to_atomdetails.py +0 -2
- taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py +0 -2
- taskflow/persistence/backends/sqlalchemy/tables.py +0 -2
- taskflow/persistence/base.py +2 -4
- taskflow/persistence/models.py +19 -24
- taskflow/persistence/path_based.py +1 -3
- taskflow/retry.py +12 -18
- taskflow/states.py +0 -2
- taskflow/storage.py +9 -11
- taskflow/task.py +15 -18
- taskflow/test.py +5 -5
- taskflow/tests/test_examples.py +0 -2
- taskflow/tests/unit/action_engine/test_builder.py +1 -3
- taskflow/tests/unit/action_engine/test_compile.py +4 -6
- taskflow/tests/unit/action_engine/test_creation.py +0 -21
- taskflow/tests/unit/action_engine/test_scoping.py +1 -3
- taskflow/tests/unit/jobs/base.py +1 -3
- taskflow/tests/unit/jobs/test_entrypoint.py +0 -2
- taskflow/tests/unit/jobs/test_redis_job.py +1 -3
- taskflow/tests/unit/jobs/test_zk_job.py +2 -4
- taskflow/tests/unit/patterns/test_graph_flow.py +18 -20
- taskflow/tests/unit/patterns/test_linear_flow.py +7 -9
- taskflow/tests/unit/patterns/test_unordered_flow.py +12 -14
- taskflow/tests/unit/persistence/base.py +2 -4
- taskflow/tests/unit/persistence/test_dir_persistence.py +2 -4
- taskflow/tests/unit/persistence/test_memory_persistence.py +2 -4
- taskflow/tests/unit/persistence/test_sql_persistence.py +8 -10
- taskflow/tests/unit/persistence/test_zk_persistence.py +2 -4
- taskflow/tests/unit/test_arguments_passing.py +3 -25
- taskflow/tests/unit/test_check_transition.py +3 -5
- taskflow/tests/unit/test_conductors.py +0 -2
- taskflow/tests/unit/test_deciders.py +1 -3
- taskflow/tests/unit/test_engine_helpers.py +0 -2
- taskflow/tests/unit/test_engines.py +19 -102
- taskflow/tests/unit/test_exceptions.py +4 -6
- taskflow/tests/unit/test_failure.py +10 -12
- taskflow/tests/unit/test_flow_dependencies.py +62 -64
- taskflow/tests/unit/test_formatters.py +0 -2
- taskflow/tests/unit/test_functor_task.py +1 -3
- taskflow/tests/unit/test_listeners.py +9 -11
- taskflow/tests/unit/test_mapfunctor_task.py +1 -3
- taskflow/tests/unit/test_notifier.py +1 -3
- taskflow/tests/unit/test_progress.py +2 -4
- taskflow/tests/unit/test_reducefunctor_task.py +1 -3
- taskflow/tests/unit/test_retries.py +1 -25
- taskflow/tests/unit/test_states.py +0 -2
- taskflow/tests/unit/test_storage.py +10 -12
- taskflow/tests/unit/test_suspend.py +2 -23
- taskflow/tests/unit/test_task.py +17 -19
- taskflow/tests/unit/test_types.py +4 -6
- taskflow/tests/unit/test_utils.py +9 -11
- taskflow/tests/unit/test_utils_async_utils.py +0 -2
- taskflow/tests/unit/test_utils_binary.py +12 -14
- taskflow/tests/unit/test_utils_iter_utils.py +1 -3
- taskflow/tests/unit/test_utils_kazoo_utils.py +0 -2
- taskflow/tests/unit/test_utils_threading_utils.py +1 -3
- taskflow/tests/unit/worker_based/test_creation.py +0 -2
- taskflow/tests/unit/worker_based/test_dispatcher.py +0 -2
- taskflow/tests/unit/worker_based/test_endpoint.py +2 -4
- taskflow/tests/unit/worker_based/test_executor.py +1 -3
- taskflow/tests/unit/worker_based/test_message_pump.py +0 -2
- taskflow/tests/unit/worker_based/test_pipeline.py +0 -2
- taskflow/tests/unit/worker_based/test_protocol.py +2 -4
- taskflow/tests/unit/worker_based/test_proxy.py +2 -4
- taskflow/tests/unit/worker_based/test_server.py +3 -5
- taskflow/tests/unit/worker_based/test_types.py +0 -2
- taskflow/tests/unit/worker_based/test_worker.py +1 -3
- taskflow/tests/utils.py +11 -15
- taskflow/types/entity.py +1 -3
- taskflow/types/failure.py +3 -6
- taskflow/types/graph.py +14 -18
- taskflow/types/latch.py +1 -3
- taskflow/types/notifier.py +6 -9
- taskflow/types/sets.py +2 -5
- taskflow/types/timing.py +1 -3
- taskflow/types/tree.py +6 -10
- taskflow/utils/async_utils.py +0 -2
- taskflow/utils/banner.py +8 -9
- taskflow/utils/eventlet_utils.py +0 -2
- taskflow/utils/iter_utils.py +0 -2
- taskflow/utils/kazoo_utils.py +7 -9
- taskflow/utils/kombu_utils.py +5 -7
- taskflow/utils/misc.py +4 -6
- taskflow/utils/persistence_utils.py +0 -2
- taskflow/utils/redis_utils.py +2 -4
- taskflow/utils/schema_utils.py +0 -2
- taskflow/utils/threading_utils.py +1 -3
- taskflow/version.py +1 -3
- {taskflow-5.12.0.dist-info → taskflow-6.0.1.dist-info}/AUTHORS +1 -0
- {taskflow-5.12.0.dist-info → taskflow-6.0.1.dist-info}/METADATA +1 -1
- taskflow-6.0.1.dist-info/RECORD +243 -0
- {taskflow-5.12.0.dist-info → taskflow-6.0.1.dist-info}/WHEEL +1 -1
- taskflow-6.0.1.dist-info/pbr.json +1 -0
- taskflow/engines/action_engine/process_executor.py +0 -720
- taskflow/tests/unit/action_engine/test_process_executor.py +0 -106
- taskflow-5.12.0.dist-info/RECORD +0 -244
- taskflow-5.12.0.dist-info/pbr.json +0 -1
- {taskflow-5.12.0.dist-info → taskflow-6.0.1.dist-info}/LICENSE +0 -0
- {taskflow-5.12.0.dist-info → taskflow-6.0.1.dist-info}/entry_points.txt +0 -0
- {taskflow-5.12.0.dist-info → taskflow-6.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
taskflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
taskflow/atom.py,sha256=Jrwhg1hMOTq7JaOFdfkyxYtjUD5jfyaTJZD_CDGA3QE,17317
|
|
3
|
+
taskflow/deciders.py,sha256=aSQTK6xSri53tAu1klr1N3_eBiRDTS3X5pyTnp_yK7M,3377
|
|
4
|
+
taskflow/exceptions.py,sha256=WzmajKFDkRlFGqxyXGEwCsJvcO3MDeLN_WFBP6pAnXU,11447
|
|
5
|
+
taskflow/flow.py,sha256=Ds2cK2SLC5NlzUY5HYTButDqtVth7cs1J7bsqYClGB4,4801
|
|
6
|
+
taskflow/formatters.py,sha256=aa2MqmjskHVEJGj_oysjpzh_YL2fbTFpxaxpnYKorRI,8008
|
|
7
|
+
taskflow/logging.py,sha256=w2GydrzIUhDR8usZJos1egXpEbD58DbJm6xAyJp6WcA,1845
|
|
8
|
+
taskflow/retry.py,sha256=j7jShea_EZ5wSI-cmTX_-UC4A8IL9RjZ5oOKHWVoWtM,14172
|
|
9
|
+
taskflow/states.py,sha256=8ZpHiND-GQKRdVs06NPZnagPR5ul1Sf-7BHO6CHuSdQ,6876
|
|
10
|
+
taskflow/storage.py,sha256=mqS80QU0yi1V66aQkNfxPUypduq16iKauiEFF6p34m0,52034
|
|
11
|
+
taskflow/task.py,sha256=fIuU3ZCZ9Jpyy3may5RRBy_lpYdX1wdwLL31_l7paxs,9710
|
|
12
|
+
taskflow/test.py,sha256=PlnbxD6ZOtPbPyot2GRUfW4aFSgeo9GGVI_tnfzYiRk,9303
|
|
13
|
+
taskflow/version.py,sha256=z1GVMw0Q7jeoGINS9HvB_UGESUuP2TTB5L2NnT2NNMA,1070
|
|
14
|
+
taskflow/conductors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
taskflow/conductors/base.py,sha256=JqVGMdYYarAEdyU2OW_6jg-_AYkDkhyIeBwdqoqJ7Yo,7299
|
|
16
|
+
taskflow/conductors/backends/__init__.py,sha256=42RGlkHzNlj__uv9bNEZOIrf4iwc6vhfjmqpWGm8Gp0,1609
|
|
17
|
+
taskflow/conductors/backends/impl_blocking.py,sha256=MPSz-pL9VFo-vIGtmYs7aWHCO5OCsh8uTAsmx2Sbdhk,1468
|
|
18
|
+
taskflow/conductors/backends/impl_executor.py,sha256=VlI5dscCFSlmmG9zZbwWwYyxJ4rR2SQJRGOT_vlG26c,15074
|
|
19
|
+
taskflow/conductors/backends/impl_nonblocking.py,sha256=IzJI8zyjORNy0s0CTa6SwLwW7688JOzDeQdRfUUBKxc,2963
|
|
20
|
+
taskflow/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
taskflow/engines/__init__.py,sha256=q89egnng6p5ns41ok8J-lZ0TgYvIwCulc-EnDhxno8Q,1372
|
|
22
|
+
taskflow/engines/base.py,sha256=pJHTThAsjIPFgeC3IKFbqkrT71fOw9yQFTpDQ79SeKQ,4832
|
|
23
|
+
taskflow/engines/helpers.py,sha256=5-pskU-DPZxEDh2CBWQZdXQh8x2z263zIU89aIewvX4,10927
|
|
24
|
+
taskflow/engines/action_engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
+
taskflow/engines/action_engine/builder.py,sha256=ricYirNURoPbMZBatufNF_TQfWSkJdSrgHlPJb5Wjck,16974
|
|
26
|
+
taskflow/engines/action_engine/compiler.py,sha256=N22tKO6iaOiHgW4HaQGdrKeQ6RkiNSVbmjKE8T53Uc4,16096
|
|
27
|
+
taskflow/engines/action_engine/completer.py,sha256=mxO1Nz_u2kdSRTZznZOu956jyHV5cl2CkRXhEFzE5h0,8940
|
|
28
|
+
taskflow/engines/action_engine/deciders.py,sha256=K677X3E-sl0SjweqL50Yhet9AdpBBQ9sgc2OPNVRj_M,7221
|
|
29
|
+
taskflow/engines/action_engine/engine.py,sha256=c7Zm2yeRp_OZUQHU3vvSTcVapExuWyKUW_Rfq6aVFHc,28968
|
|
30
|
+
taskflow/engines/action_engine/executor.py,sha256=uDPPU3CsXYrIQBYJ7UD-9vQy660Zwz1uwfLSrm_HzOE,7708
|
|
31
|
+
taskflow/engines/action_engine/runtime.py,sha256=9exIjF5QNz06DRpUa5tx446vT3JOikzcYpnFLot2g3M,14571
|
|
32
|
+
taskflow/engines/action_engine/scheduler.py,sha256=CmKSoHGbWcFLZ9gxaer3qWUot1USgBZ_jLkDyYGa0Y8,3999
|
|
33
|
+
taskflow/engines/action_engine/scopes.py,sha256=5_OLEPSp0kcZO2l7NA4vj6b6zPvk-7jDwfM2tmf9a48,5396
|
|
34
|
+
taskflow/engines/action_engine/selector.py,sha256=cISpn9-s7Fl7t7CBiTFTcJu_eiZjMlvcAiaDLq0H1sE,11525
|
|
35
|
+
taskflow/engines/action_engine/traversal.py,sha256=bEON8SDYkY9Hrr8tDLCAKhr8V1VVAPUY46yWwDix-2k,4527
|
|
36
|
+
taskflow/engines/action_engine/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
taskflow/engines/action_engine/actions/base.py,sha256=qdaQ5HsH1V8F_JkTUiSGEcDpHujtm_6iq3qCSmW-ucY,1635
|
|
38
|
+
taskflow/engines/action_engine/actions/retry.py,sha256=vGll_Kqy9vabeAEYIb1jZ2TsCOc9Ht-A_DP5IhXte_A,4190
|
|
39
|
+
taskflow/engines/action_engine/actions/task.py,sha256=YUgNdQCv7FGKD-fJ7mpx0xDHAr-K0uSIJbn-FFOc9PQ,6001
|
|
40
|
+
taskflow/engines/worker_based/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
+
taskflow/engines/worker_based/dispatcher.py,sha256=-7CZNLXMG7Y1EWe0mOQbnilihSdKaomnCRHuazQt0ws,7104
|
|
42
|
+
taskflow/engines/worker_based/endpoint.py,sha256=zto3o6ZLchxVk7ZhE2CKVHoj1PE6W54YfR-hDIuRR28,1682
|
|
43
|
+
taskflow/engines/worker_based/engine.py,sha256=APIsPq3bw5BJikA5xLEwJ4POsdC0P4tnPHP1PYgCU5U,4271
|
|
44
|
+
taskflow/engines/worker_based/executor.py,sha256=TXE1m6dTtUXA9pteNqWXkKDMlAypQ6qigfe9T3YcaEA,13786
|
|
45
|
+
taskflow/engines/worker_based/protocol.py,sha256=N87cRRh-E4pF_7KQfIIE37Ez8mhYRvX_LaMU8o1-JN0,20205
|
|
46
|
+
taskflow/engines/worker_based/proxy.py,sha256=7UEgOF77zrWhPm_cmaYyOgzD3sa7NnoUe42n2NWirK0,9496
|
|
47
|
+
taskflow/engines/worker_based/server.py,sha256=kW89r4wirovfyGHEu62kzDes8kgjIj7usxYzlTXi_NA,11513
|
|
48
|
+
taskflow/engines/worker_based/types.py,sha256=xPI1Rk1w9d8nURw0VG3WYDw1c9nimFT0unT106iQ_y4,9832
|
|
49
|
+
taskflow/engines/worker_based/worker.py,sha256=tQ9v_Xhdx48lEXqqbVH5WCfojG2Y3JM80WMr5IaJMrk,6301
|
|
50
|
+
taskflow/examples/99_bottles.py,sha256=HSAwXFzZw7xWfbZVKaZ87m6DIFYsno0ew3_q0baRhy4,8868
|
|
51
|
+
taskflow/examples/alphabet_soup.py,sha256=weT_rOXhqS3btEMF1VXYWc5PBWXIsbMjG0SiHnT2ixk,3230
|
|
52
|
+
taskflow/examples/build_a_car.py,sha256=Fxlti6TKmo7OIxnmuHgf1X57qOi5TvlW12E6mHYWjyw,6533
|
|
53
|
+
taskflow/examples/buildsystem.py,sha256=h347O4nSaxKhac0Xc0tM6D3nZOpzgVZODgh0GAZDpvs,3870
|
|
54
|
+
taskflow/examples/calculate_in_parallel.py,sha256=D_4SfU9X_i3nEx6H5mfj0m-_BARx-1lcKQUQck1SRF0,3878
|
|
55
|
+
taskflow/examples/calculate_linear.py,sha256=pDQZDXMobeJb4xP8UGAB1gpu_6QiXnJiwRSAq9ijUdo,4543
|
|
56
|
+
taskflow/examples/create_parallel_volume.py,sha256=um49ZhX2CEqQTW_2otKkmVKv47-6ODTlVLe2qMKKCn8,4242
|
|
57
|
+
taskflow/examples/delayed_return.py,sha256=KA-vVdJ6GYviTTVWU4iiPlkt7F4Q_tN2dfIEFgRjDJo,2797
|
|
58
|
+
taskflow/examples/distance_calculator.py,sha256=Ng62BzzsAuOc43RS3lNk2RIsiVOSMmev7I-v59e6l_4,3786
|
|
59
|
+
taskflow/examples/dump_memory_backend.py,sha256=hQ4ZcEgrPdgGOWWtGUe3G3HkxQvU89wdA8mCVeMnS2c,2102
|
|
60
|
+
taskflow/examples/echo_listener.py,sha256=SdLTZXy4MYK6G7NZATyvFvK8heo4PJ2iJOU-M8rPoX8,1883
|
|
61
|
+
taskflow/examples/example_utils.py,sha256=usqnQrUGU54RWkm0W9xJ-OWXgP59eHsLLoEgqdZuaa0,3276
|
|
62
|
+
taskflow/examples/fake_billing.py,sha256=I3mgUSIIzowHdpUpkQgeBvqCxIVu5GwqRZ_ADP2Oe68,6698
|
|
63
|
+
taskflow/examples/graph_flow.py,sha256=SVR9NlKew2WKTMRQvM-WyHFEVhnYVpDruAaEZ1dTjFo,3444
|
|
64
|
+
taskflow/examples/hello_world.py,sha256=r_QHxmQzvsp4HXX3Cdyk9UK-Yvf01Szobt45-QEDMVw,4178
|
|
65
|
+
taskflow/examples/jobboard_produce_consume_colors.py,sha256=-FyP9WI5RjQX02nQ7Sel3m0bcBBnlrXKOX_SM-Yyv1A,6808
|
|
66
|
+
taskflow/examples/parallel_table_multiply.py,sha256=91j4TG1o1EjNTAmth6ep4mDMukoWxBabJ-FseFBrNgY,4232
|
|
67
|
+
taskflow/examples/persistence_example.py,sha256=wNaeueRwfEPpVuDxIjZeQA1Lo2WVXWpaaDIzyvspXBo,3868
|
|
68
|
+
taskflow/examples/pseudo_scoping.out.txt,sha256=ktR2-fVrRo5AsYPRMEBN6KJZ6_0ZMnts29bgN7t42tY,238
|
|
69
|
+
taskflow/examples/pseudo_scoping.py,sha256=jsfF9f451U8y0fGUwnGQWrko2EQeg-mIzgFfZ1YC7g0,3480
|
|
70
|
+
taskflow/examples/resume_from_backend.out.txt,sha256=0THjgMno9e6k3c8l_MTwKWDiQ9Pp2VG19vWjzR2SzFU,678
|
|
71
|
+
taskflow/examples/resume_from_backend.py,sha256=C0fqj3sxkvzVxDUHE1V1SOJKBjQ6Pc5mozh6h_9_rys,4971
|
|
72
|
+
taskflow/examples/resume_many_flows.out.txt,sha256=laNlJonlvUlDG4zGK_KHZl7GLnJ9w0epaadrKKLns2w,774
|
|
73
|
+
taskflow/examples/resume_many_flows.py,sha256=iXiRQXFcf1zA9Nw9bB7ODCftMVsK2dMOyibZ7BF6b8c,3167
|
|
74
|
+
taskflow/examples/resume_vm_boot.py,sha256=4wnvfhO4lNwLPLF0FQdYypegxp6-cGiA-1a7NIUoJz4,9391
|
|
75
|
+
taskflow/examples/resume_volume_create.py,sha256=CHShDpNuHr65ZGBP1hQiAOyyYGlV-uxnnh83nkm1Jd8,5857
|
|
76
|
+
taskflow/examples/retry_flow.out.txt,sha256=AtZEJMLGSZbHYt1dAB7qcz8s5yrQqigjxc708wvtqmI,116
|
|
77
|
+
taskflow/examples/retry_flow.py,sha256=WZ9yPCSgDmH_kJqiUQUbnbcCHJjHOjOLAUCcDmZFLDk,2243
|
|
78
|
+
taskflow/examples/reverting_linear.out.txt,sha256=MzzbYDNBnyOlvGN_X2A7QEuSyBgYov_Miv-UBDwq9_E,132
|
|
79
|
+
taskflow/examples/reverting_linear.py,sha256=6Hv5g9B8QfrgRMghumzzB8ct3uFE4teNsZnbq5GxMaE,3518
|
|
80
|
+
taskflow/examples/run_by_iter.out.txt,sha256=xKLg52D8UJZlRboEGCOk83neNYWtpq8SjAwqaRS68fU,823
|
|
81
|
+
taskflow/examples/run_by_iter.py,sha256=nOI0_HzoXLEVPnUaKwpiR1310AfOAggSEjjhTbMp7js,2595
|
|
82
|
+
taskflow/examples/run_by_iter_enumerate.out.txt,sha256=d5__O4xsSBkO6l4BFK7hK1i97rB1GjhVD-379sIYlaE,849
|
|
83
|
+
taskflow/examples/run_by_iter_enumerate.py,sha256=RsLJ4bpE_dS42Oeoxp5Y-kguTPcpq1a3ETRGFlBmv78,1699
|
|
84
|
+
taskflow/examples/share_engine_thread.py,sha256=NU2wRuOx30kz5uPZkd70vBQlhMRwNl2BoB1CGZq9gso,2704
|
|
85
|
+
taskflow/examples/simple_linear.out.txt,sha256=F4IDqbYYRPLLzYNXI3teAtgRfOqsAXQKTLY3fArFPoY,34
|
|
86
|
+
taskflow/examples/simple_linear.py,sha256=_nkjUN8PGmBCu8b-30rPqgCHBr0RI0qNq5L8UEVQiCs,2482
|
|
87
|
+
taskflow/examples/simple_linear_listening.out.txt,sha256=1CEQbmwwmBe-YyWVGjjl17Elf70ZOLP9lqn-6Uj7Akk,300
|
|
88
|
+
taskflow/examples/simple_linear_listening.py,sha256=Ys2XwUuVr7a7JPTAPxNFVXWvzn4TZdgZA0-_IaTELl8,3937
|
|
89
|
+
taskflow/examples/simple_linear_pass.out.txt,sha256=Y4GkdMkyoqcwpR98MzRITGVsFRb0mtqbfJ4m2uNvuW4,114
|
|
90
|
+
taskflow/examples/simple_linear_pass.py,sha256=arE9PJ_Nzd_m_UwOmimiber4gLP8gNFM8SbWOnGBKYM,1767
|
|
91
|
+
taskflow/examples/simple_map_reduce.py,sha256=am-O6IkPb_zEj7V3guhe3Jo8IEnX9jIHmfsHQ6oi3X8,3737
|
|
92
|
+
taskflow/examples/switch_graph_flow.py,sha256=7gQWRyZsBaEYkHL_yjtCBx3ROLY-mkkYxQsmJ1TEEDo,1883
|
|
93
|
+
taskflow/examples/timing_listener.py,sha256=xCZgKNRweJPktiIDWsBogjmoNkfsISmPwTCPlZglhUg,1991
|
|
94
|
+
taskflow/examples/tox_conductor.py,sha256=J9p0KAx6GIdlxCZdzMNapooDKbkRYLZFLbLwD_75bR0,8459
|
|
95
|
+
taskflow/examples/wbe_event_sender.py,sha256=sxSUar9ELhKO2A9UtxEemk6YRzogIkba3NxxDPv6G9U,5522
|
|
96
|
+
taskflow/examples/wbe_mandelbrot.out.txt,sha256=fdzWLYHe7PZPGF_RDQ1ty_IdzWSDTZVkpSawjlPlBVM,243
|
|
97
|
+
taskflow/examples/wbe_mandelbrot.py,sha256=SXXBP4cJ9GPqc5qyMR9o56oOmyCTd46Gx8dPsuTK_0U,8817
|
|
98
|
+
taskflow/examples/wbe_simple_linear.out.txt,sha256=w8vFgEkV3pBOAKNUPSJkufpTCwXr-ZvGwEjHbx6Q2cg,148
|
|
99
|
+
taskflow/examples/wbe_simple_linear.py,sha256=Jk-zZuYr_LRpR1sd8KWbgzM1XTH8q8lt-lvId9-QPwM,5388
|
|
100
|
+
taskflow/examples/wrapped_exception.py,sha256=VtWwWVMCs_dxrl45P4ljCZ3786zrrQoSEqrfm8TBCSY,4707
|
|
101
|
+
taskflow/examples/resume_many_flows/my_flows.py,sha256=1N7SQ64I48kHnZbW_ZIq8q5fP8JGCE3RGtV-MzscORM,1263
|
|
102
|
+
taskflow/examples/resume_many_flows/resume_all.py,sha256=tIosg7GpnzfNkYEAaMGLwy9rGmUFhszRkocIVGgpZI4,1708
|
|
103
|
+
taskflow/examples/resume_many_flows/run_flow.py,sha256=lPtDp1vlaUrK7IDV84bwctQVOjbT3V9u5mHQ1EBf69Y,1416
|
|
104
|
+
taskflow/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
+
taskflow/jobs/base.py,sha256=jEfsucwMf1xob5UW6Rr3zu9ni8XDLw5QL2xgATDTmUM,22395
|
|
106
|
+
taskflow/jobs/backends/__init__.py,sha256=Cj1OjssRhq5IR28-wraOEDOLvsaQN16g1PcCYevuKqU,2877
|
|
107
|
+
taskflow/jobs/backends/impl_etcd.py,sha256=3o5xBe0UkqPo9b8LYcbHD2L7e5lDlJHjo8VQsyd4iIE,22067
|
|
108
|
+
taskflow/jobs/backends/impl_redis.py,sha256=RgbUwWKTbXMOvkZOv8lChZoXKmEHJsA2da1Rfr2SRaE,44085
|
|
109
|
+
taskflow/jobs/backends/impl_zookeeper.py,sha256=7y3Nork5ALeFD5XzTD425x8s2XUCmf52JHOR--NdroE,37549
|
|
110
|
+
taskflow/listeners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
|
+
taskflow/listeners/base.py,sha256=dR5enUuhsYZH306xHb3sLHyPA8VouLSpE4zKXpMJ5I4,7358
|
|
112
|
+
taskflow/listeners/capturing.py,sha256=xoMH4IZhuimBqZmfK9fG_vxEeMj__LuT4Y6gQigjm5A,4283
|
|
113
|
+
taskflow/listeners/claims.py,sha256=wXbXUqRCij-NPLur8DZF2rTRISojNjiCy-3JUFlYo0E,4063
|
|
114
|
+
taskflow/listeners/logging.py,sha256=zaEZu1vAe1LG5i4rjBNtflcd8QQ0szQ9PxGt0QOrkp8,8759
|
|
115
|
+
taskflow/listeners/printing.py,sha256=vZK_Osf-U8lCvhNdYIDtL6KRUrlOACgeiHxiyeNeIQ4,1628
|
|
116
|
+
taskflow/listeners/timing.py,sha256=-2q9Ka3aMkNbWsJhER6SgNDMt-z-yD6i45pCRTywWU8,6663
|
|
117
|
+
taskflow/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
|
+
taskflow/patterns/graph_flow.py,sha256=qeZBnmfqS7nskXDOZwyWiq0jXaUWlm1uqAFaHaF8KyA,15239
|
|
119
|
+
taskflow/patterns/linear_flow.py,sha256=-J2jedu08ZD_wdgNmEOEGEGZDfDvkgbuJ3Cs_nnofTo,2660
|
|
120
|
+
taskflow/patterns/unordered_flow.py,sha256=C8pP-i2xYjkbDDzt_yzJC5w1ZMhLb19gm7Hq_vgJBZ4,1913
|
|
121
|
+
taskflow/persistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
+
taskflow/persistence/base.py,sha256=2tHl9Zu3gU4S9Bk-RpVSAH8a-wclPKpaPDGSbqa475Y,4031
|
|
123
|
+
taskflow/persistence/models.py,sha256=DRQjZY0HyfnfpIs186iMbQV2O1kqeYRlhVrZpc9HqVA,40591
|
|
124
|
+
taskflow/persistence/path_based.py,sha256=TnRflhV_uo0miwSmamGNPvNkfmBQpBjItXJUlsllaqk,9498
|
|
125
|
+
taskflow/persistence/backends/__init__.py,sha256=B76pXpP_l8b4vBvbpbU1TtUHFLgVAHxqUibIoEW0rLU,3331
|
|
126
|
+
taskflow/persistence/backends/impl_dir.py,sha256=TyFJgUymjCteAobk4KNMZ2CRZMbo3as1rN1twInPOvE,6023
|
|
127
|
+
taskflow/persistence/backends/impl_memory.py,sha256=qNq6VI_e_doRpaYvmPVal9wn4N7xJmnrgE7enbbXWFU,13284
|
|
128
|
+
taskflow/persistence/backends/impl_sqlalchemy.py,sha256=37isYg47E2PYQQ7Dxf6mvLtQo3kC6GE8OUnrwYhfzU4,25427
|
|
129
|
+
taskflow/persistence/backends/impl_zookeeper.py,sha256=oStDTKb-sURbTo_iQxy41W20hELF1xku9vzRFKHnGMU,6130
|
|
130
|
+
taskflow/persistence/backends/sqlalchemy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
+
taskflow/persistence/backends/sqlalchemy/migration.py,sha256=YS4UPcygmYV1lRTogPUuyMM39DupIZ1LwuD23yoaEno,1140
|
|
132
|
+
taskflow/persistence/backends/sqlalchemy/tables.py,sha256=LvPD3sMBz9UQbnfeaf-X8379JSysJyLJb9m7Urlbqy8,4794
|
|
133
|
+
taskflow/persistence/backends/sqlalchemy/alembic/README,sha256=K6farsrYU2S5Gb1nrz5I64Okvqu9LjOPTqXlBzvUitU,411
|
|
134
|
+
taskflow/persistence/backends/sqlalchemy/alembic/alembic.ini,sha256=9Tb5IRu220Gl3gARRXRw0jL5Caql4JNjF1C-VUenEvI,420
|
|
135
|
+
taskflow/persistence/backends/sqlalchemy/alembic/env.py,sha256=ovwG5S6520pExA5NB170WAHk30uLeEqAQnH7DJv2xZA,2658
|
|
136
|
+
taskflow/persistence/backends/sqlalchemy/alembic/script.py.mako,sha256=D8kFI44_9vBJZrAYSkZxDTX2-S5Y-oEetEd9BKlo9S8,412
|
|
137
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/00af93df9d77_add_unique_into_all_indexes.py,sha256=2vfv8bGrwo-obbHdzbl1jayysFS3YB3cdZbyorvL3yM,2516
|
|
138
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/0bc3e1a3c135_set_result_meduimtext_type.py,sha256=3AM6AyxwC4seS5lo_XKixPxdw1XJB4ly5Og9WXnZ-FM,1315
|
|
139
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/14b227d79a87_add_intention_column.py,sha256=R1m7CqB5FLffaLytLFxfNK6PnfLgG-sQBDjLXAXKV90,1230
|
|
140
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/1c783c0c2875_replace_exception_an.py,sha256=iTT3oqLMMMgEOMeRxC1fqhKtlqXp9vP3wkUchwfqXWY,1412
|
|
141
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/1cea328f0f65_initial_logbook_deta.py,sha256=mSA7DsgjKDW6XfxgmayKhK91iTIkt9sLjGRIi2Ed5p4,5434
|
|
142
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/2ad4984f2864_switch_postgres_to_json_native.py,sha256=Wn69B_mv8M_B1nnHCdVdri0zVErulXBOuCFtRBpWRx0,1753
|
|
143
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/3162c0f3f8e4_add_revert_results_and_revert_failure_.py,sha256=uI108tiltwFFrEYhEq1GeUr8h6h-Ba8C94UJEkcqads,1290
|
|
144
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/40fc8c914bd2_fix_atomdetails_failure_size.py,sha256=yitIJ9n6B-_NHillKV3nhP6UX8bhrl0byM1-wphdj-Q,1205
|
|
145
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/589dccdf2b6e_rename_taskdetails_to_atomdetails.py,sha256=TZClmtKtxa_Kk2ctjg6aUv3h5cCaC3dKbNMTr4-N2sM,1022
|
|
146
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/6df9422fcb43_fix_flowdetails_meta_size.py,sha256=C6I4HCGnmsjy5iVD2s98-ydWYL3nW25Ng1MaJ0svt4I,1072
|
|
147
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/84d6e888850_add_task_detail_type.py,sha256=Z7820MUaNOzMZHw32wFj0kb612TUeRdC2xDUB6ikYHs,1290
|
|
148
|
+
taskflow/persistence/backends/sqlalchemy/alembic/versions/README,sha256=AwegmiWc0MVoYyckyRzPFV4kVZqs8Q4w6eeMm0K3I_o,38
|
|
149
|
+
taskflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
+
taskflow/tests/fixtures.py,sha256=VfGlusX2q79_ktPME4cm1qt_gN9VNRAwyYy5sDBAX0Y,2004
|
|
151
|
+
taskflow/tests/test_examples.py,sha256=_djTvV4SJ6FTF3WyGGPr9pkTURdlwl_76Dh-1hQMtX8,4900
|
|
152
|
+
taskflow/tests/utils.py,sha256=Tuj1V7rzxSj4kmhy5r5gNSt-HpM2CSVrWXOiAH_aOyE,11835
|
|
153
|
+
taskflow/tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
+
taskflow/tests/unit/test_arguments_passing.py,sha256=feqyBeyLJfrbrlWm6w4O6tUT8VNt3sAwKCpEWeeYoCA,8583
|
|
155
|
+
taskflow/tests/unit/test_check_transition.py,sha256=CC1VOpGqt7r5f44viUao9E_wo5o8qGtbjqp4evvj3Cw,6060
|
|
156
|
+
taskflow/tests/unit/test_conductors.py,sha256=fTQIJ5rA28OvpLWK7xmTlpNUeahFCf4FV7opdr2jqf4,18971
|
|
157
|
+
taskflow/tests/unit/test_deciders.py,sha256=xUuXQZdpNZCOFPdw5aADjRMRE2YBfsJEfVbKUcVz3eY,2703
|
|
158
|
+
taskflow/tests/unit/test_engine_helpers.py,sha256=Biqgkoy9K9BnMlGj5C3Jfi_zhG8r6KCoR1GL8m06Ymc,5374
|
|
159
|
+
taskflow/tests/unit/test_engines.py,sha256=rNRBEwnbCgMrJ15WbQhb8kA9vqy3SVNGEGXQi9Y2_Do,61252
|
|
160
|
+
taskflow/tests/unit/test_exceptions.py,sha256=M9gzd2bpQ3InenouSlRJXMXgf5WjXo65U1E5GI7n-JA,4337
|
|
161
|
+
taskflow/tests/unit/test_failure.py,sha256=OTQKuX5_TBYao2VZuECTeVhOylbpUORU1_dUwXWtCSs,17739
|
|
162
|
+
taskflow/tests/unit/test_flow_dependencies.py,sha256=4ROV_-6scWzvyDQhpfQXpvV8mM4VQq3aqJ6YPGuUXs8,17751
|
|
163
|
+
taskflow/tests/unit/test_formatters.py,sha256=jKeqKcLaiZD2KgRBms1IHTYTA-gaULdM7KJZgNs7gO4,3896
|
|
164
|
+
taskflow/tests/unit/test_functor_task.py,sha256=TArtfqnx2eMMFx6Nnr9FkrkRpVEB1AYDRHxenBUi3Cg,2495
|
|
165
|
+
taskflow/tests/unit/test_listeners.py,sha256=Z1i69g6hzOvzTbkd8GfikvCd1iVIKWo6QwR2PeRbPdQ,15202
|
|
166
|
+
taskflow/tests/unit/test_mapfunctor_task.py,sha256=WzsgkeCXKSeVFdlg0h2U5izwokvrpcylP5zg32tK_28,2319
|
|
167
|
+
taskflow/tests/unit/test_notifier.py,sha256=DWL3fAYVX_Oy93ZBfi8Kcqr26Whb5LJMzg9akEL7NYI,7861
|
|
168
|
+
taskflow/tests/unit/test_progress.py,sha256=Vp3M3smAbr_TIpzwiA9mzdBiRTfSlYLrU-dm3sfl-uo,5198
|
|
169
|
+
taskflow/tests/unit/test_reducefunctor_task.py,sha256=BvADQBJHR9HAFlsVQNWm-QVfZamPXgqD2RSZorVe2gU,2054
|
|
170
|
+
taskflow/tests/unit/test_retries.py,sha256=7CVwfSsLsPxw-tlZ1v0LzDMMF41qyhb8ctTmNig-5nU,57772
|
|
171
|
+
taskflow/tests/unit/test_states.py,sha256=x9CXwERzuFxUDsobFHBuNbR94Y_SujWlZzZLsAKhUwI,3635
|
|
172
|
+
taskflow/tests/unit/test_storage.py,sha256=3-f8Tx_1kDGTy2pmwQYpuDJQmV36yr-cbDBtYAse_KI,23375
|
|
173
|
+
taskflow/tests/unit/test_suspend.py,sha256=dbWomTCI4H8NNUlxGov0hW7AXyjJVdJcQkoOquYFYfY,9290
|
|
174
|
+
taskflow/tests/unit/test_task.py,sha256=x0b0qMBBNAp2duvZPy2BSAr3wn6d4jlWUcYKSY-cstI,15846
|
|
175
|
+
taskflow/tests/unit/test_types.py,sha256=p1H3QBPtO20P42ER-S0P5SfhiBgPAOCEmq0pnZTscqU,20181
|
|
176
|
+
taskflow/tests/unit/test_utils.py,sha256=dzvNUVPw_8x-u-J1P2NuoQ7EygQOpXxJQtkr5VwXPdg,10948
|
|
177
|
+
taskflow/tests/unit/test_utils_async_utils.py,sha256=ZwuN71i2WuFNgIY29IH7htjl9bDV89ttS6oV7k0x7g0,956
|
|
178
|
+
taskflow/tests/unit/test_utils_binary.py,sha256=31vqpbTs8M2oB_w1SstPkb2OdIZv0lCwKq-cFMxDNkw,3115
|
|
179
|
+
taskflow/tests/unit/test_utils_iter_utils.py,sha256=4IcjcWRqsox-7WSkFxSCh7zwQoZGGghDYu1rKtuavws,5683
|
|
180
|
+
taskflow/tests/unit/test_utils_kazoo_utils.py,sha256=oQWDyd7QKpJAl8C1hPc2pTzJVDAs2xhcogeq3mbkOuo,1938
|
|
181
|
+
taskflow/tests/unit/test_utils_threading_utils.py,sha256=HeJSIHmFG1Cnr90I39O5Yrxy62TPVi1MiCik271hXpY,5456
|
|
182
|
+
taskflow/tests/unit/action_engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
|
+
taskflow/tests/unit/action_engine/test_builder.py,sha256=KZz_4VVwNKeJgsEmGBIS3Fc7euLxxxTfVKydUGtzp8M,12835
|
|
184
|
+
taskflow/tests/unit/action_engine/test_compile.py,sha256=aGAY6wRyKM2hcrgLQvmf240kWS9jb932z_tj9WZgWA0,23714
|
|
185
|
+
taskflow/tests/unit/action_engine/test_creation.py,sha256=oc7IFRZurqV1EDG3-uPf0mkj4VKX-cHczUM1Jk0H0E4,2878
|
|
186
|
+
taskflow/tests/unit/action_engine/test_scoping.py,sha256=ivUVv8PyOmS9s41OfnRwE_LWs-MO6xYHPysJg54Bheo,11297
|
|
187
|
+
taskflow/tests/unit/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
taskflow/tests/unit/jobs/base.py,sha256=C89dJV_CSsQr5QgJN6NuEiLIwx5mREcly6G7LxN_Gl0,8414
|
|
189
|
+
taskflow/tests/unit/jobs/test_entrypoint.py,sha256=Tc5R4O6xkY2WZ_SSv092b6CSFXtrxcrAhToxepVHgYg,2195
|
|
190
|
+
taskflow/tests/unit/jobs/test_etcd_job.py,sha256=EhcdScOz87evJln_srG091w0L3gJWAxApw6n3Ypb2fo,16576
|
|
191
|
+
taskflow/tests/unit/jobs/test_redis_job.py,sha256=vcH8W2zBobnQVmGPrCdFijv5DYbbr380ySRIRggGICc,7396
|
|
192
|
+
taskflow/tests/unit/jobs/test_zk_job.py,sha256=UBgU1CkSKWBK5IZ0PwNBr6itD86eykl9uI0YVMBtNkM,13715
|
|
193
|
+
taskflow/tests/unit/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
+
taskflow/tests/unit/patterns/test_graph_flow.py,sha256=klJPWr6dGmWfEAhThxN3HiTm-RtyCXvZFTuKusUgmpo,12340
|
|
195
|
+
taskflow/tests/unit/patterns/test_linear_flow.py,sha256=mto1z8keztKhTc8auBPUX2LdbpfsT-aJq_Xmk1nqgk8,5073
|
|
196
|
+
taskflow/tests/unit/patterns/test_unordered_flow.py,sha256=6w8jWF9n1rcbCuxN_O-rT95-76pWF31BVk6WCP36xZE,4899
|
|
197
|
+
taskflow/tests/unit/persistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
|
+
taskflow/tests/unit/persistence/base.py,sha256=MdnQD8nG_TghT7VL4DRyluhCFvjqfjPP4IzSxQUnrMg,16518
|
|
199
|
+
taskflow/tests/unit/persistence/test_dir_persistence.py,sha256=PTbOA-bte1VXox8bc_uxlrZasKAdY7lJ6tA3aJaRNKk,3856
|
|
200
|
+
taskflow/tests/unit/persistence/test_memory_persistence.py,sha256=TVVPQQPryX8lK-RXYY1BNYBqNjYK-2X65MyN3UAmOGs,7792
|
|
201
|
+
taskflow/tests/unit/persistence/test_sql_persistence.py,sha256=8TA5B1z2CNbtL8S4D0devfTrNR6BQlGObUqkFjcM1CQ,10188
|
|
202
|
+
taskflow/tests/unit/persistence/test_zk_persistence.py,sha256=YB8pytcRgANRa2HSpHOzJ8CpqlsDFHlEZ8bJUULs18k,3575
|
|
203
|
+
taskflow/tests/unit/worker_based/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
|
+
taskflow/tests/unit/worker_based/test_creation.py,sha256=7ohfSkA2nnFkJyjrRiaOr2nA-b5M1iw3CsKKPI3tjWc,4020
|
|
205
|
+
taskflow/tests/unit/worker_based/test_dispatcher.py,sha256=5gFj81syOswh7IGhyB_0Tlg9Rq_lRDiL9aMGa1us65s,2890
|
|
206
|
+
taskflow/tests/unit/worker_based/test_endpoint.py,sha256=gVYq48bSaDWMeJ5VzZprhHbRHCd8XxddrK6UuUmpJpc,3075
|
|
207
|
+
taskflow/tests/unit/worker_based/test_executor.py,sha256=PlVTcUN7O8H6YRoWJi2KWPJm7FzrEz9iYxlmMgiXgfc,13569
|
|
208
|
+
taskflow/tests/unit/worker_based/test_message_pump.py,sha256=SOVWtJhEFJ5NJ9A4eKXGBF3dISO7m_BCdMBcOrIavtA,4869
|
|
209
|
+
taskflow/tests/unit/worker_based/test_pipeline.py,sha256=QbD2U2OfIQpDOltW7Qp5tiIjlHnRe-a3CZwuUyMG90U,3787
|
|
210
|
+
taskflow/tests/unit/worker_based/test_protocol.py,sha256=GJWTsdZGeLHQq2bZIVAu-DBkVks6WlqXaAuIqcucxwY,7694
|
|
211
|
+
taskflow/tests/unit/worker_based/test_proxy.py,sha256=JbpqrYP7R6BoLRE69yFh3gBq2sefqr442HwEKh7Ks0U,9884
|
|
212
|
+
taskflow/tests/unit/worker_based/test_server.py,sha256=HYsAKq7VtL47Y1ngjr6Dwb_PUvG8ZmEYolaciuC1b7s,14293
|
|
213
|
+
taskflow/tests/unit/worker_based/test_types.py,sha256=202PssDJNsIMowjpoljbytwntfx0xvd7MruS6n6E1-o,3343
|
|
214
|
+
taskflow/tests/unit/worker_based/test_worker.py,sha256=XZTXcNAhEFvCaP9O8fKQmtUAnZ3rGxbRckZYH5QGvW0,7068
|
|
215
|
+
taskflow/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
|
+
taskflow/types/entity.py,sha256=zo0Fh61nBUQxHo9ej4aFdVygc0nZuaxs0xuP_I9hkeM,1554
|
|
217
|
+
taskflow/types/failure.py,sha256=dX7GfPCx5YdXsIqx9Ly3p5lqaWbUDGc60kJcTYmyO5A,21015
|
|
218
|
+
taskflow/types/graph.py,sha256=py6QZ7QCp76Nz_0mMhnW4YBaxTPt9xMe3Z0TTm96CHY,10292
|
|
219
|
+
taskflow/types/latch.py,sha256=OokNoVyYz8B8wNA89-5AP-HHgZGVAR8whuj8cEHlMdE,2160
|
|
220
|
+
taskflow/types/notifier.py,sha256=VRAP3JB_4pOK4u9Mvn-GimgcOfYG4YoE76SzkKI-3Y4,13972
|
|
221
|
+
taskflow/types/sets.py,sha256=gbcQSbZybBmB7Bht0vQKYvJ7LKVmu3_aeZ8cRM5Xy4E,3956
|
|
222
|
+
taskflow/types/timing.py,sha256=AMq5inukPNn3tk-y8URJ8j5B72e0XDbttQGfCzNNy7Y,2280
|
|
223
|
+
taskflow/types/tree.py,sha256=bMWEOKav9ieI5a7foey1VXjRnlTI2qKMMFQk8rSvUN4,15717
|
|
224
|
+
taskflow/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
+
taskflow/utils/async_utils.py,sha256=mEaeMgWgyahWD4edFPUUT26A-7p5Q4A9r9m665EPs2w,830
|
|
226
|
+
taskflow/utils/banner.py,sha256=ZgxwxPk85YbGiYX8TL836BbKeYgnZohrSaGGF47Y_Fk,3609
|
|
227
|
+
taskflow/utils/eventlet_utils.py,sha256=Q4rK-nj4fnOTmJ0mJ0ywVXjCa1hhSZpl6mncc8tdTYA,1230
|
|
228
|
+
taskflow/utils/iter_utils.py,sha256=abR93joAV9DLasdbsJnUpPKy3-9Q8RmALQ8PikQcH3E,4649
|
|
229
|
+
taskflow/utils/kazoo_utils.py,sha256=GAun1C9DbZ9WQvCPa3G-AqKqupRojFw6Lbh7ORNu86Q,9859
|
|
230
|
+
taskflow/utils/kombu_utils.py,sha256=Wu1pgmaq0W4HlhtHKmRVAQEmjfRYbuE40Cd6qlbl0ak,2489
|
|
231
|
+
taskflow/utils/misc.py,sha256=8HYTfui4a0-pXsRwVxi48i5l4XYsGhgHzb9pKfz7p7Q,18458
|
|
232
|
+
taskflow/utils/persistence_utils.py,sha256=butzDfSRKoy22Z9Jt92xzDGfabNKxu2kSRgI5sX52jI,3874
|
|
233
|
+
taskflow/utils/redis_utils.py,sha256=gT1xPpV8uXMaQxGWqtpgigHbx4rJijzl329R1r4RDxM,4297
|
|
234
|
+
taskflow/utils/schema_utils.py,sha256=BwZmYjLMC7N2rbx53Z1zREP4jaRQyRNYYOLCFf3Rrkk,1409
|
|
235
|
+
taskflow/utils/threading_utils.py,sha256=wdLhE2HvEQsnO8oKcjOXHRqY-dIJgSxZVX6YW6W6qfo,5816
|
|
236
|
+
taskflow-6.0.1.dist-info/AUTHORS,sha256=WvZWwtKE3NpQerTymaWGoTlVa6zh4KfYlWvEXsJv1PE,4608
|
|
237
|
+
taskflow-6.0.1.dist-info/LICENSE,sha256=0t4vVm0tDgtQn7DqH6Nmn0kGSrHeIcV0U8qzdQojTo8,10143
|
|
238
|
+
taskflow-6.0.1.dist-info/METADATA,sha256=_zHJQsfhRuZxAY795gyZHXoXHrWtTRSZDsZdxLsmfYw,5576
|
|
239
|
+
taskflow-6.0.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
240
|
+
taskflow-6.0.1.dist-info/entry_points.txt,sha256=-cLcvncQdUIhZ0pSd10UBTItZsJxlgu1uQIhkcpzh4Y,1235
|
|
241
|
+
taskflow-6.0.1.dist-info/pbr.json,sha256=3X-WWXQHfTfVjIcORiKTlWOOn2jQxu640Y953ok-9Io,47
|
|
242
|
+
taskflow-6.0.1.dist-info/top_level.txt,sha256=PsdN41vwysesDlqHCSVVXH4mkTMdMiZFW_yHEAXiZE4,9
|
|
243
|
+
taskflow-6.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"git_version": "d01920ef", "is_release": true}
|