- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for bye (0.03 sec)
-
okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt
assertThat(client.webSocket!!.close(1000, "Bye!")).isTrue() client.webSocket!!.finishReader() taskFaker.runTasks() client.listener.assertClosed(1000, "Hello!") server.processNextFrame() server.listener.assertClosing(1000, "Bye!") server.webSocket!!.finishReader() server.listener.assertClosed(1000, "Bye!") } @Test fun emptyCloseInitiatesShutdown() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 11 01:59:58 UTC 2024 - 18.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt
webSocket: WebSocket, code: Int, reason: String, ) { webSocket.close(1000, null) } }, ) server.close(1001, "bye") clientListener.assertClosed(1001, "bye") clientListener.assertExhausted() serverListener.assertClosing(1000, "") serverListener.assertClosed(1000, "") serverListener.assertExhausted() } @Test
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 31 17:16:15 UTC 2024 - 35.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
assertThrows(NullPointerException.class, () -> result.hasNext()); assertThrows(NullPointerException.class, () -> result.next()); // There is no way to get "through" to the 3. Buh-bye } public void testConcatVarArgsContainingNull() { assertThrows( NullPointerException.class, () -> Iterators.concat(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
assertThrows(NullPointerException.class, () -> result.hasNext()); assertThrows(NullPointerException.class, () -> result.next()); // There is no way to get "through" to the 3. Buh-bye } public void testConcatVarArgsContainingNull() { assertThrows( NullPointerException.class, () -> Iterators.concat(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
doc/go1.17_spec.html
<p> Strings can be concatenated using the <code>+</code> operator or the <code>+=</code> assignment operator: </p> <pre> s := "hi" + string(c) s += " and good bye" </pre> <p> String addition creates a new string by concatenating the operands. </p> <h3 id="Comparison_operators">Comparison operators</h3> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
doc/go_spec.html
<p> Strings can be concatenated using the <code>+</code> operator or the <code>+=</code> assignment operator: </p> <pre> s := "hi" + string(c) s += " and good bye" </pre> <p> String addition creates a new string by concatenating the operands. </p> <h3 id="Comparison_operators">Comparison operators</h3> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0)