MCPcopy Create free account
hub / github.com/EasyIME/PIME / time

Method time

python/python3/tornado/ioloop.py:531–543  ·  view source on GitHub ↗

Returns the current time according to the `IOLoop`'s clock. The return value is a floating-point number relative to an unspecified time in the past. Historically, the IOLoop could be customized to use e.g. `time.monotonic` instead of `time.time`, but this is not

(self)

Source from the content-addressed store, hash-verified

529 return future_cell[0].result()
530
531 def time(self) -> float:
532 """Returns the current time according to the `IOLoop`'s clock.
533
534 The return value is a floating-point number relative to an
535 unspecified time in the past.
536
537 Historically, the IOLoop could be customized to use e.g.
538 `time.monotonic` instead of `time.time`, but this is not
539 currently supported and so this method is equivalent to
540 `time.time`.
541
542 """
543 return time.time()
544
545 def add_timeout(
546 self,

Callers 15

run_syncMethod · 0.95
add_timeoutMethod · 0.95
call_laterMethod · 0.95
updateMethod · 0.80
setStartTimerMethod · 0.80
setEndTimerMethod · 0.80
filterKeyDownMethod · 0.80
filterKeyUpMethod · 0.80
__init__Method · 0.80
set_timeoutMethod · 0.80
connectMethod · 0.80
waitMethod · 0.80

Calls

no outgoing calls

Tested by 15

waitMethod · 0.64
start_connectMethod · 0.64
test_response_timesMethod · 0.64
test_importMethod · 0.64
schedule_callbackMethod · 0.64
targetMethod · 0.64