Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for roots (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. istioctl/cmd/root.go

    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. cni/pkg/cmd/root.go

    John Howard <******@****.***> 1718209595 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_windows.go

    		result.Memory.AvailableBytes = uint64Ptr(0)
    		result.Memory.PageFaults = uint64Ptr(0)
    	}
    	if stats.WritableLayer != nil {
    		result.Rootfs.Time = metav1.NewTime(time.Unix(0, stats.WritableLayer.Timestamp))
    		if stats.WritableLayer.UsedBytes != nil {
    			result.Rootfs.UsedBytes = &stats.WritableLayer.UsedBytes.Value
    		}
    	}
    	var err error
    	fsID := stats.GetWritableLayer().GetFsId()
    	if fsID != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    		t.Errorf("makeWinContainerStats() Memory = %v, want %v", got.Memory, expected.Memory)
    	}
    
    	if !reflect.DeepEqual(got.Rootfs, expected.Rootfs) {
    		t.Errorf("makeWinContainerStats() Rootfs = %v, want %v", got.Rootfs, expected.Rootfs)
    	}
    
    	// Log stats contain pointers to calculated resource values so we cannot use DeepEqual here
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        private static final String X_ROBOTS_TAG = "X-Robots-Tag";
    
        private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content";
    
        private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content";
    
        private static final String META_NAME_ROBOTS_CONTENT = "//META[@name=\"robots\" or @name=\"ROBOTS\"]/@content";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top