Lines Matching defs:cancelled
20 # The future was cancelled by the user...
37 CANCELLED: "cancelled",
38 CANCELLED_AND_NOTIFIED: "cancelled",
50 """The Future was cancelled."""
210 cancelled). If any given Futures are duplicated, they will be returned
275 cancelled.
279 ALL_COMPLETED - Return when all futures finish or are cancelled.
283 futures that completed (is finished or cancelled) before the wait
297 if not f.cancelled() and f.exception() is not None):
367 Returns True if the future was cancelled, False otherwise. A future
368 cannot be cancelled if it is running or has already completed.
383 def cancelled(self):
384 """Return True if the future was cancelled."""
394 """Return True if the future was cancelled or finished executing."""
413 argument when the future completes or is cancelled. The callable
416 cancelled then the callable will be called immediately. These
439 CancelledError: If the future was cancelled.
476 CancelledError: If the future was cancelled.
502 If the future has been cancelled (cancel() was called and returned
506 If the future was not cancelled then it is put in the running state
514 False if the Future was cancelled, True otherwise.
639 cancelled.