Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 439 for untracked (0.68 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/TaskInternal.java

        @Internal
        boolean hasTaskActions();
    
        @Internal
        Spec<? super TaskInternal> getOnlyIf();
    
        /**
         * Return the reason for not to track state.
         *
         * Gradle considers the task as untracked if the reason is present.
         * When not tracking state, a reason must be present. Hence the {@code Optional} represents the state of enablement, too.
         *
         * @see org.gradle.api.tasks.UntrackedTask
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/version_buildvcs_bzr.txt

    stdout '^\tbuild\tvcs.modified=false$'
    
    # Building with -buildvcs=false suppresses the info.
    go install -buildvcs=false
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/a$GOEXE
    
    # An untracked file is shown as modified, 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 Dec 07 03:44:02 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/version_buildvcs_fossil.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 vcs.revision
    rm $GOBIN/a$GOEXE
    
    # An untracked file is shown as modified, even if it isn't part of the build.
    cp ../../outside/empty.txt .
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=fossil\n'
    stdout '^\tbuild\tvcs.modified=true$'
    rm empty.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

            _ * context.previousExecutionState >> Optional.of(previousExecutionState)
            1 * previousExecutionState.outputFilesProducedByWork >> outputFilesProducedByWork
            0 * _
        }
    
        def "does not store untracked outputs"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
            1 * delegate.execute(work, context) >> delegateResult
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyErrorIntegrationTest.groovy

                failure.assertHasDocumentedCause("Cannot access input property 'rootSpec\$1' of task ':copy'. " +
                    "Accessing unreadable inputs or outputs is not supported. " +
                    "Declare the task as untracked by using Task.doNotTrackState(). " +
                    new DocumentationRegistry().getDocumentationRecommendationFor("information", "incremental_build", "sec:disable-state-tracking")
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:48:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/HandleStaleOutputsStepTest.groovy

            1 * delegateResult.afterExecutionOutputState >> Optional.of(afterExecutionState)
            1 * outputFilesRepository.recordOutputs(outputFilesProducedByWork.values())
            0 * _
        }
    
        def "does not store untracked outputs"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
            1 * delegate.execute(work, context) >> delegateResult
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. hack/update-mocks.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    echo 'installing mockgen'
    go -C "${KUBE_ROOT}/hack/tools" install go.uber.org/mock/mockgen
    
    function git_grep() {
      git grep --untracked --exclude-standard \
          "$@" \
          ':!:vendor/*'        `# catches vendor/...` \
          ':!:*/vendor/*'      `# catches any subdir/vendor/...` \
          ':!:third_party/*'   `# catches third_party/...` \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. hack/verify-shellcheck.sh

    # ensure we're linting the k8s source tree
    cd "${KUBE_ROOT}"
    
    scripts_to_check=("$@")
    if [[ "$#" == 0 ]]; then
      # Find all shell scripts excluding:
      # - Anything git-ignored - No need to lint untracked files.
      # - ./_* - No need to lint output directories.
      # - ./.git/* - Ignore anything in the git object store.
      # - ./vendor* - Vendored code should be fixed upstream instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/SnapshotSerializerTest.groovy

            copy.classLoaderHash == null
            copy.unknownReason == UnknownImplementationSnapshot.UnknownReason.UNKNOWN_CLASSLOADER
        }
    
        def "serializes implementation properties with untracked lambda"() {
            def original = ImplementationSnapshot.of('someClassName$$Lambda/312454364', TestHashCodes.hashCodeFrom(1234))
            write(original)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

                    .withContext("Copying to a directory which contains unreadable content is not supported.")
                    .withAdvice("Declare the task as untracked by using Task.doNotTrackState().");
            } else if (isDestinationDir && task instanceof Sync) {
                builder.withSummary("Cannot access a file in the destination directory.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top