Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maybeInheritFinalizerGroups (0.52 sec)

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

                throw new GradleException("Cannot use " + hookName + " to reference tasks from another build");
            }
        }
    
        @Override
        public void maybeInheritFinalizerGroups() {
            super.maybeInheritFinalizerGroups();
            if (!getFinalizingSuccessors().isEmpty()) {
                // This node is a finalizer, decorate the current group to add finalizer behaviour
                NodeGroup oldGroup = getGroup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 29 13:54:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

                    visiting.remove(node);
                    visited.add(node);
                    nodes.addFirst(node);
                }
            }
    
            for (Node node : nodes) {
                node.maybeInheritFinalizerGroups();
            }
        }
    
        private void processEntryNodes() {
            for (Node node : entryNodes) {
                nodeQueue.add(new NodeInVisitingSegment(node, visitingSegmentCounter++));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

         *
         * <p>When this method is called, the group of each node that depends on this node has been updated.</p>
         */
        public void maybeInheritFinalizerGroups() {
            NodeGroup newGroup = group;
            for (Node predecessor : getDependencyPredecessors()) {
                if (predecessor.getGroup() instanceof HasFinalizers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top