Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for skewY (0.21 sec)

  1. .github/SECURITY.md

    [Kubernetes version and version skew support policy] page on the Kubernetes website.
    
    ## Reporting a Vulnerability
    
    Instructions for reporting a vulnerability can be found on the
    [Kubernetes Security and Disclosure Information] page.
    
    [Kubernetes version and version skew support policy]: https://kubernetes.io/docs/setup/release/version-skew-policy/#supported-versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 16 17:14:26 UTC 2019
    - 616 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/policy.go

    	MaximumAllowedMinorVersionDowngradeSkew = 1
    
    	// MaximumAllowedMinorVersionKubeletSkew describes how many minor versions the control plane version and the kubelet can skew in a kubeadm cluster
    	MaximumAllowedMinorVersionKubeletSkew = 3
    )
    
    // VersionSkewPolicyErrors describes version skew errors that might be seen during the validation process in EnforceVersionPolicies
    type VersionSkewPolicyErrors struct {
    	Mandatory []error
    	Skippable []error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/punycode.go

    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    // encode encodes a string as specified in section 6.3 and prepends prefix to
    // the result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/punycode.go

    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    func punyError(s string) error { return &labelError{s, "A3"} }
    
    // decode decodes a string as specified in section 6.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/type.go

    func (n *typeNode) Sym() *types.Sym   { return n.typ.Sym() }
    
    // TypeNode returns the Node representing the type t.
    func TypeNode(t *types.Type) Node {
    	if n := t.Obj(); n != nil {
    		if n.Type() != t {
    			base.Fatalf("type skew: %v has type %v, but expected %v", n, n.Type(), t)
    		}
    		return n.(*Name)
    	}
    	return newTypeNode(t)
    }
    
    // A DynamicType represents a type expression whose exact type must be
    // computed dynamically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 20 05:56:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

     */
    object Punycode {
      val PREFIX_STRING = "xn--"
      val PREFIX = PREFIX_STRING.encodeUtf8()
    
      private const val BASE = 36
      private const val TMIN = 1
      private const val TMAX = 26
      private const val SKEW = 38
      private const val DAMP = 700
      private const val INITIAL_BIAS = 72
      private const val INITIAL_N = 0x80
    
      /**
       * Returns null if any label is oversized so much that the encoder cannot encode it without
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/internal/platform/zosarch_test.go

    func TestGenerated(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    
    	// Here we use 'go run cmd/dist' instead of 'go tool dist' in case the
    	// installed cmd/dist is stale or missing. We don't want to miss a
    	// skew in the data due to a stale binary.
    	cmd := testenv.Command(t, "go", "run", "cmd/dist", "list", "-json", "-broken")
    
    	// cmd/dist requires GOROOT to be set explicitly in the environment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. tests/integration/pilot/cni/cniversionskew_test.go

    func TestCNIVersionSkew(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			if !i.Settings().EnableCNI {
    				t.Skip("CNI version skew test is only tested when CNI is enabled.")
    			}
    			for _, v := range versions {
    				installCNIOrFail(t, v)
    				podFetchFn := kube.NewSinglePodFetch(t.Clusters().Default(), i.Settings().SystemNamespace, "k8s-app=istio-cni-node")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/proxy/util/utils.go

    	}
    	return nil
    }
    
    // GetClusterIPByFamily returns a service clusterip by family
    func GetClusterIPByFamily(ipFamily v1.IPFamily, service *v1.Service) string {
    	// allowing skew
    	if len(service.Spec.IPFamilies) == 0 {
    		if len(service.Spec.ClusterIP) == 0 || service.Spec.ClusterIP == v1.ClusterIPNone {
    			return ""
    		}
    
    		IsIPv6Family := (ipFamily == v1.IPv6Protocol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/go/doc/testdata/benchmark.go

    				continue
    			}
    			fmt.Printf("%v\n", r)
    			// Unlike with tests, we ignore the -chatty flag and always print output for
    			// benchmarks since the output generation time will skew the results.
    			if len(b.output) > 0 {
    				b.trimOutput()
    				fmt.Printf("--- BENCH: %s\n%s", benchName, b.output)
    			}
    			if p := runtime.GOMAXPROCS(-1); p != procs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top