Lines Matching full:until
74 This method waits until the lock is *unlocked*, sets it to
109 :meth:`clear` method. The :meth:`~Event.wait` method blocks until the
128 # Spawn a Task to wait until 'event' is set.
135 # Wait until the waiter task is finished.
142 Wait until the event is set.
145 Otherwise block until another task calls :meth:`~Event.set`.
158 Tasks awaiting on :meth:`~Event.wait` will now block until the
214 This method waits until the underlying lock is *unlocked*,
250 Wait until notified.
255 This method releases the underlying lock, and then blocks until
262 Wait until a predicate becomes *true*.
279 that it is zero, it blocks, waiting until some task calls
315 until a :meth:`release` is called and return ``True``.
352 A barrier is a simple synchronization primitive that allows to block until
354 Tasks can wait on the :meth:`~Barrier.wait` method and would be blocked until