- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 29 for setChildren (0.08 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java
return parent; } public void setParent(MetadataTreeNode parent) { this.parent = parent; } public MetadataTreeNode[] getChildren() { return children; } public void setChildren(MetadataTreeNode[] children) { this.children = children; } // ------------------------------------------------------------------------Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.9K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/BuildableDOMCategory.groovy
while (element.hasChildNodes()) { element.removeChild(element.getFirstChild()) } element.appendChild(element.ownerDocument.createTextNode(value)) } public static void setChildren(Node element, Closure cl) { while (element.hasChildNodes()) { element.removeChild(element.getFirstChild()) } leftShift(element, cl) }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Aug 11 15:32:19 GMT 2022 - 2.8K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/GraphTest.java
assertTrue(labels.contains("d"), "Expected " + labels + " to contain " + "d"); addEdge(graph, "a", "d"); assertEquals(2, a.getChildren().size()); assertTrue(a.getChildren().contains(b)); assertTrue(a.getChildren().contains(d)); assertEquals(2, d.getParents().size()); assertTrue(d.getParents().contains(a)); assertTrue(d.getParents().contains(c)); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 8.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Node.java
@Nullable Dependency getDependency(); /** * Gets the child nodes of this node. * * @return the child nodes of this node, never {@code null} */ @Nonnull List<Node> getChildren(); /** * @return repositories of this node */ @Nonnull List<RemoteRepository> getRemoteRepositories(); /** * The repository where this artifact has been downloaded from.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Mar 24 14:10:11 GMT 2025 - 4.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java
return exception; } public String getMessage() { return message; } public String getReference() { return reference; } public List<ExceptionSummary> getChildren() { return children; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
throws PlexusConfigurationException { List<MojoDescriptor> mojos = new ArrayList<>(); PlexusConfiguration[] mojoConfigurations = c.getChild("mojos").getChildren("mojo"); for (PlexusConfiguration component : mojoConfigurations) { mojos.add(buildComponentDescriptor(component, pluginDescriptor)); } return mojos; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 17.5K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/SuccessorsFunction.java
* * <p>If you have your own graph implementation based around a custom node type {@code MyNode}, * which has a method {@code getChildren()} that retrieves its successors in a graph: * * {@snippet : * someGraphAlgorithm(startNode, MyNode::getChildren); * } * * <p>If you have some other mechanism for returning the successors of a node, or one that doesn'tCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 4.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
if (tree == null) { tree = node; } if (parent != null) { parent.setNChildren(1); parent.addChild(0, node); } parent = node; } return tree; } public void setClasspath(List<ArtifactMetadata> classpath) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 4.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java
Set<Artifact> artifacts = new LinkedHashSet<>(); if (result.getDependencyGraph() != null && !result.getDependencyGraph().getChildren().isEmpty()) { RepositoryUtils.toArtifacts( artifacts, result.getDependencyGraph().getChildren(), Collections.singletonList(project.getArtifact().getId()), collectionFilter); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 15.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/Graph.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.1K bytes - Click Count (0)