Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for latestNotation (0.29 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

            '[1.0, 2.0['     | '[1.0, 1.5['
            latestNotation() | '1.1'
            '1.+'            | '[1.0, 1.5'
            '[1.0, 1.5['     | '[1.0, 2.0['
            '1.1'            | latestNotation()
            '[1.0, 1.5['     | '1.+'
            latestNotation() | latestNotation()
            '1.+'            | '+'
        }
    
        @CompileStatic
        static Closure<String> latestNotation() {
            return new Closure(this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                        byReason("rejection: version 1.2:   - Attribute 'quality' didn't match. Requested 'qa', was: 'rc'")
                    }
                }
            }
    
            where:
            requested << ["[1.0,)", latestNotation(), "1.+", "1+", "+"]
        }
    
        @Unroll("selects the first version which matches the component-level attributes (requested=#requested) using dependency attributes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top