Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for stabilize (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                LOGGER.warn("The dependency resolution engine wasn't able to find a version of module {} which satisfied all requirements because the graph wasn't stable enough. " +
                    "The highest version was selected in order to stabilize selection.\n" +
                    "Features available in a stable graph like version alignment are not guaranteed in this case.", id);
            }
            boolean newSelectedIsProject = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. src/iter/pull_test.go

    			c++
    		} else {
    			c = 0
    			ng = nng
    		}
    		if c >= 100 {
    			// The same value 100 times in a row is good enough.
    			return ng
    		}
    		runtime.Gosched()
    	}
    	panic("failed to stabilize NumGoroutine after 1000 iterations")
    }
    
    func TestPullDoubleNext(t *testing.T) {
    	next, _ := Pull(doDoubleNext())
    	nextSlot = next
    	next()
    	if nextSlot != nil {
    		t.Fatal("double next did not fail")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/stackalloc.go

    	defer s.f.retSparseSet(t)
    
    	// Instead of iterating over f.Blocks, iterate over their postordering.
    	// Liveness information flows backward, so starting at the end
    	// increases the probability that we will stabilize quickly.
    	po := s.f.postorder()
    	for {
    		changed := false
    		for _, b := range po {
    			// Start with known live values at the end of the block
    			live.clear()
    			live.addAll(s.live[b.ID])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. CHANGELOG.md

    Although this release is labeled _alpha_, the only unstable thing in it is our new APIs. This
    release has many critical bug fixes and is safe to run in production. We're eager to stabilize our
    new APIs so we can get out of alpha.
    
     *  New: Support Java 21's virtual threads (‘OpenJDK Project Loom’). We changed OkHttp's internals
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    			"",
    			[]timestampedRecommendation{},
    			5,
    			5,
    			1,
    		},
    		{
    			"stabilize",
    			"",
    			[]timestampedRecommendation{
    				{4, time.Now().Add(-2 * time.Minute)},
    				{5, time.Now().Add(-1 * time.Minute)},
    			},
    			3,
    			5,
    			3,
    		},
    		{
    			"no stabilize",
    			"",
    			[]timestampedRecommendation{
    				{1, time.Now().Add(-2 * time.Minute)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool-decom.go

    		poolIndices = append(poolIndices, idx)
    	}
    
    	if len(poolIndices) > 0 && globalEndpoints[poolIndices[0]].Endpoints[0].IsLocal {
    		go func() {
    			// Resume decommissioning of pools, but wait 3 minutes for cluster to stabilize.
    			if err := sleepContext(ctx, 3*time.Minute); err != nil {
    				return
    			}
    			r := rand.New(rand.NewSource(time.Now().UnixNano()))
    			for {
    				if err := z.Decommission(ctx, poolIndices...); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  7. pkg/controller/podautoscaler/horizontal.go

    		}
    		if rec.timestamp.Before(upCutoff) && rec.timestamp.Before(downCutoff) {
    			foundOldSample = true
    			oldSampleIndex = i
    		}
    	}
    
    	// Bring the recommendation to within the upper and lower limits (stabilize).
    	recommendation := args.CurrentReplicas
    	if recommendation < upRecommendation {
    		recommendation = upRecommendation
    	}
    	if recommendation > downRecommendation {
    		recommendation = downRecommendation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      & sc.exe failure kubelet reset= 0 actions= restart/10000
      Log-Output "Starting kubelet service"
      & sc.exe start kubelet
    
      Log-Output "Waiting 10 seconds for kubelet to stabilize"
      Start-Sleep 10
      Write-VerboseServiceInfoToConsole -Service 'kubelet'
    
      if (Get-Process | Where-Object Name -eq "kube-proxy") {
        Log-Output -Fatal `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    				name: fmt.Sprintf("%v:%v/%v", c.port, c.dest, c.auth),
    				skip: skip{
    					skip:   t.Apps.All.Instances().Clusters().IsMulticluster(),
    					reason: "https://github.com/istio/istio/issues/37305: stabilize tcp connection breaks",
    				},
    				config: destinationRule(to.Config().Service, c.dest) + peerAuthentication(to.Config().Service, c.auth),
    				call:   client.CallOrFail,
    				opts: echo.CallOptions{
    					To: to,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    	subsystem = "watch_cache"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top