Searched refs:ALL_COMPLETED (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/concurrent/futures/ |
H A D | __init__.py | 10 ALL_COMPLETED, 23 'ALL_COMPLETED',
|
H A D | _base.py | 14 ALL_COMPLETED = 'ALL_COMPLETED' variable 112 """Used by wait(return_when=FIRST_EXCEPTION and ALL_COMPLETED).""" 166 elif return_when == ALL_COMPLETED: 263 def wait(fs, timeout=None, return_when=ALL_COMPLETED): 278 then it is equivalent to ALL_COMPLETED. 279 ALL_COMPLETED - Return when all futures finish or are cancelled.
|
/third_party/python/Lib/asyncio/ |
H A D | tasks.py | 5 'FIRST_COMPLETED', 'FIRST_EXCEPTION', 'ALL_COMPLETED', 386 ALL_COMPLETED = concurrent.futures.ALL_COMPLETED variable 389 async def wait(fs, *, timeout=None, return_when=ALL_COMPLETED): 409 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
|
/third_party/python/Lib/test/ |
H A D | test_concurrent_futures.py | 612 return_when=futures.ALL_COMPLETED) 688 return_when=futures.ALL_COMPLETED) 707 return_when=futures.ALL_COMPLETED) 729 futures.wait(fs, return_when=futures.ALL_COMPLETED)
|
Completed in 5 milliseconds