Searched refs:join (Results 1 - 25 of 719) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/
H A DObjectStampJoinTest.java49 Assert.assertEquals(b, join(a, b));
57 Assert.assertEquals(bNonNull, join(aNonNull, b));
64 Assert.assertEquals(StampFactory.empty(JavaKind.Object), join(aExact, b));
71 Assert.assertTrue(StampTool.isPointerAlwaysNull(join(c, d)));
78 Assert.assertEquals(StampFactory.empty(JavaKind.Object), join(c, dExactNonNull));
85 Stamp join = join(c, dExact);
86 Assert.assertTrue(StampTool.isPointerAlwaysNull(join));
87 Assert.assertNull(StampTool.typeReferenceOrNull(join));
88 Assert.assertFalse(StampTool.isExactType(join));
[all...]
/openjdk10/nashorn/test/script/basic/
H A DJDK-8161579.js54 Assert.assertEquals([1, 2, 3].concat(arrayLikeJSObject).join(), "1,2,3,a,b,c");
55 Assert.assertEquals([1, 2, 3].concat(javaStringArray).join(), "1,2,3,x,y,z");
56 Assert.assertEquals([1, 2, 3].concat(javaArrayList).join(), "1,2,3,i,j,k");
57 Assert.assertEquals([1, 2, 3].concat("foo").join(), "1,2,3,foo");
58 Assert.assertEquals([1, 2, 3].concat(4).join(), "1,2,3,4");
59 Assert.assertEquals([1, 2, 3].concat(false).join(), "1,2,3,false");
H A DNASHORN-14.js34 print('callback with args ' + Array.prototype.join.apply(arguments))
H A Dsamfunc.js45 t1.join();
48 t2.join();
H A DJDK-8047365.js32 var longId = Array(0x20000).join("a");
H A DJDK-8011893.js50 thread.join();
H A DJDK-8015741.js46 thread1.join();
56 thread2.join();
H A DJDK-8041998.js51 threads[i].join();
H A DJDK-8157819.js42 Assert.assertEquals(arr.sort(compare).join(),
44 Assert.assertEquals(arr.sort(rcompare).join(),
/openjdk10/jdk/test/java/util/Properties/
H A DCheckUnsynchronized.java40 CompletableFuture.supplyAsync(() -> props.contains("value")).join());
42 CompletableFuture.supplyAsync(() -> props.containsKey("key")).join());
44 CompletableFuture.supplyAsync(() -> props.containsValue("value")).join());
46 CompletableFuture.supplyAsync(() -> props.elements()).join();
49 CompletableFuture.supplyAsync(() -> props.getProperty("key")).join());
51 CompletableFuture.supplyAsync(() -> props.getOrDefault("missing", "default")).join());
53 CompletableFuture.supplyAsync(() -> props.isEmpty()).join());
55 CompletableFuture.supplyAsync(() -> props.keys()).join();
58 CompletableFuture.supplyAsync(() -> props.size()).join());
/openjdk10/nashorn/docs/source/
H A Dsamfunc.js39 th.join();
H A Drunnable.js41 th.join();
/openjdk10/nashorn/test/script/
H A Dtest262.js31 throw new EvalError(Array.prototype.join.call(arguments));
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DBasicStroke.java60 * <dd>The limit to trim a line join that has a JOIN_MITER decoration.
61 * A line join is trimmed when the ratio of miter length to stroke
69 * the decoration of the line join to bevel.
156 int join; field in class:BasicStroke
172 * @param join the decoration applied where path segments meet
173 * @param miterlimit the limit to trim the miter join. The miterlimit
181 * than 1 and {@code join} is JOIN_MITER
182 * @throws IllegalArgumentException if {@code join} is not
191 public BasicStroke(float width, int cap, int join, float miterlimit, argument
199 if (join
248 BasicStroke(float width, int cap, int join, float miterlimit) argument
266 BasicStroke(float width, int cap, int join) argument
[all...]
/openjdk10/nashorn/test/script/sandbox/
H A Drunnable.js41 t.join();
/openjdk10/jdk/test/java/nio/channels/DatagramChannel/
H A DBasicMulticastTests.java45 * Tests that existing membership key is returned by join methods and that
64 MembershipKey key = dc.join(group, nif);
65 MembershipKey other = dc.join(group, nif);
88 key = dc.join(group, nif, source);
89 other = dc.join(group, nif, source);
132 key = dc.join(group, nif);
134 dc.join(group, nif, thisHost);
141 key = dc.join(group, nif, thisHost);
143 dc.join(group, nif);
153 dc.join(notGrou
[all...]
/openjdk10/jdk/test/java/lang/String/
H A DStringJoinTest.java25 * @summary test String merge/join that is the inverse of String.split()
50 * Tests the join() methods on String
53 // check a non-null join of String array (var-args) elements
55 String result = String.join(DASH, BEGIN, JIM, JOHN, AND_JOE);
57 assertEquals(result, expectedResult, "BEGIN.join(DASH, JIM, JOHN, AND_JOE)");
59 assertEquals(String.join(DASH, BEGIN), BEGIN);
63 // check a non-null join of Object[] with String elements
65 String result = String.join(DASH, theBs);
67 assertEquals(result, expectedResult, "String.join(DASH, theBs)");
71 // check a non-null join o
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A DsuspendibleThreadSet.hpp31 // A thread can join and later leave the set, and periodically yield.
51 static void join();
77 SuspendibleThreadSet::join();
114 SuspendibleThreadSet::join();
/openjdk10/jdk/src/java.base/share/classes/java/nio/channels/
H A DMulticastChannel.java55 * <p> The {@link #join(InetAddress,NetworkInterface)} method is used to
56 * join a group and receive all multicast datagrams sent to the group. A channel
57 * may join several multicast groups and may join the same group on several
64 * <p> The {@link #join(InetAddress,NetworkInterface,InetAddress)} method
85 * will join. There is no guarantee that a channel to a socket in one protocol
86 * family can join and receive multicast datagrams when the address of the
89 * socket can join an {@link StandardProtocolFamily#INET IPv4} multicast group and receive
106 * // join multicast group on this interface, and also use this
117 * MembershipKey key = dc.join(grou
182 MembershipKey join(InetAddress group, NetworkInterface interf) method in interface:MulticastChannel
231 MembershipKey join(InetAddress group, NetworkInterface interf, InetAddress source) method in interface:MulticastChannel
[all...]
/openjdk10/jdk/test/java/awt/font/NumericShaper/
H A DMTTest.java83 th1.join();
84 th2.join();
85 th3.join();
86 th4.join();
87 th5.join();
88 th6.join();
89 th7.join();
90 th8.join();
/openjdk10/jdk/test/java/util/logging/
H A DLoggingDeadlock.java90 t1.join();
91 t2.join();
/openjdk10/jdk/test/java/awt/Component/TreeLockDeadlock/
H A DTreeLockDeadlock.java84 t1.join();
85 t2.join();
86 t3.join();
87 t4.join();
/openjdk10/jdk/test/java/beans/Beans/6669869/
H A DTestDesignTime.java42 thread.join();
/openjdk10/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DTestThread.java146 join();
162 join(timeout);
179 join();
195 join(timeout);
/openjdk10/jdk/test/sun/security/ssl/ServerHandshaker/
H A DGetPeerHost.java49 server.join ();

Completed in 399 milliseconds

1234567891011>>