Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for roots (0.06 sec)

  1. src/go/types/expr.go

    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    sub-expression trees are left alone except for their roots). This mechanism
    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/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: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// settings.
    	VerifyConnection func(ConnectionState) error
    
    	// RootCAs defines the set of root certificate authorities
    	// that clients use when verifying server certificates.
    	// If RootCAs is nil, TLS uses the host's root CA set.
    	RootCAs *x509.CertPool
    
    	// NextProtos is a list of supported application level protocols, in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    sub-expression trees are left alone except for their roots). This mechanism
    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// `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 `json:"caBundle,omitempty" protobuf:"bytes,2,opt,name=caBundle"`
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    				p.Goroot = true
    				p.Root = ctxt.GOROOT
    				goto Found
    			}
    		}
    		for _, root := range gopath {
    			dir := ctxt.joinPath(root, "src", path)
    			isDir := ctxt.isDir(dir)
    			binaryOnly = !isDir && mode&AllowBinary != 0 && pkga != "" && ctxt.isFile(ctxt.joinPath(root, pkga))
    			if isDir || binaryOnly {
    				p.Dir = dir
    				p.Root = root
    				goto Found
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// `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 `json:"caBundle,omitempty" protobuf:"bytes,2,opt,name=caBundle"`
    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            thrown InvalidUserDataException
        }
    
        def "creates hierarchy"() {
            def root1 = conf("root1")
            def middle1 = conf("middle1").extendsFrom(root1)
            def root2 = conf("root2")
            def middle2 = conf("middle2").extendsFrom(root2)
            def leaf = conf("leaf1").extendsFrom(middle1, middle2)
    
            when:
            def hierarchy = leaf.hierarchy
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top