Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for hasPendingPreExecutionNodes (0.34 sec)

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

                }
            } finally {
                action = null;
            }
        }
    
        @Override
        public boolean hasPendingPreExecutionNodes() {
            return !hasVisitedPreExecutionNode && action.getPreExecutionNode() != null;
        }
    
        @Override
        public void visitPreExecutionNodes(Consumer<? super Node> visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:11:12 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

            destroyables
                .forEach(file -> getMutationInfo().destroyablePaths.add(file.getAbsolutePath()));
        }
    
        @Override
        public boolean hasPendingPreExecutionNodes() {
            return !hasVisitedMutationsNode;
        }
    
        @Override
        public void visitPreExecutionNodes(Consumer<? super Node> visitor) {
            if (!hasVisitedMutationsNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

         * Support for this is not implemented yet and will be added later.
         */
        public void visitPreExecutionNodes(Consumer<? super Node> visitor) {
        }
    
        public boolean hasPendingPreExecutionNodes() {
            return false;
        }
    
        /**
         * Visits the "post-execution" nodes of this node. These nodes should be treated as though they also produce the outputs or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                        readyNodes.removeAndRestart(node);
                        continue;
                    }
    
                    if (node.hasPendingPreExecutionNodes()) {
                        // The node is ready to execute and its pre-execution nodes have not been scheduled, so do this now
                        node.visitPreExecutionNodes(prepareNode -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

                }
            }
    
            @Override
            Throwable getNodeFailure() {
                return failure
            }
    
            @Override
            boolean hasPendingPreExecutionNodes() {
                return !preExecuteNodes.isEmpty()
            }
    
            @Override
            void visitPreExecutionNodes(Consumer<? super Node> visitor) {
                for (final node in preExecuteNodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top