Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for foo5 (0.07 sec)

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

            .Builder()
            .code(HttpURLConnection.HTTP_MOVED_PERM)
            .addHeader("Location: /foo")
            .build(),
        )
        server.enqueue(
          MockResponse
            .Builder()
            .body("DEF")
            .build(),
        )
        val request1 = Request.Builder().url(server.url("/foo")).build()
        val response1 = client.newCall(request1).execute()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

            ).hostnameVerifier(RecordingHostnameVerifier())
            .build()
        val response = getResponse(newRequest("/foo"))
        assertContent("this response comes via HTTPS", response)
        val request = server.takeRequest()
        assertThat(request.requestLine).isEqualTo("GET /foo HTTP/1.1")
      }
    
      @Test
      fun connectViaHttpsReusingConnections() {
        connectViaHttpsReusingConnections(false)
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she felt a violent blow underneath her chin:  it had struck her
    foot!
    
      She was a good deal frightened by this very sudden change, but
    she felt that there was no time to be lost, as she was shrinking
    rapidly; so she set to work at once to eat some of the other bit.
    Her chin was pressed so closely against her foot, that there was
    hardly room to open her mouth; but she did it at last, and
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

            .build()
        val request = Request("http://android.com/foo".toHttpUrl())
        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("response body")
        val get1 = server.takeRequest()
        assertThat(get1.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1")
        assertThat(get1.headers["Proxy-Authorization"]).isNull()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  5. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    fly
    fly.dev
    flå.no
    fm
    fm.br
    fm.it
    fm.jo
    fm.no
    fnc.fr-par.scw.cloud
    fnd.br
    fnwk.site
    fo
    foggia.it
    folionetwork.site
    folkebibl.no
    folldal.no
    foo
    food
    fool.jp
    football
    for-better.biz
    for-more.biz
    for-our.info
    for-some.biz
    for-the.biz
    ford
    forde.no
    forex
    forgeblocks.com
    forgot.her.name
    forgot.his.name
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  6. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    fly
    fly.dev
    flå.no
    fm
    fm.br
    fm.it
    fm.jo
    fm.no
    fnc.fr-par.scw.cloud
    fnd.br
    fnwk.site
    fo
    foggia.it
    folionetwork.site
    folkebibl.no
    folldal.no
    foo
    food
    fool.jp
    football
    for-better.biz
    for-more.biz
    for-our.info
    for-some.biz
    for-the.biz
    ford
    forde.no
    forex
    forgeblocks.com
    forgot.her.name
    forgot.his.name
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  7. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertNotSame(one, two);
        assertEquals(2, loader.getCount());
      }
    
      public void testValues() {
        LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder());
        map.put("foo", "bar");
        map.put("baz", "bar");
        map.put("quux", "quux");
        assertFalse(map.values() instanceof Set);
        assertTrue(map.values().removeAll(ImmutableSet.of("bar")));
        assertEquals(1, map.size());
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
Back to top