Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 329 for untracked (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            then:
            assertCachingDisabledFor NOT_ENABLED_FOR_TASK, "Task is untracked because: Untracked for testing from API"
        }
    
    
        def "cacheability for a untracked task is NOT_ENABLED_FOR_TASK with message"() {
            buildFile """
                task untrackedTrackWithReason(type: UntrackedTrackWithReason) {}
            """
            when:
            withBuildCache().run "untrackedTrackWithReason"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolverTest.groovy

            _ * task.getOutputs() >> outputs
            _ * outputs.getUpToDateSpec() >> upToDateSpec
        }
    
        def "untracked"() {
            when:
            def state = repository.getExecutionMode(task, taskProperties)
    
            then:
            state == DefaultTaskExecutionMode.untracked("For testing")
            _ * task.getReasonNotToTrackState() >> Optional.of("For testing")
            0 * _
        }
    
        def "no outputs"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveChangesStep.java

        private static final ImmutableList<String> NO_HISTORY = ImmutableList.of("No history is available.");
        private static final ImmutableList<String> UNTRACKED = ImmutableList.of("Change tracking is disabled.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. hack/update-gofmt.sh

    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    function git_find() {
        # Similar to find but faster and easier to understand.  We want to include
        # modified and untracked files because this might be running against code
        # which is not tracked by git yet.
        git ls-files -cmo --exclude-standard \
            ':!:vendor/*'        `# catches vendor/...` \
            ':!:*/vendor/*'      `# catches any subdir/vendor/...` \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. hack/update-netparse-cve.sh

    cd "${KUBE_ROOT}"
    
    function git_find() {
        # Similar to find but faster and easier to understand.  We want to include
        # modified and untracked files because this might be running against code
        # which is not tracked by git yet.
        git ls-files -cmo --exclude-standard \
            ':!:vendor/*'        `# catches vendor/...` \
            ':!:*/vendor/*'      `# catches any subdir/vendor/...` \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AfterExecutionResult.java

        protected AfterExecutionResult(AfterExecutionResult parent) {
            this(parent, parent.getAfterExecutionOutputState().orElse(null));
        }
    
        /**
         * State after execution, or {@link Optional#empty()} if work is untracked.
         */
        public Optional<ExecutionOutputState> getAfterExecutionOutputState() {
            return Optional.ofNullable(afterExecutionOutputState);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultInstrumentedClosuresTracker.java

            currentClosuresEntries.computeInt(thisClosure, (key, oldValue) -> {
                if (oldValue == null) {
                    throw new IllegalStateException("leaveClosure called with an untracked instance");
                } else {
                    if (oldValue == 1) {
                        return null;
                    } else {
                        return oldValue - 1;
                    }
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:58:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    [[sec:continuous_build_untracked]]
    === Inputs of untracked tasks
    Changes to the inputs of <<incremental_build.adoc#sec:disable-state-tracking,untracked tasks>> or tasks that have no outputs may not trigger a build.
    
    [[sec:continuous_build_project_dir]]
    === Changes to files outside of project directories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/LoadPreviousExecutionStateStepTest.groovy

        def setup() {
            _ * context.identity >> identity
            _ * context.history >> Optional.of(executionHistoryStore)
        }
    
        def "loads execution history and removes untracked outputs when output is not captured"() {
            when:
            def result = step.execute(work, context)
    
            then:
            1 * executionHistoryStore.load(uniqueId) >> Optional.of(previousExecutionState)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/compress/gzip/issue14937_test.go

    //
    //	$ dd if=/dev/zero bs=1 seek=4 count=4 conv=notrunc of=filename.gz
    //
    // See https://golang.org/issue/14937.
    func TestGZIPFilesHaveZeroMTimes(t *testing.T) {
    	// To avoid spurious false positives due to untracked GZIP files that
    	// may be in the user's GOROOT (Issue 18604), we only run this test on
    	// the builders, which should have a clean checkout of the tree.
    	if testenv.Builder() == "" {
    		t.Skip("skipping test on non-builder")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top