Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for rootsOf (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/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
    - 41.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/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;
    }
    
    // WebhookConversion describes how to call a conversion webhook
    message WebhookConversion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/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: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  4. src/math/big/int.go

    	// find some non-square n
    	var n Int
    	n.SetInt64(2)
    	for Jacobi(&n, p) != -1 {
    		n.Add(&n, intOne)
    	}
    
    	// Core of the Tonelli-Shanks algorithm. Follows the description in
    	// section 6 of "Square roots from 1; 24, 51, 10 to Dan Shanks" by Ezra
    	// Brown:
    	// https://www.maa.org/sites/default/files/pdf/upload_library/22/Polya/07468342.di020786.02p0470a.pdf
    	var y, b, g, t Int
    	y.Add(&s, intOne)
    	y.Rsh(&y, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    * When <<groovy_plugin.adoc#sec:incremental_groovy_compilation,incremental Groovy compilation>> is enabled, a wrong configuration of the source roots or enabling Java annotation for Groovy now fails the build.
      Disable incremental Groovy compilation when you want to compile in those cases.
    * `ComponentSelectionRule` no longer can inject the metadata or ivy descriptor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top