Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for someOtherValue (0.26 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            given:
            property.finalizeValue()
    
            when:
            upstream1.set(someOtherValue())
            upstream2.set(someOtherValue())
    
            then:
            property.get() == someValue()
            upstream1.get() == someOtherValue()
            upstream2.get() == someOtherValue()
        }
    
        def "replaces provider with fixed value on next query of value when value implicitly finalized"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            when:
            property.replace { it.map { someOtherValue() } }
    
            then:
            property.get() == someOtherValue()
        }
    
        def "replace can modify property with convention"() {
            given:
            property.convention(someValue())
    
            when:
            property.replace { it.map { someOtherValue() } }
    
            then:
            property.get() == someOtherValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            property.replace { it.map { someOtherValue() } }
    
            then:
            property.get() == someOtherValue()
        }
    
        def "replace can modify property with convention"() {
            given:
            property.convention(someValue())
    
            when:
            property.replace { it.map { someOtherValue() } }
    
            then:
            property.get() == someOtherValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top