Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for childPath (0.25 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchy.java

                VfsRelativePath relativePath = VfsRelativePath.of(absolutePath);
                String childPath = relativePath.getAsString();
                SingletonChildMap<FileSystemNode> children = new SingletonChildMap<>(childPath, snapshot.asFileSystemNode());
                FileSystemNode rootNode = snapshot.getType() == FileType.Missing
                    ? new UnknownFileSystemNode(children)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNode.java

                    return child.invalidate(pathInChild, caseSensitivity, diffListener);
                }
    
                @Override
                public void handleAsAncestorOfChild(String childPath, FileSystemNode child) {
                    diffListener.nodeRemoved(child);
                }
    
                @Override
                public void handleExactMatchWithChild(FileSystemNode child) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                    }
    
                    boolean missing = matcher.group(1) != null;
                    String childPath = matcher.group(3);
                    tarEntry = unpackTree(treeName, tree.getType(), tree.getRoot(), tarInput, tarEntry, childPath, missing, snapshots, entries);
                }
            }
            if (originMetadata == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            childSpec.addChildSpecListener((path, spec) -> {
                CopySpecAddress childPath = new DefaultCopySpecAddress(null, DefaultCopySpec.this, additionIndex).append(path);
                fireChildSpecListeners(childPath, spec);
            });
    
            // Notify upwards of currently existing descendant spec hierarchy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

                        .forEach(diffListener::nodeAdded);
                    return invalidated;
                }
    
                @Override
                public void handleAsAncestorOfChild(String childPath, FileSystemLocationSnapshot child) {
                    throw new IllegalStateException("Can't have an ancestor of a single path element");
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

        }
    
        private static void hasParentProject(def projects, File rootDir, String path, String name, List<String> childPaths) {
            hasProject(projects, rootDir, path, name, null, childPaths)
        }
    
        private static void hasProject(def projects, File rootDir, String path, String name, String parentPath, List<String> childPaths) {
            def project = projects.find {it.name == name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VirtualFileSystemTestSpec.groovy

        final List<String> childPaths
        final VfsRelativePath searchedPath
        final String selectedChildPath
    
        VirtualFileSystemTestSpec(List<String> childPaths, String relativeSearchedPath, @Nullable String selectedChildPath) {
            this.childPaths = childPaths
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

            removedNodes == [selectedChild]
            addedNodes.empty
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << (IS_PREFIX_OF_CHILD + SAME_PATH).findAll { it.childPaths.size() > 1 }
        }
    
        def "invalidating the only child by #vfsSpec.searchedPath removes the node (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. pkg/api/testing/compat/compatibility_tester.go

    		}
    		value = valueSlice[index]
    	}
    
    	if len(keys) == 1 {
    		return value, true, nil
    	}
    
    	childData, ok := value.(map[string]interface{})
    	if !ok {
    		return nil, false, fmt.Errorf("key %s did not hold a map", keys[0])
    	}
    	return getJSONValue(childData, keys[1:]...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 20 22:26:16 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            removedNodes.empty
            addedNodes.empty
    
            where:
            vfsSpec << (NO_COMMON_PREFIX + COMMON_PREFIX).findAll { allowEmptyChildren || !it.childPaths.empty }
        }
    
        def "store #fileType child with common prefix adds a new child with the shared prefix of type Directory (#vfsSpec)"() {
            setupTest(vfsSpec)
            def snapshot = Mock(MetadataSnapshot)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top