Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ABCABCABC (0.03 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        assertThat(get(server.url("/")).body.string()).isEqualTo("ABCABCABC")
        assertThat(get(server.url("/")).body.string()).isEqualTo("ABCABCABC")
      }
    
      @Test
      fun previouslyNotGzippedContentIsNotModifiedAndSpecifiesGzipEncoding() {
        server.enqueue(
          MockResponse
            .Builder()
            .body("ABCABCABC")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

          MockResponse
            .Builder()
            .body(gzip("abcabcabc"))
            .addHeader("Content-Encoding: gzip")
            .build(),
        )
        client =
          client
            .newBuilder()
            .authenticator(RecordingOkAuthenticator("password", null))
            .build()
        executeSynchronously("/").assertBody("abcabcabc")
      }
    
      @Test
      fun rangeHeaderPreventsAutomaticGzip() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        server.enqueue(
          MockResponse
            .Builder()
            .body(gzip("ABCABCABC"))
            .addHeader("Content-Encoding: gzip")
            .build(),
        )
        val response = getResponse(newRequest("/"))
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE)).isEqualTo(
          "ABCABCABC",
        )
        assertThat(response.header("Content-Encoding")).isNull()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top