Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 215 for childrenOf (0.16 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r74/CompositeBuildSubstitutionsCrossVersionSpec.groovy

            compositeIncludedRoot()
    
            when:
            def model = withConnection {
                getModel(HierarchicalEclipseProject)
            }
    
            then:
            model.children[1].projectDependencies.size() == 1
            model.children[1].projectDependencies[0].path == 'sub-a'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. src/context/context.go

    		p.mu.Lock()
    		if p.err != nil {
    			// parent has already been canceled
    			child.cancel(false, p.err, p.cause)
    		} else {
    			if p.children == nil {
    				p.children = make(map[canceler]struct{})
    			}
    			p.children[child] = struct{}{}
    		}
    		p.mu.Unlock()
    		return
    	}
    
    	if a, ok := parent.(afterFuncer); ok {
    		// parent implements an AfterFunc method.
    		c.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvedDependency.java

        }
    
        @Override
        public Set<ResolvedDependency> getChildren() {
            return ImmutableSet.copyOf(children);
        }
    
        @Override
        public Collection<? extends DependencyGraphNodeResult> getOutgoingEdges() {
            return children;
        }
    
        @Override
        public Set<ResolvedArtifact> getModuleArtifacts() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

                    }
                }
            }
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
            IdeaModule module = project.children[0]
            IdeaContentRoot root = module.contentRoots[0]
    
            then:
            root.sourceDirectories.size() == 1
            root.sourceDirectories.first().directory == file('src/main/java')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/gc-stress.go

    //go:build ignore
    
    package main
    
    import (
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    	"time"
    )
    
    type node struct {
    	children [4]*node
    	data     [128]byte
    }
    
    func makeTree(depth int) *node {
    	if depth == 0 {
    		return new(node)
    	}
    	return &node{
    		children: [4]*node{
    			makeTree(depth - 1),
    			makeTree(depth - 1),
    			makeTree(depth - 1),
    			makeTree(depth - 1),
    		},
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

                it.details.pluginClass == "Plugin1"
            }
            p1.details.targetPath == ":a"
    
            def children = operations.search(p1) {
                ApplyPluginBuildOperationType.Details.isAssignableFrom(it.detailsType)
            }
    
            children.size() == 1
            def p2 = children.first()
    
            p2.details.targetPath == ":b"
            p2.details.pluginClass == "Plugin2"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/ToolingApiEclipseProjectDependenciesCrossVersionSpec.groovy

                }
    
                dependencies {
                    implementation project(':a')
                }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject).children.find { it.gradleProject.path == ':b' }
    
            then:
            project.projectDependencies.size() == 1
            project.projectDependencies[0].classpathAttributes.find { it.name == 'without_test_code' }.value == "true"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/xml/DomUtil.java

        /**
         * {@link NodeList}の文字列表現を追加します。
         *
         * @param children
         *            子要素。{@literal null}であってはいけません
         * @param buf
         *            文字列バッファ。{@literal null}であってはいけません
         */
        public static void appendChildren(final NodeList children, final StringBuilder buf) {
            assertArgumentNotNull("children", children);
            assertArgumentNotNull("buf", buf);
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/runtime/tracetype.go

    	w.varint(uint64(typ.Size()))
    	w.varint(uint64(typ.PtrBytes))
    	w.varint(uint64(len(typName)))
    	w.stringData(typName)
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpTypesRec((*traceMapNode)(child), w)
    	}
    	return w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top