Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/test_asyncio/
Dtest_queues.py52 q.put_nowait(0)
59 q.put_nowait(1)
71 q.put_nowait(1)
99 q.put_nowait(1)
111 q.put_nowait(1)
118 q.put_nowait(i)
171 q.put_nowait(1)
182 q.put_nowait(1)
214 loop.call_later(0.01, q.put_nowait, 1)
229 q.put_nowait(1)
[all …]
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_channel_unittest.py266 self._response_queue.put_nowait(notification_1)
270 self._response_queue.put_nowait(response)).AndReturn(True)
292 self._response_queue.put_nowait(response)
308 self._mock_request_queue.put_nowait(request)
310 self._mock_request_queue.put_nowait(last_request).WithSideEffects(
313 self._mock_request_queue.put_nowait(last_request)
Dmbim_channel.py156 self._request_queue.put_nowait(fragment)
180 self._request_queue.put_nowait(fragment)
Dmbim_channel_endpoint.py116 self._response_queue.put_nowait(response)
/external/python/cpython3/Lib/unittest/
Dasync_case.py79 self._asyncioCallsQueue.put_nowait((fut, ret))
87 self._asyncioCallsQueue.put_nowait((fut, ret))
125 self._asyncioCallsQueue.put_nowait(None)
/external/python/cpython3/Lib/asyncio/
Dqueues.py143 return self.put_nowait(item)
145 def put_nowait(self, item): member in Queue
Dtasks.py595 done.put_nowait(None) # Queue a dummy value for _wait_for_one().
602 done.put_nowait(f)
/external/python/cpython3/Lib/test/
Dtest_queue.py217 q.put_nowait(1)
219 q.put_nowait(1)
233 q.put_nowait(4)
237 q.put_nowait(4)
505 q.put_nowait(3)
D_test_multiprocessing.py933 queue.put_nowait(6)
942 put_nowait = TimingWrapper(queue.put_nowait)
950 self.assertRaises(pyqueue.Full, put_nowait, 7)
951 self.assertTimingAlmostEqual(put_nowait.elapsed, 0)
/external/python/cpython3/Lib/
Dqueue.py185 def put_nowait(self, item): member in Queue
298 def put_nowait(self, item): member in _PySimpleQueue
/external/python/cpython3/Doc/library/
Dasyncio-queue.rst85 .. method:: put_nowait(item)
144 Exception raised when the :meth:`~Queue.put_nowait` method is called
184 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.rst1026 Enqueues the record on the queue using ``put_nowait()``; you may
1114 implementation uses ``put_nowait()``. You may want to override this
Dmultiprocessing.rst813 .. method:: put_nowait(obj)
/external/python/cpython2/Lib/
DQueue.py142 def put_nowait(self, item): member in Queue
/external/python/cpython2/Doc/library/
Dqueue.rst71 :meth:`~Queue.put_nowait`) is called
127 .. method:: Queue.put_nowait(item)
Dmultiprocessing.rst627 .. method:: put_nowait(obj)
/external/python/cpython2/Lib/multiprocessing/
Dqueues.py154 def put_nowait(self, obj): member in Queue
/external/python/cpython3/Lib/multiprocessing/
Dqueues.py137 def put_nowait(self, obj): member in Queue
/external/python/cpython3/Lib/logging/
Dhandlers.py1393 self.queue.put_nowait(record)
1531 self.queue.put_nowait(self._sentinel)
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py463 queue.put_nowait(6)
472 put_nowait = TimingWrapper(queue.put_nowait)
480 self.assertRaises(Queue.Full, put_nowait, 7)
481 self.assertTimingAlmostEqual(put_nowait.elapsed, 0)
/external/python/cpython3/Lib/concurrent/futures/
Dprocess.py503 self.call_queue.put_nowait(None)
/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst844 queue.put_nowait(None)
/external/python/cpython2/Misc/
DHISTORY2859 - Bug #788520. Queue.{get, get_nowait, put, put_nowait} have new
10757 - Some improvements to the Queue module, including a put_nowait()
/external/python/cpython3/Misc/
DHISTORY20243 - Bug #788520. Queue.{get, get_nowait, put, put_nowait} have new
28136 - Some improvements to the Queue module, including a put_nowait()