Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 188 for roots (0.07 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. src/math/big/int.go

    // modSqrt5Mod8Prime uses Atkin's observation that 2 is not a square mod p
    //
    //	alpha ==  (2*a)^((p-5)/8)    mod p
    //	beta  ==  2*a*alpha^2        mod p  is a square root of -1
    //	b     ==  a*alpha*(beta-1)   mod p  is a square root of a
    //
    // to calculate the square root of any quadratic residue mod p quickly for 5
    // mod 8 primes.
    func (z *Int) modSqrt5Mod8Prime(x, p *Int) *Int {
    	// p == 5 mod 8 implies p = e*8 + 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"caBundle": "`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.",
    }
    
    func (WebhookClientConfig) SwaggerDoc() map[string]string {
    	return map_WebhookClientConfig
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== Changes to build and task names in composite builds
    
    Previously, Gradle used the name of the root project as the build name for an included build.
    Now, the name of the build's root directory is used and the root project name is not considered if different.
    A different name for the build can be specified if the build is being included via a settings file.
    
    ```kotlin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top