Lines Matching refs:put
101 q.put(111)
102 q.put(333)
103 q.put(222)
111 q.put(i)
116 q.put(last)
121 q.put(full, block=0)
126 q.put(full, timeout=0.01)
131 self.do_blocking_test(q.put, (full,), q.get, ())
132 self.do_blocking_test(q.put, (full, True, 10), q.get, ())
148 self.do_blocking_test(q.get, (), q.put, ('empty',))
149 self.do_blocking_test(q.get, (True, 10), q.put, ('empty',))
170 q.put(i)
175 q.put(-1) # instruct the threads to close
213 q.put(1, timeout=-1)
232 q.put(1)
233 q.put(2)
234 q.put(3)
322 q.put(i)
326 q.put("oops", block=0)
332 q.put("oops", timeout=0.1)
336 q.put("last")
341 self.do_blocking_test(q.put, ("full",), q.get, ())
347 q.put("last")
351 self.do_exceptional_blocking_test(q.put, ("full", True, 10), q.get, (),
358 q.put("last")
362 q.put("last")
365 self.do_blocking_test(q.put, ("full",), q.get, ())
370 q.put("first")
389 self.do_exceptional_blocking_test(q.get, (), q.put, ('empty',),
428 q.put(sentinel)
430 q.put(val)
504 q.put(1)
507 q.put(2)
509 q.put(4)
538 q.put(1)
591 q.put(C())
635 q.put(next(gen))
639 q.put(next(gen))