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 | 13 ALL_COMPLETED = 'ALL_COMPLETED' variable 167 elif return_when == ALL_COMPLETED: 264 def wait(fs, timeout=None, return_when=ALL_COMPLETED):
|
/external/python/cpython3/Lib/asyncio/ |
D | tasks.py | 391 ALL_COMPLETED = concurrent.futures.ALL_COMPLETED variable 394 async def wait(fs, *, loop=None, timeout=None, return_when=ALL_COMPLETED): 414 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, 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/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/cpython3/Lib/test/ |
D | test_concurrent_futures.py | 527 return_when=futures.ALL_COMPLETED) 546 return_when=futures.ALL_COMPLETED) 568 futures.wait(fs, return_when=futures.ALL_COMPLETED)
|
/external/python/cpython3/Doc/library/ |
D | concurrent.futures.rst | 422 .. function:: wait(fs, timeout=None, return_when=ALL_COMPLETED) 450 | | :const:`ALL_COMPLETED`. | 452 | :const:`ALL_COMPLETED` | The function will return when all |
|
D | asyncio-task.rst | 493 return_when=ALL_COMPLETED) 527 | | :const:`ALL_COMPLETED`. | 529 | :const:`ALL_COMPLETED` | The function will return when all |
|
/external/python/cpython3/Misc/ |
D | HISTORY | 8022 return_when=ALL_COMPLETED)``. Patch by Matt Joiner.
|