Home
last modified time | relevance | path

Searched refs:put_nowait (Results 1 - 11 of 11) sorted by relevance

/third_party/python/Lib/test/test_asyncio/
H A Dtest_queues.py34 q.put_nowait(0)
41 q.put_nowait(1)
53 q.put_nowait(1)
124 q.put_nowait(1)
157 loop.call_later(0.01, q.put_nowait, 1)
164 q.put_nowait(1)
248 q.put_nowait(1)
258 q.put_nowait(1)
259 q.put_nowait(2)
283 q.put_nowait(
[all...]
/third_party/python/Lib/asyncio/
H A Dqueues.py17 """Raised when the Queue.put_nowait() method is called on a full Queue."""
135 return self.put_nowait(item)
137 def put_nowait(self, item): member in Queue
166 # previous put_nowait call.
169 # We were woken up by put_nowait(), but can't take
H A Dtasks.py589 done.put_nowait(None) # Queue a dummy value for _wait_for_one().
596 done.put_nowait(f)
/third_party/python/Lib/test/
H A Dtest_queue.py222 q.put_nowait(1)
224 q.put_nowait(1)
238 q.put_nowait(4)
242 q.put_nowait(4)
511 q.put_nowait(3)
H A D_test_multiprocessing.py988 queue.put_nowait(6)
997 put_nowait = TimingWrapper(queue.put_nowait)
1005 self.assertRaises(pyqueue.Full, put_nowait, 7)
1006 self.assertTimingAlmostEqual(put_nowait.elapsed, 0)
/third_party/python/Lib/
H A Dqueue.py24 'Exception raised by Queue.put(block=0)/put_nowait().'
185 def put_nowait(self, item): member in Queue
298 def put_nowait(self, item): member in _PySimpleQueue
/third_party/node/deps/v8/tools/gcmole/
H A Dgcmole.py152 output_queue.put_nowait((filename, ret, stdout, stderr))
162 output_queue.put_nowait(success)
/third_party/python/Lib/multiprocessing/
H A Dqueues.py137 def put_nowait(self, obj): member in Queue
/third_party/python/Lib/logging/
H A Dhandlers.py1452 The base implementation uses put_nowait. You may want to override
1456 self.queue.put_nowait(record)
1594 The base implementation uses put_nowait. You may want to override this
1598 self.queue.put_nowait(self._sentinel)
/third_party/python/Lib/concurrent/futures/
H A Dprocess.py538 self.call_queue.put_nowait(None)
/third_party/node/tools/
H A Dtest.py110 self.parallel_queue.put_nowait(case)
112 self.sequential_queue.put_nowait(case)

Completed in 18 milliseconds