Lines Matching refs:monotonic
69 self.assertFalse(info.monotonic)
82 check_ns(time.monotonic(),
467 # monotonic() should not go backward
468 times = [time.monotonic() for n in range(100)]
474 # monotonic() includes time elapsed during a sleep
475 t1 = time.monotonic()
477 t2 = time.monotonic()
484 # monotonic() is a monotonic but non adjustable clock
485 info = time.get_clock_info('monotonic')
486 self.assertTrue(info.monotonic)
505 self.assertTrue(info.monotonic)
525 self.assertTrue(info.monotonic)
531 t1 = time.monotonic()
538 t2 = time.monotonic()
540 # monotonic must not be affected by system clock updates
566 'monotonic',
580 self.assertIsInstance(info.monotonic, bool)