Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 233 for children (2.4 sec)

  1. 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)
  2. 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)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        private void wrapContentInContainer(Document document) {
            // Wrap the page in a text container to get the margins
            Elements bodyContent = document.body().children().remove();
            document.body().prepend("<div class='container'/>");
            document.body().children().get(0).html(bodyContent.outerHtml());
        }
    
        private void addTOC(Document document) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                val actions = readList().uncheckedCast<List<Action<FileCopyDetails>>>()
                val children = readList().uncheckedCast<List<CopySpecInternal>>()
                val copySpec = DefaultCopySpec(fileCollectionFactory, objectFactory, instantiator, patternSetFactory, destPath, sourceFiles, patterns, actions, children)
                copySpec.duplicatesStrategy = duplicatesStrategy
                copySpec.includeEmptyDirs = includeEmptyDirs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractionContext.java

        private final String description;
        private final Action<? super ModelSchema<T>> validator;
        private ModelSchema<T> result;
        private final List<DefaultModelSchemaExtractionContext<?>> children = new ArrayList<>();
        private final FormattingValidationProblemCollector problems;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

            0 * _
    
            when:
            invalidate(rootDirSnapshot.children[0])
            invalidate(rootDirSnapshot.children[1])
            then:
            0 * _
    
            when:
            invalidate(rootDirSnapshot.children[2])
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [rootDir]) })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            if (unpackedNode instanceof DirectorySnapshot) {
                def children = unpackedNode.children
                children.forEach { child ->
                    collectPrefixes(child.name, child, 0, prefixes)
                }
            } else if (unpackedNode instanceof AbstractIncompleteFileSystemNode) {
                def children = unpackedNode.children
                children.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top