Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 234 for childrenOf (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            PendingOperation pending = pendings.remove(finish.id);
                            assert pending != null;
    
                            List<BuildOperationRecord> children = childrens.remove(finish.id);
                            assert children != null;
    
                            SerializedOperationStart start = pending.start;
    
                            Map<String, ?> detailsMap = uncheckedCast(start.details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            assert rootProject.children.size() == 3 // All projects are created when storing
            with(rootProject.children.first() as Map<String, Object>) {
                assert name == 'a'
                assert path == ':a'
                assert projectDir == file('a').absolutePath
                assert buildFile == file('a/build.gradle').absolutePath
                with(children.first()) {
                    assert name == 'b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                    path == file("a/src/main/java").absolutePath
                    children.size() == 4
                    with(children[0]) {
                        path == "a"
                        children.size() == 2
                        with(children[0]) {
                            path == "a"
                            children.size() == 1
                            with(children[0]) {
                                path == "A.java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *          siblings of the dominant children.</li>
         *     <li> otherwise, use the default value for mergeChildren, which is true...this is the same as specifying
         *         'combine.children' == 'merge' as an attribute on the dominant root node.</li>
         *     </ol></li>
         *   <li> Iterate through the recessive children, and:
         *     <ol type="i">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

                displayName == 'Notify beforeEvaluate listeners of :foo'
                children*.displayName == ["Execute Project.beforeEvaluate listener"]
                children.first().children*.displayName == ["Apply script '${relativePath('foo/before.gradle')}' to project ':foo'"]
                parentId == configOp.id
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            verifyTaskDetails(RegisterTaskBuildOperationType, withPath(':', ':foo')).children.empty
            def realize = verifyTaskDetails(RealizeTaskBuildOperationType, withPath(':', ':foo'))
            realize.children.size() == 1
            def configure = realize.children[0]
            configure.children.size() == 1
            buildOperations.isType(configure.children[0], RealizeTaskBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. pkg/test/framework/integration/framework_test.go

    			ci := tst.children[i]
    			ciRange := ci.timeRange()
    			for j := i + 1; j < len(tst.children); j++ {
    				cj := tst.children[j]
    				cjRange := cj.timeRange()
    				if ciRange.overlaps(cjRange) {
    					return fmt.Errorf("test %s: child %s[%s] overlaps with child %s[%s]",
    						tst.name, ci.name, ciRange, cj.name, cjRange)
    				}
    			}
    		}
    	}
    
    	// Now check the children.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            elementOrFailure {
                val children = tree.children(node)
    
                var identifier: Syntactic<String>? = null
                var expression: CheckedResult<ElementResult<Expr>>? = null
                children.forEach {
                    when (val tokenType = it.tokenType) {
                        MODIFIER_LIST -> {
                            val modifiers = tree.children(it)
                            modifiers.forEach { modifier ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/scope.go

    			err(obj, alt)
    		}
    	}
    
    	j := -1 // index of s in p.children
    	for i, ch := range p.children {
    		if ch == s {
    			j = i
    			break
    		}
    	}
    	assert(j >= 0)
    	k := len(p.children) - 1
    	p.children[j] = p.children[k]
    	p.children = p.children[:k]
    
    	p.children = append(p.children, s.children...)
    
    	s.children = nil
    	s.elems = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/scope.go

    			err(obj, alt)
    		}
    	}
    
    	j := -1 // index of s in p.children
    	for i, ch := range p.children {
    		if ch == s {
    			j = i
    			break
    		}
    	}
    	assert(j >= 0)
    	k := len(p.children) - 1
    	p.children[j] = p.children[k]
    	p.children = p.children[:k]
    
    	p.children = append(p.children, s.children...)
    
    	s.children = nil
    	s.elems = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top