Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isExplicit (0.3 sec)

  1. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/Option.java

        abstract class Value<T> {
            public abstract boolean isExplicit();
    
            public abstract T get();
    
            /**
             * Creates the default value for an option.
             */
            public static <T> Value<T> defaultValue(final T value) {
                return new Value<T>() {
                    @Override
                    public boolean isExplicit() {
                        return false;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/DefaultFeatureFlags.java

                // Can explicitly disable property using system property
                Option.Value<Boolean> option = options.getOption(new InternalFlag(flag.getSystemPropertyName()));
                if (option.isExplicit() || option.get()) {
                    return option.get();
                }
            }
            return enabled.contains(flag);
        }
    
        @Override
        public void enable(FeatureFlag flag) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/configuration/DefaultBuildFeatures.java

            return new DefaultBuildFeature(isRequested, isActive);
        }
    
        private static ProviderInternal<Boolean> getRequestedProvider(Option.Value<Boolean> optionValue) {
            return Providers.ofNullable(optionValue.isExplicit() ? optionValue.get() : null);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 09:05:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/IncludedBuildFactory.java

    @ServiceScope(Scope.BuildTree.class)
    public interface IncludedBuildFactory {
        IncludedBuildState createBuild(BuildIdentifier buildIdentifier, BuildDefinition buildDefinition, boolean isImplicit, BuildState owner);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/interface.go

    // IsMethodSet reports whether the interface t is fully described by its method set.
    func (t *Interface) IsMethodSet() bool { return t.typeSet().IsMethodSet() }
    
    // IsImplicit reports whether the interface t is a wrapper for a type set literal.
    func (t *Interface) IsImplicit() bool { return t.implicit }
    
    func (t *Interface) Underlying() Type { return t }
    func (t *Interface) String() string   { return TypeString(t, nil) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/go/types/interface.go

    // IsMethodSet reports whether the interface t is fully described by its method
    // set.
    func (t *Interface) IsMethodSet() bool { return t.typeSet().IsMethodSet() }
    
    // IsImplicit reports whether the interface t is a wrapper for a type set literal.
    func (t *Interface) IsImplicit() bool { return t.implicit }
    
    // Complete computes the interface's type set. It must be called by users of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top