Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 538 for isIncremental (0.19 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultJavaCompileTaskSuccessResult.java

            super(delegate.getStartTime(), delegate.getEndTime(), delegate.isUpToDate(), delegate.isFromCache(), delegate.getOutcomeDescription(), delegate.isIncremental(), delegate.getExecutionReasons());
            this.annotationProcessorResults = annotationProcessorResults;
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        @get:Input
        abstract val inputProperty: Property<String>
    
        @TaskAction
        fun execute(inputChanges: InputChanges) {
            println(
                if (inputChanges.isIncremental) "Executing incrementally"
                else "Executing non-incrementally"
            )
    
            // tag::process-changed-inputs[]
            inputChanges.getFileChanges(inputDir).forEach { change ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalIncrementalTaskResult.java

     *
     * @since 5.1
     */
    public interface InternalIncrementalTaskResult extends InternalTaskResult {
    
        /**
         * Returns whether this task is incremental.
         */
        boolean isIncremental();
    
        /**
         * Returns the reasons for executing this task.
         *
         * @return the list of reasons; {@code null} if undetermined (e.g. if the task was skipped).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/InputChangesContext.java

        public Optional<InputChangesInternal> getInputChanges() {
            return Optional.ofNullable(inputChanges);
        }
    
        public boolean isIncrementalExecution() {
            return inputChanges != null && inputChanges.isIncremental();
        }
    
        @Override
        public CachingState getCachingState() {
            return cachingState;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:26:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IncrementalInputChanges.java

            this.changes = changes;
            this.incrementalInputProperties = incrementalInputProperties;
        }
    
        @Override
        public boolean isIncremental() {
            return true;
        }
    
        @Override
        public Iterable<FileChange> getFileChanges(FileCollection parameter) {
            return getObjectFileChanges(parameter);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/RecompilationSpecProvider.java

     */
    
    package org.gradle.api.internal.tasks.compile.incremental.recomp;
    
    import org.gradle.api.internal.tasks.compile.JavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.incremental.transaction.CompileTransaction;
    import org.gradle.api.tasks.WorkResult;
    
    /**
     * In a typical incremental recompilation, there're three steps:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveInputChangesStep.java

                .orElseThrow(() -> new IllegalStateException("Changes are not tracked, unable determine incremental changes."));
            InputChangesInternal inputChanges = changes.createInputChanges();
            if (!inputChanges.isIncremental()) {
                LOGGER.info("The input changes require a full rebuild for incremental {}.", work.getDisplayName());
            }
            return inputChanges;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/TaskExecutionResult.java

         *
         * @return {@code true} if this task was executed incrementally
         * @throws UnsupportedMethodException For Gradle versions older than 5.1, where this method is not supported.
         */
        boolean isIncremental();
    
        /**
         * Returns the reasons why this task was executed.
         *
         * @return the reasons why this task was executed; an empty list indicates the task was up-to-date;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationResult.java

            }
        }
    
        @Override
        public List<String> getUpToDateMessages() {
            return executionReasons;
        }
    
        @Override
        public boolean isIncremental() {
            return incremental;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

        onlyIf("mySkipTests property is not set") {
            !skipTestsProvider.isPresent()
        }
    }
    // end::skip-tests-condition[]
    
    // tag::java-compiler-options[]
    tasks.compileJava {
        options.isIncremental = true
        options.isFork = true
        options.isFailOnError = false
    }
    // end::java-compiler-options[]
    
    // tag::java-release-flag[]
    tasks.compileJava {
        options.release = 7
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top