Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SrvCopychunkCopy (0.09 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopy.java

     *
     * @author mbechler
     *
     */
    public class SrvCopychunkCopy implements Encodable {
    
        private final byte[] sourceKey;
        private final SrvCopychunk[] chunks;
    
        /**
         * Constructs a server copy chunk operation request
         * @param sourceKey the resume key identifying the source file
         * @param chunks the array of copy chunk descriptors
         */
        public SrvCopychunkCopy(final byte[] sourceKey, final SrvCopychunk... chunks) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                    patternKey[i] = (byte) i;
                }
    
                // When & Then
                assertNotNull(new SrvCopychunkCopy(zeroKey));
                assertNotNull(new SrvCopychunkCopy(maxKey));
                assertNotNull(new SrvCopychunkCopy(patternKey));
            }
        }
    
        @Nested
        @DisplayName("Size Method Tests")
        class SizeTests {
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbCopyUtil.java

    import jcifs.internal.smb2.ioctl.Smb2IoctlResponse;
    import jcifs.internal.smb2.ioctl.SrvCopyChunkCopyResponse;
    import jcifs.internal.smb2.ioctl.SrvCopychunk;
    import jcifs.internal.smb2.ioctl.SrvCopychunkCopy;
    import jcifs.internal.smb2.ioctl.SrvRequestResumeKeyResponse;
    
    /**
     * Utility class for SMB file copy operations.
     * Provides methods for efficient server-side copying using SMB2 IOCTL operations.
     *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top