Home
last modified time | relevance | path

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

/third_party/python/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.py294 class JoinableQueue(Queue): class
/third_party/python/Lib/multiprocessing/dummy/
D__init__.py126 JoinableQueue = Queue variable
/third_party/python/Lib/lib2to3/
Drefactor.py698 self.queue = multiprocessing.JoinableQueue()
/third_party/python/Lib/test/
D_test_multiprocessing.py1148 queue = self.JoinableQueue()
1272 for q in multiprocessing.Queue(), multiprocessing.JoinableQueue():
5853 JoinableQueue = staticmethod(multiprocessing.JoinableQueue) variable in ProcessesMixin
5871 JoinableQueue = property(operator.attrgetter('manager.JoinableQueue')) variable in ManagerMixin
5937 JoinableQueue = staticmethod(multiprocessing.dummy.JoinableQueue) variable in ThreadsMixin
/third_party/python/Doc/library/
Dmultiprocessing.rst722 The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types
729 If you use :class:`JoinableQueue` then you **must** call
730 :meth:`JoinableQueue.task_done` for each task removed from the queue or else the
773 not used :meth:`JoinableQueue.cancel_join_thread
938 .. class:: JoinableQueue([maxsize])
940 :class:`JoinableQueue`, a :class:`Queue` subclass, is a queue which
/third_party/python/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
/third_party/python/Misc/
DNEWS34484 unfinished tasks (this bug was introduced when JoinableQueue was merged
34650 - bpo-23464: Removed deprecated asyncio JoinableQueue.
DHISTORY565 JoinableQueue was merged with Queue).