Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for visitDirectory (0.28 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepository.java

                outputFileSnapshot.accept(entrySnapshot -> {
                    entrySnapshot.accept(new FileSystemLocationSnapshotVisitor() {
                        @Override
                        public void visitDirectory(DirectorySnapshot directorySnapshot) {
                            recordOutputSnapshot(directorySnapshot);
                        }
    
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

        public static long getLength(FileSystemLocationSnapshot snapshot) {
            return snapshot.accept(new FileSystemLocationSnapshot.FileSystemLocationSnapshotTransformer<Long>() {
                @Override
                public Long visitDirectory(DirectorySnapshot directorySnapshot) {
                    return 0L;
                }
    
                @Override
                public Long visitRegularFile(RegularFileSnapshot fileSnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

                snapshot.accept(locationSnapshot -> {
                    locationSnapshot.accept(new FileSystemLocationSnapshot.FileSystemLocationSnapshotVisitor() {
                        @Override
                        public void visitDirectory(DirectorySnapshot directorySnapshot) {
                            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)
Back to top