Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for viaSymlink (0.12 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            snapshot.accessType == AccessType.VIA_SYMLINK
            snapshot.absolutePath == rootDir.absolutePath
    
            def link2 = snapshot.children[0].children[0] as DirectorySnapshot
            link2.accessType == AccessType.VIA_SYMLINK
            link2.name == "linked"
    
            def link3 = link2.children[1].children[0] as DirectorySnapshot
            link3.accessType == AccessType.VIA_SYMLINK
            link3.name == "linked3"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

         * Snapshots a directory, reusing existing previously known snapshots.
         *
         * Follows symlinks and includes them in the returned snapshot.
         * Snapshots of followed symlinks are marked with {@link AccessType#VIA_SYMLINK}.
         *
         * @param absolutePath The absolute path of the directory to snapshot.
         * @param predicate A predicate that determines which files to include in the snapshot.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            return retainOnlyMatchingSnapshots(root, invalidator,
                snapshot -> snapshot.getAccessType() != FileMetadata.AccessType.VIA_SYMLINK);
        }
    
        private static boolean isAncestorASymlink(Map<String, Boolean> symlinkCache, File file) {
            File parent = file.getParentFile();
            if (parent == null) {
                return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

                regularFile.name,
                TestFiles.fileHasher().hash(regularFile),
                DefaultFileMetadata.file(attributes.lastModifiedTime().toMillis(), attributes.size(), AccessType.VIA_SYMLINK)
            )
        }
    
        static boolean equalIgnoringOrder(Object actual, Collection<?> expected) {
            List<?> actualSorted = (actual as List).toSorted()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top