Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 173 for pong (0.02 seconds)

  1. okhttp/src/jvmTest/kotlin/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)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Jul 31 04:18:40 GMT 2025
    - 75.5K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt

         * Sets the interval between HTTP/2 and web socket pings initiated by this client. Use this to
         * automatically send ping frames until either the connection fails or it is closed. This keeps
         * the connection alive and may detect connectivity failures.
         *
         * If the server does not respond to each ping with a pong within `interval`, this client will
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 51.5K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(response.protocol).isEqualTo(protocol)
    
        // Confirm a single ping was sent and received, and its reply was sent and received.
        val logs = testLogHandler.takeAll()
        assertThat(countFrames(logs, "FINE: >> 0x00000000     8 PING          "))
          .isEqualTo(1)
        assertThat(countFrames(logs, "FINE: << 0x00000000     8 PING          "))
          .isEqualTo(1)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 67.5K bytes
    - Click Count (0)
  4. docs/en/docs/img/tutorial/bigger-applications/image01.png

    image01.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Nov 29 17:32:18 GMT 2020
    - 72.8K bytes
    - Click Count (0)
  5. docs/en/docs/img/tutorial/body/image01.png

    image01.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 54.2K bytes
    - Click Count (0)
  6. docs/en/docs/img/tutorial/body/image05.png

    image05.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 51.7K bytes
    - Click Count (0)
  7. docs/en/docs/img/tutorial/generate-clients/image04.png

    image04.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 04 22:02:18 GMT 2022
    - 52.6K bytes
    - Click Count (0)
  8. docs/en/docs/img/tutorial/json-base64-bytes/image01.png

    image01.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 21 13:01:31 GMT 2026
    - 70.9K bytes
    - Click Count (0)
  9. docs/en/docs/img/tutorial/openapi-callbacks/image01.png

    image01.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 97K bytes
    - Click Count (0)
  10. docs/en/docs/img/tutorial/path-operation-advanced-configuration/image01.png

    image01.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Jul 29 20:01:13 GMT 2021
    - 66.5K bytes
    - Click Count (0)
Back to Top