Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for TestExecution (0.16 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DefaultWorkerExecutorParallelTest.groovy

                6.times {
                    start {
                        thread.blockUntil.allStarted
                        WorkQueue queue = workerExecutor."${isolationMode}" Actions.doNothing()
                        queue.submit(TestExecution.class, Actions.doNothing())
                    }
                }
                instant.allStarted
            }
    
            then:
            6 * workerThreadRegistry.workerThread >> true
            6 * executionQueue.submit(_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:22:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/ToolingApiVersionSpecification.groovy

                def action = connection.action(new NullAction())
                action.standardOutput = outputStream
                action.run()
            }
        }
    
        // since 2.6
        def testExecution() {
            buildFile << """
    apply plugin: 'java'
    repositories {
        maven {
            url '${buildContext.localRepository.toURI()}'
        }
    }
    ${mavenCentralRepository()}
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top