Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WorkerExecutionException (0.22 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultWorkerExecutor.java

            } catch (DefaultMultiCauseException e) {
                throw workerExecutionException(e.getCauses());
            }
        }
    
        private WorkerExecutionException workerExecutionException(List<? extends Throwable> failures) {
            if (failures.size() == 1) {
                throw new WorkerExecutionException("There was a failure while executing work items", failures);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.workers.WorkerExecutionException> extends/implements org.gradle.internal.exceptions.DefaultMultiCauseException that is Gradle Internal API in (WorkerExecutionException.java:0)...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            failingWorkAction.writeToBuildFile()
    
            given:
            buildFile << """
                import java.util.concurrent.ExecutionException
                import org.gradle.workers.WorkerExecutionException
    
                task parallelWorkTask(type: MultipleWorkItemTask) {
                    isolationMode = $isolationMode
                    doLast {
                        submitWorkItem("workItem1", workActionClass)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
Back to top