Searched refs:ALL_COMPLETED (Results 1 – 11 of 11) sorted by relevance
/external/python/futures/concurrent/futures/ |
D | __init__.py | 10 ALL_COMPLETED,
|
D | _base.py | 15 ALL_COMPLETED = 'ALL_COMPLETED' variable 165 elif return_when == ALL_COMPLETED: 266 def wait(fs, timeout=None, return_when=ALL_COMPLETED):
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | __init__.py | 10 ALL_COMPLETED,
|
D | _base.py | 14 ALL_COMPLETED = 'ALL_COMPLETED' variable 168 elif return_when == ALL_COMPLETED: 265 def wait(fs, timeout=None, return_when=ALL_COMPLETED):
|
/external/python/cpython3/Lib/asyncio/ |
D | tasks.py | 370 ALL_COMPLETED = concurrent.futures.ALL_COMPLETED variable 373 async def wait(fs, *, loop=None, timeout=None, return_when=ALL_COMPLETED): 393 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
|
/external/python/futures/ |
D | test_futures.py | 369 return_when=futures.ALL_COMPLETED) 388 return_when=futures.ALL_COMPLETED) 410 futures.wait(fs, return_when=futures.ALL_COMPLETED)
|
/external/python/futures/docs/ |
D | index.rst | 305 .. function:: wait(fs, timeout=None, return_when=ALL_COMPLETED) 330 | | `ALL_COMPLETED`. | 332 | :const:`ALL_COMPLETED` | The function will return when all |
|
/external/python/cpython3/Doc/library/ |
D | concurrent.futures.rst | 435 .. function:: wait(fs, timeout=None, return_when=ALL_COMPLETED) 463 | | :const:`ALL_COMPLETED`. | 465 | :const:`ALL_COMPLETED` | The function will return when all |
|
D | asyncio-task.rst | 504 return_when=ALL_COMPLETED) 540 | | :const:`ALL_COMPLETED`. | 542 | :const:`ALL_COMPLETED` | The function will return when all |
|
/external/python/cpython3/Lib/test/ |
D | test_concurrent_futures.py | 636 return_when=futures.ALL_COMPLETED) 655 return_when=futures.ALL_COMPLETED) 677 futures.wait(fs, return_when=futures.ALL_COMPLETED)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 8022 return_when=ALL_COMPLETED)``. Patch by Matt Joiner.
|