Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for visitRegularFile (0.59 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

            default void visitRegularFile(RegularFileSnapshot fileSnapshot) {};
            default void visitMissing(MissingFileSnapshot missingSnapshot) {};
        }
    
        interface FileSystemLocationSnapshotTransformer<T> {
            T visitDirectory(DirectorySnapshot directorySnapshot);
            T visitRegularFile(RegularFileSnapshot fileSnapshot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepository.java

                            recordOutputSnapshot(directorySnapshot);
                        }
    
                        @Override
                        public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
                            recordOutputSnapshot(fileSnapshot);
                        }
    
                        private void recordOutputSnapshot(FileSystemLocationSnapshot snapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

                @Override
                public Long visitDirectory(DirectorySnapshot directorySnapshot) {
                    return 0L;
                }
    
                @Override
                public Long visitRegularFile(RegularFileSnapshot fileSnapshot) {
                    return fileSnapshot.getMetadata().getLength();
                }
    
                @Override
                public Long visitMissing(MissingFileSnapshot missingSnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

                    snapshot.accept(new FileSystemLocationSnapshot.FileSystemLocationSnapshotVisitor() {
                        @Override
                        public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
                            try {
                                writeEntryType(encoder, EntryType.REGULAR_FILE);
                                writePath(encoder, isRoot, fileSnapshot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

                            LOGGER.info("   - {}/", locationSnapshot.getAbsolutePath());
                        }
    
                        @Override
                        public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
                            LOGGER.info("   - {}", locationSnapshot.getAbsolutePath());
                        }
    
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                        storeDirectoryEntry(targetPath, dirMode, tarOutput);
                    }
    
                    @Override
                    public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
                        assertCorrectType(isRoot, snapshot);
                        File file = new File(snapshot.getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top