Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 33 of 33 for recordedRequest (0.05 seconds)

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

        val response1 = client.newCall(request1).execute()
        assertThat(response1.body.string()).isEqualTo("ABC")
        val recordedRequest1 = server.takeRequest()
        assertThat(recordedRequest1.requestLine).isEqualTo("GET /foo HTTP/1.1")
        assertThat(recordedRequest1.connectionIndex).isEqualTo(0)
        assertThat(recordedRequest1.exchangeIndex).isEqualTo(0)
        val request2 = Request.Builder().url(server.url("/bar")).build()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 09:13:37 GMT 2026
    - 121K bytes
    - Click Count (0)
  2. CHANGELOG.md

        these accessors will throw an `IllegalStateException` if the service has not yet been started.
    
     *  Breaking: Rename `RecordedRequest.path` to `RecordedRequest.target`. (This property is
        _sometimes_ a path, but it can also be a path and query, or a full URL.)
    
     *  Breaking: Decompose the `RecordedRequest.requestLine` into three properties, `method`, `target`,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 15 11:57:47 GMT 2026
    - 36.2K bytes
    - Click Count (2)
  3. docs/changelogs/changelog_3x.md

     *  New: MockWebServer now supports client authentication (mutual TLS). Call `requestClientAuth()`
        to permit an optional client certificate or `requireClientAuth()` to require one.
     *  New: `RecordedRequest.getHandshake()` returns the HTTPS handshake of a request sent to
        `MockWebServer`.
     *  Fix: Honor the `MockResponse` header delay in MockWebServer.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Click Count (0)
Back to Top