HomeSort by relevance Sort by last modified time
    Searched refs:active_children (Results 1 - 14 of 14) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SocketServer.py 511 active_children = None variable in class:ForkingMixIn
516 if self.active_children is None: return
517 while len(self.active_children) >= self.max_children:
526 if pid not in self.active_children: continue
527 self.active_children.remove(pid)
530 # to. There should be a way to put the active_children into a
534 for child in self.active_children:
541 self.active_children.remove(pid)
544 self.active_children))
559 if self.active_children is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SocketServer.py 511 active_children = None variable in class:ForkingMixIn
516 if self.active_children is None: return
517 while len(self.active_children) >= self.max_children:
526 if pid not in self.active_children: continue
527 self.active_children.remove(pid)
530 # to. There should be a way to put the active_children into a
534 for child in self.active_children:
541 self.active_children.remove(pid)
544 self.active_children))
559 if self.active_children is None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
util.py 42 from multiprocessing.process import current_process, active_children namespace
289 active_children=active_children,
303 # it's None, any call to ``active_children()`` will throw an
304 # AttributeError (active_children winds up trying to get
312 for p in active_children():
317 for p in active_children():
__init__.py 47 'Process', 'current_process', 'active_children', 'freeze_support',
64 from multiprocessing.process import Process, current_process, active_children namespace
process.py 35 __all__ = ['Process', 'current_process', 'active_children']
65 def active_children(): function
managers.py 50 from multiprocessing import Process, current_process, active_children, Pool, util, connection namespace
357 for p in active_children():
361 for p in active_children():
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
util.py 42 from multiprocessing.process import current_process, active_children namespace
289 active_children=active_children,
303 # it's None, any call to ``active_children()`` will throw an
304 # AttributeError (active_children winds up trying to get
312 for p in active_children():
317 for p in active_children():
__init__.py 47 'Process', 'current_process', 'active_children', 'freeze_support',
64 from multiprocessing.process import Process, current_process, active_children namespace
process.py 35 __all__ = ['Process', 'current_process', 'active_children']
65 def active_children(): function
managers.py 50 from multiprocessing import Process, current_process, active_children, Pool, util, connection namespace
357 for p in active_children():
361 for p in active_children():
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 36 'Process', 'current_process', 'active_children', 'freeze_support',
99 def active_children(): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 36 'Process', 'current_process', 'active_children', 'freeze_support',
99 def active_children(): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 223 self.assertNotIn(p, self.active_children())
224 self.assertTrue(type(self.active_children()) is list)
231 self.assertIn(p, self.active_children())
244 self.assertNotIn(p, self.active_children())
259 self.assertIn(p, self.active_children())
269 self.assertNotIn(p, self.active_children())
285 self.assertEqual(type(self.active_children()), list)
288 self.assertNotIn(p, self.active_children())
292 self.assertIn(p, self.active_children())
295 self.assertNotIn(p, self.active_children())
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 223 self.assertNotIn(p, self.active_children())
224 self.assertTrue(type(self.active_children()) is list)
231 self.assertIn(p, self.active_children())
244 self.assertNotIn(p, self.active_children())
259 self.assertIn(p, self.active_children())
269 self.assertNotIn(p, self.active_children())
285 self.assertEqual(type(self.active_children()), list)
288 self.assertNotIn(p, self.active_children())
292 self.assertIn(p, self.active_children())
295 self.assertNotIn(p, self.active_children())
    [all...]

Completed in 266 milliseconds