Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LOCAL (0.13 sec)

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

          .assertHeader("a\tb", "c\u007fd")
          .assertHeader("\ud83c\udf69", "\u2615\ufe0f")
          .assertHeader("", "ef")
      }
    
      @Test
      fun customDns() {
        // Configure a DNS that returns our local MockWebServer for android.com.
        val dns = FakeDns()
        dns["android.com"] = Dns.SYSTEM.lookup(server.url("/").host)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
    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)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

          .isEqualTo(lastModifiedDate)
      }
    
      @Test
      fun maxAgeInThePastWithDateHeaderButNoLastModifiedHeader() {
        // Chrome interprets max-age relative to the local clock. Both our cache
        // and Firefox both use the earlier of the local and server's clock.
        assertNotCached(
          MockResponse.Builder()
            .addHeader("Date: " + formatDate(-120, TimeUnit.SECONDS))
            .addHeader("Cache-Control: max-age=60")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    name.tj
    net.tj
    nic.tj
    org.tj
    test.tj
    web.tj
    
    // tk : https://en.wikipedia.org/wiki/.tk
    tk
    
    // tl : https://en.wikipedia.org/wiki/.tl
    tl
    gov.tl
    
    // tm : http://www.nic.tm/local.html
    tm
    com.tm
    co.tm
    org.tm
    net.tm
    nom.tm
    gov.tm
    mil.tm
    edu.tm
    
    // tn : http://www.registre.tn/fr/
    // https://whois.ati.tn/
    tn
    com.tn
    ens.tn
    fin.tn
    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