Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for pin2 (0.03 sec)

  1. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    pi.leg.br
    piacenza.it
    picard.replit.dev
    pics
    pictet
    pictures
    pid
    piedmont.it
    piemonte.it
    pigboat.jp
    pike.replit.dev
    pila.pl
    pilot.aero
    pimienta.org
    pin
    pinb.gov.pl
    ping
    pink
    pinoko.jp
    pioneer
    pippu.hokkaido.jp
    pisa.it
    pistoia.it
    pisz.pl
    piw.gov.pl
    pixolino.com
    pizza
    pk
    pl
    pl.eu.org
    pl.ua
    place
    platform0.app
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  2. guava/src/com/google/common/io/ByteStreams.java

      /** Compares the contents of the two {@link InputStream}s for equality. */
      static boolean contentsEqual(InputStream in1, InputStream in2) throws IOException {
        byte[] buf1 = createBuffer();
        byte[] buf2 = createBuffer();
        while (true) {
          int read1 = read(in1, buf1, 0, BUFFER_SIZE);
          int read2 = read(in2, buf2, 0, BUFFER_SIZE);
          if (read1 != read2 || !arraysEqual(buf1, buf2, read1)) {
            return false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            });
    
        }
    
        /**
         * Pings the search engine cluster to check connectivity and health.
         *
         * @return the ping response with cluster information
         * @throws SearchEngineClientException if the ping fails
         */
        public PingResponse ping() {
            try {
                final ClusterHealthResponse response =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

        val request1 = Request.Builder().url(server.url("/")).build()
        val response1 = client.newCall(request1).execute()
        val certificatePinnerBuilder = CertificatePinner.Builder()
        for (certificate in response1.handshake!!.peerCertificates) {
          certificatePinnerBuilder.add(
            server.hostName,
            pin(certificate),
          )
        }
    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. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

      fun testCertificatePinningSuccess() {
        enableTls()
    
        val certificatePinner =
          CertificatePinner
            .Builder()
            .add(
              server.hostName,
              CertificatePinner.pin(handshakeCertificates.trustManager.acceptedIssuers[0]),
            ).build()
        client = client.newBuilder().certificatePinner(certificatePinner).build()
    
        server.enqueue(MockResponse(body = "abc"))
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 14:12:28 UTC 2025
    - 29K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

        ```
    
     * **`CertificatePinner` now supports wildcard hostnames.** As always with
       certificate pinning, you must be very careful to avoid [bricking][brick]
       your app. You'll need to pin both the top-level domain and the `*.` domain
       for full coverage.
    
        ```java
         client.setCertificatePinner(new CertificatePinner.Builder()
             .add("publicobject.com",   "sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw=")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. okhttp/api/android/okhttp.api

    }
    
    public final class okhttp3/CertificatePinner$Companion {
    	public final fun pin (Ljava/security/cert/Certificate;)Ljava/lang/String;
    	public final fun sha1Hash (Ljava/security/cert/X509Certificate;)Lokio/ByteString;
    	public final fun sha256Hash (Ljava/security/cert/X509Certificate;)Lokio/ByteString;
    }
    
    public final class okhttp3/CertificatePinner$Pin {
    	public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        val in2 = response2.body.source()
        assertThat(in2.readUtf8("I love puppies but hate spiders".length.toLong()))
          .isEqualTo(
            "I love puppies but hate spiders",
          )
        assertThat(response2.code).isEqualTo(200)
        assertThat(response2.message).isEqualTo("Fantastic")
        assertThat(in2.exhausted()).isTrue()
        in2.close()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    # Whether to allow credentials for CORS.
    api.cors.allow.credentials=true
    # Whether to enable JSONP for API.
    api.jsonp.enabled=false
    # Fields for API ping to search engine.
    api.ping.search_engine.fields=status,timed_out
    
    
    # Virtual Host: Host:fess.codelibs.org=fess
    virtual.host.headers=
    
    # Hostname for the HTTP proxy server.
    http.proxy.host=
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        in1.close()
        call1.cancel()
        val call2 = client.newCall(newRequest("/"))
        val response2 = call2.execute()
        val in2 = response2.body.byteStream()
        assertThat(readAscii(in2, 5)).isEqualTo("LMNOP")
        in2.close()
        call2.cancel()
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(0)
        // Connection is pooled!
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top