Home
last modified time | relevance | path

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

/third_party/python/Lib/asyncio/
Dtasks.py346 ALL_COMPLETED = concurrent.futures.ALL_COMPLETED variable
349 async def wait(fs, *, timeout=None, return_when=ALL_COMPLETED):
369 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
/third_party/python/Lib/concurrent/futures/
D__init__.py10 ALL_COMPLETED,
D_base.py14 ALL_COMPLETED = 'ALL_COMPLETED' variable
168 elif return_when == ALL_COMPLETED:
265 def wait(fs, timeout=None, return_when=ALL_COMPLETED):
/third_party/python/Lib/test/
Dtest_concurrent_futures.py586 return_when=futures.ALL_COMPLETED)
662 return_when=futures.ALL_COMPLETED)
681 return_when=futures.ALL_COMPLETED)
703 futures.wait(fs, return_when=futures.ALL_COMPLETED)
/third_party/python/Doc/library/
Dconcurrent.futures.rst435 .. function:: wait(fs, timeout=None, return_when=ALL_COMPLETED)
464 | | :const:`ALL_COMPLETED`. |
466 | :const:`ALL_COMPLETED` | The function will return when all |
Dasyncio-task.rst556 .. coroutinefunction:: wait(aws, *, timeout=None, return_when=ALL_COMPLETED)
592 | | :const:`ALL_COMPLETED`. |
594 | :const:`ALL_COMPLETED` | The function will return when all |
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_shader_buffer_load.txt1155 SetFence(fenceId, ALL_COMPLETED);
/third_party/openGLES/extensions/NV/
DNV_shader_buffer_load.txt1155 SetFence(fenceId, ALL_COMPLETED);
/third_party/python/Misc/
DHISTORY8022 return_when=ALL_COMPLETED)``. Patch by Matt Joiner.