Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for calculateOwnValueNoProducer (0.47 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

                    }
    
                    @Override
                    protected Value<? extends T> calculateOwnValue(ValueConsumer consumer) {
                        return calculateOwnValueNoProducer(consumer);
                    }
                };
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

            return state.convention();
        }
    
        protected final String describeValue() {
            return value.toString();
        }
    
        protected Value<? extends T> calculateOwnValueNoProducer(ValueConsumer consumer) {
            try (EvaluationContext.ScopeContext context = openScope()) {
                beforeReadNoProducer(context, consumer);
                return doCalculateValue(context, consumer);
            }
    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