Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for handleFailure (0.16 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/util/internal/FailsWithMessageExtension.java

                } catch (ConditionFailedWithExceptionError error) {
                    handleFailure(error.getCause());
                } catch (Throwable t) {
                    handleFailure(t);
                }
            }
    
            private void handleFailure(Throwable t) {
                if (!annotation.type().isInstance(t)) {
                    throw new WrongExceptionThrownError(annotation.type(), t);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

                                    }
                                }
    
                                @Override
                                public void handleFailure(Throwable failure) {
                                    LOGGER.error("Error while receiving file changes", failure);
                                    fileWatchingStatistics.errorWhileReceivingFileChanges(failure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                }
    
                node.finishExecution(this::recordNodeCompleted);
                if (node.isFailed()) {
                    LOGGER.debug("Node {} failed", node);
                    handleFailure(node);
                } else {
                    LOGGER.debug("Node {} finished executing", node);
                    node.visitPostExecutionNodes(postNode -> {
                        postNode.setIndex(node.getIndex());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
Back to top