- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for FileFsSizeInformation (0.08 sec)
-
src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
assertEquals(offset, bytesRead); assertNotNull(response.getInfo()); assertTrue(response.getInfo() instanceof FileFsSizeInformation); FileFsSizeInformation info = (FileFsSizeInformation) response.getInfo(); assertEquals(1000000L * 8L * 512L, info.getCapacity()); assertEquals(500000L * 8L * 512L, info.getFree()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
import jcifs.internal.AllocInfo; import jcifs.internal.SMBProtocolDecodingException; /** * Test suite for FileFsSizeInformation class */ class FileFsSizeInformationTest { private FileFsSizeInformation fileFsSizeInfo; @BeforeEach void setUp() { fileFsSizeInfo = new FileFsSizeInformation(); } @Nested @DisplayName("Interface Implementation Tests")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
// Set buffer offset SMBUtil.writeInt2(20, buffer, bufferIndex + 2); // Set buffer length (FileFsSizeInformation is 24 bytes) SMBUtil.writeInt4(24, buffer, bufferIndex + 4); response = spy(response); when(response.getHeaderStart()).thenReturn(0); // Write FileFsSizeInformation data (24 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)