OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testing_queue
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py
128
testing_queue
= Queue.Queue(1)
129
_thread.start_new_thread(arg_tester, (
testing_queue
, True, True))
130
result =
testing_queue
.get()
133
_thread.start_new_thread(arg_tester, tuple(), {'queue':
testing_queue
,
135
result =
testing_queue
.get()
138
_thread.start_new_thread(arg_tester, (
testing_queue
, True), {'arg2':True})
139
result =
testing_queue
.get()
152
testing_queue
= Queue.Queue(thread_count)
163
(
testing_queue
, local_delay))
167
self.assertTrue(
testing_queue
.qsize() == thread_count
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py
128
testing_queue
= Queue.Queue(1)
129
_thread.start_new_thread(arg_tester, (
testing_queue
, True, True))
130
result =
testing_queue
.get()
133
_thread.start_new_thread(arg_tester, tuple(), {'queue':
testing_queue
,
135
result =
testing_queue
.get()
138
_thread.start_new_thread(arg_tester, (
testing_queue
, True), {'arg2':True})
139
result =
testing_queue
.get()
152
testing_queue
= Queue.Queue(thread_count)
163
(
testing_queue
, local_delay))
167
self.assertTrue(
testing_queue
.qsize() == thread_count
[
all
...]
Completed in 68 milliseconds