Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Hostnames (0.36 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            this.protocols = Collections.unmodifiableList(protocolsCopy)
          }
    
        /**
         * Sets the verifier used to confirm that response certificates apply to requested hostnames for
         * HTTPS connections.
         *
         * If unset, a default hostname verifier will be used.
         */
        fun hostnameVerifier(hostnameVerifier: HostnameVerifier) =
          apply {
            if (hostnameVerifier != this.hostnameVerifier) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:21:33 GMT 2024
    - 52K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * ```
     *
     * When parsing URLs that lack percent encoding where it is required, this class will percent encode
     * the offending characters.
     *
     * ### IDNA Mapping and Punycode encoding
     *
     * Hostnames have different requirements and use a different encoding scheme. It consists of IDNA
     * mapping and Punycode encoding.
     *
     * In order to avoid confusion and discourage phishing attacks, [IDNA Mapping][idna] transforms
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setHostname_SpanTerm(String hostname) {
            setHostname_SpanTerm("hostname", null);
        }
    
        public void setHostname_SpanTerm(String hostname, ConditionOptionCall<SpanTermQueryBuilder> opLambda) {
            SpanTermQueryBuilder builder = regSpanTermQ("hostname", hostname);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 88.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setHostname_SpanTerm(String hostname) {
            setHostname_SpanTerm("hostname", null);
        }
    
        public void setHostname_SpanTerm(String hostname, ConditionOptionCall<SpanTermQueryBuilder> opLambda) {
            SpanTermQueryBuilder builder = regSpanTermQ("hostname", hostname);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 95.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileAuthenticationCA.java

        public void setHostname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setHostname_Terms("hostname", opLambda, null);
        }
    
        public void setHostname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFileAuthenticationCA> aggsLambda) {
            setHostname_Terms("hostname", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 71.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebAuthenticationCA.java

        public void setHostname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setHostname_Terms("hostname", opLambda, null);
        }
    
        public void setHostname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsWebAuthenticationCA> aggsLambda) {
            setHostname_Terms("hostname", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 76.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        assertThat(dnsStart.call).isSameAs(call)
        assertThat(dnsStart.domainName).isEqualTo(server.hostName)
        val dnsEnd: DnsEnd = listener.removeUpToEvent<DnsEnd>()
        assertThat(dnsEnd.call).isSameAs(call)
        assertThat(dnsEnd.domainName).isEqualTo(server.hostName)
        assertThat(dnsEnd.inetAddressList.size).isEqualTo(1)
      }
    
      @Test
      fun noDnsLookupOnPooledConnection() {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(request.requestLine).isEqualTo("GET /foo HTTP/1.1")
        assertThat(request.headers[":scheme"]).isEqualTo(scheme)
        assertThat(request.headers[":authority"]).isEqualTo("${server.hostName}:${server.port}")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun get204Response(
        protocol: Protocol,
        mockWebServer: MockWebServer,
      ) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    ```
    
    ## Publish MinIO events via PostgreSQL
    
    > NOTE: Until release RELEASE.2020-04-10T03-34-42Z PostgreSQL notification used to support following options:
    >
    > ```
    > host                (hostname)           Postgres server hostname (used only if `connection_string` is empty)
    > port                (port)               Postgres server port, defaults to `5432` (used only if `connection_string` is empty)
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string clientCIDR = 1;
    
      // Address of this server, suitable for a client that matches the above CIDR.
      // This can be a hostname, hostname:port, IP or IP:port.
      optional string serverAddress = 2;
    }
    
    // Status is a return value for calls that don't return other objects.
    message Status {
      // Standard list metadata.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
Back to top