Home
last modified time | relevance | path

Searched refs:SimpleQueue (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython3/Lib/
Dqueue.py8 from _queue import SimpleQueue
10 SimpleQueue = None variable
320 if SimpleQueue is None:
321 SimpleQueue = _PySimpleQueue variable
/external/python/cpython3/Doc/library/
Dqueue.rst31 :abbr:`FIFO (first-in, first-out)` queue type, :class:`SimpleQueue`, whose
76 .. class:: SimpleQueue()
218 SimpleQueue Objects
221 :class:`SimpleQueue` objects provide the public methods described below.
223 .. method:: SimpleQueue.qsize()
229 .. method:: SimpleQueue.empty()
236 .. method:: SimpleQueue.put(item, block=True, timeout=None)
251 .. method:: SimpleQueue.put_nowait(item)
257 .. method:: SimpleQueue.get(block=True, timeout=None)
267 .. method:: SimpleQueue.get_nowait()
Dmultiprocessing.rst676 The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types
857 .. class:: SimpleQueue()
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py109 def SimpleQueue(self): member in BaseContext
111 from .queues import SimpleQueue
112 return SimpleQueue(ctx=self.get_context())
Dpool.py159 self._taskqueue = queue.SimpleQueue()
251 self._inqueue = self._ctx.SimpleQueue()
252 self._outqueue = self._ctx.SimpleQueue()
805 self._inqueue = queue.SimpleQueue()
806 self._outqueue = queue.SimpleQueue()
Dqueues.py328 class SimpleQueue(object): class
/external/python/cpython2/Lib/multiprocessing/
Dpool.py235 from .queues import SimpleQueue
236 self._inqueue = SimpleQueue()
237 self._outqueue = SimpleQueue()
Dqueues.py348 class SimpleQueue(object): class
/external/python/cpython3/Lib/concurrent/futures/
Dthread.py135 self._work_queue = queue.SimpleQueue()
Dprocess.py547 self._result_queue = mp_context.SimpleQueue()
/external/python/cpython3/Lib/test/
Dtest_queue.py553 self.type2test = _queue.SimpleQueue
557 self.assertIs(self.type2test, queue.SimpleQueue)
D_test_multiprocessing.py4560 queue = multiprocessing.SimpleQueue()
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b1.rst407 Use queue.SimpleQueue() in places where it can be invoked from a weakref
685 Add a queue.SimpleQueue class, an unbounded FIFO queue with a reentrant C
D3.6.2rc1.rst390 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
D3.5.4rc1.rst480 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
D3.7.0a1.rst2640 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst509 The :class:`~multiprocessing.Queue`, :class:`multiprocessing.queues.SimpleQueue` and :class:`Joinab…
689 .. class:: multiprocessing.queues.SimpleQueue()
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1210 The new :class:`~queue.SimpleQueue` class is an unbounded :abbr:`FIFO` queue.
/external/python/cpython3/Misc/
DHISTORY5165 - Issue #17025: multiprocessing: Reduce Queue and SimpleQueue contention.
9798 - Issue #11815: Use a light-weight SimpleQueue for the result queue in