Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 193 for isIncremental (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

    import org.gradle.api.internal.tasks.compile.JavaCompileExecutableUtils;
    import org.gradle.api.internal.tasks.compile.JavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.JavaRecompilationSpecProvider;
    import org.gradle.api.jvm.ModularitySpec;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

        def "throws UnsupportedMethodException for incremental property when target version does not support it"() {
            when:
            runBuild('tasks')
    
            and:
            taskSuccessResult(':tasks').incremental
    
            then:
            def e = thrown(UnsupportedMethodException)
            e.message.startsWith("Unsupported method: TaskExecutionResult.isIncremental().")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    import org.gradle.api.internal.tasks.compile.MinimalGroovyCompileOptions;
    import org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.GroovyRecompilationSpecProvider;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.RecompilationSpecProvider;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TaskOperationMapper.java

            boolean incremental = result != null && result.isIncremental();
    
            if (state.getUpToDate()) {
                return new DefaultTaskSuccessResult(startTime, endTime, true, state.isFromCache(), state.getSkipMessage(), incremental, Collections.emptyList());
            } else if (state.getSkipped()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

                case DID_NO_WORK:
                    return UP_TO_DATE;
                case DID_WORK:
                    return context.getInputChanges()
                        .filter(InputChanges::isIncremental)
                        .map(Functions.constant(EXECUTED_INCREMENTALLY))
                        .orElse(EXECUTED_NON_INCREMENTALLY);
                default:
                    throw new AssertionError();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top