Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FileFsFullSizeInformation (0.07 sec)

  1. src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java

            }
        }
    
        @Nested
        @DisplayName("FileFsFullSizeInformation Implementation Tests")
        class FileFsFullSizeInformationTests {
    
            private FileFsFullSizeInformation fileFsFullSizeInfo;
    
            @BeforeEach
            void setUp() {
                fileFsFullSizeInfo = new FileFsFullSizeInformation();
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java

            assertEquals(offset, bytesRead);
            assertNotNull(response.getInfo());
            assertTrue(response.getInfo() instanceof FileFsFullSizeInformation);
    
            FileFsFullSizeInformation info = (FileFsFullSizeInformation) response.getInfo();
            assertEquals(2000000L * 16L * 4096L, info.getCapacity());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java

    import jcifs.internal.AllocInfo;
    import jcifs.internal.SMBProtocolDecodingException;
    
    /**
     * Test suite for FileFsFullSizeInformation class
     */
    class FileFsFullSizeInformationTest {
    
        private FileFsFullSizeInformation fileFsFullSizeInfo;
    
        @BeforeEach
        void setUp() {
            fileFsFullSizeInfo = new FileFsFullSizeInformation();
        }
    
        @Nested
        @DisplayName("Interface Implementation Tests")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

            SMBUtil.writeInt2(20, buffer, bufferIndex + 2);
            // Set buffer length (FileFsFullSizeInformation is 32 bytes)
            SMBUtil.writeInt4(32, buffer, bufferIndex + 4);
    
            response = spy(response);
            when(response.getHeaderStart()).thenReturn(0);
    
            // Write FileFsFullSizeInformation data (32 bytes)
            SMBUtil.writeInt8(1000000, buffer, 20); // Total allocation units
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top