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.py12 FIRST_COMPLETED = 'FIRST_COMPLETED' variable
160 elif return_when == FIRST_COMPLETED:
294 if (return_when == FIRST_COMPLETED) and done:
/external/python/cpython3/Lib/asyncio/
Dtasks.py368 FIRST_COMPLETED = concurrent.futures.FIRST_COMPLETED variable
393 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
514 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.py571 return_when=futures.FIRST_COMPLETED)
581 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.rst456 | :const:`FIRST_COMPLETED` | The function will return when any |
Dasyncio-task.rst533 | :const:`FIRST_COMPLETED` | The function will return when any |
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py1367 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED))
1396 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED))