Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for executeAfter (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                    BuildStep teardown = new BuildStep(TEARDOWN, project, null);
                    teardown.executeAfter(setup);
                    setup.executeAfter(pplan);
                    plan.steps(project).forEach(step -> {
                        if (step.predecessors.stream().noneMatch(s -> s.project == project)) {
                            step.executeAfter(setup);
                        } else if (step.successors.stream().noneMatch(s -> s.project == project)) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildStep.java

            }
        }
    
        public void executeAfter(BuildStep stepToExecuteBefore) {
            if (!isSuccessorOf(stepToExecuteBefore)) {
                predecessors.add(stepToExecuteBefore);
                stepToExecuteBefore.successors.add(this);
            }
        }
    
        public void executeBefore(BuildStep stepToExecuteAfter) {
            stepToExecuteAfter.executeAfter(this);
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Apr 30 16:21:08 GMT 2025
    - 4.9K bytes
    - Click Count (0)
Back to Top