Lines Matching +full:fuzz +full:- +full:seconds
73 self.assertRaises(ValueError, self.sock.settimeout, -1)
74 self.assertRaises(ValueError, self.sock.settimeout, -1)
75 self.assertRaises(ValueError, self.sock.settimeout, -1.0)
106 # When fuzz was at 1.0, I (tim) routinely saw bogus failures on Win2K
109 fuzz = 2.0 variable in TimeoutTestCase
123 within `timeout` + self.fuzz seconds.
132 delta = time.monotonic() - t1
137 self.assertLess(delta, timeout + self.fuzz)
138 self.assertGreater(delta, timeout - 1.0)
151 @unittest.skipIf(True, 'need to replace these hosts; see bpo-35518')
216 "{}:{} within {} seconds, so we're unable to test connect "
228 # All that hard work just to test if connect times out in 0.001s ;-)