Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for childProjects (0.28 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                delegate.status = status
            }
    
            @AllowUsingApiForExternalUse
            override fun getChildProjects(): MutableMap<String, Project> {
                return delegate.childProjects
            }
    
            override fun getChildProjectsUnchecked(): MutableMap<String, Project> {
                return delegate.childProjectsUnchecked
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/GenerateIdeaModuleTest.groovy

            assert childProject.idea.module.name == "child"
            def existingOutputFolder = childProject.ideaModule.outputFile.parentFile
    
            when:
            childProject.idea.module.name = "foo"
    
            then:
            childProject.idea.module.name == "foo"
            childProject.ideaModule.outputFile.name == "foo.iml"
            childProject.ideaModule.outputFile.parentFile == existingOutputFolder
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

        }
    
        def "adds extension to child project"() {
            when:
            applyPluginToProjects()
    
            then:
            childProject.idea instanceof IdeaModel
            childProject.idea.project == null
            childProject.idea.module.outputFile == childProject.file("child.iml")
        }
    
        def "adds 'ideaProject' task to root project"() {
            when:
            applyPluginToProjects()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolverTest.groovy

            def task2 = task('task')
            def childTasks = Mock(TaskContainerInternal)
            def childProject = Mock(ProjectInternal) {
                _ * getTasks() >> childTasks
                _ * getChildProjectsUnchecked() >> [:]
            }
    
            _ * project.childProjectsUnchecked >> [child: childProject]
    
            when:
            def results = resolver.selectWithName('task', project, true)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectPropertySettingBuildLoaderTest.groovy

            _ * gradle.rootProject >> rootProject
            _ * rootProject.childProjectsUnchecked >> [child: childProject]
            _ * childProject.childProjectsUnchecked >> [:]
            _ * rootProject.projectDir >> rootProjectDir
            _ * childProject.projectDir >> childProjectDir
            _ * rootProject.extensions >> rootExtension
            _ * childProject.extensions >> childExtension
            _ * rootExtension.extraProperties >> rootProperties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            given:
            createDirs("childProject")
            settingsFile << """
                include ':childProject'
            """
            buildFile << """
                task firstTask(type: MultipleWorkItemTask) {
                    doLast { ${blockingHttpServer.callFromBuild("task1")} }
                }
    
                project(':childProject') {
                    task secondTask(type: MultipleWorkItemTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/InstantiatingBuildLoaderTest.groovy

            and:
            1 * gradle.setRootProject(rootProject)
            1 * gradle.setDefaultProject(childProject)
    
            and:
            rootProject.childProjectsUnchecked['child'].is childProject
        }
    
        ProjectDescriptor descriptor(String name, ProjectDescriptor parent, File projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreatorTest.groovy

    import org.gradle.util.TestUtil
    
    class EclipseDependenciesCreatorTest extends AbstractProjectBuilderSpec {
        private ProjectInternal childProject
        private EclipseClasspath eclipseClasspath
        private EclipseDependenciesCreator dependenciesProvider
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child", temporaryFolder.testDirectory.file("child"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaProjectTest.groovy

            project.apply plugin: IdeaPlugin
            childProject.apply plugin: IdeaPlugin
            anotherChildProject.apply plugin: IdeaPlugin
            project.apply(plugin: JavaPlugin)
            childProject.apply(plugin: JavaPlugin)
            anotherChildProject.apply(plugin: JavaPlugin)
    
            and:
            project.targetCompatibility = JavaVersion.VERSION_1_5
            childProject.targetCompatibility = JavaVersion.VERSION_1_6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            final MavenProject childProject = getProject(f1);
    
            assertNotNull(childProject.getParentArtifact());
            assertEquals(childProject.getParentArtifact().getVersion(), "1");
            assertNotNull(childProject.getParent());
            assertEquals(childProject.getParent().getVersion(), "1");
            assertNotNull(childProject.getModel().getParent());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top