Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 615 for Boolean (2.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelSet.java

            return getElements().toArray(a);
        }
    
        @Override
        public boolean add(T e) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public boolean remove(Object o) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public boolean containsAll(Collection<?> c) {
            return getElements().containsAll(c);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DataStructuralEquality.kt

     * * the error causes, thus considering all error nodes equal to each other but not to any other node.
     */
    fun DeclarativeDocument.structurallyEqualsAsData(other: DeclarativeDocument): Boolean {
        fun ValueNode.structurallyEquals(other: ValueNode): Boolean = when (this) {
            is LiteralValueNode -> other is LiteralValueNode &&
                value == other.value
    
            is ValueFactoryNode -> other is ValueFactoryNode &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodSet.java

                // Prefer implementation methods over abstract or bridge methods
                methods.put(key, method);
            }
        }
    
        private boolean shouldReplace(Method current, Method method) {
            boolean currentAbstract = Modifier.isAbstract(current.getModifiers());
            boolean newAbstract = Modifier.isAbstract(method.getModifiers());
            if (currentAbstract != newAbstract) {
                // Prefer non-abstract over abstract
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/PropertyAccessorExtractionContext.java

        }
    
        public String getMostSpecificSignature() {
            return mostSpecificSignature;
        }
    
        public boolean isDeclaredInManagedType() {
            return declaredInManagedType;
        }
    
        public boolean isDeclaredAsAbstract() {
            return declaredAsAbstract;
        }
    
        public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) {
            return annotations.containsKey(annotationType);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

                else object : IgnoredConfigurationInputs {
                    override fun isFileSystemCheckIgnoredFor(file: File): Boolean = false
                }
    
            private
            fun hasIgnoredPaths(configurationCacheStartParameter: ConfigurationCacheStartParameter): Boolean =
                !configurationCacheStartParameter.ignoredFileSystemCheckInputs.isNullOrEmpty()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

            SelfClosed(false),
            GraphClosed(false);
    
            public final boolean mutable;
    
            State(boolean mutable) {
                this.mutable = mutable;
            }
    
            public State previous() {
                return ModelNode.State.values()[ordinal() - 1];
            }
    
            public boolean isAtLeast(State state) {
                return this.ordinal() >= state.ordinal();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/InstrumentedMetaClass.java

        /**
         * Checks if accessing a property by the specified name would be intercepted by the instrumentation at this
         * specific moment. The implementation may return different values at different times.
         */
        boolean interceptsPropertyAccess(String propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompilerOptions.kt

    import java.io.Serializable
    
    
    data class KotlinCompilerOptions(
        val jvmTarget: JavaVersion = JavaVersion.current(),
        val allWarningsAsErrors: Boolean = false,
        val skipMetadataVersionCheck: Boolean = true,
    ) : Serializable
    
    
    fun kotlinCompilerOptions(gradleProperties: GradlePropertiesController): KotlinCompilerOptions =
        KotlinCompilerOptions(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:11:24 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyVisitor.java

        default void visitInputFileProperty(String propertyName, boolean optional, InputBehavior behavior, DirectorySensitivity directorySensitivity, LineEndingSensitivity lineEndingSensitivity, @Nullable FileNormalizer fileNormalizer, PropertyValue value, InputFilePropertyType filePropertyType) {}
    
        default void visitInputProperty(String propertyName, PropertyValue value, boolean optional) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/DslElementDoc.java

    import java.util.List;
    
    public interface DslElementDoc {
        String getId();
    
        Element getDescription();
    
        List<Element> getComment();
    
        boolean isDeprecated();
    
        boolean isIncubating();
    
        boolean isReplaced();
    
        String getReplacement();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 949 bytes
    - Viewed (0)
Back to top