Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 564 for unvalidated (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

                (ENV_PROJECT_PROPERTIES_PREFIX + 'unused'): 1,
                (ENV_PROJECT_PROPERTIES_PREFIX + 'gradleProp'): 2
            ])
            configurationCacheRun "help"
    
            then: 'the cache is invalidated'
            outputContains '2!'
            outputContains "because the set of environment variables prefixed by '${ENV_PROJECT_PROPERTIES_PREFIX}' has changed."
            configurationCache.assertStateStored()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            where:
            vfsSpec << onlyDirectChildren(SAME_PATH)
        }
    
        def "invalidate descendant #vfsSpec.searchedPath of child #vfsSpec.selectedChildPath creates a partial directory node with the invalidated child (#vfsSpec)"() {
            setupTest(vfsSpec)
            def invalidatedChild = mockChild()
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

         */
        void visitConsumableConfigurations(Consumer<LocalConfigurationGraphResolveMetadata> visitor);
    
        /**
         * Invalidates any caching used for producing configuration metadata.
         */
        void invalidate();
    
        /**
         * Produces a configuration metadata instance from the configuration with the given {@code name}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

            testDirectory.file("test").createNewFile()
            configurationCacheRun "myTask"
    
            then: "the cache entry is invalidated because of the file system input"
            if (!isOptOut) {
                configurationCache.assertStateStored()
                testDirectory.file("build/out.txt").text == "yes"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

        FileSystemNode store(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, MetadataSnapshot snapshot, SnapshotHierarchy.NodeDiffListener diffListener);
    
        /**
         * Invalidates part of the node.
         */
        @CheckReturnValue
        Optional<FileSystemNode> invalidate(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, SnapshotHierarchy.NodeDiffListener diffListener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pkg/serviceaccount/legacy.go

    	}
    
    	if v.lookup {
    		// Make sure token hasn't been invalidated by deletion of the secret
    		secret, err := v.getter.GetSecret(namespace, secretName)
    		if err != nil {
    			klog.V(4).Infof("Could not retrieve token %s/%s for service account %s/%s: %v", namespace, secretName, namespace, serviceAccountName, err)
    			return nil, errors.New("Token has been invalidated")
    		}
    		if secret.DeletionTimestamp != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ValidateStepTest.groovy

            boolean validated = false
            when:
            def result = step.execute(work, context)
    
            then:
            result == delegateResult
    
            1 * delegate.execute(work, { ValidationFinishedContext context -> context.validationProblems.empty }) >> delegateResult
            _ * work.validate(_ as WorkValidationContext) >> { validated = true }
    
            then:
            validated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_cache_inputs.txt

    env GO111MODULE=off
    
    # Test that cached test results are invalidated in response to
    # changes to the external inputs to the test.
    
    [short] skip
    [GODEBUG:gocacheverify=1] skip
    
    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build a helper binary to invoke os.Chtimes.
    go build -o mkold$GOEXE mkold.go
    
    # Make test input files appear to be a minute old.
    exec ./mkold$GOEXE 1m testcache/file.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

        }
    
        def "can use ResolvedComponentResult result as task input and '#changeDesc' invalidates the cache"() {
            given:
            resolvedComponentResultSetup()
            buildFile << """
                if (Boolean.getBoolean("externalDependency")) {
                    dependencies { implementation 'org.external:external-tool:1.0' }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    This allows configuration and tooling model creation for each project to safely run in parallel and the result cached and invalidated for each project independently.
    
    == Status as of Gradle 8.5
    
    When isolated projects is enabled, Gradle applies two levels of caching during IDE sync:
    
    Gradle starts by applying coarse-grained caching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top