Home
last modified time | relevance | path

Searched refs:run_until (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/test/test_asyncio/
Dtest_events.py415 test_utils.run_until(self.loop, lambda: len(bytes_read) >= 3)
417 test_utils.run_until(self.loop, lambda: len(bytes_read) >= 6)
478 test_utils.run_until(self.loop, lambda: caught)
813 test_utils.run_until(self.loop, lambda: proto.nbytes > 0)
881 test_utils.run_until(self.loop, lambda: proto.nbytes > 0)
943 test_utils.run_until(self.loop, lambda: proto.nbytes > 0)
977 test_utils.run_until(self.loop, lambda: proto.nbytes > 0)
1267 test_utils.run_until(self.loop, lambda: server.nbytes)
1269 test_utils.run_until(self.loop, lambda: client.nbytes)
1347 test_utils.run_until(self.loop, lambda: proto.nbytes >= 1)
[all …]
Dutils.py111 def run_until(loop, pred, timeout=support.SHORT_TIMEOUT): function