Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,108 for highest (0.12 sec)

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

            all(StatusRule)
        }
    }
    
    // tag::reject-version-1-1[]
    configurations {
        rejectConfig {
            resolutionStrategy {
                componentSelection {
                    // Accept the highest version matching the requested version that isn't '1.5'
                    all { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.1-pre.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.9.1-pre"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 369 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.0.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    retract v1.0.0 // bad
    retract v1.9.0 // self
    
    -- .info --
    {"Version":"v1.9.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 411 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.0.0.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 365 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilityResolutionDetails.java

    /**
     * Gives access to the resolution details of a single capability conflict.
     * This class may be used to resolve a capability conflict by either selecting
     * explicitly one of the candidates, or selecting the one with the highest
     * version of the capability.
     *
     * @since 5.6
     */
    @HasInternalProtocol
    public interface CapabilityResolutionDetails {
        /**
         * Returns the capability in conflict
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

     * while {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code \\uxxxx}.
     *
     * <p>The size of the data structure used by {@link ArrayBasedCharEscaper} is proportional to the
     * highest valued character 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: Tue Jan 18 20:55:09 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredReplacements 'a->b'
            expect:
            resolvedModules 'b'
        }
    
        def "uses highest when it is last"() {
            declaredDependencies 'b', 'a', 'b:2'
            declaredReplacements 'a->b'
            expect:
            resolvedModules 'b:2'
        }
    
        def "uses highest when it is last following replacedBy"() {
            declaredDependencies 'a', 'b', 'b:2'
            declaredReplacements 'a->b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top