- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 119 for capabilities (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequest.java
*/ public class ValidateNegotiateInfoRequest implements Encodable { private final int capabilities; private final byte[] clientGuid; private final int securityMode; private final int dialects[]; /** * Constructs a ValidateNegotiateInfo request * * @param capabilities * the client capabilities flags * @param clientGuid * the client GUID * @param securityModeCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
* @param capabilities * the client capabilities * @param previousSessionid * the previous session ID for reconnection (or 0 for new session) * @param token * the security token for authentication */ public Smb2SessionSetupRequest(final CIFSContext context, final int securityMode, final int capabilities, final long previousSessionid,Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java
// Default constructor } private int capabilities; private final byte[] serverGuid = new byte[16]; private int securityMode; private int dialect; /** * Gets the server capabilities * * @return the capabilities flags from the server */ public int getCapabilities() { return this.capabilities; } /** * Gets the server GUID *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
// Verify each is a power of 2 for (int cap : capabilities) { assertTrue(isPowerOfTwo(cap), "Capability 0x" + Integer.toHexString(cap) + " should be a power of 2"); } // Verify no overlapping bits for (int i = 0; i < capabilities.length; i++) { for (int j = i + 1; j < capabilities.length; j++) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
} /** * Gets the capabilities returned by the server. * * @return the server returned capabilities */ public final int getCapabilities() { return this.capabilities; } /** * Gets the common capabilities negotiated between client and server. * * @return the common/negotiated capabilities */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/UpgradeContextTest.java
@Test @DisplayName("should handle icon rendering based on terminal capabilities") void shouldHandleIconRenderingBasedOnTerminalCapabilities() { UpgradeContext context = TestUtils.createMockContext(Paths.get("/test")); // Test that icon rendering doesn't throw exceptions // The actual icons used depend on the terminal's charset capabilities context.success("Icon rendering test");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Jul 15 09:35:08 GMT 2025 - 3.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
// Given & When int securityMode = 0x03; int capabilities = 0x0F; long previousSessionId = 0xFEDCBA9876543210L; byte[] token = { 0x0A, 0x0B, 0x0C }; Smb2SessionSetupRequest req = new Smb2SessionSetupRequest(mockContext, securityMode, capabilities, previousSessionId, token); // Then - verify fields are set correctly using reflection
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} snd_buf_size = Math.min(snd_buf_size, server.maxBufferSize); capabilities &= server.capabilities; if ((server.capabilities & CAP_EXTENDED_SECURITY) == CAP_EXTENDED_SECURITY) { capabilities |= CAP_EXTENDED_SECURITY; // & doesn't copy high bit } if ((capabilities & SmbConstants.CAP_UNICODE) == 0) { // server doesn't want unicodeCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 10.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java
void testDecodeValidBuffer() throws SMBProtocolDecodingException { // Prepare test data byte[] buffer = new byte[64]; int bufferIndex = 10; // Set capabilities (4 bytes) int testCapabilities = 0x12345678; SMBUtil.writeInt4(testCapabilities, buffer, bufferIndex); // Set server GUID (16 bytes) byte[] testGuid = new byte[16];
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.8K bytes - Click Count (0)