Lines Matching refs:time
16 import time
221 # check compile time flags like ssl.HAS_TLSv1_2
272 # local time = utc time + utc offset
273 if time.daylight and time.localtime().tm_isdst > 0:
274 return -time.altzone # seconds
275 return -time.timezone
1060 'local time needs to be different from UTC')
1094 # allow 2nd leap second for compatibility with time.strptime()
1107 return time.strftime('%b', (1, 2, 3, 4, 5, 6, 0, 0, 0))
2230 time.sleep(0.2)
2282 deadline = time.monotonic() + timeout
2285 if time.monotonic() > deadline:
3824 # Will attempt handshake and time out
3833 # Will attempt handshake and time out
4373 self.assertGreater(session.time, 0)
4393 self.assertGreaterEqual(session2.time, session.time)
4414 self.assertGreaterEqual(session4.time, session.time)