Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for updateVfsBeforeAfterFinished (0.31 sec)

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

         *
         * @see FileWatcherRegistry#updateVfsBeforeBuildFinished(SnapshotHierarchy, int, List)
         */
        @CheckReturnValue
        SnapshotHierarchy updateVfsBeforeAfterFinished(SnapshotHierarchy root);
    
        /**
         * The files actually being watched right now.
         *
         * @see FileWatcherUpdater
         */
        FileHierarchySet getWatchedFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

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

        }
    
        @Override
        public SnapshotHierarchy updateVfsAfterBuildFinished(SnapshotHierarchy root) {
            return fileWatcherUpdater.updateVfsBeforeAfterFinished(root);
        }
    
        private static Type convertType(FileWatchEvent.ChangeType type) {
            switch (type) {
                case CREATED:
                    return CREATED;
                case MODIFIED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top