Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isSupportSearchBits (0.12 sec)

  1. 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)
  2. 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)
Back to top