Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for RegularFileSnapshot (0.42 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.gradle.internal.snapshot.RelativePathTracker;
    import org.gradle.internal.snapshot.RelativePathTrackingFileSystemSnapshotHierarchyVisitor;
    import org.gradle.internal.snapshot.SnapshotVisitResult;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            //     - known.txt <-- knownTextFile
            //     - known.html <-- knownHtmlFile
            def knownTextFileSnapshot = new RegularFileSnapshot(knownTextFile.absolutePath, knownTextFile.name, TestHashCodes.hashCodeFrom(1234), Stub(FileMetadata))
            def knownHtmlFileSnapshot = new RegularFileSnapshot(knownHtmlFile.absolutePath, knownHtmlFile.name, TestHashCodes.hashCodeFrom(4321), Stub(FileMetadata))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MerkleDirectorySnapshotBuilder;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.gradle.internal.snapshot.RelativePathTracker;
    import org.gradle.internal.snapshot.RelativePathTrackingFileSystemSnapshotHierarchyVisitor;
    import org.gradle.internal.snapshot.SnapshotVisitResult;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

        void invalidate(FileSystemLocationSnapshot snapshot) {
            invalidate(snapshot.absolutePath)
        }
    
        static RegularFileSnapshot snapshotRegularFile(File regularFile) {
            def attributes = Files.readAttributes(regularFile.toPath(), BasicFileAttributes)
            new RegularFileSnapshot(
                regularFile.absolutePath,
                regularFile.name,
                TestFiles.fileHasher().hash(regularFile),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.gradle.internal.snapshot.SnapshottingFilter;
    import org.gradle.internal.snapshot.impl.DirectorySnapshotter;
    import org.gradle.internal.snapshot.impl.DirectorySnapshotterStatistics;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MerkleDirectorySnapshotBuilder;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.gradle.internal.snapshot.RootTrackingFileSystemSnapshotHierarchyVisitor;
    import org.gradle.internal.snapshot.SnapshotVisitResult;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            new DirectorySnapshot("/", "", AccessType.DIRECT, TestHashCodes.hashCodeFrom(1111), [
                new RegularFileSnapshot("/root.txt", "root.txt", TestHashCodes.hashCodeFrom(1234), DefaultFileMetadata.file(1, 1, AccessType.DIRECT)),
                new RegularFileSnapshot("/other.txt", "other.txt", TestHashCodes.hashCodeFrom(4321), DefaultFileMetadata.file(5, 28, AccessType.DIRECT))
            ])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

    import org.gradle.internal.snapshot.FileSystemLocationSnapshot.FileSystemLocationSnapshotTransformer;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.gradle.internal.snapshot.RootTrackingFileSystemSnapshotHierarchyVisitor;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.snapshot.SnapshotVisitResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasherTest.groovy

                @Override
                Supplier<String[]> getRelativePathSegments() {
                    return { path.split('/') }
                }
    
                @Override
                RegularFileSnapshot getSnapshot() {
                    return new RegularFileSnapshot(
                        manifestFile.absolutePath,
                        manifestFile.name,
                        HashCode.fromBytes(manifestBytes.toByteArray()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

                            return path.split('/')
                        }
                    }
                }
    
                @Override
                RegularFileSnapshot getSnapshot() {
                    return new RegularFileSnapshot(file.absolutePath, file.name, Hashing.hashBytes(bytes), DefaultFileMetadata.file(0L, bytes.size(), FileMetadata.AccessType.DIRECT))
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top