Searched refs:active_children (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Lib/ |
H A D | socketserver.py | 555 active_children = None variable in .ForkingMixIn 562 if self.active_children is None: 571 while len(self.active_children) >= self.max_children: 574 self.active_children.discard(pid) 577 self.active_children.clear() 582 for pid in self.active_children.copy(): 588 self.active_children.discard(pid) 591 self.active_children.discard(pid) 614 if self.active_children is None: 615 self.active_children [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | util.py | 321 active_children=process.active_children, 338 # it's None, any call to ``active_children()`` will raise 339 # an AttributeError (active_children winds up trying to 350 for p in active_children(): 355 for p in active_children():
|
H A D | context.py | 39 active_children = staticmethod(process.active_children) variable in BaseContext
|
H A D | process.py | 10 __all__ = ['BaseProcess', 'current_process', 'active_children', 43 def active_children(): function
|
/third_party/python/Lib/multiprocessing/dummy/ |
H A D | __init__.py | 11 'Process', 'current_process', 'active_children', 'freeze_support', 68 def active_children(): function
|
/third_party/python/Lib/test/ |
H A D | _test_multiprocessing.py | 396 self.assertNotIn(p, self.active_children()) 397 self.assertTrue(type(self.active_children()) is list) 404 self.assertIn(p, self.active_children()) 417 self.assertNotIn(p, self.active_children()) 459 self.assertIn(p, self.active_children()) 495 self.assertNotIn(p, self.active_children()) 520 self.assertEqual(type(self.active_children()), list) 523 self.assertNotIn(p, self.active_children()) 527 self.assertIn(p, self.active_children()) 530 self.assertNotIn(p, self.active_children()) 5848 active_children = staticmethod(multiprocessing.active_children) global() variable in ProcessesMixin 5933 active_children = staticmethod(multiprocessing.dummy.active_children) global() variable in ThreadsMixin [all...] |
H A D | test_socketserver.py | 159 self.assertFalse(server.active_children)
|
Completed in 9 milliseconds