Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 538 for isIncremental (0.32 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.java.compile.incremental
    
    import org.gradle.integtests.fixtures.CompiledLanguage
    import spock.lang.Issue
    
    class CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest extends AbstractCrossTaskIncrementalCompilationSupport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ExecuteStepTest.groovy

        }
    
        def "incremental work with result #workResult yields outcome #expectedOutcome (executed incrementally: #incrementalExecution)"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result.execution.get().outcome == expectedOutcome
    
            _ * context.inputChanges >> Optional.of(inputChanges)
            _ * inputChanges.incremental >> incrementalExecution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputFilePropertyAnnotationHandler.java

    import org.gradle.api.tasks.InputFile;
    import org.gradle.internal.properties.InputFilePropertyType;
    
    import static org.gradle.internal.execution.model.annotations.ModifierAnnotationCategory.INCREMENTAL;
    import static org.gradle.internal.execution.model.annotations.ModifierAnnotationCategory.NORMALIZATION;
    import static org.gradle.internal.execution.model.annotations.ModifierAnnotationCategory.NORMALIZE_LINE_ENDINGS;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/analyzer/CachingClassDependenciesAnalyzer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.analyzer;
    
    import org.gradle.api.file.FileTreeElement;
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassAnalysis;
    import org.gradle.cache.Cache;
    import org.gradle.internal.hash.HashCode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/IncrementalCompileMultiProjectTestFixture.groovy

            multiProjectBuild('incremental', ['library', 'app'], language) {
                buildFile << """
                    subprojects {
                        apply plugin: '${language.name}'
                        ${language.compileTaskName}.options.incremental = true
                    }
                    ${language.projectGroovyDependencies('subprojects')}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/classpath/CachingClassSetAnalyzer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.classpath;
    
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassSetAnalysisData;
    import org.gradle.cache.Cache;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolver.java

            AndSpec<? super TaskInternal> upToDateSpec = task.getOutputs().getUpToDateSpec();
            if (!properties.hasDeclaredOutputs() && upToDateSpec.isEmpty()) {
                if (requiresInputChanges(task)) {
                    throw new InvalidUserCodeException("You must declare outputs or use `TaskOutputs.upToDateWhen()` when using the incremental task API");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 03 11:19:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveChangesStep.java

        private static final ImmutableList<String> UNTRACKED = ImmutableList.of("Change tracking is disabled.");
        private static final ImmutableList<String> VALIDATION_FAILED = ImmutableList.of("Incremental execution has been disabled to ensure correctness. Please consult deprecation warnings for more details.");
    
        private final ExecutionStateChangeDetector changeDetector;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessingResult.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.processing;
    
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource;
    
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.HashSet;
    import java.util.LinkedHashMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionMode.java

        public int hashCode() {
            return Objects.hash(rebuildReason, taskHistoryMaintained, allowedToUseCachedResults);
        }
    
        /**
         * The execution mode for incremental tasks.
         */
        public static TaskExecutionMode incremental() {
            return INCREMENTAL;
        }
    
        /**
         * The execution mode when task did not declare any outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 07:36:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top