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/ |
D | multiprocessing_shim.py | 64 def daemon(self, daemonic): argument 65 self._proc.daemon = daemonic
|
/external/python/cpython2/Lib/multiprocessing/ |
D | process.py | 178 def daemon(self, daemonic): argument 183 self._daemonic = daemonic
|
/external/python/cpython3/Lib/multiprocessing/ |
D | process.py | 154 def daemon(self, daemonic): argument 159 self._config['daemon'] = daemonic
|
/external/python/cpython3/Lib/ |
D | threading.py | 1137 def daemon(self, daemonic): argument 1142 self._daemonic = daemonic 1147 def setDaemon(self, daemonic): argument 1148 self.daemon = daemonic
|
/external/python/cpython2/Lib/ |
D | threading.py | 1016 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/ |
D | tensorflow.train.-looper-thread.pbtxt | 55 argspec: "args=[\'self\', \'daemonic\'], varargs=None, keywords=None, defaults=None"
|
/external/python/cpython3/Doc/library/ |
D | threading.rst | 55 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
|
D | weakref.rst | 570 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
|
D | multiprocessing.rst | 533 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/ |
D | threading.rst | 80 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
|
D | multiprocessing.rst | 414 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/ |
D | HISTORY | 10039 default behaviour of inheriting the daemonic property from the current
|