Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for forUpstream (0.1 sec)

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

        public abstract void beforeMutate(Describable displayName);
    
        public abstract ValueSupplier.ValueConsumer forUpstream(ValueSupplier.ValueConsumer consumer);
    
        public boolean isFinalized() {
            return this == FINALIZED_VALUE;
        }
    
        /**
         * Is this state final or on its way for being finalized?
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

        }
    
        private void finalizeNow(EvaluationContext.ScopeContext context, ValueConsumer consumer) {
            try {
                value = finalValue(context, value, state.forUpstream(consumer));
            } catch (Exception e) {
                if (displayName != null) {
                    throw new PropertyQueryException(String.format("Failed to calculate the value of %s.", displayName), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top