Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Sets (2.01 sec)

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

            body = "This page has moved!",
          ),
        )
        server.enqueue(
          MockResponse(body = "Proxy Response"),
        )
        val response = getResponse(newRequest("/foo"))
        // Fails on the RI, which gets "Proxy Response".
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE))
          .isEqualTo("This page has moved!")
        val page1 = server.takeRequest()
    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

        server.enqueue(
          MockResponse(body = "This gets leaked."),
        )
        client =
          clientTestRule.newClientBuilder()
            .connectionPool(ConnectionPool(0, 10, TimeUnit.MILLISECONDS))
            .build()
        val request = Request(server.url("/"))
        client.newCall(request).execute() // Ignore the response so it gets leaked then GC'd.
        awaitGarbageCollection()
    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

    from-ut.com
    from-va.com
    from-vt.com
    from-wa.com
    from-wi.com
    from-wv.com
    from-wy.com
    ftpaccess.cc
    fuettertdasnetz.de
    game-host.org
    game-server.cc
    getmyip.com
    gets-it.net
    go.dyndns.org
    gotdns.com
    gotdns.org
    groks-the.info
    groks-this.info
    ham-radio-op.net
    here-for-more.info
    hobby-site.com
    hobby-site.org
    home.dyndns.org
    homedns.org
    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