- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 123 for Ling (0.19 sec)
-
guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
like that!' He got behind Alice as he spoke. `A cat may look at a king,' said Alice. `I've read that in some book, but I don't remember where.' `Well, it must be removed,' said the King very decidedly, and he called the Queen, who was passing at the moment, `My dear! I wish you would have this cat removed!' The Queen had only one way of settling all difficulties, great
Plain Text - Registered: 2023-11-24 12:43 - Last Modified: 2012-10-29 21:35 - 145.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
like that!' He got behind Alice as he spoke. `A cat may look at a king,' said Alice. `I've read that in some book, but I don't remember where.' `Well, it must be removed,' said the King very decidedly, and he called the Queen, who was passing at the moment, `My dear! I wish you would have this cat removed!' The Queen had only one way of settling all difficulties, great
Plain Text - Registered: 2023-12-01 12:43 - Last Modified: 2017-04-21 02:27 - 145.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java
} } resultBuf.append("Status of ").append(ping.getClusterName()).append(" is changed to ").append(ping.getClusterStatus()) .append('.'); } else if (status == 0) { resultBuf.append(ping.getClusterName()).append(" is alive."); } else { resultBuf.append(ping.getClusterName()).append(" is not available."); }
Java - Registered: 2023-12-04 08:04 - Last Modified: 2023-01-04 12:40 - 4.1K bytes - Viewed (0) -
okhttp/src/jvmTest/java/okhttp3/internal/ws/WebSocketRecorder.java
&& Objects.equals(((Message) other).string, string); } } static final class Ping { public final ByteString payload; public Ping(ByteString payload) { this.payload = payload; } @Override public String toString() { return "Ping[" + payload + "]"; } @Override public int hashCode() { return payload.hashCode(); }
Java - Registered: 2023-12-01 11:42 - Last Modified: 2022-04-02 17:17 - 11.1K bytes - Viewed (0) -
okhttp/src/jvmTest/java/okhttp3/internal/http2/Http2ConnectionTest.kt
peer.sendFrame().ping(false, 2, 3) peer.acceptFrame() // PING peer.play() // Play it back. connect(peer) // Verify the peer received what was expected. val ping = peer.takeFrame() assertThat(ping.type).isEqualTo(Http2.TYPE_PING) assertThat(ping.streamId).isEqualTo(0) assertThat(ping.payload1).isEqualTo(2) assertThat(ping.payload2).isEqualTo(3)
Plain Text - Registered: 2023-12-01 11:42 - Last Modified: 2023-05-10 08:45 - 75.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
Java - Registered: 2023-12-04 08:04 - Last Modified: 2023-04-19 13:36 - 4.3K bytes - Viewed (0) -
src/test/resources/before_script.sh
Shell Script - Registered: 2023-12-04 08:04 - Last Modified: 2022-08-11 00:14 - 495 bytes - Viewed (0) -
okhttp/src/jvmMain/kotlin/okhttp3/internal/http2/Http2Connection.kt
payload2: Int ) { try { writer.ping(reply, payload1, payload2) } catch (e: IOException) { failConnection(e) } } /** For testing: sends a ping and waits for a pong. */ @Throws(InterruptedException::class) fun writePingAndAwaitPong() { writePing() awaitPong() } /** For testing: sends a ping to be awaited with [awaitPong]. */
Plain Text - Registered: 2023-12-01 11:42 - Last Modified: 2023-05-10 08:45 - 32.2K bytes - Viewed (0) -
okhttp/src/jvmTest/java/okhttp3/internal/ws/RealWebSocketTest.java
long startNanos = System.nanoTime(); client.initWebSocket(random, 500); // Don't process the ping and pong frames! client.listener.assertFailure(SocketTimeoutException.class, "sent ping but didn't receive pong within 500ms (after 0 successful ping/pongs)"); long elapsedUntilFailure = System.nanoTime() - startNanos; assertThat((double) TimeUnit.NANOSECONDS.toMillis(elapsedUntilFailure)).isCloseTo(1000, offset(
Java - Registered: 2023-12-01 11:42 - Last Modified: 2021-12-16 08:22 - 17.7K bytes - Viewed (0) -
internal/event/target/redis.go
return false, err } return target.isActive() } func (target *RedisTarget) isActive() (bool, error) { conn := target.pool.Get() defer conn.Close() _, pingErr := conn.Do("PING") if pingErr != nil { if xnet.IsConnRefusedErr(pingErr) { return false, store.ErrNotConnected } return false, pingErr } return true, nil }
Go - Registered: 2023-12-03 19:28 - Last Modified: 2023-10-07 15:07 - 8.8K bytes - Viewed (0)