/external/python/cpython3/Lib/ |
D | queue.py | 9 from _queue import SimpleQueue 11 SimpleQueue = None variable 325 if SimpleQueue is None: 326 SimpleQueue = _PySimpleQueue variable
|
/external/python/cpython3/Doc/library/ |
D | queue.rst | 29 :abbr:`FIFO (first-in, first-out)` queue type, :class:`SimpleQueue`, whose 74 .. class:: SimpleQueue() 217 SimpleQueue Objects 220 :class:`SimpleQueue` objects provide the public methods described below. 222 .. method:: SimpleQueue.qsize() 228 .. method:: SimpleQueue.empty() 235 .. method:: SimpleQueue.put(item, block=True, timeout=None) 250 .. method:: SimpleQueue.put_nowait(item) 256 .. method:: SimpleQueue.get(block=True, timeout=None) 266 .. method:: SimpleQueue.get_nowait()
|
D | logging.handlers.rst | 999 :class:`~queue.SimpleQueue` instances for *queue*. 1062 use :class:`~queue.SimpleQueue` instances for *queue*.
|
D | multiprocessing.rst | 689 The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types 878 .. class:: SimpleQueue()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | context.py | 110 def SimpleQueue(self): member in BaseContext 112 from .queues import SimpleQueue 113 return SimpleQueue(ctx=self.get_context())
|
D | pool.py | 192 self._taskqueue = queue.SimpleQueue() 196 self._change_notifier = self._ctx.SimpleQueue() 343 self._inqueue = self._ctx.SimpleQueue() 344 self._outqueue = self._ctx.SimpleQueue() 930 self._inqueue = queue.SimpleQueue() 931 self._outqueue = queue.SimpleQueue()
|
D | queues.py | 338 class SimpleQueue(object): class
|
/external/pigweed/pw_rpc/py/pw_rpc/ |
D | callback_client.py | 196 responses: queue.SimpleQueue, argument 369 responses: queue.SimpleQueue = queue.SimpleQueue()
|
/external/python/cpython3/Lib/test/ |
D | test_genericalias.py | 32 from multiprocessing.queues import SimpleQueue as MPSimpleQueue 39 from queue import Queue, SimpleQueue 77 Queue, SimpleQueue,
|
D | test_queue.py | 608 self.type2test = self.queue.SimpleQueue 612 self.assertIs(self.type2test, self.queue.SimpleQueue) 613 self.assertIs(self.type2test, self.queue.SimpleQueue)
|
D | _test_multiprocessing.py | 5247 queue = multiprocessing.SimpleQueue() 5271 queue = multiprocessing.SimpleQueue() 5279 queue = multiprocessing.SimpleQueue()
|
/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 | 144 self._work_queue = queue.SimpleQueue()
|
D | process.py | 651 self._result_queue = mp_context.SimpleQueue()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0b1.rst | 564 Add a new :meth:`~multiprocessing.SimpleQueue.close` method to the 565 :class:`~multiprocessing.SimpleQueue` class to explicitly close the queue.
|
D | 3.7.0b1.rst | 406 Use queue.SimpleQueue() in places where it can be invoked from a weakref 683 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 | 479 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
|
D | 3.7.0a1.rst | 2635 Fix AttributeError when using SimpleQueue.empty() under *spawn* and
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.9.rst | 558 The :class:`multiprocessing.SimpleQueue` class has a new 559 :meth:`~multiprocessing.SimpleQueue.close` method to explicitly close the
|
D | 3.7.rst | 1231 The new :class:`~queue.SimpleQueue` class is an unbounded :abbr:`FIFO` queue.
|
/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/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
|