Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 240 for Co (0.02 seconds)

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

            "sha256/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
          )
        assertEquals(
          "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=".decodeBase64(),
          pin.hash,
        )
        assertEquals("sha256", pin.hashAlgorithm)
        assertEquals("**.example.co.uk", pin.pattern)
        Assertions.assertTrue(pin.matchesHostname("www.example.co.uk"))
        Assertions.assertTrue(pin.matchesHostname("gopher.example.co.uk"))
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/net/InternetDomainName.java

      }
    
      /**
       * Returns the portion of this domain name that is one level beneath the {@linkplain
       * #isPublicSuffix() public suffix}. For example, for {@code x.adwords.google.co.uk} it returns
       * {@code google.co.uk}, since {@code co.uk} is a public suffix. Similarly, for {@code
       * myblog.blogspot.com} it returns the same domain, {@code myblog.blogspot.com}, since {@code
       * blogspot.com} is a public suffix.
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 27.9K bytes
    - Click Count (0)
  3. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    co.it
    co.je
    co.jp
    co.ke
    co.kr
    co.krd
    co.lc
    co.ls
    co.ma
    co.me
    co.mg
    co.mu
    co.mw
    co.mz
    co.na
    co.network
    co.ni
    co.nl
    co.no
    co.nz
    co.om
    co.pl
    co.place
    co.pn
    co.pw
    co.ro
    co.rs
    co.rw
    co.ss
    co.st
    co.sz
    co.technology
    co.th
    co.tj
    co.tm
    co.tt
    co.tz
    co.ua
    co.ug
    co.uk
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue May 27 22:00:49 GMT 2025
    - 129.6K bytes
    - Click Count (3)
  4. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt

       */
      @Test fun verifyNonAsciiSubjectAlt() {
        // Expecting actual:
        //  ["bar.com", "花子.co.jp"]
        // to contain exactly (and in same order):
        //  ["bar.com", "������.co.jp"]
        platform.assumeNotBouncyCastle()
    
        // CN=foo.com, subjectAlt=bar.com, subjectAlt=花子.co.jp
        // (hanako.co.jp in kanji)
        val session =
          session(
            """
            -----BEGIN CERTIFICATE-----
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 40.4K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    xj.cn
    xz.cn
    yn.cn
    zj.cn
    hk.cn
    mo.cn
    tw.cn
    
    // co : https://www.iana.org/domains/root/db/co.html
    // https://www.cointernet.com.co/registra
    // https://www.cointernet.com.co/como-funciona-un-dominio-restringido
    // Confirmed by registry <******@****.***.co> 2024-11-18
    co
    com.co
    edu.co
    gov.co
    mil.co
    net.co
    nom.co
    org.co
    
    // com : https://www.iana.org/domains/root/db/com.html
    com
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 309.7K bytes
    - Click Count (1)
  6. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    co.it
    co.je
    co.jp
    co.ke
    co.kr
    co.krd
    co.lc
    co.ls
    co.ma
    co.me
    co.mg
    co.mu
    co.mw
    co.mz
    co.na
    co.network
    co.ni
    co.nl
    co.no
    co.nz
    co.om
    co.pl
    co.place
    co.pn
    co.pw
    co.ro
    co.rs
    co.rw
    co.ss
    co.st
    co.sz
    co.technology
    co.th
    co.tj
    co.tm
    co.tt
    co.tz
    co.ua
    co.ug
    co.uk
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Dec 31 14:50:53 GMT 2024
    - 129.6K bytes
    - Click Count (2)
  7. pom.xml

    		<url>https://fess.codelibs.org/</url>
    	</organization>
    	<developers>
    		<developer>
    			<id>shinsuke</id>
    			<name>Shinsuke Sugaya</name>
    			<email>shinsuke.sugaya@codelibs.co</email>
    			<organization>CodeLibs Inc.</organization>
    			<organizationUrl>https://codelibs.co</organizationUrl>
    		</developer>
    	</developers>
    	<issueManagement>
    		<system>GitHub</system>
    		<url>https://github.com/codelibs/fess-crawler/issues</url>
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Dec 20 06:34:36 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/CertificatePinnerKotlinTest.kt

        val pin =
          Pin(
            "**.example.co.uk",
            "sha256/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
          )
        assertEquals("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=".decodeBase64(), pin.hash)
        assertEquals("sha256", pin.hashAlgorithm)
        assertEquals("**.example.co.uk", pin.pattern)
        assertTrue(pin.matchesHostname("www.example.co.uk"))
        assertTrue(pin.matchesHostname("gopher.example.co.uk"))
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  9. pom.xml

    		<url>https://www.codelibs.org/</url>
    	</organization>
    	<developers>
    		<developer>
    			<id>shinsuke</id>
    			<name>Shinsuke Sugaya</name>
    			<email>shinsuke.sugaya@codelibs.co</email>
    			<organization>CodeLibs Inc.</organization>
    			<organizationUrl>https://codelibs.co</organizationUrl>
    		</developer>
    	</developers>
    	<scm>
    		<connection>scm:git:******@****.***:codelibs/corelib.git</connection>
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Dec 20 04:15:34 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  10. android-test/src/test/kotlin/okhttp/android/test/BaseOkHttpClientUnitTest.kt

          assertThat(response.cacheResponse).isNotNull()
        }
      }
    
      @Test
      open fun testPublicSuffixDb() {
        val httpUrl = "https://www.google.co.uk".toHttpUrl()
        assertThat(httpUrl.topPrivateDomain()).isEqualTo("google.co.uk")
      }
    
      private fun assumeNetwork() {
        try {
          InetAddress.getByName("www.google.com")
        } catch (uhe: UnknownHostException) {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Jul 22 20:03:31 GMT 2025
    - 2.3K bytes
    - Click Count (0)
Back to Top