- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for isSupportSearchBits (0.11 seconds)
-
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java
} /** * Indicates whether the share supports search operations with search bits. * * @return the supportSearchBits */ public final boolean isSupportSearchBits() { return this.supportSearchBits; } /** * @return the shareIsInDfs */ @Override public final boolean isShareDfs() { return this.shareIsInDfs; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
setPrivateField(response, "supportSearchBits", true); assertTrue(response.isSupportSearchBits(), "Should indicate search bits support"); // Test without search bits support setPrivateField(response, "supportSearchBits", false); assertFalse(response.isSupportSearchBits(), "Should indicate no search bits support"); } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.9K bytes - Click Count (0)