HomeSort by relevance Sort by last modified time
    Searched defs:join (Results 126 - 150 of 1717) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterThreadTest.java 56 thread.join();
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpKeepAliveTest.java 132 t.join();
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 9 // Parser for Join Header (RFC3911)
12 // Join = "Join" HCOLON callid *(SEMI join-param)
13 // join-param = to-tag / from-tag / generic-param
48 Join join = new Join(); local
52 super.parse(join);
53 join.setCallId(callId)
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementPolicy.java 67 public static final ElementPolicy join(ElementPolicy... policies) { method in class:ElementPolicy.Util
73 void join(ElementPolicy p) { method in class:ElementPolicy.Util.PolicyJoiner
79 join(jep.first);
80 join(jep.second);
96 pu.join(policy);
  /external/python/cpython2/Lib/
Queue.py 41 # drops to zero; thread waiting to join() is notified to resume
52 If a join() is currently blocking, it will resume when all items
70 def join(self): member in class:Queue
77 When the count of unfinished tasks drops to zero, join() unblocks.
os2emxpath.py 15 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
43 # Join two (or more) paths.
45 def join(a, *p): function
46 """Join two or more pathname components, inserting sep as needed"""
143 return prefix + '/'.join(comps)
154 path = join(cwd, path)
  /external/python/cpython3/Lib/
queue.py 46 # drops to zero; thread waiting to join() is notified to resume
57 If a join() is currently blocking, it will resume when all items
72 def join(self): member in class:Queue
79 When the count of unfinished tasks drops to zero, join() unblocks.
99 completed, the preferred technique is to use the join() method.
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/
ThreadSafetyTest.java 29 instrumentedThread.join();
  /external/tensorflow/tensorflow/python/training/
coordinator.py 49 coord.join(threads)
68 `coord.join()` call.
90 coord.join(threads)
111 `coord.join()` raises a RuntimeError reporting the laggards.
121 coord.join(threads, stop_grace_period_secs=10)
153 # True if we have called join() already.
155 # Set of threads registered for joining when join() is called. These
156 # threads will be joined in addition to the threads passed to the join()
157 # call. It's ok if threads are both registered and passed to the join()
199 corresponding exception is recorded and re-raised from `join()`
322 def join(self, threads=None, stop_grace_period_secs=120, member in class:Coordinator
    [all...]
  /external/webrtc/
PRESUBMIT.py 70 input_api.os_path.join(input_api.PresubmitLocalPath(),
148 'use FRIEND_TEST_ALL_PREFIXES() instead.\n' + '\n'.join(problems))]
174 whitelist_dirs = [input_api.os_path.join(*path.split('/'))
253 'Violating GYP files:' % '\n'.join(violating_source_entries),
288 checkdeps_path = input_api.os_path.join(input_api.PresubmitLocalPath(),
337 def join(*args): function in function:_RunPythonTests
338 return input_api.os_path.join(input_api.PresubmitLocalPath(), *args)
341 join('tools', 'autoroller', 'unittests'),
453 cq_config_path = os.path.join(
  /external/webrtc/talk/app/webrtc/javatests/src/org/webrtc/
PeerConnectionTestJava.java 58 nonMainThread.join();
  /frameworks/base/core/tests/coretests/src/android/content/
ContentQueryMapTest.java 102 thread.join();
  /frameworks/base/core/tests/coretests/src/android/util/
TimingsTraceLogTest.java 66 t.join();
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
MultiArgAdapterEvaluationTest.java 23 import static android.databinding.testapp.adapter.MultiArgTestAdapter.join;
42 assertEquals(mBinder.merged.getText().toString(), join(obj1.getValue(), obj2.getValue()));
43 assertEquals(mBinder.view2.getText().toString(), join(obj2.getValue()));
57 assertEquals(join(obj1, obj2), mBinder.merged.getText().toString()); method
MultiArgAdapterTest.java 22 import static android.databinding.testapp.adapter.MultiArgTestAdapter.join;
47 assertEquals(mBinder.merged.getText().toString(), join(obj1, obj2)); method
48 assertEquals(mBinder.view2.getText().toString(), join(obj2)); method
49 assertEquals(mBinder.view3.getText().toString(), join(obj3)); method
50 assertEquals(mBinder.view4.getText().toString(), join(obj4)); method
66 assertEquals(join(obj1, obj2), mBinder.merged.getText().toString()); method
  /frameworks/opt/net/voip/src/java/android/net/rtp/
AudioStream.java 36 * AudioGroup by calling {@link #join(AudioGroup)} with {@code null} and put it
79 * Joins an {@link AudioGroup}. Each stream can join only one group at a
83 * @param group The AudioGroup to join or {@code null} to leave.
87 public void join(AudioGroup group) { method in class:AudioStream
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
LoadLocaleProviderTestHelper.java 32 thread.join();
  /libcore/luni/src/test/java/libcore/java/lang/
OldInheritableThreadLocalTest.java 44 thread.join();
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetTest.java 64 ct.join();
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Queue.py 41 # drops to zero; thread waiting to join() is notified to resume
52 If a join() is currently blocking, it will resume when all items
70 def join(self): member in class:Queue
77 When the count of unfinished tasks drops to zero, join() unblocks.
os2emxpath.py 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
42 # Join two (or more) paths.
44 def join(a, *p): function
45 """Join two or more pathname components, inserting sep as needed"""
142 return prefix + '/'.join(comps)
153 path = join(cwd, path)
  /prebuilts/gdb/linux-x86/lib/python2.7/
Queue.py 41 # drops to zero; thread waiting to join() is notified to resume
52 If a join() is currently blocking, it will resume when all items
70 def join(self): member in class:Queue
77 When the count of unfinished tasks drops to zero, join() unblocks.
os2emxpath.py 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
42 # Join two (or more) paths.
44 def join(a, *p): function
45 """Join two or more pathname components, inserting sep as needed"""
142 return prefix + '/'.join(comps)
153 path = join(cwd, path)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Queue.py 41 # drops to zero; thread waiting to join() is notified to resume
52 If a join() is currently blocking, it will resume when all items
70 def join(self): member in class:Queue
77 When the count of unfinished tasks drops to zero, join() unblocks.
os2emxpath.py 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
42 # Join two (or more) paths.
44 def join(a, *p): function
45 """Join two or more pathname components, inserting sep as needed"""
142 return prefix + '/'.join(comps)
153 path = join(cwd, path)

Completed in 312 milliseconds

1 2 3 4 56 7 8 91011>>