Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 553 for childrenOf (0.25 sec)

  1. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/FragmentedOperation.java

        private final String description;
        private final Collection<ContinuousOperation> children = new HashSet<>();
    
        public FragmentedOperation(String description) {
            this.description = description;
        }
    
        @Override
        public long getElapsedTime() {
            long result = 0;
            for (ContinuousOperation child : children) {
                result += child.getElapsedTime();
            }
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. test-site/public/javascripts/suggestor.js

                    } else if(listSelNum > listNum) {
                        listSelNum = 0;
                    }
    
                    var a = $boxElement.children("ol").children("li");
                    $boxElement.children("ol").children("li").each(function(i){
                        if(i == (listSelNum-1)) {
                            if(typeof listSelectedCssInfo === 'undefined') {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

            eclipseModel.children[0].name == 'child1'
            eclipseModel.children[0].buildCommands.collect { it.name } == ['child1BuildCommand']
            eclipseModel.children[0].buildCommands.collect { it.arguments } == [['child1Key': 'child1Value']]
            eclipseModel.children[1].name == 'child2'
            eclipseModel.children[1].buildCommands.collect { it.name } == ['child2BuildCommand']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ResolveArtifactsProgressCrossVersionSpec.groovy

            def resolveArtifacts = events.operation(resolveConfigurationFiles(':configurationWithDependency'))
            resolveArtifacts.parent.descriptor.displayName.matches("Execute .* for :resolve")
            resolveArtifacts.children.size() == 1
            resolveArtifacts.child("Resolve ${expectedDisplayName('provider', 'jar', '1.0')} (test:provider:1.0)")
        }
    
        def "generates event for resolving intrinsic artifacts via file collection"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/composite/ChildBuildRegisteringSettingsLoader.java

            if (!includedBuilds.isEmpty()) {
                Set<IncludedBuildInternal> children = new LinkedHashSet<>(includedBuilds.size());
                for (IncludedBuildSpec includedBuildSpec : includedBuilds) {
                    CompositeBuildParticipantBuildState includedBuild = buildIncluder.includeBuild(includedBuildSpec);
                    children.add(includedBuild.getModel());
                }
    
                // Set the visible included builds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top