Lines Matching defs:wait
163 The wait() method blocks until the flag is true. The flag is initially
184 become true are awakened. Coroutine that call wait() once the flag is
196 wait() will block until set() is called to set the internal flag
200 async def wait(self):
223 allows one or more coroutines to wait until they are notified by another
248 async def wait(self):
260 raise RuntimeError('cannot wait on un-acquired lock')
273 # Must reacquire lock even if wait is cancelled
294 await self.wait()
307 wait() call until it can reacquire the lock. Since notify() does
451 points. Tasks block on 'wait()' and are simultaneously awoken once they
474 # wait for the barrier reaches the parties number
476 return await self.wait()
481 async def wait(self):
508 # It is draining or resetting, wait until done
532 # wait for end of filling
566 attempting to 'wait()' will have BrokenBarrierError raised.