Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for priorResponse (0.07 sec)

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

        val sanUrl =
          url.newBuilder()
            .host("san.com")
            .build()
        execute(sanUrl).use { response ->
          assertThat(response.code).isEqualTo(200)
          assertThat(response.priorResponse!!.code).isEqualTo(421)
          assertThat(response.body.string()).isEqualTo("after misdirect")
        }
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. CHANGELOG.md

        type declaration was nullable to support rare cases like the body on `Response.cacheResponse`,
        `Response.networkResponse`, and `Response.priorResponse`. In such cases the body is now
        non-null, but attempts to read its content will fail.
     *  New: Kotlin-specific APIs for request tags. Kotlin language users can lookup tags with a type
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public final fun networkResponse ()Lokhttp3/Response;
    	public final fun newBuilder ()Lokhttp3/Response$Builder;
    	public final fun peekBody (J)Lokhttp3/ResponseBody;
    	public final fun priorResponse ()Lokhttp3/Response;
    	public final fun protocol ()Lokhttp3/Protocol;
    	public final fun receivedResponseAtMillis ()J
    	public final fun request ()Lokhttp3/Request;
    	public final fun sentRequestAtMillis ()J
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertContent("c", getResponse(newRequest("/a")))
        val challengeResponse = authenticator.responses[0]
        assertThat(challengeResponse.request.url.toUrl().path).isEqualTo("/b")
        val redirectedBy = challengeResponse.priorResponse
        assertThat(redirectedBy!!.request.url.toUrl().path).isEqualTo("/a")
      }
    
      @Test
      fun attemptAuthorization20Times() {
        for (i in 0..19) {
          server.enqueue(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top