- Sort Score
- Result 10 results
- Languages All
Results 31 - 34 of 34 for getFileId (0.04 sec)
-
src/main/java/jcifs/smb/SmbFile.java
setInfoReq.setFileId(createResp.getFileId()); setInfoReq.setFileInformation(new FileRenameInformation2(destPath, replace)); sh.send(setInfoReq); } finally { // Always close the file handle - ensure createResp is not null if (createResp != null && createResp.getFileId() != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
if (message instanceof Smb2ReadRequest) { affinityKey = Arrays.hashCode(((Smb2ReadRequest)message).getFileId()); } else if (message instanceof Smb2WriteRequest) { affinityKey = Arrays.hashCode(((Smb2WriteRequest)message).getFileId()); } if (affinityKey != 0) { // Select channel based on affinity key
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
when(fh.acquire()).thenReturn(fh); lenient().when(fh.isValid()).thenReturn(true); lenient().when(fh.getTree()).thenReturn(tree); when(fh.getFileId()).thenReturn(new byte[16]); // Setup for ioctl request when(tree.send(any(Smb2IoctlRequest.class), eq(RequestParam.NO_RETRY))).thenReturn(ioctlResp);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRandomAccessFileTest.java
when(fh.acquire()).thenReturn(fh); when(fh.isValid()).thenReturn(true); when(fh.getTree()).thenReturn(tree); when(fh.getFileId()).thenReturn(new byte[16]); when(fh.getFid()).thenReturn(1); // build via package-private constructor to control unshared flag
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)