Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maybeFailed (0.12 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

            def failures = other == null ? [failure] : [failure, other]
            1 * workExecutor.execute(gradleMock, finalizedPlan) >> ExecutionResult.maybeFailed(failures)
        }
    
        private void expectBuildFinished(String action = "Build") {
            1 * buildListener.buildFinished({ it.failure == null && it.action == action })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            List<Throwable> failures = new ArrayList<>();
            awaitCompletion(workSource, currentWorkerLease, failures);
            return ExecutionResult.maybeFailed(failures);
        }
    
        @Override
        public void assertHealthy() {
            // Wait until execution state is healthy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top