Searched refs:FIRST_EXCEPTION (Results 1 – 11 of 11) sorted by relevance
/external/python/futures/concurrent/futures/ |
D | __init__.py | 9 FIRST_EXCEPTION,
|
D | _base.py | 14 FIRST_EXCEPTION = 'FIRST_EXCEPTION' variable 163 if return_when == FIRST_EXCEPTION: 297 elif (return_when == FIRST_EXCEPTION) and done:
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | __init__.py | 9 FIRST_EXCEPTION,
|
D | _base.py | 12 FIRST_EXCEPTION = 'FIRST_EXCEPTION' variable 161 if return_when == FIRST_EXCEPTION: 291 elif (return_when == FIRST_EXCEPTION) and done:
|
/external/python/cpython3/Lib/asyncio/ |
D | tasks.py | 331 FIRST_EXCEPTION = concurrent.futures.FIRST_EXCEPTION variable 355 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED): 445 return_when == FIRST_EXCEPTION and (not f.cancelled() and
|
/external/python/futures/ |
D | test_futures.py | 328 return_when=futures.FIRST_EXCEPTION) 342 return_when=futures.FIRST_EXCEPTION) 354 return_when=futures.FIRST_EXCEPTION)
|
/external/python/cpython3/Lib/test/ |
D | test_concurrent_futures.py | 475 return_when=futures.FIRST_EXCEPTION) 489 return_when=futures.FIRST_EXCEPTION) 501 return_when=futures.FIRST_EXCEPTION)
|
/external/python/futures/docs/ |
D | index.rst | 326 | :const:`FIRST_EXCEPTION` | The function will return when any |
|
/external/python/cpython3/Doc/library/ |
D | concurrent.futures.rst | 418 | :const:`FIRST_EXCEPTION` | The function will return when any |
|
D | asyncio-task.rst | 507 | :const:`FIRST_EXCEPTION` | The function will return when any |
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 1044 asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION, 1075 task = asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION,
|