Home
last modified time | relevance | path

Searched refs:put_nowait (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Lib/test/test_asyncio/
Dtest_queues.py51 q.put_nowait(0)
57 q.put_nowait(1)
68 q.put_nowait(1)
80 q.put_nowait(1)
90 q.put_nowait(1)
96 q.put_nowait(i)
147 q.put_nowait(1)
157 q.put_nowait(1)
188 loop.call_later(0.01, q.put_nowait, 1)
202 q.put_nowait(1)
[all …]
/third_party/python/Lib/unittest/
Dasync_case.py78 self._asyncioCallsQueue.put_nowait((fut, ret))
86 self._asyncioCallsQueue.put_nowait((fut, ret))
124 self._asyncioCallsQueue.put_nowait(None)
/third_party/python/Lib/test/
Dtest_queue.py220 q.put_nowait(1)
222 q.put_nowait(1)
236 q.put_nowait(4)
240 q.put_nowait(4)
508 q.put_nowait(3)
D_test_multiprocessing.py938 queue.put_nowait(6)
947 put_nowait = TimingWrapper(queue.put_nowait)
955 self.assertRaises(pyqueue.Full, put_nowait, 7)
956 self.assertTimingAlmostEqual(put_nowait.elapsed, 0)
/third_party/python/Lib/asyncio/
Dqueues.py136 return self.put_nowait(item)
138 def put_nowait(self, item): member in Queue
Dtasks.py555 done.put_nowait(None) # Queue a dummy value for _wait_for_one().
562 done.put_nowait(f)
/third_party/python/Lib/
Dqueue.py185 def put_nowait(self, item): member in Queue
298 def put_nowait(self, item): member in _PySimpleQueue
/third_party/python/Doc/library/
Dasyncio-queue.rst82 .. method:: put_nowait(item)
148 Exception raised when the :meth:`~Queue.put_nowait` method is called
188 queue.put_nowait(sleep_for)
Dqueue.rst92 :meth:`~Queue.put_nowait`) is called
139 .. method:: Queue.put_nowait(item)
250 .. method:: SimpleQueue.put_nowait(item)
253 :meth:`Queue.put_nowait`.
Dlogging.handlers.rst1046 Enqueues the record on the queue using ``put_nowait()``; you may
1134 implementation uses ``put_nowait()``. You may want to override this
Dmultiprocessing.rst813 .. method:: put_nowait(obj)
/third_party/node/deps/v8/tools/gcmole/
Dgcmole.py152 output_queue.put_nowait((filename, ret, stdout, stderr))
162 output_queue.put_nowait(success)
/third_party/python/Lib/multiprocessing/
Dqueues.py137 def put_nowait(self, obj): member in Queue
/third_party/python/Lib/logging/
Dhandlers.py1423 self.queue.put_nowait(record)
1561 self.queue.put_nowait(self._sentinel)
/third_party/python/Lib/concurrent/futures/
Dprocess.py503 self.call_queue.put_nowait(None)
/third_party/node/tools/
Dtest.py110 self.parallel_queue.put_nowait(case)
112 self.sequential_queue.put_nowait(case)
/third_party/python/Doc/howto/
Dlogging-cookbook.rst855 queue.put_nowait(None)
/third_party/python/Misc/
DHISTORY20243 - Bug #788520. Queue.{get, get_nowait, put, put_nowait} have new
28136 - Some improvements to the Queue module, including a put_nowait()