Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 990 for child6 (0.09 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

    }
    configurations {
        child1
        child2
    }
    dependencies {
        child1 'org:child1:1.0'
        child2 'org:child2:1.0'
    }
    task retrieveChild1(type: Sync) {
        into 'libs/child1'
        from configurations.child1
    }
    task retrieveChild2(type: Sync) {
        into 'libs/child2'
        from configurations.child2
    }
    """
    
            when:
            child1.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

        }
    
        def compareTo() {
            expect:
            project < child1
            child1 < child2
            child1 < childchild
            child2 < childchild
        }
    
        def depthCompare() {
            expect:
            project.depthCompare(child1) < 0
            child1.depthCompare(project) > 0
            child1.depthCompare(child2) == 0
        }
    
        def depth() {
            expect:
            project.depth == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/SelfResolvingDependencyIntegrationTest.groovy

        compile project(':child1')
        compile project(':child2')
    }
    project(':child1') {
        artifacts {
            compile file("child1.jar")
        }
        dependencies {
            compile files("child1-lib.jar")
            compile "group:test2:1.0"
            compile project(':child3')
        }
    }
    project(':child2') {
        artifacts {
            compile file("child2.jar")
        }
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

            EclipseProject child1 = children[0]
            child1.name == 'child1'
            child1.parent == rootProject
            child1.children.size() == 1
    
            EclipseProject child1Child1 = child1.children[0]
            child1Child1.name == 'grandChild1'
            child1Child1.parent == child1
            child1Child1.children.size() == 0
    
            EclipseProject child2 = children[1]
            child2.name == 'child2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. src/net/http/fcgi/child.go

    	r.Flush()
    	return r.w.Close()
    }
    
    type child struct {
    	conn    *conn
    	handler http.Handler
    
    	requests map[uint16]*request // keyed by request ID
    }
    
    func newChild(rwc io.ReadWriteCloser, handler http.Handler) *child {
    	return &child{
    		conn:     newConn(rwc),
    		handler:  handler,
    		requests: make(map[uint16]*request),
    	}
    }
    
    func (c *child) serve() {
    	defer c.conn.Close()
    	defer c.cleanUp()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r212/ToolingApiIdeaModelCrossVersionSpec.groovy

            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2', 'child3'"
            buildFile << """
                apply plugin: 'idea'
    
                idea {
                    project {
                        languageLevel = 1.7
                    }
                }
    
                project(':child1') {
                }
    
                project(':child2') {
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            child1.toString() == "project ':child1'"
            child1.displayName == "project ':child1'"
            child1.path == ":child1"
            child1.buildTreePath == ":child1"
            child1.identityPath == Path.path(":child1")
    
            child2.toString() == "project ':child1:child2'"
            child2.displayName == "project ':child1:child2'"
            child2.path == ":child1:child2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            formatter.node("child 1")
            formatter.startChildren()
            formatter.node("child 1.1")
            formatter.node("child 1.2")
            formatter.endChildren()
            formatter.node("child 2")
            formatter.endChildren()
    
            then:
            formatter.toString() == toPlatformLineSeparators("""Some things:
      - child 1:
          - child 1.1
          - child 1.2
      - child 2""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            nodeAction.execute(_) >> { XmlProvider provider ->
                provider.asNode().appendNode('child1')
            }
            nodeAction2.execute(_) >> { XmlProvider provider ->
                provider.asNode().appendNode('child2')
            }
            looksLike '<root>\n  <child1/>\n  <child2/>\n</root>\n', result
        }
    
        def "indentation correct when writing out Node"() {
            transformer.indentation = "\t"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

                children.forEach { child ->
                    collectPrefixes(child.name, child, 0, prefixes)
                }
            } else if (unpackedNode instanceof AbstractIncompleteFileSystemNode) {
                def children = unpackedNode.children
                children.stream()
                    .forEach(child -> collectPrefixes(child.path, child.value, 0, prefixes))
            }
            return prefixes
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top