Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for failNever (0.08 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                    setSessionSetup(response);
    
                    // Initialize multi-channel after successful session setup
                    initializeMultiChannel();
    
                    // Initialize witness support for fast failover
                    initializeWitnessSupport();
    
                    if (ex != null) {
                        throw ex;
                    }
                    return (T) (response != null ? response.getNextResponse() : null);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

             * - For FAIL_AT_END: Blacklists the project and its dependents, which causes executePlan to skip them
             * - For FAIL_NEVER: Does nothing special, allowing all projects to continue building
             * <p>
             * Note: TEARDOWN steps are not executed for failed or blacklisted projects, as they're designed for
    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. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            } else if (commandLine.hasOption(CLIManager.FAIL_AT_END)) {
                return MavenExecutionRequest.REACTOR_FAIL_AT_END;
            } else if (commandLine.hasOption(CLIManager.FAIL_NEVER)) {
                return MavenExecutionRequest.REACTOR_FAIL_NEVER;
            } else {
                // this is the default behavior.
                return MavenExecutionRequest.REACTOR_FAIL_FAST;
            }
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top