Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isHalted (0.04 sec)

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

                } else {
                    // For regular steps:
                    // Don't run for halted builds, blacklisted projects, or if predecessors failed
                    shouldExecute = !status.isHalted() && !status.isBlackListed(step.project) && allPredecessorsExecuted;
                }
    
                // 2. Either schedule the step or mark it as skipped based on the decision
    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. android-test/src/androidTest/java/okhttp/android/test/StrictModeTest.kt

    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.internal.platform.Platform
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.parallel.Isolated
    
    @Isolated
    @SdkSuppress(minSdkVersion = 28)
    class StrictModeTest {
      private val violations = mutableListOf<Violation>()
    
      @AfterEach
      fun cleanup() {
        StrictMode.setThreadPolicy(
          ThreadPolicy
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Nov 21 12:33:41 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/bigger-applications.md

    /// info | Very Technical Details
    
    **Note**: this is a very technical detail that you probably can **just skip**.
    
    ---
    
    The `APIRouter`s are not "mounted", they are not isolated from the rest of the application.
    
    This is because we want to include their *path operations* in the OpenAPI schema and the user interfaces.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 08:55:32 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/GraphsTest.java

        expectedClosure.putEdge(N1, N3);
        expectedClosure.putEdge(N2, N2);
        expectedClosure.putEdge(N2, N3);
        expectedClosure.putEdge(N3, N3);
        expectedClosure.addNode(N4); // N4 is isolated => no incident edges in this transitive closure
    
        assertThat(
          transitiveClosure(undirectedGraph, ADD_SELF_LOOPS_FOR_CYCLES)).isEqualTo(expectedClosure);
      }
    
      @Test
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 17:09:51 UTC 2025
    - 30.1K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * Refactor calling each a path operation's handler function in an isolated function, to simplify profiling. PR [#1027](https://github.com/tiangolo/fastapi/pull/1027) by [@sm-Fifteen](https://github.com/sm-Fifteen).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top