Home
last modified time | relevance | path

Searched refs:call_later (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/asyncio/
Dtasks.py423 timeout_handle = loop.call_later(timeout, _release_waiter, waiter)
472 timeout_handle = loop.call_later(timeout, _release_waiter, waiter)
576 timeout_handle = loop.call_later(timeout, _on_timeout)
601 h = loop.call_later(delay,
Devents.py262 return self.call_later(0, callback, *args, context=context)
264 def call_later(self, delay, callback, *args, context=None): member in AbstractEventLoop
Dsslproto.py611 self._loop.call_later(self._ssl_handshake_timeout,
Dselector_events.py185 self.call_later(constants.ACCEPT_RETRY_DELAY,
Dbase_events.py697 def call_later(self, delay, callback, *args, context=None): member in BaseEventLoop
/third_party/python/Lib/test/test_asyncio/
Dtest_base_events.py254 h = self.loop.call_later(10.0, cb)
266 self.loop.call_later(-1, cb, 'a')
267 self.loop.call_later(-2, cb, 'b')
301 loop.call_later(60, cb)
306 loop.call_later(60, cb)
412 self.loop.call_later(3000, cb)
419 h = self.loop.call_later(3600, cb)
425 h = self.loop.call_later(100, cb)
455 self.loop.call_later(3600, cb)
460 h = self.loop.call_later(3600, cb)
[all …]
Dtest_queues.py188 loop.call_later(0.01, q.put_nowait, 1)
333 loop.call_later(0.01, q.get_nowait)
Dtest_events.py316 self.loop.call_later(0.1, callback, 'hello world')
502 self.loop.call_later(60, self.loop.stop)
522 self.loop.call_later(60, self.loop.stop)
1729 self.loop.call_later(1.0, func)
2269 h = loop.call_later(0, noop)
2273 h = loop.call_later(0, noop)
2468 NotImplementedError, loop.call_later, None, None)
Dtest_tasks.py1146 loop.call_later(0.1, fut.set_result, "ok")
1803 orig_call_later = loop.call_later
1805 def call_later(delay, callback, *args): function
1810 loop.call_later = call_later
1835 loop.call_later(0.1, sleeper.cancel)
3069 self.loop.call_later(0.1, fut.set_result, 1)
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/iomgr/
Dtimer.pyx.pxi28 timer._timer_future = timer._loop.call_later(timeout, timer.on_time_up)
/third_party/python/Doc/library/
Dasyncio-llapi-index.rst92 * - :meth:`loop.call_later`
264 * :ref:`Using loop.call_later() <asyncio_example_call_later>`.
Dasyncio-eventloop.rst83 methods such as :meth:`loop.call_soon` and :meth:`loop.call_later`;
256 .. method:: loop.call_later(delay, callback, *args, context=None)
291 This method's behavior is the same as :meth:`call_later`.
1389 A callback wrapper object returned by :meth:`loop.call_later`,
1607 Display the current date with call_later()
1611 callback uses the :meth:`loop.call_later` method to reschedule itself
1620 loop.call_later(1, display_date, end_time, loop)
/third_party/python/Lib/test/
Dtest_asyncgen.py1231 self.loop.call_later(delay / 2, lambda: fut.cancel())
1321 self.loop.call_later(delay / 2, lambda: fut.cancel())
/third_party/python/Doc/whatsnew/
D3.7.rst648 :meth:`loop.call_later() <asyncio.loop.call_later>`,
726 :func:`loop.call_later() <asyncio.loop.call_later>`
/third_party/python/Misc/NEWS.d/
D3.10.0a3.rst964 performance in the ``call_later()`` unit test. The test failed randomly on
/third_party/nghttp2/python/
Dnghttp2.pyx764 self.settings_timer = loop.call_later(self.SETTINGS_TIMEOUT,