Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                    multiThreadedProjectTaskSegmentBuild(
                            analyzer, reactorContext, session, service, taskSegment, projectBuildMap);
                    if (reactorContext.getReactorBuildStatus().isHalted()) {
                        break;
                    }
                } catch (Exception e) {
                    session.getResult().addException(e);
                    break;
                }
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 16 03:42:09 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/test/java/jcifs/http/HandlerTest.java

            System.setProperties(originalSystemProperties);
            resetHandlerState();
        }
    
        /**
         * Resets the static state of the Handler class using reflection.
         * This is crucial for ensuring that tests are isolated from each other.
         */
        private void resetHandlerState() throws Exception {
            // Reset the static factory field
            Field factoryField = Handler.class.getDeclaredField("factory");
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. 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)
  6. docs/en/docs/deployment/docker.md

    </details>
    
    ## What is a Container { #what-is-a-container }
    
    Containers (mainly Linux containers) are a very **lightweight** way to package applications including all their dependencies and necessary files while keeping them isolated from other containers (other applications or components) in the same system.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Sep 20 12:58:04 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  7. 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)
  8. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            }
        }
    
        // ========== Helper Methods ==========
    
        private CIFSContext createFreshContext() {
            // Create a completely isolated context to avoid handle reuse issues on Linux Docker
            try {
                // Create a new context with fresh configuration each time
                // This ensures complete isolation between operations
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  9. 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