Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,443 for pong (0.03 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketRecorder.kt

        assertThat(nextEvent()).isEqualTo(Message(payload))
      }
    
      fun assertPing(payload: ByteString) {
        assertThat(nextEvent()).isEqualTo(Ping(payload))
      }
    
      fun assertPong(payload: ByteString) {
        assertThat(nextEvent()).isEqualTo(Pong(payload))
      }
    
      fun assertClosing(
        code: Int,
        reason: String,
      ) {
        assertThat(nextEvent()).isEqualTo(Closing(code, reason))
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/HeadersJvmTest.kt

            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
            .build()
        assertThat(headers.values("foo")).containsExactly("bar", "baz", "bak")
        assertThat(headers.values("key")).containsExactly("value")
        assertThat(headers.values("ping")).containsExactly("pong")
        assertThat(headers.values("kit")).containsExactly("kat")
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue May 27 14:51:25 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      private val maskCursor: Buffer.UnsafeCursor? = if (isClient) Buffer.UnsafeCursor() else null
    
      /** Send a ping with the supplied [payload]. */
      @Throws(IOException::class)
      fun writePing(payload: ByteString) {
        writeControlFrame(OPCODE_CONTROL_PING, payload)
      }
    
      /** Send a pong with the supplied [payload]. */
      @Throws(IOException::class)
      fun writePong(payload: ByteString) {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 6K bytes
    - Click Count (0)
  4. src/main/webapp/images/logo.png

    logo.png...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Oct 30 11:04:53 GMT 2015
    - 2.3K bytes
    - Click Count (0)
  5. docs/en/docs/img/sponsors/lambdatest.png

    lambdatest.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 18 15:18:14 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  6. .idea/icon.png

    icon.png...
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Apr 06 19:03:14 GMT 2020
    - 2K bytes
    - Click Count (0)
  7. src/test/resources/thumbnail/400x400.png

    400x400.png...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jun 01 14:38:39 GMT 2017
    - 1.3K bytes
    - Click Count (0)
  8. src/main/webapp/images/logo-head.png

    logo-head.png...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Oct 30 11:04:53 GMT 2015
    - 907 bytes
    - Click Count (0)
  9. docs/en/docs/img/sponsors/platform-sh.png

    platform-sh.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jun 10 20:58:15 GMT 2023
    - 5.6K bytes
    - Click Count (0)
  10. docs/en/docs/img/sponsors/serpapi-banner.png

    serpapi-banner.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Oct 29 13:43:11 GMT 2025
    - 6.3K bytes
    - Click Count (0)
Back to Top