Searched refs:SimpleQueue (Results 1 – 19 of 19) sorted by relevance
/external/python/cpython3/Lib/ |
D | queue.py | 8 from _queue import SimpleQueue 10 SimpleQueue = None variable 320 if SimpleQueue is None: 321 SimpleQueue = _PySimpleQueue variable
|
/external/python/cpython3/Doc/library/ |
D | queue.rst | 31 :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()
|
D | multiprocessing.rst | 676 The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types 857 .. class:: SimpleQueue()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | context.py | 109 def SimpleQueue(self): member in BaseContext 111 from .queues import SimpleQueue 112 return SimpleQueue(ctx=self.get_context())
|
D | pool.py | 159 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()
|
D | queues.py | 328 class SimpleQueue(object): class
|
/external/python/cpython2/Lib/multiprocessing/ |
D | pool.py | 235 from .queues import SimpleQueue 236 self._inqueue = SimpleQueue() 237 self._outqueue = SimpleQueue()
|
D | queues.py | 348 class SimpleQueue(object): class
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | thread.py | 135 self._work_queue = queue.SimpleQueue()
|
D | process.py | 547 self._result_queue = mp_context.SimpleQueue()
|
/external/python/cpython3/Lib/test/ |
D | test_queue.py | 553 self.type2test = _queue.SimpleQueue 557 self.assertIs(self.type2test, queue.SimpleQueue)
|
D | _test_multiprocessing.py | 4560 queue = multiprocessing.SimpleQueue()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b1.rst | 407 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
|
D | 3.6.2rc1.rst | 390 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
|
D | 3.5.4rc1.rst | 480 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
|
D | 3.7.0a1.rst | 2640 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 509 The :class:`~multiprocessing.Queue`, :class:`multiprocessing.queues.SimpleQueue` and :class:`Joinab… 689 .. class:: multiprocessing.queues.SimpleQueue()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 1210 The new :class:`~queue.SimpleQueue` class is an unbounded :abbr:`FIFO` queue.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 5165 - Issue #17025: multiprocessing: Reduce Queue and SimpleQueue contention. 9798 - Issue #11815: Use a light-weight SimpleQueue for the result queue in
|