Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 439 for untracked (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. test/fixedbugs/issue20014.dir/main.go

    		}
    	}
    	sort.Strings(fields) // for stable output, regardless of optimizations
    	for _, field := range fields {
    		println(field)
    	}
    }
    
    type T struct {
    	X int `go:"track"`
    	Y int `go:"track"`
    	Z int // untracked
    }
    
    func (t *T) GetX() int {
    	return t.X
    }
    func (t *T) GetY() int {
    	return t.Y
    }
    func (t *T) GetZ() int {
    	return t.Z
    }
    
    func samePackage() {
    	var t T
    	println(t.GetX())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 19:48:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolver.java

        }
    
        @Override
        public TaskExecutionMode getExecutionMode(TaskInternal task, TaskProperties properties) {
            if (task.getReasonNotToTrackState().isPresent()) {
                return DefaultTaskExecutionMode.untracked(task.getReasonNotToTrackState().get());
            }
            // Only false if no declared outputs AND no Task.upToDateWhen spec. We force to true for incremental tasks.
    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. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

            1 * relativeFilePathResolver.resolveForDisplay(overlappingOutputs.overlappedFilePath) >> "relative/path"
        }
    
        def "caching is disabled for untracked tasks"() {
            when:
            def reason = determineNoCacheReason(
                [inputProperty],
                [cacheableOutputProperty],
                [spec({ true })]
            )
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/version_buildvcs_hg.txt

    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    # Building with -buildvcs=false suppresses the info.
    go install -buildvcs=false
    go version -m $GOBIN/a$GOEXE
    ! stdout hgrevision
    rm $GOBIN/a$GOEXE
    
    # An untracked file is shown as uncommitted, even if it isn't part of the build.
    cp ../../outside/empty.txt .
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.modified=true$'
    rm empty.txt
    rm $GOBIN/a$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 18:09:02 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top