- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isSupportSearchBits (0.12 sec)
-
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; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (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
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0)