Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for WorkerExecutionException (0.41 sec)

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

     *
     * @since 3.5
     */
    @Contextual
    public class WorkerExecutionException extends DefaultMultiCauseException {
        public WorkerExecutionException(String message) {
            super(message);
        }
    
        public WorkerExecutionException(String message, Throwable... causes) {
            super(message, causes);
        }
    
        public WorkerExecutionException(String message, Iterable<? extends Throwable> causes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkQueue.java

         * tasks from the same project cannot be run in parallel while the task action is still executing.
         *
         * @throws WorkerExecutionException when a failure occurs while executing the work.
         */
        void await() throws WorkerExecutionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DefaultWorkerExecutorParallelTest.groovy

    import org.gradle.util.UsesNativeServices
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkQueue
    import org.gradle.workers.WorkerExecutionException
    import spock.lang.TempDir
    
    import static org.gradle.internal.work.AsyncWorkTracker.ProjectLockRetention.RETAIN_PROJECT_LOCKS
    
    @UsesNativeServices
    class DefaultWorkerExecutorParallelTest extends ConcurrentSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:22:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

         * tasks from the same project cannot be run in parallel while the task action is still executing.
         *
         * @throws WorkerExecutionException when a failure occurs while executing the work.
         */
        void await() throws WorkerExecutionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. 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