Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withChangingExecutionTimeValues (0.39 sec)

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

        }
    
        public static <T> ProviderInternal<T> withChangingExecutionTimeValues(T... values) {
            assert values.length > 0;
            return new TestProviderWithChangingValue<>(Cast.uncheckedNonnullCast(values[0].getClass()), Arrays.asList(values), null);
        }
    
        public static <T> ProviderInternal<T> withChangingExecutionTimeValues(Class<T> cls, T... values) {
            assert values.length > 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

        }
    
        ProviderInternal<T> supplierWithChangingExecutionTimeValues(T... values) {
            return ProviderTestUtil.withChangingExecutionTimeValues(values)
        }
    
        ProviderInternal<T> supplierWithChangingExecutionTimeValues(Class<T> cls, T... values) {
            return ProviderTestUtil.withChangingExecutionTimeValues(cls, values)
        }
    
        ProviderInternal<T> supplierWithProducer(Task producer, T... values) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top