Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getChildNode (0.12 sec)

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

        }
    
        @Override
        public Optional<FileSystemNode> getNode(VfsRelativePath relativePath, CaseSensitivity caseSensitivity) {
            return Optional.of(getChildNode(relativePath, caseSensitivity));
        }
    
        protected FileSystemNode getChildNode(VfsRelativePath relativePath, CaseSensitivity caseSensitivity) {
            return missingSnapshotForAbsolutePath(relativePath.getAbsolutePath());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

                    .orElseGet(() -> missingSnapshotForAbsolutePath(targetPath.getAbsolutePath()))
            );
        }
    
        @Override
        protected FileSystemNode getChildNode(VfsRelativePath targetPath, CaseSensitivity caseSensitivity) {
            Optional<FileSystemNode> childNode = SnapshotUtil.getChild(children, targetPath, caseSensitivity);
            return childNode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top