Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,231 for child1 (0.19 sec)

  1. 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)
  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/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/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings == null
        }
    
        def "can retrieve project and module language level for multi project build"() {
            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2', 'child3'"
            buildFile << """
                apply plugin: 'idea'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            child1.relativeProjectPath(':child1') == ':child1'
            child1.relativeProjectPath(':child1:task') == 'task'
            child1.relativeProjectPath(':child12:task') == ':child12:task'
            child1.relativeProjectPath(':sub:other') == ':sub:other'
        }
    
        def createsADomainObjectContainer() {
            expect:
            project.container(String) instanceof FactoryNamedDomainObjectContainer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. 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)
  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. 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)
  9. src/runtime/traceback_system_test.go

    traceback_system_test.go:85: runtime_test.child7: 	panic("oops")
    traceback_system_test.go:68: runtime_test.child6: 	child7() // appears in stack trace
    traceback_system_test.go:59: runtime_test.child5: 	child6() // appears in stack trace
    traceback_system_test.go:53: runtime_test.child4: 	child5()
    traceback_system_test.go:49: runtime_test.child3: 	child4()
    traceback_system_test.go:45: runtime_test.child2: 	child3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. 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)
Back to top