Lines Matching refs:time
34 """Schedule a timeout that will trigger at a given loop time.
37 - If `when < loop.time()`, the timeout will trigger on the next
67 if when <= loop.time():
142 return Timeout(loop.time() + delay if delay is not None else None)
146 """Schedule the timeout at absolute time.
148 Like timeout() but argument gives absolute time in the same clock system
149 as loop.time().
151 Please note: it is not POSIX time but a time with
152 undefined starting base, e.g. the time of the system power on.
154 >>> async with asyncio.timeout_at(loop.time() + 10):