Searched refs:call_at (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/test/test_asyncio/ |
D | utils.py | 468 def call_at(self, when, callback, *args, context=None): member in TestLoop 470 return super().call_at(when, callback, *args, context=context)
|
D | test_base_events.py | 279 self.loop.call_at(when, cb) 303 loop.call_at(loop.time() + 60, cb) 307 loop.call_at(loop.time() + 60, cb) 1912 self.loop.call_at(self.loop.time() + 60, func)
|
D | test_events.py | 1731 self.loop.call_at(self.loop.time() + .0, func) 2470 NotImplementedError, loop.call_at, f, f)
|
/third_party/python/Lib/asyncio/ |
D | events.py | 267 def call_at(self, when, callback, *args, context=None): member in AbstractEventLoop
|
D | base_events.py | 713 timer = self.call_at(self.time() + delay, callback, *args, 719 def call_at(self, when, callback, *args, context=None): member in BaseEventLoop
|
/third_party/python/Doc/library/ |
D | asyncio-dev.rst | 54 :meth:`loop.call_at` methods) raise an exception if they are called
|
D | asyncio-llapi-index.rst | 95 * - :meth:`loop.call_at`
|
D | asyncio-eventloop.rst | 285 .. method:: loop.call_at(when, callback, *args, context=None) 1390 and :meth:`loop.call_at`.
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 649 :meth:`loop.call_at() <asyncio.loop.call_at>`, and
|