HomeSort by relevance Sort by last modified time
    Searched defs:join (Results 151 - 175 of 907) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/Lib/multiprocessing/
queues.py 218 thread.join()
288 # A queue type which also supports join() and task_done() methods
336 def join(self): member in class:JoinableQueue
  /external/python/cpython3/Lib/asyncio/
queues.py 194 If a join() is currently blocking, it will resume when all items have
207 async def join(self): member in class:Queue
213 When the count of unfinished tasks drops to zero, join() unblocks.
  /external/python/cpython3/Lib/
macpath.py 24 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
57 def join(s, *p): function
76 genericpath._check_arg_types('join', s, *p)
83 The result (s, t) is such that join(s, t) yields the original argument."""
179 s = colon.join(comps)
193 path = join(cwd, path)
209 path = join(path, c)
queue.py 52 # drops to zero; thread waiting to join() is notified to resume
63 If a join() is currently blocking, it will resume when all items
78 def join(self): member in class:Queue
85 When the count of unfinished tasks drops to zero, join() unblocks.
105 completed, the preferred technique is to use the join() method.
  /external/python/cpython3/Lib/multiprocessing/
queues.py 192 thread.join()
279 # A queue type which also supports join() and task_done() methods
319 def join(self): member in class:JoinableQueue
  /external/replicaisland/src/com/replica/replicaisland/
RenderingWatchDog.java 64 mThread.join();
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
FsFile.java 28 FsFile join(String... pathParts); method in interface:FsFile
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-linked_ptr.h 107 // Join an existing circle.
109 void join(linked_ptr_internal const* ptr) { function in class:testing::internal::linked_ptr_internal
119 // last member of the circle. Once this is done, you can join() another.
206 link_.join(&ptr->link_);
  /external/tensorflow/tensorflow/python/training/
server_lib.py 175 def join(self): member in class:Server
330 return "ClusterSpec({" + ", ".join(string_items) + "})"
  /external/vogar/src/vogar/util/
Strings.java 74 public static String join(String delimiter, Object... objects) { method in class:Strings
75 return join(Arrays.asList(objects), delimiter);
78 public static String join(Iterable<?> objects, String delimiter) { method in class:Strings
  /external/xz-java/src/
TestAllocSpeed.java 101 threads[i].join(); method
  /art/test/130-hprof/src/
Main.java 140 allocator.join();
141 dumper.join();
143 System.out.println("join interrupted");
  /art/test/1916-get-set-current-frame/src/art/
Test1916.java 79 target_get.join();
92 target_get.join();
109 target_set.join();
122 target_set.join();
  /art/test/1931-monitor-events/src/art/
Test1931.java 100 holder.join();
147 thd.join();
  /art/test/1935-get-set-current-frame-jit/src/
Main.java 112 target_get.join();
125 target_get.join();
144 target_set.join();
157 target_set.join();
  /art/test/923-monitors/src/art/
Test923.java 129 firstAwakened.join();
139 t.join();
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ExecutionListTest.java 93 thread1.join();
94 thread2.join();
  /art/test/912-classes/src-art/art/
Test912.java 107 classEventsThread.join();
283 dummyThread.join();
326 t.join();
  /art/test/036-finalizer/src/
Main.java 66 t.join();
  /art/test/079-phantom/src/
Bitmap.java 58 sWatcher.join();
60 System.out.println("join intr");
  /art/test/1900-track-alloc/src/art/
Test1900.java 49 thr.join();
  /art/test/1909-per-agent-tls/src/art/
Test1909.java 70 thr.join();
  /art/test/1930-monitor-info/src/art/
Test1930.java 87 t.join();
112 t.join();
  /art/test/1941-dispose-stress/src/art/
Test1941.java 75 thr.join();
  /art/test/1950-unprepared-transform/src/
Main.java 134 redef_thread.join();

Completed in 924 milliseconds

1 2 3 4 5 67 8 91011>>