Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 350 for invalidating (0.3 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            }
    
            if (!errors.isEmpty()) {
                throwValidationException(work, validationContext, errors);
            }
    
            if (!warnings.isEmpty()) {
                LOGGER.info("Invalidating VFS because {} failed validation", work.getDisplayName());
                virtualFileSystem.invalidateAll();
            }
    
            return delegate.execute(work, new ValidationFinishedContext(context, warnings));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

                invalidateDescendantOfSelectedChild(invalidatedChild)
                noMoreInteractions()
            }
    
            where:
            vfsSpec << onlyDirectChildren(CHILD_IS_PREFIX)
        }
    
        def "completely invalidating descendant #vfsSpec.searchedPath of child #vfsSpec.selectedChildPath creates a partial directory node without the child (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
    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/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            // We don't remove actual usable content at the end of the build, though we remove some dangling paths.
            // This is because the project directory is underneath the unsupported file system, so after invalidating D: the project root node is removed from the VFS.
            result.assertHasPostBuildOutput("Some of the file system contents retained in the virtual file system are on file systems that Gradle doesn't support watching.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

         * back-to-back, as there is typically some work being done between the builds,</li>
         * <li>give file system events a chance to arrive; otherwise we might detect them during
         * the build, and invalidating the VFS,
         * <li>let VFS cleanup (that happens between builds) finish.</li>
         * </ul>
         */
        private static class DelayBeforeBuildMutator implements BuildMutator {
            private final long delay;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                problemsWithStackTraceCount = 0
            }
        }
    
        def "serialization problems are reported and fail the build by default invalidating the cache"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile << """
                class BrokenTaskType extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

    public class WatchableHierarchies {
        private static final Logger LOGGER = LoggerFactory.getLogger(WatchableHierarchies.class);
    
        public static final String INVALIDATING_HIERARCHY_MESSAGE = "Invalidating hierarchy because watch probe hasn't been triggered";
    
        private final FileWatcherProbeRegistry probeRegistry;
        private final Predicate<String> immutableLocationsFilter;
    
        /**
         * Files that can be watched.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    null
                }
            }.getOrMapFailure { failure ->
                // This can only happen if someone ignored configuration cache problems and still stored the entry.
                // We're invalidating the cache to save the user a manual "rm -rf .gradle/configuration-cache", as there is no way out.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

        }
    
        private SnapshotHierarchy stopWatchingAndInvalidateHierarchyAfterError(SnapshotHierarchy currentRoot) {
            warningLogger.error("Stopping file watching and invalidating VFS after an error happened");
            return stopWatchingAndInvalidateHierarchy(currentRoot);
        }
    
        private SnapshotHierarchy stopWatchingAndInvalidateHierarchy(SnapshotHierarchy currentRoot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            configurationCache.assertStateStored()
            outputContains("configuration value = someValue")
            outputContains("execution value = someValue")
        }
    
        def "value source changes its value invalidating the cache if its input #providerType provider changes"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile("""
            import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      // contains all control inputs that need to be added to x as operands.
      llvm::DenseMap<Operation*, llvm::SmallVector<Value, 4>> new_control_inputs;
      // Iterate in reverse order to avoid invalidating Operation* stored in
      // new_control_inputs.
      for (auto& item :
           llvm::make_early_inc_range(llvm::reverse(graph_op.GetBody()))) {
        if (auto island = dyn_cast<tf_executor::IslandOp>(&item)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top