Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for rootsOf (0.11 sec)

  1. security/pkg/pki/util/keycertbundle.go

    	rcp := x509.NewCertPool()
    	rcp.AppendCertsFromPEM(rootCertBytes)
    
    	icp := x509.NewCertPool()
    	icp.AppendCertsFromPEM(certChainBytes)
    
    	opts := x509.VerifyOptions{
    		Intermediates: icp,
    		Roots:         rcp,
    	}
    	cert, err := ParsePemEncodedCertificate(certBytes)
    	if err != nil {
    		return fmt.Errorf("failed to parse cert PEM: %v", err)
    	}
    	chains, err := cert.Verify(opts)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    	}
    
    	var match func(mod module.Version, roots []string, isLocal bool) *search.Match
    	matchPattern := pkgpattern.MatchPattern(pattern)
    
    	if i := strings.Index(pattern, "..."); i >= 0 {
    		base = pathpkg.Dir(pattern[:i+3])
    		if base == "." {
    			return nil, nil, &WildcardInFirstElementError{Pattern: pattern, Query: query}
    		}
    		match = func(mod module.Version, roots []string, isLocal bool) *search.Match {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    //
    // Default config, for backward compat with Citadel:
    // - if "cacerts" secret exists in istio-system, will be mounted. It may contain an optional "root-cert.pem",
    // with additional roots and optional {ca-key, ca-cert, cert-chain}.pem user-provided root CA.
    // - if user-provided root CA is not found, the Secret "istio-ca-secret" is used, with ca-cert.pem and ca-key.pem files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-minio-idp.sh

    if [ $? -ne 0 ]; then
    	echo "adding root svc account testsvc2 failed, exiting.."
    	exit_1
    fi
    
    sleep 10
    
    export MC_HOST_rootsvc=http://testsvc2:testsvc123@localhost:9002
    ./mc ls rootsvc
    if [ $? -ne 0 ]; then
    	echo "root service account not inherited root permissions, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct info minio1 testsvc
    if [ $? -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/SessionTest.java

        @Test
        public void logonUserNoDomain () throws IOException {
            Assume.assumeTrue(getTestDomain().equalsIgnoreCase(getTestUserDomain()));
            // without a domain name, at this point we do not resolve the domain DFS roots
            Assume.assumeTrue(getProperties().get("test.share.dfsroot.url") == null);
            CIFSContext ctx = getContext();
            try ( SmbResource f = new SmbFile(
                getTestShareURL(),
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/discovery/token/token.go

    	}
    
    	klog.V(1).Infof("[discovery] Cluster info signature and contents are valid and TLS certificate validates against pinned roots, will use API Server %q", endpoint)
    
    	return secureKubeconfig, nil
    }
    
    // buildInsecureBootstrapKubeConfig makes a kubeconfig object that connects insecurely to the API Server for bootstrapping purposes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    `swiftCompile__Variant__` (e.g. `swiftCompileDebug` and `swiftCompileRelease`) extends `main__Variant__Implementation`::
    Used for compiling the application.
    This configuration contains the compile include roots of the application and is therefore used when invoking the Swift compiler to compile it.
    
    `nativeLink__Variant__` (e.g. `nativeLinkDebug` and `nativeLinkRelease`) extends `main__Variant__Implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    `cppCompileTest__Variant__` (e.g. `cppCompileTest`) extends `test__Variant__ExecutableImplementation`::
    Used for compiling the unit test.
    This configuration contains the compile include roots of the unit test and is therefore used when invoking the {cpp} compiler to compile it.
    
    `nativeLinkTest__Variant__` (e.g. `nativeLinkTest`) extends `test__Variant__ExecutableImplementation`::
    Used for linking the unit test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// If absent while TCPTransport.URL is prefixed with https://, default to system trust roots.
    	// +optional
    	CABundle string
    
    	// clientKey is the file location of the client key to authenticate with the konnectivity server
    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    		return nil, fmt.Errorf("oidc: Client and CAContentProvider are mutually exclusive")
    	}
    
    	client := opts.Client
    
    	if client == nil {
    		var roots *x509.CertPool
    		var err error
    		if opts.CAContentProvider != nil {
    			// TODO(enj): make this reload CA data dynamically
    			roots, err = certutil.NewPoolFromBytes(opts.CAContentProvider.CurrentCABundleContent())
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top