Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for untracked (0.38 sec)

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

        }
    
        def "does not clean up stale outputs for untracked tasks"() {
            def untrackedStaleFile = file("build/untracked/stale-output-file").createFile()
            def untrackedOutputFile = file("build/untracked/output.txt")
            def trackedStaleFile = file("build/tracked/stale-output-file").createFile()
            def trackedOutputFile = file("build/tracked/output.txt")
    
            buildFile("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. hack/update-codegen.sh

        # 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/*' "${DIRS_TO_AVOID[@]}" "$@"
    }
    
    function git_grep() {
        # We want to include modified and untracked files because this might be
        # running against code which is not tracked by git yet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

                loadedOutputDir.mkdirs()
                loadedOutputDir.file("output.txt") << "output"
                throw failure
            }
    
            then:
            0 * _
        }
    
        def "does not store untracked result in cache"() {
            given:
            def execution = Mock(Execution)
    
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

            }
        }
    
        /**
         * Stores the results of the given work in the build cache, unless storing was disabled for this execution or work was untracked.
         * <p>
         * The former is currently used only for tasks and can be triggered via {@code org.gradle.api.internal.TaskOutputsEnterpriseInternal}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                 additionalData.asMap == [ 'typeName' : 'MyTransformAction' ]
             }
        }
    
        def "untracked tasks don't need a disable caching by default reason"() {
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.tasks.*;
    
                @UntrackedTask(because = "untracked for validation test")
                public abstract class MyTask extends DefaultTask {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            exitsContinuousBuildSinceNotWatchingAnyLocationsExceptForConfigCache()
    
            where:
            description      | taskConfiguration
            "no outputs"     | ""
            "untracked task" | "outputs.file('output/marker'); doNotTrackState('for test')"
        }
    
        def "basic smoke test"() {
            given:
            def markerFile = file("input/marker")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      to use for the Wireguard routing rule. [Default: 99]'
                    type: integer
                  xdpEnabled:
                    description: 'XDPEnabled enables XDP acceleration for suitable untracked
                      incoming deny rules. [Default: true]'
                    type: boolean
                  xdpRefreshInterval:
                    description: 'XDPRefreshInterval is the period at which Felix re-checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    		if i := bytes.IndexByte(out, ' '); i > 0 {
    			out = out[:i]
    		}
    		rev, commitTime, err = parseRevTime(out)
    		if err != nil {
    			return Status{}, err
    		}
    	}
    
    	// Also look for untracked files.
    	out, err = vcsHg.runOutputVerboseOnly(rootDir, "status")
    	if err != nil {
    		return Status{}, err
    	}
    	uncommitted := len(out) > 0
    
    	return Status{
    		Revision:    rev,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top