Home
last modified time | relevance | path

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

/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:
295 if (return_when == FIRST_COMPLETED) and done:
/external/python/cpython3/Lib/asyncio/
Dtasks.py344 FIRST_COMPLETED = concurrent.futures.FIRST_COMPLETED variable
369 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
479 return_when == FIRST_COMPLETED or
/external/pigweed/pw_transfer/py/pw_transfer/
Dclient.py245 return_when=asyncio.FIRST_COMPLETED,
/external/pigweed/pw_transfer/integration_test/
Dproxy.py559 return_when=asyncio.FIRST_COMPLETED,
/external/python/cpython3/Lib/test/
Dtest_concurrent_futures.py603 return_when=futures.FIRST_COMPLETED)
613 return_when=futures.FIRST_COMPLETED)
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst457 | :const:`FIRST_COMPLETED` | The function will return when any |
Dasyncio-task.rst566 | :const:`FIRST_COMPLETED` | The function will return when any |
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py1353 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED))
1382 asyncio.wait([b, a], return_when=asyncio.FIRST_COMPLETED))