Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Children (0.4 sec)

  1. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *          siblings of the dominant children.</li>
         *     <li> otherwise, use the default value for mergeChildren, which is true...this is the same as specifying
         *         'combine.children' == 'merge' as an attribute on the dominant root node.</li>
         *     </ol></li>
         *   <li> Iterate through the recessive children, and:
         *     <ol type="i">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/WrapperNode.java

    import org.eclipse.aether.graph.DependencyNode;
    
    class WrapperNode extends AbstractNode {
        protected final Node delegate;
        protected final List<Node> children;
    
        WrapperNode(Node delegate, List<Node> children) {
            this.delegate = delegate;
            this.children = children;
        }
    
        @Override
        DependencyNode getDependencyNode() {
            return Utils.cast(AbstractNode.class, delegate, "delegate").getDependencyNode();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

        }
    
        private static List<String> visitAll(
                Collection<Vertex> children, Map<Vertex, DfsState> stateMap, List<String> list) {
            for (Vertex v : children) {
                DfsState state = stateMap.putIfAbsent(v, DfsState.VISITING);
                if (state == null) {
                    visitAll(v.children, stateMap, list);
                    stateMap.put(v, DfsState.VISITED);
                    list.add(v.label);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                            }
                        }
                    } else {
                        if (children == null) {
                            children = new ArrayList<>();
                        }
                        XmlNode child = build(parser, trim, locationBuilder);
                        children.add(child);
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    if (child != null) {
                        children.add(child);
                    }
                }
    
                message = "The build could not read " + children.size() + " project" + (children.size() == 1 ? "" : "s");
            } else {
                message = getMessage(message, exception);
            }
    
            return new ExceptionSummary(exception, message, reference, children);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                    false // error?
                // no children of secondary constructs are used.
                is KtSecondaryConstructor ->
                    false
    
                // KtClass, KtObjectDeclaration, KtTypeAlias has no expression children
                is KtClassLikeDeclaration ->
                    false // has no expression children
    
                // Simple names do not have expression children
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

                            }
                        }
                    } else {
                        if (children == null) {
                            children = new ArrayList<>();
                        }
                        XmlNode child = build(parser, trim, locationBuilder);
                        children.add(child);
                    }
                } else if (eventType == XmlPullParser.TEXT) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractNode.java

            return visitor.leave(this);
        }
    
        @Override
        public Node filter(Predicate<Node> filter) {
            List<Node> children =
                    getChildren().stream().filter(filter).map(n -> n.filter(filter)).collect(Collectors.toList());
            return new WrapperNode(this, Collections.unmodifiableList(children));
        }
    
        @Override
        public String asString() {
            StringBuilder sb = new StringBuilder();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Graph.java

        }
    
        private static List<String> visitCycle(
                Map<String, Set<String>> graph,
                Collection<String> children,
                Map<String, DfsState> stateMap,
                LinkedList<String> cycle) {
            if (children != null) {
                for (String v : children) {
                    DfsState state = stateMap.putIfAbsent(v, DfsState.VISITING);
                    if (state == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java

        }
    
        private static List<String> visitCycle(
                Map<String, Set<String>> graph,
                Collection<String> children,
                Map<String, DfsState> stateMap,
                LinkedList<String> cycle) {
            if (children != null) {
                for (String v : children) {
                    DfsState state = stateMap.putIfAbsent(v, DfsState.VISITING);
                    if (state == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top