Home
last modified time | relevance | path

Searched refs:ALL_COMPLETED (Results 1 - 4 of 4) sorted by relevance

/third_party/python/Lib/concurrent/futures/
H A D__init__.py10 ALL_COMPLETED,
23 'ALL_COMPLETED',
H A D_base.py14 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 Dtasks.py5 '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 Dtest_concurrent_futures.py612 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