Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for childTwo (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

            childOne.into("child_one")
            parentSpec.with(childOne)
    
            DefaultCopySpec childTwo = copySpec()
             childTwo.into("child_two")
            parentSpec.with( childTwo)
    
            DefaultCopySpec grandchild = copySpec()
            grandchild.into("grandchild")
            childOne.with(grandchild)
            childTwo.with(grandchild)
    
            List<RelativePath> paths = new ArrayList<RelativePath>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            inDirectory(rootDir).withTasks("do-stuff").run().assertTasksExecuted(":do-stuff", ":child:do-stuff");
            inDirectory(rootDir).withTasks(":do-stuff").run().assertTasksExecuted(":do-stuff");
    
            inDirectory(childDir).withTasks("do-stuff").run().assertTasksExecuted(":child:do-stuff");
            inDirectory(childDir).withTasks(":do-stuff").run().assertTasksExecuted(":do-stuff");
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top