Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 362 for highest (0.18 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

       * also demonstrates how sparse the lookup table is.
       */
      @Test
      fun allFormattedFlagsWithValidBits() {
        val formattedFlags = mutableListOf<String>() // Highest valid flag is 0x20.
        for (i in 0..0x3f) formattedFlags.add(formatFlags(TYPE_HEADERS, i))
        assertThat(formattedFlags).containsExactly(
          "",
          "END_STREAM",
          "00000010",
          "00000011",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/loadbalancer/edf.go

    import (
    	"container/heap"
    )
    
    // Entry is an item for load balance
    type Entry struct {
    	deadline float64
    	index    int64
    	value    any
    	weight   float64
    }
    
    // priorityQueue is a queue that always pop the highest priority item
    type priorityQueue []*Entry
    
    // Len implements heap.Interface/sort.Interface
    func (pq priorityQueue) Len() int { return len(pq) }
    
    // Less implements heap.Interface/sort.Interface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheVersionMappingTest.groovy

                .incrementedIn("1.1")
                .changedTo(5, "1.2")
                .build(parentVersion)
    
            then:
            mapping.latestVersion == parentVersion.append(5)
        }
    
        def "finds highest version with same base Gradle version for snapshot Gradle versions"() {
            when:
            def mapping = CacheVersionMapping.introducedIn("1.0")
                .incrementedIn("1.1-rc-1")
                .incrementedIn("1.1-rc-2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/proxy_config.go

    			// we sort the resources by creation time beforehand.
    			return toMeshConfigProxyConfig(pc)
    		}
    	}
    	return nil
    }
    
    // mergeWithPrecedence merges the ProxyConfigs together with earlier items having
    // the highest priority.
    func mergeWithPrecedence(pcs ...*meshconfig.ProxyConfig) *meshconfig.ProxyConfig {
    	merged := &meshconfig.ProxyConfig{}
    	for i := len(pcs) - 1; i >= 0; i-- {
    		if pcs[i] == nil {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/math/rand/v2/pcg.go

    	// instead of the 128-bit value used here and in the official PCG code.
    	// This does not seem worthwhile, at least for Go: not having any high
    	// bits in the multiplier reduces the effect of low bits on the highest bits,
    	// and it only saves 1 multiply out of 3.
    	// (On 32-bit systems, it saves 1 out of 6, since Mul64 is doing 4.)
    	const (
    		mulHi = 2549297995355413924
    		mulLo = 4865540595714422341
    		incHi = 6364136223846793005
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/SmallCharMatcher.java

      @VisibleForTesting
      static int chooseTableSize(int setSize) {
        if (setSize == 1) {
          return 2;
        }
        // Correct the size for open addressing to match desired load factor.
        // Round up to the next highest power of 2.
        int tableSize = Integer.highestOneBit(setSize - 1) << 1;
        while (tableSize * DESIRED_LOAD_FACTOR < setSize) {
          tableSize <<= 1;
        }
        return tableSize;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    The highest version that matches all conditions is selected.
    If no such version is found, Gradle fails with an error showing the conflicting declarations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseJdt.java

     *     sourceCompatibility = 1.6
     *     targetCompatibility = 1.5
     *     javaRuntimeName = "J2SE-1.5"
     *
     *     file {
     *       //whenMerged closure is the highest voodoo
     *       //and probably should be used only to solve tricky edge cases.
     *       //the type passed to the closure is {@link Jdt}
     *
     *       //closure executed after jdt file content is loaded from existing file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

    import spock.lang.Issue
    
    class IvyCustomStatusLatestVersionIntegrationTest extends AbstractHttpDependencyResolutionTest {
        def "latest.xyz selects highest version with given or higher status"() {
            given:
            buildFile << """
    repositories {
        ivy {
            url "${ivyRepo.uri}"
        }
    }
    
    class StatusRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. 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)
Back to top