Home
last modified time | relevance | path

Searched refs:JoinableQueue (Results 1 – 10 of 10) 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.py295 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.py1098 queue = self.JoinableQueue()
1222 for q in multiprocessing.Queue(), multiprocessing.JoinableQueue():
5742 JoinableQueue = staticmethod(multiprocessing.JoinableQueue) variable in ProcessesMixin
5760 JoinableQueue = property(operator.attrgetter('manager.JoinableQueue')) variable in ManagerMixin
5826 JoinableQueue = staticmethod(multiprocessing.dummy.JoinableQueue) variable in ThreadsMixin
/third_party/python/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
/third_party/python/Doc/library/
Dmultiprocessing.rst689 The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types
696 If you use :class:`JoinableQueue` then you **must** call
697 :meth:`JoinableQueue.task_done` for each task removed from the queue or else the
740 not used :meth:`JoinableQueue.cancel_join_thread
905 .. class:: JoinableQueue([maxsize])
907 :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/
DHISTORY565 JoinableQueue was merged with Queue).