Home
last modified time | relevance | path

Searched refs:FIRST_COMPLETED (Results 1 – 11 of 11) sorted by relevance

/external/python/futures/concurrent/futures/
D__init__.py8 from concurrent.futures._base import (FIRST_COMPLETED,
D_base.py13 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__.py8 from concurrent.futures._base import (FIRST_COMPLETED,
D_base.py11 FIRST_COMPLETED = 'FIRST_COMPLETED' variable
155 elif return_when == FIRST_COMPLETED:
289 if (return_when == FIRST_COMPLETED) and done:
/external/python/cpython3/Lib/asyncio/
Dtasks.py330 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/
Dtest_futures.py304 return_when=futures.FIRST_COMPLETED)
314 return_when=futures.FIRST_COMPLETED)
/external/python/cpython3/Lib/test/
Dtest_concurrent_futures.py451 return_when=futures.FIRST_COMPLETED)
461 return_when=futures.FIRST_COMPLETED)
/external/python/futures/docs/
Dindex.rst323 | :const:`FIRST_COMPLETED` | The function will return when any |
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst415 | :const:`FIRST_COMPLETED` | The function will return when any |
Dasyncio-task.rst504 | :const:`FIRST_COMPLETED` | The function will return when any |
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py983 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED,
1015 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED,