Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withComponentForApp (0.19 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeSoftwareModelParallelIntegrationTest.groovy

        def "can execute install task in parallel"() {
            given:
            withComponentForApp()
            createTaskThatRunsInParallelUsingWorkerLeaseInjectionWith("installMainExecutable")
    
            when:
            succeeds("installMainExecutable", "parallelTask")
    
            then:
            assertTaskIsParallel("installMainExecutable")
        }
    
        def withComponentForApp() {
            buildFile << app.pluginScript
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageParallelIntegrationTest.groovy

        HelloWorldApp getApp() {
            return new AssemblerWithCHelloWorldApp(toolChain)
        }
    
        @ToBeFixedForConfigurationCache
        def "can execute assembler tasks in parallel"() {
            given:
            withComponentForApp()
            createTaskThatRunsInParallelUsingCustomToolchainWith("assembleMainExecutableMainAsm")
            buildFile << """
                // prevent assembly and c compile tasks from running in parallel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top