Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removeUnwatchableContentAfterBuildFinished (0.45 sec)

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

            }
            return newRoot;
        }
    
        @Override
        public SnapshotHierarchy updateVfsBeforeAfterFinished(SnapshotHierarchy root) {
            SnapshotHierarchy newRoot = WatchableHierarchies.removeUnwatchableContentAfterBuildFinished(
                root,
                createInvalidator()
            );
    
            if (root != newRoot) {
                update(newRoot);
            }
            return newRoot;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

                return isInWatchableHierarchy(snapshot.getAbsolutePath());
            });
        }
    
        @CheckReturnValue
        public static SnapshotHierarchy removeUnwatchableContentAfterBuildFinished(SnapshotHierarchy root, Invalidator invalidator) {
            SnapshotHierarchy newRoot = root;
            // We are not being notified about changes to content accessed via symlinks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top