Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 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/builder/singlethreaded/SingleThreadedBuilder.java

                    try {
                        lifecycleModuleBuilder.buildProject(
                                session, reactorContext, projectBuild.getProject(), taskSegment);
                        if (reactorBuildStatus.isHalted()) {
                            break;
                        }
                    } catch (Exception e) {
                        break; // Why are we just ignoring this exception? Are exceptions are being used for flow control
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. container-tests/src/test/java/okhttp3/containers/BasicLoomTest.kt

    import org.junit.jupiter.api.parallel.Isolated
    import org.mockserver.client.MockServerClient
    import org.mockserver.model.HttpRequest.request
    import org.mockserver.model.HttpResponse.response
    import org.testcontainers.containers.MockServerContainer
    import org.testcontainers.junit.jupiter.Container
    import org.testcontainers.junit.jupiter.Testcontainers
    
    @Testcontainers
    @Isolated
    class BasicLoomTest {
      @JvmField
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.7K bytes
    - Viewed (1)
  6. impl/maven-core/plugin-manager.txt

    h3. Creation of an isolated classloader
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 22 11:03:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. 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)
  8. impl/maven-core/src/site/apt/offline-mode.apt

      earmarked as remote should be accessed, regardless of whether it is actually
      a physically local resource.
    
      NOTE: One side effect of this design change is that all offline-mode code can
      be isolated to maven-core, maven-plugin-descriptor, and [possibly]
      maven-artifact. Usage of maven-wagon will be determined by an offline-aware
      manager.
    
    * Assumptions: What is Offline?
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top