• Home
  • Raw
  • Download

Lines Matching full:until

128    (until the thread terminates, after which the value may be recycled by the OS).
282 the calling thread until the thread whose :meth:`~Thread.join` method is
388 Wait until the thread terminates. This blocks the calling thread until
390 normally or through an unhandled exception -- or until the optional
401 block until the thread terminates.
438 system-wide (until the thread terminates, after which the value
444 system-wide) from the time the thread is created until the thread
456 starts until just after the :meth:`~Thread.run` method terminates. The
493 :meth:`~Lock.acquire` blocks until a call to :meth:`~Lock.release` in another
513 lock, subsequent attempts to acquire it block, until it is released; any
526 block until the lock is unlocked, then set it to locked and return ``True``.
607 thread owns the lock, block until the lock is unlocked. Once the lock is
609 to one, and return. If more than one thread is blocked waiting until the lock
661 :meth:`~Condition.wait` method releases the lock, and then blocks until
678 particular change of state call :meth:`~Condition.wait` repeatedly until they
717 allows one or more threads to wait until they are notified by another thread.
738 Wait until notified or until a timeout occurs. If the calling thread has
742 This method releases the underlying lock, and then blocks until it is
744 condition variable in another thread, or until the optional timeout
767 Wait until a condition evaluates to true. *predicate* should be a
771 This utility method may call :meth:`wait` repeatedly until the predicate
772 is satisfied, or until a timeout occurs. The return value is
803 call until it can reacquire the lock. Since :meth:`notify` does not
829 finds that it is zero, it blocks, waiting until some other thread calls
840 blocks if necessary until it can return without making the counter negative.
858 * If the internal counter is zero on entry, block until awoken by a call to
935 method. The :meth:`~Event.wait` method blocks until the flag is true.
942 :meth:`clear` method. The :meth:`wait` method blocks until the flag is true.
963 :meth:`wait` will block until :meth:`.set` is called to set the internal
968 Block until the internal flag is true. If the internal flag is true on
969 entry, return immediately. Otherwise, block until another thread calls
970 :meth:`.set` to set the flag to true, or until the optional timeout occurs.
1032 the barrier by calling the :meth:`~Barrier.wait` method and will block until