Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for child7 (0.09 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            DefaultCopySpec child2 = spec.addChild()
    
            then:
            child1
            child2
            spec.children == [child1, child2]
    
            when:
            DefaultCopySpec child3 = spec.addChildBeforeSpec(child2)
    
            then:
            child3
            spec.children == [child1, child3, child2]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            }
            root.variants >> [child2, child3]
    
            def publication = pub('mock', "pub-group", "pub-name", "pub-version", root)
            def publication2 = pub('pub2', "pub-group-child1", "pub-name-child1", "pub-version-child1", child1)
            def publication3 = pub('pub3', "pub-group-child2", "pub-name-child2", "pub-version-child2", child2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

        def "visits children when visitor requests contents"() {
            def child1 = Mock(FileCollectionInternal)
            def child2 = Mock(FileTreeInternal)
            def collection = new TestCollection() {
                @Override
                protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
                    visitor.accept(child1)
                    visitor.accept(child2)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        def setup() {
            createDirs("child1", "child2", "child3")
            settingsFile << """
    rootProject.name = 'root'
    include ':child1', ':child2', ':child3'
    """
        }
    
        @ToBeFixedForConfigurationCache
        void "global sourceCompatibility results in project language level"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top