Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for searchAttributes (0.1 sec)

  1. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                final ResourceFilter ff) throws CIFSException {
            final DosFileFilter dff = unwrapDOSFilter(ff);
            if (dff != null) {
                if (dff.wildcard != null) {
                    wildcard = dff.wildcard;
                }
                searchAttributes = dff.attributes;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/com/SmbComRenameTest.java

            searchAttributesField.setAccessible(true);
            int searchAttributes = (int) searchAttributesField.get(smbComRename);
    
            // Then
            assertTrue((searchAttributes & SmbConstants.ATTR_HIDDEN) != 0);
            assertTrue((searchAttributes & SmbConstants.ATTR_SYSTEM) != 0);
            assertTrue((searchAttributes & SmbConstants.ATTR_DIRECTORY) != 0);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java

        @ValueSource(ints = { 0x00, 0x16, 0x37, 0xFF })
        void testSearchAttributesMasking(int searchAttributes) {
            trans2FindFirst2 = new Trans2FindFirst2(mockConfig, "\\test", "*.*", searchAttributes, 10, 1024);
    
            // Verify attributes are masked with 0x37
            int expectedAttributes = searchAttributes & 0x37;
    
            // Write parameters to verify the masked value is used
            byte[] buffer = new byte[100];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java

                    int searchAttributes, FileEntry initial, List<FileEntry[]> pages) throws CIFSException {
                staticInitial = initial;
                staticPages = new ArrayList<>(pages);
                // Don't reset staticThrowOnOpen here - it's controlled by tests
                return new TestIterator(th, parent, wildcard, filter, searchAttributes);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
Back to top