Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 367 for highest (0.16 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

        }
    }
    
    // tag::reject-version-1-1[]
    configurations {
        create("rejectConfig") {
            resolutionStrategy {
                componentSelection {
                    // Accept the highest version matching the requested version that isn't '1.5'
                    all {
                        if (candidate.group == "org.sample" && candidate.module == "api" && candidate.version == "1.5") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLatestResolveIntegrationTest.groovy

                }
            """
        }
    
        def "latest selector works correctly when no snapshot versions are present"() {
            given:
            mavenRepo().module('group', 'projectA', '1.0').publish()
            def highest = mavenRepo().module('group', 'projectA', '2.2').publish()
            mavenRepo().module('group', 'projectA', '1.4').publish()
    
            and:
            buildFile << " dependencies { compile 'group:projectA:latest.$status' }"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/runtime/histogram.go

    		h.underflow.Add(1)
    		return
    	}
    	// bucketBit is the target bit for the bucket which is usually the
    	// highest 1 bit, but if we're less than the minimum, is the highest
    	// 1 bit of the minimum (which will be zero in the duration).
    	//
    	// bucket is the bucket index, which is the bucketBit minus the
    	// highest bit of the minimum, plus one to leave room for the catch-all
    	// bucket for samples lower than the minimum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_replaced.txt

    go mod edit -replace=example.com/x=./x
    go get example.com/x
    
    go list -m example.com/x
    stdout '^example.com/x v0.0.0-00010101000000-000000000000 '
    
    # If specific-version replacements exist, the highest matching version should be used.
    go mod edit -replace=example.com/x@v0.1.0=./x
    go mod edit -replace=example.com/x@v0.2.0=./x
    
    go get example.com/x
    go list -m example.com/x
    stdout '^example.com/x v0.2.0 '
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatedClassloaderWorker.java

            if (classLoaderStructure.getParent() == null) {
                // This is the highest parent in the hierarchy
                return createClassLoaderFromSpec(workerInfrastructureClassloader, classLoaderStructure.getSpec(), legacyTypesSupport);
            } else {
                // Climb up the hierarchy looking for the highest parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code &#NNNNN;}.
     *
     * <p>The size of the data structure used by {@link ArrayBasedUnicodeEscaper} is proportional to the
     * highest valued code point that requires escaping. For example a replacement map containing the
     * single character '{@code \}{@code u1000}' will require approximately 16K of memory. If you need
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/least_allocated.go

    			return 0
    		}
    		return nodeScore / weightSum
    	}
    }
    
    // The unused capacity is calculated on a scale of 0-MaxNodeScore
    // 0 being the lowest priority and `MaxNodeScore` being the highest.
    // The more unused resources the higher the score is.
    func leastRequestedScore(requested, capacity int64) int64 {
    	if capacity == 0 {
    		return 0
    	}
    	if requested > capacity {
    		return 0
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 12 01:50:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    const autoscalingGV = "io.k8s.api.autoscaling.v1"
    
    // MergeSpecs aggregates all OpenAPI specs, reusing the metadata of the first, static spec as the basis.
    // The static spec has the highest priority, and its paths and definitions won't get overlapped by
    // user-defined CRDs. None of the input is mutated, but input and output share data structures.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code &#NNNNN;}.
     *
     * <p>The size of the data structure used by {@link ArrayBasedUnicodeEscaper} is proportional to the
     * highest valued code point that requires escaping. For example a replacement map containing the
     * single character '{@code \}{@code u1000}' will require approximately 16K of memory. If you need
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. manifests/charts/base/README.md

    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    As an implementation detail of profiles, the default values for the chart are all nested under `defaults`.
    When configuring the chart, you should not include this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top