Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 142 for roots (0.05 sec)

  1. 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)
  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. 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)
  6. 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)
  7. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    			Name: "ctb1",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root1"),
    		},
    	}
    
    	ctb2 := &certificatesv1alpha1.ClusterTrustBundle{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "ctb2",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root2"),
    		},
    	}
    
    	kc := fake.NewSimpleClientset(ctb1, ctb2)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K 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. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

        val dohEnabledClient =
          client.newBuilder().eventListener(EventListener.NONE).dns(dohDns).build()
    
        dohEnabledClient.get("https://www.twitter.com/robots.txt")
        dohEnabledClient.get("https://www.facebook.com/robots.txt")
      }
    
      @Test
      fun testCustomTrustManager() {
        assumeNetwork()
    
        val trustManager =
          object : X509TrustManager {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top