Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/controller/deployment/progress.go

    		dc.enqueueRateLimited(d)
    		return time.Duration(0)
    	}
    	logger.V(4).Info("Queueing up deployment for a progress check", "deployment", klog.KObj(d), "queueAfter", int(after.Seconds()))
    	// Add a second to avoid milliseconds skew in AddAfter.
    	// See https://github.com/kubernetes/kubernetes/issues/39785#issuecomment-279959133 for more info.
    	dc.enqueueAfter(d, after+time.Second)
    	return after
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top