Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sourceKey (0.31 sec)

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

        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) {
            this.sourceKey = sourceKey;
            this.chunks = 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

            void testConstructorWithSingleChunk() {
                // Given
                byte[] sourceKey = new byte[SOURCE_KEY_SIZE];
                Arrays.fill(sourceKey, (byte) 0xAB);
                SrvCopychunk chunk = new SrvCopychunk(100, 200, 300);
    
                // When
                SrvCopychunkCopy copy = new SrvCopychunkCopy(sourceKey, chunk);
    
                // Then
                assertNotNull(copy);
            }
    
            @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. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCopySource: {
    		Code:           "InvalidArgument",
    		Description:    "Copy Source must mention the source bucket and key: sourcebucket/sourcekey.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidMetadataDirective: {
    		Code:           "InvalidArgument",
    		Description:    "Unknown metadata directive.",
    		HTTPStatusCode: http.StatusBadRequest,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (1)
  4. buildSrc/src/main/kotlin/Osgi.kt

      //
      // The forwarding SourceSet also needs to fake out some task names to prevent them from being
      // registered twice.
      //
      // https://github.com/bndtools/bnd/issues/6590
      val jvmMainSourceSet = sourceSets.getByName("jvmMain")
      val mainSourceSet =
        object : SourceSet by jvmMainSourceSet {
          override fun getName() = "main"
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top