Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ABCABCABC (0.1 sec)

  1. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(get(server.url("/")).body.string()).isEqualTo("ABCABCABC")
        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")
            .addHeader("Content-Type: text/plain")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  2. src/strings/strings_test.go

    	{"fo", "foo", -1},
    	{"foo", "foo", 0},
    	{"foo", "f", 0},
    	{"oofofoofooo", "f", 7},
    	{"oofofoofooo", "foo", 7},
    	{"barfoobarfoo", "foo", 9},
    	{"foo", "", 3},
    	{"foo", "o", 2},
    	{"abcABCabc", "A", 3},
    	{"abcABCabc", "a", 6},
    }
    
    var indexAnyTests = []IndexTest{
    	{"", "", -1},
    	{"", "a", -1},
    	{"", "abc", -1},
    	{"a", "", -1},
    	{"a", "a", 0},
    	{"\x80", "\xffb", 0},
    	{"aaa", "a", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    	{"fo", "foo", -1},
    	{"foo", "foo", 0},
    	{"foo", "f", 0},
    	{"oofofoofooo", "f", 7},
    	{"oofofoofooo", "foo", 7},
    	{"barfoobarfoo", "foo", 9},
    	{"foo", "", 3},
    	{"foo", "o", 2},
    	{"abcABCabc", "A", 3},
    	{"abcABCabc", "a", 6},
    }
    
    var indexAnyTests = []BinOpTest{
    	{"", "", -1},
    	{"", "a", -1},
    	{"", "abc", -1},
    	{"a", "", -1},
    	{"a", "a", 0},
    	{"\x80", "\xffb", 0},
    	{"aaa", "a", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

        server.enqueue(
          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: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Content-Encoding: gzip")
            .body(gzip("ABCABCABC"))
            .build(),
        )
        val call = client.newCall(Request(server.url("/r1")))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("ABCABCABC")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun authenticate(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top