Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExecutionFailure (0.57 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

            return getNodeFailure() != null && getNodeFailure().getCause() instanceof VerificationException;
        }
    
        public boolean isFailed() {
            return getNodeFailure() != null || getExecutionFailure() != null;
        }
    
        public boolean isExecuted() {
            return state == ExecutionState.EXECUTED;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

            }
            waitingToStartNodes.add(node);
        }
    
        private void handleFailure(Node node) {
            Throwable executionFailure = node.getExecutionFailure();
            if (executionFailure != null) {
                // Always abort execution for an execution failure (as opposed to a node failure)
                failures.add(executionFailure);
                abortExecution();
    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