Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 553 for childrenOf (0.2 sec)

  1. refactorings/TraverserRewrite.java

        }
    
        @BeforeTemplate
        Iterable<N> before2(N root) {
          return new TreeTraverser<N>() {
            @Override
            public Iterable<N> children(N node) {
              return getChildren(node);
            }
          }.preOrderTraversal(root);
        }
    
        @AfterTemplate
        Iterable<N> after(N root) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 20 18:51:33 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

            }
    
            List<PBXObject> getChildren() {
                return getProperty("children")
            }
    
            def assertHasChildren(List<String> entries) {
                def children = getProperty("children")
                assert children.size() == entries.size()
                assert children*.name.containsAll(entries)
                return true
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/LargeChildMap.java

     */
    
    package org.gradle.internal.snapshot;
    
    import java.util.List;
    
    public class LargeChildMap<T> extends AbstractListChildMap<T> {
    
        public LargeChildMap(List<Entry<T>> children) {
            super(children);
        }
    
        @Override
        public <R> R withNode(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, NodeHandler<T, R> handler) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/util/internal/TreeVisitor.java

        /**
         * Visits a node of the tree.
         */
        public void node(T node) {
        }
    
        /**
         * Starts visiting the children of the most recently visited node.
         */
        public void startChildren() {
        }
    
        /**
         * Finishes visiting the children of the most recently started node.
         */
        public void endChildren() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodePointer.java

            if (node.getValue() != null) {
                return node.getValue();
            } else {
                List<Object> children = new ArrayList<>();
                for (XmlNode child : node.getChildren()) {
                    children.add(getValue(child));
                }
                return children;
            }
        }
    
        @Override
        public Object getBaseValue() {
            return node;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MediumChildMap.java

    package org.gradle.internal.snapshot;
    
    import java.util.List;
    import java.util.Optional;
    
    public class MediumChildMap<T> extends AbstractListChildMap<T> {
        protected MediumChildMap(List<Entry<T>> children) {
            super(children);
        }
    
        @Override
        public <RESULT> RESULT withNode(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, NodeHandler<T, RESULT> handler) {
            for (Entry<T> entry : entries) {
    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. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      ASSERT_THAT(env->RecursivelyCreateDir(absl::StrCat(*tmp_dir, "/subdir")),
                  IsOk());
    
      absl::StatusOr<std::vector<std::string>> children = ListDirectory(*tmp_dir);
      EXPECT_THAT(children, IsOk());
      EXPECT_THAT(children.value(), SizeIs(3));
      EXPECT_THAT(children.value(),
                  UnorderedElementsAre("subdir", "tmp_file1", "tmp_file2"));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         * Traverses this node and potentially its children using the specified visitor.
         *
         * @param visitor the visitor to call back, must not be {@code null}
         * @return {@code true} to visit siblings nodes of this node as well, {@code false} to skip siblings
         */
        boolean accept(@Nonnull NodeVisitor visitor);
    
        /**
         * Returns a new tree starting at this node, filtering the children.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/resources/org/gradle/reporting/report.js

            }
    
            return titles;
        }
    
        function findChildElements(container, name, targetClass) {
            var elements = [];
            var children = container.childNodes;
    
            for (var i = 0; i < children.length; i++) {
                var child = children.item(i);
    
                if (child.nodeType === 1 && child.nodeName === name) {
                    if (targetClass && child.className.indexOf(targetClass) < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
Back to top