Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 316 for highest (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/util.go

    	return prefix + "/" + name, nil
    }
    
    // HighWaterMark is a thread-safe object for tracking the maximum value seen
    // for some quantity.
    type HighWaterMark int64
    
    // Update returns true if and only if 'current' is the highest value ever seen.
    func (hwm *HighWaterMark) Update(current int64) bool {
    	for {
    		old := atomic.LoadInt64((*int64)(hwm))
    		if current <= old {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                }
            } else if (newSelected != selected) {
                if (++selectionChangedCounter > MAX_SELECTION_CHANGE) {
                    // Let's ignore modules that are changing selection way too much, by keeping the highest version
                    if (maybeSkipSelectionChange(newSelected)) {
                        return;
                    }
                }
                changeSelection(newSelected);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    module("org:b:1.0") {
                        edge("org:leaf:[4,8]", "org:leaf:6")
                    }
                }
            }
        }
    
        def "chooses highest version that is included in both ranges, with the highest version in the intersection missing"() {
            given:
            (1..10).findAll {
                // We skip v6, as we test what happens when the top version of the intersection is missing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    				return queueImmediately
    			}
    
    			// interprets Queue from the unschedulable plugin as queueAfterBackoff.
    
    			if pInfo.PendingPlugins.Len() == 0 {
    				// We can return immediately because no Pending plugins, which only can make queueImmediately, registered in this Pod,
    				// and queueAfterBackoff is the second highest priority.
    				return queueAfterBackoff
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * filter is applied (like in Maven 3).
         * <p>
         * Supported filters:
         * <ul>
         *     <li>"h" or "h(num)" - highest version or top list of highest ones filter</li>
         *     <li>"l" or "l(num)" - lowest version or bottom list of lowest ones filter</li>
         *     <li>"s" - contextual snapshot filter</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/internal/trace/gc.go

    	//
    	// Hence, we refine bands until the highest desired
    	// distribution quantile is less than the next worst-case mean
    	// mutator utilization. At this point, all further
    	// contributions to the distribution must be beyond the
    	// desired quantile and hence cannot affect it.
    	//
    	// First, find the highest desired distribution quantile.
    	maxQ := quantiles[0]
    	for _, q := range quantiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Specifically, `latest.someStatus` will resolve to the highest module version that has status `someStatus` or a more mature status.
    For example, `latest.integration` will select the highest module version regardless of its status (because `integration` is the least mature status as explained below), whereas `latest.release` will select the highest module version with status `release`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    		s.minHeapIdx.Store(baseIdx)
    	}
    	return s.sysGrow(base, limit, sysStat)
    }
    
    // find returns the highest chunk index that may contain pages available to scavenge.
    // It also returns an offset to start searching in the highest chunk.
    func (s *scavengeIndex) find(force bool) (chunkIdx, uint) {
    	cursor := &s.searchAddrBg
    	if force {
    		cursor = &s.searchAddrForce
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSet.java

      }
    
      private static boolean shouldTrim(int actualUnique, int expectedUnique) {
        return actualUnique < (expectedUnique >> 1) + (expectedUnique >> 2);
      }
    
      // We use power-of-2 tables, and this is the highest int that's a power of 2
      static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.7;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    				pods: []*v1.Pod{
    					makePod("normal-pod", scheduling.DefaultPriorityWhenNoDefaultClassExists, nil),
    					makePod("highest-user-definable-pod", scheduling.HighestUserDefinablePriority, nil),
    					makePod("critical-pod", scheduling.SystemCriticalPriority, nil),
    				},
    			},
    			want: []podShutdownGroup{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top