Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for skewX (0.04 sec)

  1. 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)
  2. cmd/kubeadm/app/constants/constants.go

    	// This would require keeping track of the supported skew in a table.
    	// More changes would be required if the kubelet version one day decouples from that of Kubernetes.
    	var ver *version.Version
    	if len(versionInfo.Major) == 0 {
    		return DefaultKubernetesPlaceholderVersion
    	}
    	ver = version.MustParseSemantic(versionInfo.GitVersion)
    	// Append the MINOR version skew.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. 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)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    late-y",["transform",Te]]]]],{supportsNegativeValues:!0}),rotate:P("rotate",[["rotate",[["@defaults transform",{}],"--tw-rotate",["transform",Te]]]],{supportsNegativeValues:!0}),skew:P("skew",[[["skew-x",[["@defaults transform",{}],"--tw-skew-x",["transform",Te]]],["skew-y",[["@defaults transform",{}],"--tw-skew-y",["transform",Te]]]]],{supportsNegativeValues:!0}),scale:P("scale",[["scale",[["@defaults transform",{}],"--tw-scale-x","--tw-scale-y",["transform",Te]]],[["scale-x",[["@defaults trans...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. pkg/controller/statefulset/stateful_set.go

    			logger.V(2).Info("StatefulSet will be enqueued after minReadySeconds for availability check", "statefulSet", klog.KObj(set), "minReadySeconds", set.Spec.MinReadySeconds)
    			// Add a second to avoid milliseconds skew in AddAfter.
    			// See https://github.com/kubernetes/kubernetes/issues/39785#issuecomment-279959133 for more info.
    			ssc.enqueueSSAfter(set, (time.Duration(set.Spec.MinReadySeconds)*time.Second)+time.Second)
    		}
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. 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)
  7. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    // topology domain, the constraint's maxSkew and the topology weight.
    // `maxSkew-1` is added to the score so that differences between topology
    // domains get watered down, controlling the tolerance of the score to skews.
    func scoreForCount(cnt int64, maxSkew int32, tpWeight float64) float64 {
    	return float64(cnt)*tpWeight + float64(maxSkew-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    // This algorithm is taken from RFC 3492 section 6.2.
    func (rst *rustState) expandPunycode(s string) string {
    	const (
    		base        = 36
    		tmin        = 1
    		tmax        = 26
    		skew        = 38
    		damp        = 700
    		initialBias = 72
    		initialN    = 128
    	)
    
    	var (
    		output   []rune
    		encoding string
    	)
    	idx := strings.LastIndex(s, "_")
    	if idx >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  9. src/cmd/go/main.go

    		}
    	}
    
    	// Set environment (GOOS, GOARCH, etc) explicitly.
    	// In theory all the commands we invoke should have
    	// the same default computation of these as we do,
    	// but in practice there might be skew
    	// This makes sure we all agree.
    	cfg.OrigEnv = toolchain.FilterEnv(os.Environ())
    	cfg.CmdEnv = envcmd.MkEnv()
    	for _, env := range cfg.CmdEnv {
    		if os.Getenv(env.Name) != env.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	finishAt, expireAt, err := getFinishAndExpireTime(j)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	if finishAt.After(*since) {
    		logger.Info("Warning: Found Job finished in the future. This is likely due to time skew in the cluster. Job cleanup will be deferred.", "job", klog.KObj(j))
    	}
    	remaining := expireAt.Sub(*since)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top