Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 538 for isIncremental (0.24 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/TaskExecutionDetails.java

            }
        };
    
        abstract boolean isIncremental();
    
        @Nullable
        abstract List<String> getExecutionReasons();
    
        public static TaskExecutionDetails of(final boolean incremental, final List<String> executionReasons) {
            return new TaskExecutionDetails() {
                @Override
                public boolean isIncremental() {
                    return incremental;
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/kotlin/buildSrc/src/main/kotlin/myproject.groovy-conventions.gradle.kts

    plugins {
        id("groovy")
    }
    
    dependencies {
        implementation(localGroovy())
    }
    
    // tag::enable-groovy-incremental[]
    tasks.withType<GroovyCompile>().configureEach {
        options.isIncremental = true
        options.incrementalAfterFailure = true
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 280 bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

            boolean isIncremental = inputs.isIncremental();
    
            // TODO: This should become smarter and move into the compiler infrastructure instead
            //   of the task, similar to how the other native languages are done.
            //   For now, this does a rudimentary incremental build analysis by looking at
            //   which files changed .
            if (isIncremental) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/DefaultTaskSuccessResult.java

            return this.upToDate;
        }
    
        @Override
        public boolean isFromCache() {
            return fromCache;
        }
    
        @Override
        public boolean isIncremental() {
            return taskExecutionDetails.isIncremental();
        }
    
        @Override
        @Nullable
        public List<String> getExecutionReasons() {
            return taskExecutionDetails.getExecutionReasons();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/DefaultTaskFailureResult.java

            super(startTime, endTime, failures);
            this.taskExecutionDetails = taskExecutionDetails;
        }
    
        @Override
        public boolean isIncremental() {
            return taskExecutionDetails.isIncremental();
        }
    
        @Override
        @Nullable
        public List<String> getExecutionReasons() {
            return taskExecutionDetails.getExecutionReasons();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

         * </ul>
         */
        boolean isIncremental();
    
        /**
         * Changes for a parameter.
         *
         * <p>When {@link #isIncremental()} is {@code false}, then all elements of the parameter are returned as {@link ChangeType#ADDED}.</p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/KotlinDslFileContentGenerator.groovy

            tasks.withType<JavaCompile> {
                options.isFork = true
                options.isIncremental = true
                options.forkOptions.memoryInitialSize = compilerMemory
                options.forkOptions.memoryMaximumSize = compilerMemory
            }
            tasks.withType<GroovyCompile> {
                options.isFork = true
                options.isIncremental = true
                options.forkOptions.memoryInitialSize = compilerMemory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractTaskResult.java

        private final boolean incremental;
        private final List<String> executionReasons;
    
        protected AbstractTaskResult(long startTime, long endTime, String outcomeDescription, boolean incremental, List<String> executionReasons) {
            super(startTime, endTime, outcomeDescription);
            this.incremental = incremental;
            this.executionReasons = executionReasons;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

            /**
             * Returns if this task was executed incrementally.
             *
             * See {@code org.gradle.work.InputChanges#isIncremental()}.
             */
            @NotUsedByScanPlugin("used to report incrementality to TAPI progress listeners")
            boolean isIncremental();
    
        }
    
        private ExecuteTaskBuildOperationType() {
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/kotlin/build.gradle.kts

        override
        fun transform(outputs: TransformOutputs) {
            val outputDir = outputs.dir("${input.get().asFile.name}.loc")
            println("Running transform on ${input.get().asFile.name}, incremental: ${inputChanges.isIncremental}")
            inputChanges.getFileChanges(input).forEach { change ->          // <2>
                val changedFile = change.file
                if (change.fileType != FileType.FILE) {
                    return@forEach
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top