Lines Matching refs:until
176 the calling thread until the thread whose :meth:`~Thread.join` method is
258 Wait until the thread terminates. This blocks the calling thread until
260 normally or through an unhandled exception -- or until the optional
271 block until the thread terminates.
305 starts until just after the :meth:`~Thread.run` method terminates. The
352 :meth:`~Lock.acquire` blocks until a call to :meth:`~Lock.release` in another
372 lock, subsequent attempts to acquire it block, until it is released; any
385 block until the lock is unlocked, then set it to locked and return ``True``.
461 thread owns the lock, block until the lock is unlocked. Once the lock is
463 to one, and return. If more than one thread is blocked waiting until the lock
515 :meth:`~Condition.wait` method releases the lock, and then blocks until
532 particular change of state call :meth:`~Condition.wait` repeatedly until they
571 allows one or more threads to wait until they are notified by another thread.
592 Wait until notified or until a timeout occurs. If the calling thread has
596 This method releases the underlying lock, and then blocks until it is
598 condition variable in another thread, or until the optional timeout
621 Wait until a condition evaluates to true. *predicate* should be a
625 This utility method may call :meth:`wait` repeatedly until the predicate
626 is satisfied, or until a timeout occurs. The return value is
657 call until it can reacquire the lock. Since :meth:`notify` does not
681 finds that it is zero, it blocks, waiting until some other thread calls
692 blocks if necessary until it can return without making the counter negative.
710 * If the internal counter is zero on entry, block until awoken by a call to
784 method. The :meth:`~Event.wait` method blocks until the flag is true.
791 :meth:`clear` method. The :meth:`wait` method blocks until the flag is true.
810 :meth:`wait` will block until :meth:`.set` is called to set the internal
815 Block until the internal flag is true. If the internal flag is true on
816 entry, return immediately. Otherwise, block until another thread calls
817 :meth:`.set` to set the flag to true, or until the optional timeout occurs.
879 the barrier by calling the :meth:`~Barrier.wait` method and will block until