Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 142 for roots (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      llvm::DenseMap<unsigned, Cluster> root_clusters;
    
      for (Member &member : state.members) {
        unsigned root = state.FindRoot(member.root);
        Cluster &cluster = root_clusters.FindAndConstruct(root).getSecond();
    
        // If member is a root of the cluster, copy inferred constraints.
        if (state.FindRoot(member.root) == member.root)
          cluster.constraints = std::move(member.constraints);
    
        // Add operation to the cluster.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. security/pkg/pki/util/generate_cert_test.go

    		}
    		if !bytes.Equal(rc, tc.expectedRootCert) {
    			t.Errorf("[%s] root cert does not match. %v VS (expected) %v", id, rc, tc.expectedRootCert)
    		}
    	}
    }
    
    // TestGenRootCertFromExistingKey creates original root certificate and private key, and then
    // uses the private key to generate a new root certificate. Verifies that the new root certificate
    // matches old root certificate except lifetime changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // +optional
      optional ServiceReference service = 1;
    
      // `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
      // If unspecified, system trust roots on the apiserver are used.
      // +optional
      optional bytes caBundle = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                contextualLabel == "Property \'output\' is not writable because \'${outputFile.absolutePath}\' is not a directory"
                details == "Expected the root of the file tree \'${outputFile.absolutePath}\' to be a directory but it\'s a file"
                solutions == [ 'Make sure that the root of the file tree \'output\' is configured to a directory' ]
                additionalData.asMap == [
                    'typeName' : 'org.gradle.api.DefaultTask',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	//
    	// +optional
    	Service *ServiceReference
    
    	// `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
    	// If unspecified, system trust roots on the apiserver are used.
    	// +optional
    	CABundle []byte
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    type ServiceReference struct {
    	// `namespace` is the namespace of the service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // +optional
      optional ServiceReference service = 1;
    
      // `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
      // If unspecified, system trust roots on the apiserver are used.
      // +optional
      optional bytes caBundle = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/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 `json:"caBundle,omitempty"`
    
    	// clientKey is the file location of the client key to be used in mtls handshakes with the konnectivity server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    // intermediate CAs back to the root CA
    func VerifyCertChain(cert *x509.Certificate, intermediates []*x509.Certificate, root *x509.Certificate) error {
    	rootPool := x509.NewCertPool()
    	rootPool.AddCert(root)
    
    	intermediatePool := x509.NewCertPool()
    	for _, c := range intermediates {
    		intermediatePool.AddCert(c)
    	}
    
    	verifyOptions := x509.VerifyOptions{
    		Roots:         rootPool,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server.go

    			c.sendAlert(alertBadCertificate)
    		}
    		return errors.New("tls: client didn't provide a certificate")
    	}
    
    	if c.config.ClientAuth >= VerifyClientCertIfGiven && len(certs) > 0 {
    		opts := x509.VerifyOptions{
    			Roots:         c.config.ClientCAs,
    			CurrentTime:   c.config.time(),
    			Intermediates: x509.NewCertPool(),
    			KeyUsages:     []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		}
    
    		for _, cert := range certs[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/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 `json:"caBundle,omitempty"`
    
    	// clientKey is the file location of the client key to be used in mtls handshakes with the konnectivity server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top