Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ActionRunsNestedActions (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

            given:
            setupBuildWithDependencyResolution()
    
            expect:
            server.expectConcurrent('root', 'a', 'b')
            def models = withConnection {
                def action = action(new ActionRunsNestedActions())
                action.standardOutput = System.out
                action.standardError = System.err
                action.addArguments("--parallel")
                action.run()
            }
    
            models.mayRunInParallel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

            given:
            setupBuildWithToolchainsResolution()
    
            when:
            withConnection {
                def action = action(new ActionRunsNestedActions())
                action.standardOutput = System.out
                action.standardError = System.err
                action.addArguments("--parallel")
                action.run()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top