Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for someOtherValue3 (0.8 sec)

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

            given:
            property."$method"()
    
            when:
            b.set(someOtherValue3())
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'The value for <b> is final and cannot be changed any further.'
    
            when:
            c.set(someOtherValue3())
    
            then:
            def e2 = thrown(IllegalStateException)
    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

        }
    
        @Override
        C someOtherValue() {
            return toMutable(["s1"])
        }
    
        @Override
        C someOtherValue2() {
            return toMutable(["s2"])
        }
    
        @Override
        C someOtherValue3() {
            return toMutable(["s3"])
        }
    
        abstract AbstractCollectionProperty<String, C> property()
    
        abstract String getCollectionName()
    
        @Override
    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

            return ['k1': 'v1']
        }
    
        @Override
        Map<String, String> someOtherValue2() {
            return ['k2': 'v2']
        }
    
        @Override
        Map<String, String> someOtherValue3() {
            return ['k3': 'v3']
        }
    
        @Override
        protected void setToNull(Object property) {
            property.set((Map) null)
        }
    
        @Override
    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