Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExecutionTimeValue (0.25 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.add(Providers.of("other value").withSideEffect(sideEffect2))
    
            def value = property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            def executionTimeValue = property.calculateExecutionTimeValue()
            then:
            0 * _ // no side effects until values are unpacked
    
            when:
            def unpackedValue = value.get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            property.put("other key", Providers.of("other value").withSideEffect(sideEffect2))
    
            def value = property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            def executionTimeValue = property.calculateExecutionTimeValue()
            then:
            0 * _ // no side effects until values are unpacked
    
            when:
            def unpackedValue = value.get()
            then:
    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