Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Authorities (0.15 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. releasenotes/notes/27606.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 27606
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:21:40 UTC 2020
    - 243 bytes
    - Viewed (0)
  5. samples/guide/src/main/java/okhttp3/recipes/CustomCipherSuites.java

        sslContext.init(null, new TrustManager[] { trustManager }, null);
    
        return sslContext.getSocketFactory();
      }
    
      /** Returns a trust manager that trusts the VM's default certificate authorities. */
      private X509TrustManager defaultTrustManager() throws GeneralSecurityException {
        TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(
            TrustManagerFactory.getDefaultAlgorithm());
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Mar 14 21:57:42 UTC 2019
    - 6.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
Back to top