Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 215 for childrenOf (0.17 sec)

  1. 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)
  2. pkg/test/framework/scope.go

    	id string
    
    	parent *scope
    
    	resources []resource.Resource
    
    	closers []io.Closer
    
    	children []*scope
    
    	closeChan chan struct{}
    
    	topLevel bool
    
    	skipDump bool
    
    	// Mutex to lock changes to resources, children, and closers that can be done concurrently
    	mu sync.Mutex
    }
    
    func newScope(id string, p *scope) *scope {
    	s := &scope{
    		id:        id,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

            then:
            fixture.assertNoConfigurationCache()
    
            with(expectedProjectModel) {
                it.name == "root"
                it.tasks.size() > 0
                it.children.size() == 1
                it.children[0].children.size() == 1
            }
    
            when: "fetching with Isolated Projects"
            executer.withArguments(ENABLE_CLI)
            def projectModel = fetchModel(GradleProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

             */
            List<Operation> children(String displayName) {
                return children.findAll { it.descriptor.displayName == displayName }
            }
    
            List<Operation> descendants(Spec<? super Operation> filter) {
                def found = [] as List<Operation>
                def recurse
                recurse = { List<Operation> children ->
                    children.each { child ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/CacheableTaskProgressEventsCrossVersionSpec.groovy

                unpackOperations.each {
                    assert !it.children
                }
                pullOperations.each {
                    if (it.descriptor.displayName.contains('local')) {
                        assert unpackOperations.containsAll(it.children)
                    } else {
                        assert !it.children
                    }
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/internal/concurrent/hashtriemap.go

    		oi := (oldHash >> hashShift) & nChildrenMask
    		ni := (newHash >> hashShift) & nChildrenMask
    		if oi != ni {
    			newIndirect.children[oi].Store(&oldEntry.node)
    			newIndirect.children[ni].Store(&newEntry.node)
    			break
    		}
    		nextIndirect := newIndirectNode(newIndirect)
    		newIndirect.children[oi].Store(&nextIndirect.node)
    		newIndirect = nextIndirect
    	}
    	return &top.node
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributesFactory.java

            this.root = ImmutableAttributes.EMPTY;
            this.children = new HashMap<>();
            this.children.put(root, new ArrayList<DefaultImmutableAttributes>());
            this.usageCompatibilityHandler = new UsageCompatibilityHandler(isolatableFactory, instantiator);
        }
    
        public int size() {
            return children.size();
        }
    
        @Override
        public DefaultMutableAttributeContainer mutable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiEclipseModelCrossVersionSpec.groovy

            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject rootImplProject = rootProject.children.find { it.name == 'root-impl' }
            EclipseProject contribProject = rootProject.children.find { it.name == 'contrib' }
            EclipseProject contribImplProject = contribProject.children.find { it.name == 'contrib-impl' }
    
            then:
            contribImplProject.projectDependencies.any { it.path == 'contrib-api' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top