- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getCloseFlags (0.04 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
} } @Nested @DisplayName("Getter Methods Tests") class GetterMethodsTests { @Test @DisplayName("getCloseFlags should return initial value of 0") void testGetCloseFlags() { assertEquals(0, response.getCloseFlags()); } @Test @DisplayName("getCreationTime should return initial value of 0") void testGetCreationTime() {
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
super(config); this.fileId = fileId; this.fileName = fileName; } /** * Get the close flags * * @return the closeFlags */ public final int getCloseFlags() { return this.closeFlags; } /** * Get the file creation time * * @return the creationTime */ public final long getCreationTime() {
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/smb/SmbFile.java
final Smb2CreateResponse createResp = th.send(cr); final Smb2CloseResponse closeResp = closeReq.getResponse(); SmbBasicFileInfo info; if ((closeResp.getCloseFlags() & Smb2CloseResponse.SMB2_CLOSE_FLAG_POSTQUERY_ATTIB) != 0) { info = closeResp; } else { info = createResp; } this.isExists = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)