Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for skewX (0.06 sec)

  1. src/runtime/metrics.go

    // of one another and other runtime memory stats. The fact that they
    // may be acquired at different times, especially with respect to
    // heapStatsAggregate, means there could be some skew, but because of
    // these stats are independent, there's no real consistency issue here.
    type sysStatsAggregate struct {
    	stacksSys      uint64
    	mSpanSys       uint64
    	mSpanInUse     uint64
    	mCacheSys      uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/testing/testserver.go

    	// 1. kube-apiserver and peer when the local apiserver is not able to serve the request due
    	// to version skew
    	// 2. kube-apiserver and aggregated apiserver
    
    	// We specify this as on option to pass a common proxyCA to multiple apiservers to simulate
    	// an apiserver version skew scenario where all apiservers use the same proxyCA to verify client connections.
    	ProxyCA *ProxyCA
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controlplane/apiserver/config.go

    	// PeerAdvertiseAddress is the IP for this kube-apiserver which is used by peer apiservers to route a request
    	// to this apiserver. This happens in cases where the peer is not able to serve the request due to
    	// version skew. If unset, AdvertiseAddress/BindAddress will be used.
    	PeerAdvertiseAddress peerreconcilers.PeerAdvertiseAddress
    
    	ServiceAccountIssuer        serviceaccount.TokenGenerator
    	ServiceAccountMaxExpiration time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. src/go/doc/testdata/testing.go

    		// If all tests pump to the same channel, a bug can occur where a test
    		// kicks off a goroutine that Fails, yet the test still delivers a completion signal,
    		// which skews the counting.
    		var collector = make(chan any)
    
    		numParallel := 0
    		startParallel := make(chan bool)
    
    		for i := 0; i < len(tests); i++ {
    			matched, err := matchString(*match, tests[i].Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top