Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,231 for child1 (0.18 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/plugins/ide/internal/tooling/DefaultGradleProjectTest.groovy

            def child21 = new DefaultGradleProject().setProjectIdentifier(new DefaultProjectIdentifier(new File("."), ":child2:child21"))
    
            root.children = [child1, child2]
            child1.children = [child11, child12]
            child2.children = [child21]
    
            expect:
            root.findByPath(':') == root
            root.findByPath('') == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            child5 = ProjectBuilder.builder().withName("child5").withParent(project).build()
    
            def libsDir = new File(project.projectDir, "libs")
            libsDir.mkdirs()
            new File(libsDir, "test-1.0.jar").createNewFile()
            [project, child1, child2, child3, child4, child5].each { it.pluginManager.apply(EclipsePlugin) }
            [child1, child2, child3, child4, child5].each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

            child3.configurations.create "conf"
            child3.configurations.create "testRuntime"
            child3.dependencies.add("conf", child1) //different config dependency, no good
    
            child4.configurations.create "conf"     //different config, no good
    
            expect:
            checker.isDependent(child1, "testRuntime", child2)
            !checker.isDependent(child1, "testRuntime", child3)
            !checker.isDependent(child1, "testRuntime", child4)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifierTest.groovy

            notEquivalent(child1, child2)
        }
    
        def "children with different name are not equal"() {
            given:
            def child1 = root.child(root.name)
            def child2 = root.child(root.name + "changed")
    
            expect:
            notEquivalent(child1, child2)
        }
    
        private static void equivalent(ClassLoaderScopeIdentifier child1, ClassLoaderScopeIdentifier child2) {
            assert child1 == child2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 05 18:43:41 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/VersionHierarchyRootTest.groovy

            ['/my/child1', '/my/child2', '/my/child1/other/child'] | '/my/child1/other/child/inside' | ['/my/child1/other/child/inside']           | ['/my/other', '/my/child2']
            ['/my/child1', '/my/child2', '/my/child1/other/child'] | '/my/child1'                    | ['/my/child1/other/child']                  | ['/my/other', '/my/child2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            child1.toString() == "project ':child1'"
            child1.displayName == "project ':child1'"
            child1.path == ":child1"
            child1.buildTreePath == ":child1"
            child1.identityPath == Path.path(":child1")
    
            child2.toString() == "project ':child1:child2'"
            child2.displayName == "project ':child1:child2'"
            child2.path == ":child1:child2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                    .run()
            }
    
            then:
            def child2 = buildFinishedHandler.result.children.find { it.name == "child2" }
            child2.projectDependencies.isEmpty()
            child2.classpath.collect { it.file.name }.sort() == ['child1-1.0.jar']
            child2.classpath[0].source.name == 'child1-1.0-sources.jar'
            child2.classpath[0].javadoc.name == 'child1-1.0-javadoc.jar'
            taskExecuted(out, ":eclipseClosedDependencies")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        def setup() {
            createDirs("child1", "child2", "child3")
            settingsFile << """
    rootProject.name = 'root'
    include ':child1', ':child2', ':child3'
    """
        }
    
        @ToBeFixedForConfigurationCache
        void "global sourceCompatibility results in project language level"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top