Lines Matching full:executor
72 executor = executor_reference()
73 if executor is not None:
74 executor._initializer_failed()
84 executor = executor_reference()
87 # - The executor that owns the worker has been collected OR
88 # - The executor that owns the worker has been shutdown.
89 if _shutdown or executor is None or executor._shutdown:
90 # Flag the executor as shutting down as early as possible if it
92 if executor is not None:
93 executor._shutdown = True
97 del executor
108 class ThreadPoolExecutor(_base.Executor):
162 submit.__doc__ = _base.Executor.submit.__doc__
165 # When the executor gets lost, the weakref callback will wake up
205 shutdown.__doc__ = _base.Executor.shutdown.__doc__