Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,232 for child7 (0.11 sec)

  1. 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)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

    class EclipseModelBuilderTest extends AbstractProjectBuilderSpec {
        Project child1
        Project child2
    
        def setup() {
            child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
            child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
            [project, child1, child2].each { it.pluginManager.apply(EclipsePlugin.class) }
        }
    
        def "can read natures"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            expect:
            2.times {
                run("a", "c").assertTasksExecuted(":a", ":b", ":c", ":child1:b", ":child1:c", ":child1-2:b", ":child1-2:c", ":child1-2-2:b", ":child1-2-2:c", ":child2:b", ":child2:c")
                run("b", ":child2:c").assertTasksExecuted(":b", ":child1:b", ":child1-2:b", ":child1-2-2:b", ":child2:b", ":a", ":child2:c")
            }
        }
    
        def executesMultiProjectDefaultTasksInASingleBuildAndEachTaskAtMostOnce() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

            given:
            def child1 = mavenRepo.module("org", "child1", "1.0")
            child1.parent("org", "parent1", "1.0")
            child1.publish()
    
            def child2 = mavenRepo.module("org", "child2", "1.0")
            child2.parent("org", "parent2", "1.0")
            child2.publish()
    
            def parent1 = mavenRepo.module("org", "parent1", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  10. 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)
Back to top