Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 844 for child3 (0.13 sec)

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

            resolve.prepare()
            resolve.addDefaultVariantDerivationStrategy()
            resolve.expectDefaultConfiguration("runtime")
            createDirs("child1", "child2")
            settingsFile << """
                rootProject.name = 'testproject'
                include 'child1', 'child2'
            """
            buildFile << """
                allprojects {
                    repositories {
                        maven { url '${mavenRepo.uri}' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/RunBuildDependenciesTaskBuilderTest.groovy

        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) }
            [child1, child2].each {
                it.plugins.apply(JavaPlugin)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/idea/IdeaModelBuilderTest.groovy

    class IdeaModelBuilderTest 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(IdeaPlugin) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 11:38:46 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

            outputContains(": - {12}")
            outputContains(": - [12]")
            outputContains(":child1 - {12}")
            outputContains(":child1 - [12]")
    
            and:
            succeeds()
            outputContains(": - {12}")
            outputContains(": - [12]")
            outputContains(":child1 - {12}")
            outputContains(":child1 - [12]")
        }
    
        @ToBeFixedForConfigurationCache(because = "test expects scripts evaluation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top