Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for output_data (0.38 seconds)

  1. src/test/java/jcifs/util/HMACT64Test.java

                mockedCrypto.when(Crypto::getMD5).thenReturn(mockMd5);
                byte[] innerDigest = "inner_digest".getBytes();
                byte[] expectedOutput = "output_data".getBytes();
                byte[] buffer = new byte[expectedOutput.length + 10]; // Buffer with extra space
    
                when(mockMd5.digest()).thenReturn(innerDigest);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 14.6K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

        public byte[] getFileId() {
            return this.fileId;
        }
    
        /**
         * Gets the decoded output data from the response.
         *
         * @return the outputData
         */
        public Decodable getOutputData() {
            return this.outputData;
        }
    
        /**
         * Gets the length of the output data.
         *
         * @return the outputLength
         */
        public int getOutputLength() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            this.inputData = inputData;
        }
    
        /**
         * Set the output data for the IOCTL request
         * @param outputData the outputData to set
         */
        public void setOutputData(final Encodable outputData) {
            this.outputData = outputData;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#size()
         */
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  4. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratePackageInfoDataTask.kt

                results.add(packageName to packageInfoFile.relativeTo(baseDir).path)
            }
    
            val outputData = results.groupBy(keySelector = { it.first }, valueTransform = { it.second })
            outputFile.get().asFile.writeText(Gson().toJson(outputData))
        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  5. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/StringWagon.java

            } else {
                throw new ResourceDoesNotExistException("No content provided for " + resource.getName());
            }
        }
    
        @Override
        public void fillOutputData(OutputData outputData) throws TransferFailedException {
            outputData.setOutputStream(new ByteArrayOutputStream());
        }
    
        @Override
        protected void openConnectionInternal() throws ConnectionException, AuthenticationException {}
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb/SmbCopyUtil.java

                                    final SrvCopyChunkCopyResponse outputData = response.getOutputData(SrvCopyChunkCopyResponse.class);
                                    maxChunks = outputData.getChunksWritten();
                                    maxChunkSize = outputData.getChunkBytesWritten();
                                    byteLimit = outputData.getTotalBytesWritten();
                                    continue;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 16.6K bytes
    - Click Count (0)
  7. ci/official/utilities/extract_resultstore_links.py

          elem.tail = indent_str
    
    
    def create_xml_file(result_store_dict: ResultDictType,
                        output_path: str,
                        verbose: bool = False):
      """Creates a JUnit-based XML file, with each invocation as a testcase."""
      os.makedirs(os.path.dirname(output_path), exist_ok=True)
      failure_count = 0
      error_count = 0
    
      date_time = datetime.datetime
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Click Count (0)
Back to Top