Lines Matching +full:fuzz +full:- +full:seconds
76 self.assertRaises(ValueError, self.sock.settimeout, -1)
77 self.assertRaises(ValueError, self.sock.settimeout, -1)
78 self.assertRaises(ValueError, self.sock.settimeout, -1.0)
109 # When fuzz was at 1.0, I (tim) routinely saw bogus failures on Win2K
112 fuzz = 2.0 variable in TimeoutTestCase
126 within `timeout` + self.fuzz seconds.
135 delta = time.monotonic() - t1
140 self.assertLess(delta, timeout + self.fuzz)
141 self.assertGreater(delta, timeout - 1.0)
154 @unittest.skipIf(True, 'need to replace these hosts; see bpo-35518')
219 "{}:{} within {} seconds, so we're unable to test connect "
231 # All that hard work just to test if connect times out in 0.001s ;-)