Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for visitRegularFile (0.41 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/snapshots/src/main/java/org/gradle/internal/snapshot/RegularFileSnapshot.java

        }
    
        @Override
        public void accept(FileSystemLocationSnapshotVisitor visitor) {
            visitor.visitRegularFile(this);
        }
    
        @Override
        public <T> T accept(FileSystemLocationSnapshotTransformer<T> transformer) {
            return transformer.visitRegularFile(this);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/FileSystemSnapshotFilter.java

                    public Boolean visitDirectory(DirectorySnapshot directorySnapshot) {
                        return root;
                    }
    
                    @Override
                    public Boolean visitRegularFile(RegularFileSnapshot fileSnapshot) {
                        return false;
                    }
    
                    @Override
                    public Boolean visitMissing(MissingFileSnapshot missingSnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetector.java

                        return hasNewContent(relativePath, directorySnapshot);
                    }
    
                    @Override
                    public Boolean visitRegularFile(RegularFileSnapshot fileSnapshot) {
                        // Check if a new file has appeared, or if an existing file's content has changed
                        return hasNewContent(relativePath, fileSnapshot);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

                            return SnapshotVisitResult.CONTINUE;
                        }
                    }
    
                    @Override
                    public SnapshotVisitResult visitRegularFile(RegularFileSnapshot fileSnapshot) {
                        return SnapshotVisitResult.CONTINUE;
                    }
    
                    @Override
    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/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)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

                            currentRoot = directorySnapshot;
                            currentRootFiltered = false;
                        }
                    }
    
                    @Override
                    public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
                        visitNonDirectoryEntry(snapshot, isRoot);
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top