Home
last modified time | relevance | path

Searched refs:daemonic (Results 1 – 12 of 12) sorted by relevance

/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Dmultiprocessing_shim.py64 def daemon(self, daemonic): argument
65 self._proc.daemon = daemonic
/external/python/cpython2/Lib/multiprocessing/
Dprocess.py178 def daemon(self, daemonic): argument
183 self._daemonic = daemonic
/external/python/cpython3/Lib/multiprocessing/
Dprocess.py154 def daemon(self, daemonic): argument
159 self._config['daemon'] = daemonic
/external/python/cpython3/Lib/
Dthreading.py1137 def daemon(self, daemonic): argument
1142 self._daemonic = daemonic
1147 def setDaemon(self, daemonic): argument
1148 self.daemon = daemonic
/external/python/cpython2/Lib/
Dthreading.py1016 def daemon(self, daemonic): argument
1021 self.__daemonic = daemonic
1026 def setDaemon(self, daemonic): argument
1027 self.daemon = daemonic
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.train.-looper-thread.pbtxt55 argspec: "args=[\'self\', \'daemonic\'], varargs=None, keywords=None, defaults=None"
/external/python/cpython3/Doc/library/
Dthreading.rst55 includes daemonic threads, dummy thread objects created by
190 If you want your threads to stop gracefully, make them non-daemonic and
200 daemonic, and cannot be :meth:`~Thread.join`\ ed. They are never deleted,
224 If not ``None``, *daemon* explicitly sets whether the thread is daemonic.
225 If ``None`` (the default), the daemonic property is inherited from the
Dweakref.rst570 If you create a finalizer object in a daemonic thread just as the program
572 does not get called at exit. However, in a daemonic thread
Dmultiprocessing.rst533 When a process exits, it attempts to terminate all of its daemonic child
536 Note that a daemonic process is not allowed to create child processes.
537 Otherwise a daemonic process would leave its children orphaned if it gets
540 terminated (and not joined) if non-daemonic processes have exited.
710 consumed. Similarly, if the child process is non-daemonic then the parent
711 process may hang on exit when it tries to join all its non-daemonic children.
2661 put items on the queue will terminate. Remember also that non-daemonic
/external/python/cpython2/Doc/library/
Dthreading.rst80 includes daemonic threads, dummy thread objects created by
267 If you want your threads to stop gracefully, make them non-daemonic and
277 daemonic, and cannot be :meth:`join`\ ed. They are never deleted, since it is
Dmultiprocessing.rst414 When a process exits, it attempts to terminate all of its daemonic child
417 Note that a daemonic process is not allowed to create child processes.
418 Otherwise a daemonic process would leave its children orphaned if it gets
421 terminated (and not joined) if non-daemonic processes have exited.
565 consumed. Similarly, if the child process is non-daemonic then the parent
566 process may hang on exit when it tries to join all its non-daemonic children.
2315 put items on the queue will terminate. Remember also that non-daemonic
/external/python/cpython3/Misc/
DHISTORY10039 default behaviour of inheriting the daemonic property from the current