Lines Matching full:executor
72 executor = executor_reference()
73 if executor is not None:
74 executor._initializer_failed()
85 executor = executor_reference()
86 if executor is not None:
87 executor._idle_semaphore.release()
88 del executor
91 executor = executor_reference()
94 # - The executor that owns the worker has been collected OR
95 # - The executor that owns the worker has been shutdown.
96 if _shutdown or executor is None or executor._shutdown:
97 # Flag the executor as shutting down as early as possible if it
99 if executor is not None:
100 executor._shutdown = True
104 del executor
115 class ThreadPoolExecutor(_base.Executor):
190 submit.__text_signature__ = _base.Executor.submit.__text_signature__
191 submit.__doc__ = _base.Executor.submit.__doc__
198 # When the executor gets lost, the weakref callback will wake up
237 shutdown.__doc__ = _base.Executor.shutdown.__doc__