Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for createChildProject (0.19 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

        private ProjectInternal childProject
        private IdeArtifactRegistry artifactRegistry
        private IdeaDependenciesProvider dependenciesProvider
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child", temporaryFolder.testDirectory.file("child"))
            artifactRegistry = Stub(IdeArtifactRegistry)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

                .withName("test-project")
            if (userHomeDir != null) {
                builder.withGradleUserHomeDir(userHomeDir)
            }
            return builder.build()
        }
    
        static ProjectInternal createChildProject(ProjectInternal parent, String name, File projectDir = null) {
            return ProjectBuilder
                .builder()
                .withName(name)
                .withParent(parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

    import java.util.function.Function;
    
    import static org.gradle.internal.concurrent.CompositeStoppable.stoppable;
    
    public class ProjectBuilderImpl {
        private static ServiceRegistry globalServices;
    
        public Project createChildProject(String name, Project parent, @Nullable File projectDir) {
            ProjectInternal parentProject = (ProjectInternal) parent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top