- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for FileEndOfFileInformation (0.07 sec)
-
src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java
* effectively controlling file size truncation or extension. * * @author mbechler */ public class FileEndOfFileInformation implements FileInformation, Encodable { private long endOfFile; /** * Default constructor for decoding. */ public FileEndOfFileInformation() { } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
} /** * Test concrete implementation with FileEndOfFileInformation */ @Test @DisplayName("Test FileEndOfFileInformation implementation") void testFileEndOfFileInformationImplementation() { // Test default constructor FileEndOfFileInformation fileInfo = new FileEndOfFileInformation(); assertNotNull(fileInfo);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
FileEndOfFileInformation info = new FileEndOfFileInformation(999L); assertEquals(8, info.size()); } @Test @DisplayName("Test encode method with valid buffer") void testEncode() { // Create instance with known value long endOfFile = 0x123456789ABCDEFL; FileEndOfFileInformation info = new FileEndOfFileInformation(endOfFile);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
req.setFileInformation(new FileEndOfFileInformation(newLength)); th.send(req, RequestParam.NO_RETRY); } else if (th.hasCapability(SmbConstants.CAP_NT_SMBS)) { th.send(new Trans2SetFileInformation(th.getConfig(), fh.getFid(), new FileEndOfFileInformation(newLength)),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
import java.io.IOException; import java.io.OutputStream; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSException; import jcifs.SmbConstants; import jcifs.internal.fscc.FileEndOfFileInformation; import jcifs.internal.smb1.com.SmbComWrite; import jcifs.internal.smb1.com.SmbComWriteAndX; import jcifs.internal.smb1.com.SmbComWriteAndXResponse; import jcifs.internal.smb1.com.SmbComWriteResponse;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.8K bytes - Viewed (0)