Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for inputData (0.05 sec)

  1. 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 Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            this.maxOutputResponse = maxOutputResponse;
        }
    
    
        /**
         * @param inputData
         *            the inputData to set
         */
        public void setInputData ( Encodable inputData ) {
            this.inputData = inputData;
        }
    
    
        /**
         * @param outputData
         *            the outputData to set
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 07:13:17 UTC 2018
    - 7.8K bytes
    - Viewed (0)
  3. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top