Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 151 for stabilize (0.18 sec)

  1. android/guava/src/com/google/common/hash/package-info.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    // TODO(user): when things stabilize, flesh this out
    /**
     * Hash functions and related structures.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/HashingExplained">hashing</a>.
     */
    @CheckReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1021 bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/package-info.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    // TODO(user): when things stabilize, flesh this out
    /**
     * Hash functions and related structures.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/HashingExplained">hashing</a>.
     */
    @CheckReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1021 bytes
    - Viewed (0)
  3. operator/pkg/helm/helm.go

    		if enableIstioConfigCRDs, ok := base["enableIstioConfigCRDs"].(bool); ok && !enableIstioConfigCRDs {
    			crdFiles = []chart.CRD{}
    		}
    	}
    
    	// Create sorted array of keys to iterate over, to stabilize the order of the rendered templates
    	keys := make([]string, 0, len(files))
    	for k := range files {
    		if strings.HasSuffix(k, NotesFileNameSuffix) {
    			continue
    		}
    		keys = append(keys, k)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top