Home
last modified time | relevance | path

Searched refs:run_in_executor (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Doc/library/
Dasyncio-dev.rst105 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
Dasyncio-llapi-index.rst104 * - ``await`` :meth:`loop.run_in_executor`
109 - Set the default executor for :meth:`loop.run_in_executor`.
Dasyncio-eventloop.rst994 .. 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`.
Dasyncio-task.rst207 is :meth:`loop.run_in_executor`.
/external/python/cpython3/Lib/asyncio/
Dbase_events.py742 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)
Devents.py288 async def run_in_executor(self, executor, func, *args): member in AbstractEventLoop
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py3135 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(
Dtest_events.py347 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(
Dtest_base_events.py974 self.loop.run_in_executor(None, support.gc_collect))
1828 self.loop.run_in_executor(None, func))
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b5.rst168 Fix RuntimeError after closing loop that used run_in_executor
D3.6.0b2.rst674 Deprecate passing asyncio.Handles to run_in_executor.
D3.6.6rc1.rst202 Fix RuntimeError after closing loop that used run_in_executor
D3.5.3rc1.rst1579 Deprecate passing asyncio.Handles to run_in_executor.
D3.7.0a1.rst4681 Deprecate passing asyncio.Handles to run_in_executor.