Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Ca (0.06 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

          }
        }
      }
    
      /**
       * Not checking the CA bit created a vulnerability in old OkHttp releases. It is exploited by
       * triggering different chains to be discovered by the TLS engine and our chain cleaner. In this
       * attack there's several different chains.
       *
       *
       * The victim's gets a non-CA certificate signed by a CA, and pins the CA root and/or
       * intermediate. This is business as usual.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 24.3K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb1/dcerpc/UnicodeString.java

            }
        }
    
        @Override
        public String toString() {
            final int len = length / 2 - (zterm ? 1 : 0);
            final char[] ca = new char[len];
            for (int i = 0; i < len; i++) {
                ca[i] = (char) buffer[i];
            }
            return new String(ca, 0, len);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              // keep-sorted start
              "dominio.com.co",
              "foo.bar.ca",
              "foo.bar.co.il",
              "foo.bar.com",
              "foo.blogspot.co.uk",
              "foo.blogspot.com",
              "foo.ca",
              "foo.eDu.au",
              "foo.uk.com",
              "home.netscape.com",
              "pvt.k12.ca.us",
              "state.CA.us",
              "utenti.blah.IT",
              "web.MIT.edu",
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    moc?ude???t!.&arukas,bew-eht-no,morf,naht-&esrow,retteb,?sndnyd,?d?i?won??uqhv--nx??w&a!.moc?l??b!.&ca?gro?oc?ten?vog???c!.&gro?moc?ten?ude??cp??e&iver?n?s??g!.xn,?k!.&bme?dni?gro?moc?ten?ude?vog???m!.&ca?gro?moc?oc?pooc?t&en?ni??ude?vog?zib??b??o&csom?h!s??n?w??p!.&344x,snduolc,vog???r!.&ca?gro?lim?oc?pooc?ten?vog??n??t!.&bulc?emag?gro?l&im?ru,?moc!.reliamym,?sndym,ten?ude?v&di?og??zibe???z!.&ca?gro?lim?oc?vog????x&a!t??c!.&dehcraeser,hta,ofni,s&ezziuq,lennuf,nduolc,rotaluclac,t&nemssessa,set,?...
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:39:59 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/UnicodeString.java

            }
        }
    
        @Override
        public String toString() {
            final int len = this.length / 2 - (this.zterm ? 1 : 0);
            final char[] ca = new char[len];
            for (int i = 0; i < len; i++) {
                ca[i] = (char) this.buffer[i];
            }
            return new String(ca, 0, len);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

            .Builder()
            .url(url)
            .header("Accept-Language", "fr-CA")
            .build()
        val response1 = client.newCall(request).execute()
        assertThat(response1.body.string()).isEqualTo("A")
        val request1 =
          Request
            .Builder()
            .url(url)
            .header("Accept-Language", "fr-CA")
            .build()
        val response2 = 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)
  7. android/guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java

              0x00, 0x00, 0x00, 0x00,
              0x02, 0x00, 0x00, 0x00,
              0x00, 0x00, 0x00, 0x00
            };
        assertCrc(0xd9963a56, scsiReadCommand);
      }
    
      // Known values from http://www.evanjones.ca/crc32c.html
      public void testSomeOtherKnownValues() {
        assertCrc(0x22620404, "The quick brown fox jumps over the lazy dog".getBytes(UTF_8));
        assertCrc(0xE3069283, "123456789".getBytes(UTF_8));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

         * 2
         * Accept-Language: fr-CA
         * Accept-Charset: UTF-8
         * HTTP/1.1 200 OK
         * 3
         * Content-Type: image/png
         * Content-Length: 100
         * Cache-Control: max-age=600
         * ```
         *
         * A typical HTTPS file looks like this:
         *
         * ```
         * https://google.com/foo
         * GET
         * 2
         * Accept-Language: fr-CA
         * Accept-Charset: UTF-8
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/netbios/NameTest.java

            assertEquals('F', dst[1]); // (0x54 >> 4) + 0x41 = 0x46 = 'F'
            assertEquals('E', dst[2]); // (0x54 & 0x0F) + 0x41 = 0x45 = 'E'
    
            // Check padding (positions 8-30 should be 'CA' pairs for spaces)
            for (int i = 8; i < 31; i += 2) {
                assertEquals('C', dst[i + 1]);
                assertEquals('A', dst[i + 2]);
            }
    
            // Check type encoding at position 31-32
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    query.json.default.preference=_query
    # Default preference for GSA queries.
    query.gsa.default.preference=_query
    # Language mapping for queries.
    query.language.mapping=\
    ar=ar\n\
    bg=bg\n\
    bn=bn\n\
    ca=ca\n\
    ckb-iq=ckb-iq\n\
    ckb_IQ=ckb-iq\n\
    cs=cs\n\
    da=da\n\
    de=de\n\
    el=el\n\
    en=en\n\
    en-ie=en-ie\n\
    en_IE=en-ie\n\
    es=es\n\
    et=et\n\
    eu=eu\n\
    fa=fa\n\
    fi=fi\n\
    fr=fr\n\
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top