- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 47 for Capability (0.41 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaCapability.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.rdma; /** * RDMA capability flags indicating what operations are supported * by an RDMA provider implementation. */ public enum RdmaCapability { /** * Remote direct read operations */ RDMA_READ, /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleInternalTest.java
// Arrange when(handle.hasCapability(anyInt())).thenThrow(new CIFSException("capability check failed")); // Act + Assert CIFSException ex = assertThrows(CIFSException.class, () -> handle.hasCapability(42)); assertEquals("capability check failed", ex.getMessage()); verify(handle).hasCapability(42); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
/** * Initialize multi-channel support * * @throws IOException if initialization fails */ public void initializeMultiChannel() throws IOException { // Check server capability if (!supportsMultiChannel()) { log.info("Server does not support multi-channel"); return; } // Query network interfaces from server
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
transport.ensureConnected(); // Verify multi-channel capability (SMB3+ required) if (!transport.isSMB2() || !transport.hasCapability(0x00000008)) { // SMB2_GLOBAL_CAP_MULTI_CHANNEL throw new CIFSException("Server does not support SMB multi-channel capability"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
response.getServerData().smaxMpxCount = 1; response.getServerData().maxBufferSize = 16384; assertTrue(response.isValid(mockContext, request)); // After negotiation, check if unicode capability is preserved assertTrue((response.getNegotiatedCapabilities() & SmbConstants.CAP_UNICODE) != 0); } @Test public void testIsValidWithInvalidDialect() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
// When int mode = response.getSecurityMode(); // Then assertEquals(Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED, mode); } @Test @DisplayName("Should check capability correctly") void testHaveCapability() throws Exception { // Given setPrivateField(response, "commonCapabilities", 0x2F); // 0010 1111 // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
} public void remove(String sessionCountId) { // No-op } }, "crawlingConfigHelper"); // Fast mock SystemHelper with immediate force stop capability ComponentUtil.register(new SystemHelper() { private final AtomicBoolean forceStop = new AtomicBoolean(false); @Override public long getCurrentTimeAsLong() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/SmbConstantsTest.java
assertEquals(0x4000, SmbConstants.FLAGS2_STATUS32); assertEquals(0x8000, SmbConstants.FLAGS2_UNICODE); } @Test @DisplayName("Should define capability constants") void testCapabilityConstants() { assertEquals(0x0000, SmbConstants.CAP_NONE); assertEquals(0x0001, SmbConstants.CAP_RAW_MODE); assertEquals(0x0002, SmbConstants.CAP_MPX_MODE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbWatchHandleImplTest.java
} // SMB1 path: without CAP_NT_SMBS it should throw SmbUnsupportedOperationException @Test @DisplayName("watch() SMB1 without capability throws unsupported") void watch_smb1_noCapability_throwsUnsupported() throws Exception { when(handle.isValid()).thenReturn(true); when(handle.getTree()).thenReturn(tree);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0)