Searched refs:run_in_executor (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | asyncio-dev.rst | 105 The :meth:`loop.run_in_executor` method can be used with a 123 event loop. See the :meth:`loop.run_in_executor` method for more
|
D | asyncio-llapi-index.rst | 104 * - ``await`` :meth:`loop.run_in_executor` 109 - Set the default executor for :meth:`loop.run_in_executor`.
|
D | asyncio-eventloop.rst | 994 .. awaitablemethod:: loop.run_in_executor(executor, func, \*args) 1024 result = await loop.run_in_executor( 1030 result = await loop.run_in_executor( 1036 result = await loop.run_in_executor( 1048 :meth:`loop.run_in_executor` no longer configures the 1056 Set *executor* as the default executor used by :meth:`run_in_executor`.
|
D | asyncio-task.rst | 207 is :meth:`loop.run_in_executor`.
|
/external/python/cpython3/Lib/asyncio/ |
D | base_events.py | 742 def run_in_executor(self, executor, func, *args): member in BaseEventLoop 788 return await self.run_in_executor( 792 return await self.run_in_executor( 832 read = await self.run_in_executor(None, file.readinto, view)
|
D | events.py | 288 async def run_in_executor(self, executor, func, *args): member in AbstractEventLoop
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 3135 future = self.loop.run_in_executor(None, self.target) 3142 future = self.loop.run_in_executor(None, self.target, True) 3151 future = self.loop.run_in_executor(None, callback) 3163 future = self.loop.run_in_executor(None, callback) 3174 run = self.loop.run_in_executor(
|
D | test_events.py | 347 f2 = self.loop.run_in_executor(None, run, 'yo') 362 f2 = self.loop.run_in_executor(None, run) 1840 it = self.loop.run_in_executor(None, func).__await__() 3027 await loop.run_in_executor(f, f) 3244 result = await self.loop.run_in_executor(
|
D | test_base_events.py | 974 self.loop.run_in_executor(None, support.gc_collect)) 1828 self.loop.run_in_executor(None, func))
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b5.rst | 168 Fix RuntimeError after closing loop that used run_in_executor
|
D | 3.6.0b2.rst | 674 Deprecate passing asyncio.Handles to run_in_executor.
|
D | 3.6.6rc1.rst | 202 Fix RuntimeError after closing loop that used run_in_executor
|
D | 3.5.3rc1.rst | 1579 Deprecate passing asyncio.Handles to run_in_executor.
|
D | 3.7.0a1.rst | 4681 Deprecate passing asyncio.Handles to run_in_executor.
|