Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Authorities (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/client/CrawlerEngineClient.java

                builder.put(Constants.FESEN_PASSWORD, password);
            }
            final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities();
            if (StringUtil.isNotBlank(authorities)) {
                builder.put("http.ssl.certificate_authorities", authorities);
            }
            return new HttpClient(builder.build(), null);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CurlHelper.java

            final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities();
            if (StringUtil.isNotBlank(authorities)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Loading certificate_authorities: {}", authorities);
                }
                try (final InputStream in = new FileInputStream(authorities)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. okhttp-tls/README.md

    signs the other party's chain.
    
    Well-Known Certificate Authorities
    ----------------------------------
    
    In these examples we've prearranged which root certificates to trust. But for regular HTTPS on the
    Internet this set of trusted root certificates is usually provided by default by the host platform.
    Such a set typically includes many root certificates from well-known certificate authorities like
    Entrust and Verisign.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	if len(m.Answers) > 0 {
    		s += m.Answers[0].GoString()
    		for _, a := range m.Answers[1:] {
    			s += ", " + a.GoString()
    		}
    	}
    	s += "}, Authorities: []dnsmessage.Resource{"
    	if len(m.Authorities) > 0 {
    		s += m.Authorities[0].GoString()
    		for _, a := range m.Authorities[1:] {
    			s += ", " + a.GoString()
    		}
    	}
    	s += "}, Additionals: []dnsmessage.Resource{"
    	if len(m.Additionals) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. docs/features/https.md

    and increase connectivity with web servers.
    
    ### Certificate Pinning ([.kt][CertificatePinningKotlin], [.java][CertificatePinningJava])
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

    import okio.ByteString.Companion.toByteString
    
    /**
     * Constrains which certificates are trusted. Pinning certificates defends against attacks on
     * certificate authorities. It also prevents connections through man-in-the-middle certificate
     * authorities either known or unknown to the application's user.
     * This class currently pins a certificate's Subject Public Key Info as described on
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    	metav1.TypeMeta
    
    	// Certificates holds a list of certificates to show expiration information for.
    	Certificates []Certificate `json:"certificates"`
    
    	// CertificateAuthorities holds a list of certificate authorities to show expiration information for.
    	CertificateAuthorities []Certificate `json:"certificateAuthorities"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/output/types.go

    	metav1.TypeMeta
    
    	// Certificates holds a list of certificates to show expiration information for.
    	Certificates []Certificate
    
    	// CertificateAuthorities holds a list of certificate authorities to show expiration information for.
    	CertificateAuthorities []Certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    		"kubeadm init phase upload-certs --upload-certs" to reload certs afterward.
    
    		{{else -}}
    		You can now join any number of control-plane nodes by copying certificate authorities
    		and service account keys on each node and then running the following as root:
    
    		  {{.joinControlPlaneCommand}}
    
    		{{end}}{{end}}Then you can join any number of worker nodes by running the following on each as root:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		"List of client certificate common names to allow to provide usernames in headers "+
    		"specified by --requestheader-username-headers. If empty, any client certificate validated "+
    		"by the authorities in --requestheader-client-ca-file is allowed.")
    }
    
    // ToAuthenticationRequestHeaderConfig returns a RequestHeaderConfig config object for these options
    // if necessary, nil otherwise.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
Back to top