Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for onRead (0.19 seconds)

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

          }
    
          OverrideParam.ReadTimeout -> {
            client =
              client
                .newBuilder()
                .socketFactory(
                  DelayingSocketFactory(onRead = {
                    Thread.sleep(100L)
                  }),
                ).build()
    
            overrideBadImplementation(override = override.override, testItFails = testItFails)
          }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

        override fun close() {
          if (closed) return
    
          if (bytesRemaining != 0L &&
            !discard(ExchangeCodec.DISCARD_STREAM_TIMEOUT_MILLIS, MILLISECONDS)
          ) {
            carrier.noNewExchanges() // Unread bytes remain on the stream.
            responseBodyComplete(TRAILERS_RESPONSE_BODY_TRUNCATED)
          }
    
          closed = true
        }
      }
    
      /** An HTTP body with alternating chunk sizes and chunk bodies. */
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 17.6K bytes
    - Click Count (7)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                    "                <img src=\"https://fast.wistia.com/embed/medias/$2/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"$1\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /> \n" +
                    "        </div></div></div></div> \n" +
                    "    </div> \n" +
                    "  </div> \n" +
                    "</details>");
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 03 01:59:51 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/collect/MapsTest.java

        assertThat(map.get("five")).isNull();
        assertThat(map.entrySet())
            .containsExactly(mapEntry("one", 3), mapEntry("three", 5), mapEntry("two", 3))
            .inOrder();
        assertThat(map.tailMap("onea").entrySet())
            .containsExactly(mapEntry("three", 5), mapEntry("two", 3))
            .inOrder();
        assertThat(map.subMap("one", "two").entrySet())
            .containsExactly(mapEntry("one", 3), mapEntry("three", 5))
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 63.2K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        assertThat(server.takeRequest().body?.utf8()).isEqualTo("body")
      }
    
      // Check that if we don't read to the end of a response, the next request on the
      // recycled connection doesn't get the unread tail of the first request's response.
      // http://code.google.com/p/android/issues/detail?id=2939
      @Test
      fun bug2939() {
        val response =
          MockResponse
            .Builder()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 133.3K bytes
    - Click Count (0)
  6. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    u0007is-lost\u0008is-saved\u000bis-very-bad\u000cis-very-evil\u000cis-very-good\u000cis-very-nice\ris-very-sweet\u000bmisconfused\u0006mlbfan\u000bmy-firewall\nmyfirewall\u0006mywire\u0006nflfan\u0008pimienta\u0007poivron\u0007potager\u0006pubtls\nread-books\nreadmyblog\u0004roxa\rsellsyourhome\u0009small-web\u000cstuff-4-sale\u000bsweetpepper\u0007teckids\u0009toolforge\u0004tunk\u0009tuxfamily\u0006ufcfan\u000bwebredirect\u0007wmcloud\u0007wmflabs\u0005zapto\u0007nerdpol\u0003abo\u0008codeberg...
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
Back to Top