Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 411 for child7 (0.37 sec)

  1. 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)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

                children.forEach { child ->
                    collectPrefixes(child.name, child, 0, prefixes)
                }
            } else if (unpackedNode instanceof AbstractIncompleteFileSystemNode) {
                def children = unpackedNode.children
                children.stream()
                    .forEach(child -> collectPrefixes(child.path, child.value, 0, prefixes))
            }
            return prefixes
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            createDirs("child1", "child2");
            testFile("settings.gradle").writelns(
                "include 'child1', 'child2'",
                "project(':child1').buildFileName = '../child.gradle'",
                "project(':child2').buildFileName = '../child.gradle'"
            );
            testFile("child.gradle").write("task('do-stuff')");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            def child1 = consumable("child1", [conf1, conf2])
            consumable("child2", [conf1])
    
            addArtifact(conf1, artifact1, file1)
            addArtifact(conf2, artifact2, file2)
            addArtifact(child1, artifact3, file3)
    
            when:
            def conf1State = state.candidatesForGraphVariantSelection.getVariantByConfigurationName("child1", Stub(ResolutionFailureHandler))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            when:
            file("settings.gradle") << "include 'child1', 'child2'"
            file("child1/build.gradle") << plugin.build().useDeclaration
            file("child2/build.gradle") << plugin.useDeclaration
            buildFile << """
                task compare {
                    doLast {
                        project("child1").tasks.helloWorld1.getClass() == project("child2").tasks.helloWorld1.getClass()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

        }
    
        static ChildMap<FileSystemNode> sortedChildren(String path1, FileSystemNode child1, String path2, FileSystemNode child2) {
            def compared = PathUtil.getPathComparator(CASE_SENSITIVE).compare(path1, path2)
            def entry1 = new ChildMap.Entry<FileSystemNode>(path1, child1)
            def entry2 = new ChildMap.Entry<FileSystemNode>(path2, child2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

        def canInjectMethodsFromParentProject() {
            createDirs("child1", "child2")
            file("settings.gradle").writelns("include 'child1', 'child2'");
            buildFile """
                subprojects {
                    ext.useSomeProperty = { project.name }
                    ext.useSomeMethod = { file(it) }
                }
            """
            file("child1/build.gradle") << """
                task testTask {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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