Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for withChangingContent (0.2 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

                throw new IllegalStateException();
            }
    
            public abstract ProviderInternal<T> toProvider();
    
            public abstract ExecutionTimeValue<T> withChangingContent();
    
            public abstract ExecutionTimeValue<T> withSideEffect(@Nullable SideEffect<? super T> sideEffect);
    
            public static <T> ExecutionTimeValue<T> missing() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderTestUtil.java

                ExecutionTimeValue<? extends T> value = super.calculateExecutionTimeValue();
                if (producer != null) {
                    return value.withChangingContent();
                } else {
                    return value;
                }
            }
    
            @Override
            public boolean calculatePresence(ValueConsumer consumer) {
                return values.hasNext();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Providers.java

                super(value);
            }
    
            @Override
            public ExecutionTimeValue<? extends T> calculateExecutionTimeValue() {
                return super.calculateExecutionTimeValue().withChangingContent();
            }
        }
    
        private static class NoValueProvider<T> extends AbstractMinimalProvider<T> {
            private final Value<? extends T> value;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

                if (getProducerTask() == null) {
                    return value;
                } else {
                    return value.withChangingContent();
                }
            }
        }
    
        protected abstract ExecutionTimeValue<? extends T> calculateOwnExecutionTimeValue(EvaluationContext.ScopeContext context, S value);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

                }
    
                ExecutionTimeValue<C> mergedValue = ExecutionTimeValue.fixedValue(Cast.uncheckedNonnullCast(builder.build()));
                if (changingContent) {
                    mergedValue = mergedValue.withChangingContent();
                }
    
                return mergedValue.withSideEffect(sideEffectBuilder.build());
            }
    
            @Override
            public ValueProducer getProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            }
    
            private ExecutionTimeValue<Map<K, V>> maybeChangingContent(ExecutionTimeValue<Map<K, V>> value, boolean changingContent) {
                return changingContent ? value.withChangingContent() : value;
            }
    
            @Override
            public ValueProducer getProducer() {
                return collector.getProducer();
            }
    
            @Override
            public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top