Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PhaseId (0.04 sec)

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

                return false;
            } else {
                PhaseId phaseId = (PhaseId) o;
                return Objects.equals(executionPoint(), phaseId.executionPoint())
                        && Objects.equals(phase(), phaseId.phase())
                        && Objects.equals(priority(), phaseId.priority());
            }
        }
    
        @Override
        public int hashCode() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                                PhaseId phaseId = PhaseId.of(phase);
                                if (phaseId.priority() == 0) {
                                    phaseId = PhaseId.of(phase + "[" + execution.getPriority() + "]");
                                }
                                addMojoExecution(phaseBindings, mojoExecution, phaseId);
                            }
                        }
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:04:37 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseComparator.java

         */
        public PhaseComparator(List<String> lifecyclePhases) {
            this.lifecyclePhases = lifecyclePhases;
        }
    
        @Override
        public int compare(String o1, String o2) {
            PhaseId p1 = PhaseId.of(o1);
            PhaseId p2 = PhaseId.of(o2);
            int i1 = lifecyclePhases.indexOf(p1.executionPoint().prefix() + p1.phase());
            int i2 = lifecyclePhases.indexOf(p2.executionPoint().prefix() + p2.phase());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:04:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseRecorder.java

            if (lifecyclePhase != null) {
                PhaseId phaseId = PhaseId.of(lifecyclePhase);
                if (lastLifecyclePhase == null) {
                    lastLifecyclePhase = phaseId.phase();
                } else if (!phaseId.phase().equals(lastLifecyclePhase)) {
                    project.addLifecyclePhase(lastLifecyclePhase);
                    lastLifecyclePhase = phaseId.phase();
                }
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/ConcurrentLifecycleStarter.java

    import org.apache.maven.lifecycle.internal.LifecycleStarter;
    import org.apache.maven.lifecycle.internal.LifecycleTask;
    import org.apache.maven.lifecycle.internal.MojoDescriptorCreator;
    import org.apache.maven.lifecycle.internal.PhaseId;
    import org.apache.maven.lifecycle.internal.ReactorBuildStatus;
    import org.apache.maven.lifecycle.internal.ReactorContext;
    import org.apache.maven.lifecycle.internal.TaskSegment;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            }
    
            if (lifecycleOverlay == null) {
                throw new LifecycleNotFoundException(forkedLifecycle);
            }
    
            for (Phase phase : lifecycleOverlay.getPhases()) {
                String phaseId = defaultLifecycles.getLifeCycles().stream()
                        .flatMap(l -> l.getDelegate().aliases().stream())
                        .filter(a -> phase.getId().equals(a.v3Phase()))
                        .findFirst()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator.java

            TaskSegment currentSegment = null;
    
            for (String task : tasks) {
                if (isBeforeOrAfterPhase(task)) {
                    String prevTask = task;
                    task = PhaseId.of(task).phase();
                    LOGGER.warn("Illegal call to phase '{}'. The main phase '{}' will be used instead.", prevTask, task);
                }
                if (isGoalSpecification(task)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:07:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. docs/SMB3_IMPLEMENTATION_PLAN.md

    ### Mitigation Strategies
    1. Implement features behind configuration flags
    2. Provide graceful fallback mechanisms
    3. Extensive testing with various server configurations
    4. Phased rollout with beta testing
    
    ## Resource Requirements
    
    ### Development Team
    - 2-3 Senior Java developers with SMB protocol expertise
    - 1 QA engineer for test infrastructure
    - 1 DevOps engineer for CI/CD setup
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    net.et
    
    // eu : https://www.iana.org/domains/root/db/eu.html
    eu
    
    // fi : https://www.iana.org/domains/root/db/fi.html
    fi
    // aland.fi : https://www.iana.org/domains/root/db/ax.html
    // This domain is being phased out in favor of .ax. As there are still many
    // domains under aland.fi, we still keep it on the list until aland.fi is
    // completely removed.
    aland.fi
    
    // fj : http://domains.fj/
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (1)
Back to top