Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for skewX (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top