Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 296 for Hostnames (0.16 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "namespace": "default",
          "hostname": "kubernetes.default.svc.cluster.local",
          "vips": [
            "/10.96.0.1"
          ],
          "ports": {
            "443": 6443
          },
          "endpoints": {},
          "subjectAltNames": []
        },
        "/10.96.71.36": {
          "name": "bookinfo-productpage-istio-waypoint",
          "namespace": "bookinfo",
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidCertificateChainCleaner.kt

      @SuppressSignatureCheck
      override fun clean(
        chain: List<Certificate>,
        hostname: String,
      ): List<Certificate> {
        val certificates = (chain as List<X509Certificate>).toTypedArray()
        try {
          return x509TrustManagerExtensions.checkServerTrusted(certificates, "RSA", hostname)
        } catch (ce: CertificateException) {
          throw SSLPeerUnverifiedException(ce.message).apply { initCause(ce) }
        }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // onion : https://tools.ietf.org/html/rfc7686
    onion
    
    // org : https://en.wikipedia.org/wiki/.org
    org
    
    // pa : http://www.nic.pa/
    // Some additional second level "domains" resolve directly as hostnames, such as
    // pannet.pa, so we add a rule for "pa".
    pa
    ac.pa
    gob.pa
    com.pa
    org.pa
    sld.pa
    edu.pa
    net.pa
    ing.pa
    abo.pa
    med.pa
    nom.pa
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebAuthenticationDbm.java

                false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnHostname = cci("hostname", "hostname", null, null, String.class, "hostname", null, false, false,
                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13K bytes
    - Viewed (0)
  5. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

        }
    
      val port: Int
        get() {
          before() // This implicitly starts the delegate.
          return delegate.port
        }
    
      val hostName: String
        get() {
          before() // This implicitly starts the delegate.
          return delegate.hostName
        }
    
      var protocolNegotiationEnabled: Boolean by delegate::protocolNegotiationEnabled
    
      @get:JvmName("protocols")
      var protocols: List<Protocol>
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 23 14:31:42 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth.jsp

                                                                    test="${data.hostname==null||data.hostname==''}">
                                                                <la:message key="labels.file_auth_any"/>
                                                            </c:if> ${f:h(data.hostname)}: <c:if
                                                                    test="${data.port==null||data.port==''}">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 27 06:24:23 GMT 2020
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/Crawler.java

                }
    
                String hostname = fessConfig.getMailHostname();
                if (StringUtil.isBlank(hostname)) {
                    hostname = ComponentUtil.getSystemHelper().getHostname();
                }
                dataMap.put("hostname", hostname);
    
                logger.debug("\ninfoMap: {}\ndataMap: {}", infoMap, dataMap);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  8. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_edit.jsp

                                        <label for="hostname" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.file_auth_hostname"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="hostname"/>
                                            <la:text styleId="hostname" property="hostname" styleClass="form-control"/>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 7.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp

                                        <label for="hostname" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.webauth_hostname"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="hostname"/>
                                            <la:text styleId="hostname" property="hostname" styleClass="form-control"/>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/ConnectionListenerTest.kt

          ),
        )
        server!!.enqueue(MockResponse())
        val dns = FakeDns()
        dns["fakeurl"] = client.dns.lookup(server!!.hostName)
        dns["www.fakeurl"] = client.dns.lookup(server!!.hostName)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
        val call =
          client.newCall(
            Request.Builder()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top