- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for failNever (0.06 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/LayeredMavenOptions.java
@Override public Optional<Boolean> failAtEnd() { return returnFirstPresentOrEmpty(MavenOptions::failAtEnd); } @Override public Optional<Boolean> failNever() { return returnFirstPresentOrEmpty(MavenOptions::failNever); } @Override public Optional<Boolean> resume() { return returnFirstPresentOrEmpty(MavenOptions::resume); } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 5.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
return MavenExecutionRequest.REACTOR_FAIL_FAST; } else if (context.options().failAtEnd().isPresent()) { return MavenExecutionRequest.REACTOR_FAIL_AT_END; } else if (context.options().failNever().isPresent()) { return MavenExecutionRequest.REACTOR_FAIL_NEVER; } else { return MavenExecutionRequest.REACTOR_FAIL_FAST; } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelFailoverTest.java
@Mock private SmbTransport mockNewTransport; @Mock private CommonServerMessageBlock mockOperation; private ChannelFailover failover; private ChannelInfo failedChannel; @BeforeEach void setUp() throws UnknownHostException { failover = new ChannelFailover(mockChannelManager); InetAddress addr = InetAddress.getByName("192.168.1.100");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
} /** * State tracking for channel failover */ public static class FailoverState { private final String channelId; private final long failureTime; private int retryCount; private long nextRetryTime; /** * Create failover state * * @param channelId channel identifier */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/MultiChannelIntegrationTest.java
assertEquals(1024, channel.getBytesSent()); assertTrue(channel.getLastActivityTime() > 0); } @Test void testChannelFailover() throws Exception { // Test failover mechanism ChannelFailover failover = new ChannelFailover(channelManager); // Create a channel InetAddress addr = InetAddress.getByName("192.168.1.100");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.2K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
## 1. Overview SMB3 Multi-Channel enables the use of multiple network connections between client and server, providing increased throughput, network fault tolerance, and automatic failover capabilities. This feature aggregates bandwidth across multiple NICs and provides seamless failover when network paths fail. ## 2. Protocol Specification Reference - **MS-SMB2 Section 3.2.4.23**: FSCTL_QUERY_NETWORK_INTERFACE_INFO
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
- [ ] Create resource monitoring - [ ] Implement automatic re-registration - [ ] Add cluster node tracking - [ ] Create failover coordination #### 6.3 Integration Points - Integrate with `CIFSContext` for witness support - Modify `SmbTransport` for failover handling - Update `DfsResolver` for witness-aware resolution --- ## Implementation Dependencies ```mermaid graph TD
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessEventType.java
*/ public enum WitnessEventType { /** * Resource state changed - general resource state modification */ RESOURCE_CHANGE(1), /** * Client should move to different node - directed failover */ CLIENT_MOVE(2), /** * Share moved to different node - share mobility event */ SHARE_MOVE(3), /** * IP address changed - network configuration change */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 2.5K bytes - Viewed (0)