Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NoValueProvider (0.15 sec)

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

    import org.gradle.internal.DisplayName;
    
    import javax.annotation.Nullable;
    import java.io.Serializable;
    import java.util.concurrent.Callable;
    
    public class Providers {
        private static final NoValueProvider<Object> NULL_PROVIDER = new NoValueProvider<>(ValueSupplier.Value.MISSING);
    
        public static final Provider<Boolean> TRUE = of(true);
        public static final Provider<Boolean> FALSE = of(false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

         */
        ProviderInternal<T> supplierWithNoValue() {
            return new NoValueProvider<T>(type(), null)
        }
    
        /**
         * A dummy provider with no value and the given display name
         */
        ProviderInternal<T> supplierWithNoValue(DisplayName displayName) {
            return new NoValueProvider<T>(type(), displayName)
        }
    
        /**
    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