Searched refs:FIRST_COMPLETED (Results 1 – 11 of 11) sorted by relevance
/external/python/futures/concurrent/futures/ |
D | __init__.py | 8 from concurrent.futures._base import (FIRST_COMPLETED,
|
D | _base.py | 13 FIRST_COMPLETED = 'FIRST_COMPLETED' variable 157 elif return_when == FIRST_COMPLETED: 295 if (return_when == FIRST_COMPLETED) and done:
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | __init__.py | 8 from concurrent.futures._base import (FIRST_COMPLETED,
|
D | _base.py | 11 FIRST_COMPLETED = 'FIRST_COMPLETED' variable 155 elif return_when == FIRST_COMPLETED: 289 if (return_when == FIRST_COMPLETED) and done:
|
/external/python/cpython3/Lib/asyncio/ |
D | tasks.py | 330 FIRST_COMPLETED = concurrent.futures.FIRST_COMPLETED variable 355 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED): 444 return_when == FIRST_COMPLETED or
|
/external/python/futures/ |
D | test_futures.py | 304 return_when=futures.FIRST_COMPLETED) 314 return_when=futures.FIRST_COMPLETED)
|
/external/python/cpython3/Lib/test/ |
D | test_concurrent_futures.py | 451 return_when=futures.FIRST_COMPLETED) 461 return_when=futures.FIRST_COMPLETED)
|
/external/python/futures/docs/ |
D | index.rst | 323 | :const:`FIRST_COMPLETED` | The function will return when any |
|
/external/python/cpython3/Doc/library/ |
D | concurrent.futures.rst | 415 | :const:`FIRST_COMPLETED` | The function will return when any |
|
D | asyncio-task.rst | 504 | :const:`FIRST_COMPLETED` | The function will return when any |
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 983 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED, 1015 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED,
|