Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Devlin (0.19 sec)

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

        // Map the single character telephone symbol (℡) to the string "tel".
        assertThat(parse("http://\u2121").host).isEqualTo("tel")
    
        // Map the Kelvin symbol (K) to the string "k".
        assertThat(parse("http://\u212A").host).isEqualTo("k")
      }
    
      @Test
      fun quirks() {
        assertThat(parse("http://facebook.com").host).isEqualTo("facebook.com")
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          verifyHostname(hostname, it)
        }
      }
    
      /**
       * This is like [toLowerCase] except that it does nothing if this contains any non-ASCII
       * characters. We want to avoid lower casing special chars like U+212A (Kelvin symbol) because
       * they can return ASCII characters that match real hostnames.
       */
      private fun String.asciiToLowercase(): String {
        return when {
          isAscii() -> lowercase(Locale.US) // This is an ASCII string.
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    smushcdn.com
    wphostedmail.com
    wpmucdn.com
    tempurl.host
    wpmudev.host
    
    // Individual Network Berlin e.V. : https://www.in-berlin.de/
    // Submitted by Christian Seitz <chris@in-berlin.de>
    dyn-berlin.de
    in-berlin.de
    in-brb.de
    in-butter.de
    in-dsl.de
    in-dsl.net
    in-dsl.org
    in-vpn.de
    in-vpn.net
    in-vpn.org
    
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    beauxarts.museum bedzin.pl beeldengeluid.museum beep.pl beer beiarn.no bel.tr belau.pw belem.br bellevue.museum belluno.it benevento.it bentley beppu.oita.jp berg.no bergamo.it bergbau.museum bergen.no berkeley.museum berlevag.no berlevåg.no berlin berlin.museum bern.museum beskidy.pl best bestbuy bet bet.ar beta.bounty-full.com beta.tailscale.net betainabox.com better-than.tv bf bg bg.eu.org bg.it bh bharti bhz.br bi bi.it bialowieza.pl bialystok.pl bib.br bib.ve bibai.hokkaido.jp bible bible.museum...
    Others
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2129          ; valid                  ;      ; NV8    # 1.1  TURNED GREEK SMALL LETTER IOTA
    212A          ; mapped                 ; 006B          # 1.1  KELVIN SIGN
    212B          ; mapped                 ; 00E5          # 1.1  ANGSTROM SIGN
    212C          ; mapped                 ; 0062          # 1.1  SCRIPT CAPITAL B
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  6. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        // These should ideally be false, but we know that hostname is usually already checked by us
        assertThat(verifier.verify("\u212A.com", session)).isFalse()
        // Kelvin character below
        assertThat(verifier.verify("K.com", session)).isFalse()
      }
    
      @Test fun specialKInCert() {
        // https://github.com/apache/httpcomponents-client/commit/303e435d7949652ea77a6c50df1c548682476b6e
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 40.3K bytes
    - Viewed (0)
Back to top