Home
last modified time | relevance | path

Searched refs:JoinableQueue (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
D__init__.py220 def JoinableQueue(maxsize=0): function
224 from multiprocessing.queues import JoinableQueue
225 return JoinableQueue(maxsize)
Dqueues.py295 class JoinableQueue(Queue): class
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py105 def JoinableQueue(self, maxsize=0): member in BaseContext
107 from .queues import JoinableQueue
108 return JoinableQueue(maxsize, ctx=self.get_context())
Dqueues.py295 class JoinableQueue(Queue): class
/external/python/cpython3/Lib/multiprocessing/dummy/
D__init__.py126 JoinableQueue = Queue variable
/external/python/cpython2/Lib/multiprocessing/dummy/
D__init__.py153 JoinableQueue = Queue variable
/external/python/cpython2/Lib/lib2to3/
Drefactor.py713 self.queue = multiprocessing.JoinableQueue()
/external/python/cpython3/Lib/lib2to3/
Drefactor.py698 self.queue = multiprocessing.JoinableQueue()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a4.rst244 Removed deprecated asyncio JoinableQueue.
D3.5.0b1.rst617 unfinished tasks (this bug was introduced when JoinableQueue was merged with
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py1093 queue = self.JoinableQueue()
1217 for q in multiprocessing.Queue(), multiprocessing.JoinableQueue():
5605 JoinableQueue = staticmethod(multiprocessing.JoinableQueue) variable in ProcessesMixin
5623 JoinableQueue = property(operator.attrgetter('manager.JoinableQueue')) variable in ManagerMixin
5689 JoinableQueue = staticmethod(multiprocessing.dummy.JoinableQueue) variable in ThreadsMixin
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst509 …ssing.Queue`, :class:`multiprocessing.queues.SimpleQueue` and :class:`JoinableQueue` types are mul…
515 If you use :class:`JoinableQueue` then you **must** call
516 :meth:`JoinableQueue.task_done` for each task removed from the queue or else the
559 not used :meth:`JoinableQueue.cancel_join_thread
706 .. class:: JoinableQueue([maxsize])
708 :class:`JoinableQueue`, a :class:`~multiprocessing.Queue` subclass, is a queue which
/external/python/cpython3/Doc/whatsnew/
D3.5.rst818 * The ``JoinableQueue`` class was removed, in favor of the
2370 * The JoinableQueue class in the provisional :mod:`asyncio` module was
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py619 queue = self.JoinableQueue()
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst2261 If a multiprocessing.JoinableQueue.put() was preempted, it was possible to
/external/python/cpython3/Misc/
DHISTORY565 JoinableQueue was merged with Queue).