/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_queues.py | 52 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/ |
D | mbim_channel_unittest.py | 266 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)
|
D | mbim_channel.py | 156 self._request_queue.put_nowait(fragment) 180 self._request_queue.put_nowait(fragment)
|
D | mbim_channel_endpoint.py | 116 self._response_queue.put_nowait(response)
|
/external/python/cpython3/Lib/unittest/ |
D | async_case.py | 79 self._asyncioCallsQueue.put_nowait((fut, ret)) 87 self._asyncioCallsQueue.put_nowait((fut, ret)) 125 self._asyncioCallsQueue.put_nowait(None)
|
/external/python/cpython3/Lib/asyncio/ |
D | queues.py | 143 return self.put_nowait(item) 145 def put_nowait(self, item): member in Queue
|
D | tasks.py | 595 done.put_nowait(None) # Queue a dummy value for _wait_for_one(). 602 done.put_nowait(f)
|
/external/python/cpython3/Lib/test/ |
D | test_queue.py | 217 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.py | 933 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/ |
D | queue.py | 185 def put_nowait(self, item): member in Queue 298 def put_nowait(self, item): member in _PySimpleQueue
|
/external/python/cpython3/Doc/library/ |
D | asyncio-queue.rst | 85 .. method:: put_nowait(item) 144 Exception raised when the :meth:`~Queue.put_nowait` method is called 184 queue.put_nowait(sleep_for)
|
D | queue.rst | 92 :meth:`~Queue.put_nowait`) is called 139 .. method:: Queue.put_nowait(item) 250 .. method:: SimpleQueue.put_nowait(item) 253 :meth:`Queue.put_nowait`.
|
D | logging.handlers.rst | 1026 Enqueues the record on the queue using ``put_nowait()``; you may 1114 implementation uses ``put_nowait()``. You may want to override this
|
D | multiprocessing.rst | 813 .. method:: put_nowait(obj)
|
/external/python/cpython2/Lib/ |
D | Queue.py | 142 def put_nowait(self, item): member in Queue
|
/external/python/cpython2/Doc/library/ |
D | queue.rst | 71 :meth:`~Queue.put_nowait`) is called 127 .. method:: Queue.put_nowait(item)
|
D | multiprocessing.rst | 627 .. method:: put_nowait(obj)
|
/external/python/cpython2/Lib/multiprocessing/ |
D | queues.py | 154 def put_nowait(self, obj): member in Queue
|
/external/python/cpython3/Lib/multiprocessing/ |
D | queues.py | 137 def put_nowait(self, obj): member in Queue
|
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 1393 self.queue.put_nowait(record) 1531 self.queue.put_nowait(self._sentinel)
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 463 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/ |
D | process.py | 503 self.call_queue.put_nowait(None)
|
/external/python/cpython3/Doc/howto/ |
D | logging-cookbook.rst | 844 queue.put_nowait(None)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 2859 - 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/ |
D | HISTORY | 20243 - Bug #788520. Queue.{get, get_nowait, put, put_nowait} have new 28136 - Some improvements to the Queue module, including a put_nowait()
|