Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for visitMissing (0.15 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

                        return SnapshotVisitResult.CONTINUE;
                    }
    
                    @Override
                    public SnapshotVisitResult visitMissing(MissingFileSnapshot missingSnapshot) {
                        return SnapshotVisitResult.CONTINUE;
                    }
                });
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

                    public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
                        visitNonDirectoryEntry(snapshot, isRoot);
                    }
    
                    @Override
                    public void visitMissing(MissingFileSnapshot missingSnapshot) {
                        visitNonDirectoryEntry(snapshot, isRoot);
                    }
                });
                return SnapshotVisitResult.CONTINUE;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

                        }
                        builder.put(absolutePath, fingerprint);
                    }
    
                    @Override
                    public void visitMissing(MissingFileSnapshot missingSnapshot) {
                        if (!relativePath.isRoot()) {
                            throw new RuntimeException(String.format("Couldn't read file content: '%s'.", missingSnapshot.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                        storeFileEntry(file, targetPath, file.length(), fileMode, tarOutput);
                    }
    
                    @Override
                    public void visitMissing(MissingFileSnapshot missingSnapshot) {
                        if (!isRoot) {
                            throw new RuntimeException(String.format("Couldn't read content of file '%s'", 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