Searched refs:call_at (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/asyncio/ |
H A D | timeouts.py | 70 self._timeout_handler = loop.call_at(when, self._on_timeout)
|
H A D | events.py | 266 def call_at(self, when, callback, *args, context=None): member in AbstractEventLoop
|
H A D | base_events.py | 727 timer = self.call_at(self.time() + delay, callback, *args, 733 def call_at(self, when, callback, *args, context=None): member in BaseEventLoop 743 self._check_callback(callback, 'call_at')
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | utils.py | 493 def call_at(self, when, callback, *args, context=None): member in TestLoop 495 return super().call_at(when, callback, *args, context=context)
|
H A D | test_base_events.py | 279 self.loop.call_at(when, cb) 290 self.loop.call_at(None, cb) 305 loop.call_at(loop.time() + 60, cb) 309 loop.call_at(loop.time() + 60, cb) 1887 self.loop.call_at(self.loop.time() + 60, func)
|
H A D | test_events.py | 1765 self.loop.call_at(self.loop.time() + .0, func) 2303 # call_at 2497 NotImplementedError, loop.call_at, f, f)
|
Completed in 11 milliseconds