Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Changes (0.72 sec)

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

         *     <li>Changes for the property can be queried via {@link org.gradle.work.InputChanges}</li>
         * </ul>
         */
        INCREMENTAL(true, false),
    
        /**
         * Primary (incremental) inputs.
         *
         * <ul>
         *     <li>Changes to the property value can cause an incremental execution</li>
         *     <li>Changes for the property can be queried via {@link org.gradle.work.InputChanges}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/HasConfigurableValueInternal.java

         * Implementations may then fail on subsequent changes, or generate a deprecation warning and ignore changes.
         */
        void implicitFinalizeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

         * - A new getter `getX` is added, where the old getter is a boolean getter `isX` of an upgraded property
         * - A return type is changed for a getter `getX` of an upgraded property
         *
         * We don't automatically accept changes when the @since annotation is missing, because we want to keep this information on the API.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/package-info.java

     * For example, build logic may read files or access environment variables.
     * Knowing these inputs is important for configuration caching to understand if the cache has to be invalidated when the value of the system property changes.
     * It can also be used to determine undeclared task inputs, and the likes.
     */
    @NonNullApi
    package org.gradle.internal.configuration.inputs;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java

                }
                for (JApiCompatibilityChange change : member.getCompatibilityChanges()) {
                    if (IGNORED_CHANGE_TYPES.contains(change)) {
                        return null;
                    }
                }
                if (member instanceof JApiHasAnnotations) {
                    if (isIncubating((JApiHasAnnotations) member)) {
                        return Violation.warning(member, "Changed public API (@Incubating)");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyValue.java

         */
        TaskDependencyContainer getTaskDependencies();
    
        /**
         * Finalizes the property value, if possible. This makes the value final, so that it no longer changes, but not necessarily immutable.
         */
        void maybeFinalizeValue();
    
        PropertyValue ABSENT = new PropertyValue() {
            @Nullable
            @Override
            public Object call() {
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Generates Javadocs in a particular way.
     *
     * TODO: We should remove the workarounds here and migrate some of the changes here into the Javadoc task proper.
     */
    public abstract class GradleJavadocsPlugin implements Plugin<Project> {
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

            this.parent = parent;
        }
    
        @Override
        public void setTarget(ModelNode target) {
            // Once the node has been discovered, changing the target is not allowed, as it changes the promise of the node as well
            if (getState() != State.Registered) {
                throw new IllegalStateException(String.format("Cannot set target for model element '%s' as this element is not mutable.", getPath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

         */
        FileCollectionInternal fixed(Collection<File> files);
    
        /**
         * Creates a {@link FileCollection} with the given files as content. The result is not live and does not reflect changes to the array.
         *
         * <p>The collection is not live. The provided array is queried on construction and discarded.
         */
        FileCollectionInternal fixed(String displayName, File... files);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingUtils.java

         * case makes tracking of non-entries and entries with anything but strings redundant because only
         * the build script can sneak in such {@code Entry} and change the result of e.g. {@code contains}
         * call. The external world cannot influence the result, so it makes no sense to record such access
         * as an input to the configuration cache.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top