- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getAllocationSize (0.26 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
void testGetChangeTime() { assertEquals(0, response.getChangeTime()); } @Test @DisplayName("getAllocationSize should return initial value of 0") void testGetAllocationSize() { assertEquals(0, response.getAllocationSize()); } @Test @DisplayName("getEndOfFile should return initial value of 0") void testGetEndOfFile() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
public final long getChangeTime() { return this.changeTime; } /** * Get the file allocation size * * @return the allocationSize */ public final long getAllocationSize() { return this.allocationSize; } /** * Get the end of file position * * @return the endOfFile */ public final long getEndOfFile() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
return this.lastWriteTime; } /** * Gets the allocation size. * * @return the allocationSize */ public final long getAllocationSize() { return this.allocationSize; } /** * Gets the end of file position. * * @return the endOfFile */ public final long getEndOfFile() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
public final long getChangeTime() { return this.changeTime; } /** * Get the allocation size of the file * @return the allocationSize */ public final long getAllocationSize() { return this.allocationSize; } /** * Get the end of file position * @return the endOfFile */ public final long getEndOfFile() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
assertEquals(2222L, resp.getLastAccessTime()); assertEquals(3333L, resp.getLastWriteTime()); assertEquals(4444L, resp.getChangeTime()); assertEquals(123456789L, resp.getAllocationSize()); assertEquals(987654321L, resp.getEndOfFile()); assertEquals(987654321L, resp.getSize()); // SmbBasicFileInfo mapping assertEquals(0xA5A5A5A5, resp.getFileAttributes());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0)