Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isCreated (0.04 sec)

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

            this.name = Objects.requireNonNull(name, "name cannot be null");
            this.project = Objects.requireNonNull(project, "project cannot be null");
            this.phase = phase;
        }
    
        public boolean isCreated() {
            return status.get() == CREATED;
        }
    
        public boolean isDone() {
            int state = status.get();
            return state == EXECUTED || state == FAILED || state == SKIPPED;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Apr 30 16:21:08 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top