Home
last modified time | relevance | path

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

/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.py314 class JoinableQueue(Queue): class
/external/python/cpython3/Lib/multiprocessing/dummy/
D__init__.py126 JoinableQueue = Queue variable
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py1218 queue = self.JoinableQueue()
1346 for q in multiprocessing.Queue(), multiprocessing.JoinableQueue():
1351 for q in multiprocessing.Queue(), multiprocessing.JoinableQueue():
1359 for q in multiprocessing.Queue(), multiprocessing.JoinableQueue():
6496 JoinableQueue = staticmethod(multiprocessing.JoinableQueue) variable in ProcessesMixin
6514 JoinableQueue = property(operator.attrgetter('manager.JoinableQueue')) variable in ManagerMixin
6579 JoinableQueue = staticmethod(multiprocessing.dummy.JoinableQueue) variable in ThreadsMixin
Dtest_genericalias.py35 from multiprocessing.queues import JoinableQueue as MPJoinableQueue
Dtest_logging.py4068 q3 = MM().JoinableQueue() # a joinable proxy queue
/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/Doc/library/
Dmultiprocessing.rst739 The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types
746 If you use :class:`JoinableQueue` then you **must** call
747 :meth:`JoinableQueue.task_done` for each task removed from the queue or else the
795 not used :meth:`JoinableQueue.cancel_join_thread
966 .. class:: JoinableQueue([maxsize])
968 :class:`JoinableQueue`, a :class:`Queue` subclass, is a queue which
/external/python/cpython3/Doc/whatsnew/
D3.5.rst818 * The ``JoinableQueue`` class was removed, in favor of the
2371 * The JoinableQueue class in the provisional :mod:`asyncio` module was
/external/python/cpython3/Misc/
DHISTORY565 JoinableQueue was merged with Queue).