Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for decisions (0.03 sec)

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

                    shouldExecute = !status.isHalted() && !status.isBlackListed(step.project) && allPredecessorsExecuted;
                }
    
                // 2. Either schedule the step or mark it as skipped based on the decision
                if (shouldExecute && step.status.compareAndSet(CREATED, SCHEDULED)) {
                    boolean nextIsPlanning = step.successors.stream().anyMatch(st -> PLAN.equals(st.name));
                    executor.execute(() -> {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     *
     *  * https://example.net/
     *
     *  * https://example.com/
     *
     * This is because those two hosts share the same IP address. This is an old, bad design decision
     * that makes `java.net.URL` unusable for many things. It shouldn't be used as a [Map] key or in a
     * [Set]. Doing so is both inefficient because equality may require a DNS lookup, and incorrect
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
Back to top