Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Code (0.17 sec)

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

      internal class LegacyRedirectInterceptor : Interceptor {
        override fun intercept(chain: Interceptor.Chain): Response {
          val response = chain.proceed(chain.request())
          val code = response.code
          if (code != HTTP_TEMP_REDIRECT && code != HTTP_PERM_REDIRECT) return response
          val method = response.request.method
          if (method == "GET" || method == "HEAD") return response
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

              call: Call,
              response: Response,
            ) {
              val bytes = response.body.byteStream()
              assertThat(bytes.read()).isEqualTo('a'.code)
              assertThat(bytes.read()).isEqualTo('b'.code)
              assertThat(bytes.read()).isEqualTo('c'.code)
    
              // This request will share a connection with 'A' cause it's all done.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

            .code(finalResponseCode)
            .body("ABCDE")
            .addInformationalResponse(MockResponse(initialResponseCode))
        server.enqueue(builder.build())
        server.start()
        val request =
          Request.Builder()
            .url(server.url("/"))
            .build()
        val response = client.newCall(request).execute()
        assertThat(response.code).isEqualTo(finalResponseCode)
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  4. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/http2/Http2Writer;->headers(ZILjava/util/List;)V
    HSPLokhttp3/internal/http2/Http2Writer;->windowUpdate(IJ)V
    HSPLokhttp3/internal/http2/Huffman$Node;-><init>()V
    HSPLokhttp3/internal/http2/Huffman$Node;-><init>(II)V
    HSPLokhttp3/internal/http2/Huffman;-><clinit>()V
    HSPLokhttp3/internal/http2/Huffman;-><init>()V
    HSPLokhttp3/internal/http2/Huffman;->addCode(III)V
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    орг.рус
    самара.рус
    сочи.рус
    спб.рус
    я.рус
    
    // Salesforce.com, Inc. https://salesforce.com/
    // Submitted by Michael Biven <******@****.***>
    *.builder.code.com
    *.dev-builder.code.com
    *.stg-builder.code.com
    
    // Sandstorm Development Group, Inc. : https://sandcats.io/
    // Submitted by Asheesh Laroia <******@****.***>
    sandcats.io
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top