Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for workParameterClass (0.15 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

        @Rule
        BlockingHttpServer blockingHttpServer = new BlockingHttpServer()
        def buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
        WorkerExecutorFixture.WorkParameterClass parallelParameterType
        WorkerExecutorFixture.WorkActionClass parallelWorkAction
    
    
        def setup() {
            blockingHttpServer.start()
    
            buildFile << """
                task slowTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkQueueIntegrationTest.groovy

        @Rule BlockingHttpServer blockingHttpServer = new BlockingHttpServer()
        WorkerExecutorFixture.WorkParameterClass parallelParameterType
        WorkerExecutorFixture.WorkActionClass parallelWorkAction
    
        def setup() {
            blockingHttpServer.start()
    
            parallelParameterType = fixture.workParameterClass("ParallelParameter", "org.gradle.test").withFields([
                    "itemName": "String",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorNestingIntegrationTest.groovy

    @IntegrationTestTimeout(120)
    class WorkerExecutorNestingIntegrationTest extends AbstractWorkerExecutorIntegrationTest {
        def nestingParameterType = fixture.workParameterClass("NestingParameter", "org.gradle.test").withFields([
            "greeting": "Property<String>",
            "childSubmissions": "int"
        ])
    
        def "workers with no isolation can spawn more work with #nestedIsolationMode"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top