Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for given (0.14 sec)

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

        response1.body.source().timeout().timeout(100, TimeUnit.MILLISECONDS)
        assertContent("This connection won't pool properly", response1)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    
        // Give the server time to enact the socket policy if it's one that could happen after the
        // client has received the response.
        Thread.sleep(500)
        val response2 = getResponse(newRequest("/b"))
    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

        assertThat(server.takeRequest().body.readUtf8()).isEqualTo("attempt 0")
        assertThat(server.requestCount).isEqualTo(1)
      }
    
      @Test
      fun propfindRedirectsToPropfindAndMaintainsRequestBody() {
        // given
        server.enqueue(
          MockResponse(
            code = HttpURLConnection.HTTP_MOVED_TEMP,
            headers = headersOf("Location", "/page2"),
            body = "This page has moved!",
          ),
        )
    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/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    beep.pl
    
    // Airkit : https://www.airkit.com/
    // Submitted by Grant Cooksey <******@****.***>
    airkitapps.com
    airkitapps-au.com
    airkitapps.eu
    
    // Aiven: https://aiven.io/
    // Submitted by Etienne Stalmans <security@aiven.io>
    aivencloud.com
    
    // Akamai : https://www.akamai.com/
    // Submitted by Akamai Team <******@****.***>
    akadns.net
    akamai.net
    akamai-staging.net
    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