Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for inputData (0.19 sec)

  1. cmd/object-api-putobject_test.go

    		11: {bucketName: bucket, objName: object, inputData: []byte("efgh"), inputMeta: map[string]string{"etag": "1f7690ebdd9b4caf8fab49ca1757bf27"}, inputDataSize: int64(len("efgh"))},
    		12: {bucketName: bucket, objName: object, inputData: []byte("ijkl"), inputMeta: map[string]string{"etag": "09a0877d04abf8759f99adec02baf579"}, inputDataSize: int64(len("ijkl"))},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

            bufferIndex += 4;
            bufferIndex += 4; // Reserved2
    
            this.inputData = createInputDecodable();
            this.outputData = this.outputBuffer == null ? createOutputDecodable() : null;
    
            if (this.inputData != null) {
                this.inputData.decode(buffer, inputOffset, inputCount);
            }
            bufferIndex = Math.max(inputOffset + inputCount, bufferIndex);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            this.maxOutputResponse = maxOutputResponse;
        }
    
        /**
         * Set the input data for the IOCTL request
         * @param inputData the inputData to set
         */
        public void setInputData(final Encodable inputData) {
            this.inputData = inputData;
        }
    
        /**
         * Set the output data for the IOCTL request
         * @param outputData the outputData to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/StringWagon.java

        }
    
        @Override
        public void closeConnection() throws ConnectionException {}
    
        @Override
        public void fillInputData(InputData inputData)
                throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException {
            Resource resource = inputData.getResource();
    
            String content = expectedContent.get(resource.getName());
    
            if (content != null) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top