Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for invalidating (0.3 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

                                    if (absolutePath == null) {
                                        LOGGER.info("Overflow detected (type: {}), invalidating all watched files", type);
                                        fileWatcherUpdater.getWatchedFiles().visitRoots(watchedRoot ->
                                            handler.handleChange(OVERFLOW, Paths.get(watchedRoot)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

                    return entry.getResult();
                } else if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("Invalidating result for rule {} and key {} in cache", rules, key);
                }
            }
    
            RESULT result = executeRule(key, action, detailsToResult, onCacheMiss);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K 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-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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            when:
            run "invalid", "--info"
            then:
            executedAndNotSkipped(":invalid")
            outputContains("Invalidating VFS because task ':invalid' failed validation")
        }
    
        @Requires(IntegTestPreconditions.IsEmbeddedExecutor)
        // this test only works in embedded mode because of the use of validation test fixtures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top