Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 652 for child3 (0.48 sec)

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

        compile "group:test1:1.0"
        compile project(':child1')
        compile project(':child2')
    }
    project(':child1') {
        artifacts {
            compile file("child1.jar")
        }
        dependencies {
            compile files("child1-lib.jar")
            compile "group:test2:1.0"
        }
    }
    project(':child2') {
        artifacts {
            compile file("child2.jar")
        }
    }
    
    task verify {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-child.xml

      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/ReportGeneratorTest.groovy

        }
    
    
        def 'passes each project to renderer'() {
            setup:
            def child1 = TestUtil.createChildProject(project, "child1");
            def child2 = TestUtil.createChildProject(project, "child2");
            def generator = createReportGenerator()
            def child1Details = ProjectDetails.of(child1)
            def child2Details = ProjectDetails.of(child2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 22:12:23 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskTest.groovy

        def rendersReportForRootProjectWithChildren() {
            project.description = 'this is the root project'
            Project child1 = TestUtil.createChildProject(project, "child1")
            child1.description = 'this is a subproject'
            TestUtil.createChildProject(child1, "child1")
            TestUtil.createChildProject(project, "child2")
    
            when:
            def model = task.calculateReportModelFor(project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 22:32:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

            model.projects*.name == ["root", "child1", "child2"]
            model.projects*.path == [":", ":child1", ":child2"]
            model.includedBuilds.empty
            model.editableBuilds.empty
    
            where:
            startProject | _
            project      | _
            child2       | _
        }
    
        def "builds model for included builds"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                    vfsStore.store(regularFile("${location}/some/child"))
                    vfsStore.store(regularFile("${location}/other/child"))
                    instant.partialSnapshotsStored
                    thread.blockUntil.invalidated
                    vfsStore.store(regularFile("${location}/other/child2"))
                    vfsStore.store(regularFile("${location}/some/child2"))
                    instant.snapshottingFinished
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/AbstractReportTaskTest.groovy

            final Project child1 = createChildProject(project, "child1")
            final Project child2 = createChildProject(project, "child2")
    
            when:
            task.setProjects(project.getAllprojects())
            task.generate()
    
            then:
            1 * renderer.setClientMetaData(_)
            1 * renderer.setOutput(_ as StyledTextOutput)
            [project, child1, child2].each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

        public static Element getFirstChildElement(Element parentElem, String name) {
            if (parentElem == null) {
                return null;
            }
            NodeList childs = parentElem.getChildNodes();
            for (int i = 0; i < childs.getLength(); i++) {
                Node node = childs.item(i);
                if (node instanceof Element && name.equals(node.getNodeName())) {
                    return (Element) node;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

            expect:
            def dir = layout.projectDirectory.dir("child")
            strictlyEquals(dir, layout.projectDirectory.dir("child"))
    
            dir != layout.projectDirectory.dir("other")
            dir != layout.projectDirectory.dir("child/child2")
            dir != layout.projectDirectory.file("child")
        }
    
        def "regular files are equal when their paths are equal"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. src/syscall/exec_unix_test.go

    	cpid2, cpgrp2 := cmd2.Info()
    
    	if cpid2 == ppid {
    		t.Fatalf("Parent and child 2 have the same process ID")
    	}
    
    	if cpgrp2 == ppgrp {
    		t.Fatalf("Parent and child 2 are in the same process group")
    	}
    
    	if cpid2 == cpgrp2 {
    		t.Fatalf("Child 2's process group is its process ID")
    	}
    
    	if cpid1 == cpid2 {
    		t.Fatalf("Child 1 and 2 have the same process ID")
    	}
    
    	if cpgrp1 != cpgrp2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top