Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NoProducer (0.08 sec)

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

        enum ValueConsumer {
            DisallowUnsafeRead, IgnoreUnsafeRead
        }
    
        /**
         * Carries information about the producer of a value.
         */
        interface ValueProducer {
            NoProducer NO_PRODUCER = new NoProducer();
            UnknownProducer UNKNOWN_PRODUCER = new UnknownProducer();
    
            default boolean isKnown() {
                return true;
            }
    
    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/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

                return ExecutionTimeValue.fixedValue(emptyCollection());
            }
    
            @Override
            public ValueProducer getProducer() {
                return ValueProducer.noProducer();
            }
    
            @Override
            public String toString() {
                return "[]";
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

                return ExecutionTimeValue.fixedValue(ImmutableMap.of());
            }
    
            @Override
            public ValueProducer getProducer() {
                return ValueProducer.noProducer();
            }
    
            @Override
            public String toString() {
                return "{}";
            }
        }
    
        private static class FixedSupplier<K, V> implements MapSupplier<K, V> {
    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