Searched defs:FIRST_COMPLETED (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython3/Lib/concurrent/futures/
H A D__init__.py8 from concurrent.futures._base import (FIRST_COMPLETED, namespace
H A D_base.py11 FIRST_COMPLETED = 'FIRST_COMPLETED' variable
94 """Used by wait(return_when=FIRST_COMPLETED)."""
155 elif return_when == FIRST_COMPLETED:
244 FIRST_COMPLETED - Return when any future finishes or is
262 if (return_when == FIRST_COMPLETED) and done:
/external/python/futures/concurrent/futures/
H A D__init__.py8 from concurrent.futures._base import (FIRST_COMPLETED, namespace
H A D_base.py13 FIRST_COMPLETED = 'FIRST_COMPLETED' variable
96 """Used by wait(return_when=FIRST_COMPLETED)."""
157 elif return_when == FIRST_COMPLETED:
277 FIRST_COMPLETED - Return when any future finishes or is
295 if (return_when == FIRST_COMPLETED) and done:
/external/python/cpython3/Lib/asyncio/
H A Dtasks.py4 'FIRST_COMPLETED', 'FIRST_EXCEPTION', 'ALL_COMPLETED',
273 FIRST_COMPLETED = concurrent.futures.FIRST_COMPLETED variable
299 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
378 return_when == FIRST_COMPLETED or

Completed in 138 milliseconds