Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for childPath (0.19 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            ModelPath childPath = child.getPath();
            if (!getPath().isDirectChild(childPath)) {
                throw new IllegalArgumentException(String.format("Element registration has a path (%s) which is not a child of this node (%s).", childPath, getPath()));
            }
    
            ModelNodeInternal currentChild = links == null ? null : links.get(childPath.getName());
            if (currentChild != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

            Map<Object, Object> hints = new HashMap<>();
            String childPath = child.getProperties().getOrDefault(CHILD_DIRECTORY_PROPERTY, child.getArtifactId());
            hints.put(CHILD_DIRECTORY, childPath);
            hints.put(MavenModelMerger.CHILD_PATH_ADJUSTMENT, getChildPathAdjustment(child, parent, childPath));
            return merger.merge(child, parent, false, hints);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelSet.java

            ModelPath childPath = modelNode.getPath().child(name);
            final ModelRuleDescriptor descriptor = this.descriptor.append("create()");
    
            NodeInitializer nodeInitializer = creatorStrategy.initializer(elementType, Specs.<ModelType<?>>satisfyAll());
            ModelRegistration registration = ModelRegistrations.of(childPath, nodeInitializer)
                .descriptor(descriptor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

                    return child.getSnapshot(pathInChild, caseSensitivity);
                }
    
                @Override
                public Optional<MetadataSnapshot> handleAsAncestorOfChild(String childPath, T child) {
                    return noChildFoundResult.get();
                }
    
                @Override
                public Optional<MetadataSnapshot> handleExactMatchWithChild(T child) {
    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. 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)
  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)
Back to top