- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 465 for Outputs (0.04 sec)
-
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
throw new SmbException("Already closed"); } if (this.output != null) { return this.output; } try (SmbTreeHandleImpl th = ensureTreeConnected()) { this.output = new SmbPipeOutputStream(this, th); } return this.output; } /** * * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java
@ValidateTypeFailure public Integer crudMode; /** Input terms (comma-separated) that will be mapped to the output term */ @Required @Size(max = 1000) public String inputs; /** Output term that input terms will be mapped to */ @Size(min = 1, max = 1000) public String output; /** * Initializes the form with default values for creating a new mapping dictionary entry. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceTest.java
assertNotNull(os1, "Default output stream should not be null"); assertNotNull(os2, "Output stream with append should not be null"); assertNotNull(os3, "Output stream with sharing should not be null"); assertNotNull(os4, "Output stream with full params should not be null"); assertSame(mockOutputStream, os1, "Should return expected output stream");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java
assertNotNull(request); assertEquals(0x0B, request.getCommand()); verify(mockConfig).getTransactionBufferSize(); } @Test @DisplayName("Test constructor with output buffer") void testConstructorWithOutputBuffer() { // This constructor doesn't use getTransactionBufferSize()
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/WriterUtil.java
*/ protected WriterUtil() { } /** * Creates a {@link Writer} to output to a stream with the specified encoding. * * @param os the stream (must not be {@literal null}) * @param encoding the encoding (must not be {@literal null} or empty) * @return a {@link Writer} to output to the stream */ public static Writer create(final OutputStream os, final String encoding) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
guava/src/com/google/common/hash/Fingerprint2011.java
} /** * Computes intermediate hash of 32 bytes of byte array from the given offset. Results are * returned in the output array - this is 12% faster than allocating new arrays every time. */ private static void weakHashLength32WithSeeds( byte[] bytes, int offset, long seedA, long seedB, long[] output) { long part1 = load64(bytes, offset); long part2 = load64(bytes, offset + 8); long part3 = load64(bytes, offset + 16);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6.5K bytes - Viewed (0) -
cmd/http-stats.go
} // Increase internode total output bytes func (s *connStats) incInternodeOutputBytes(n int64) { atomic.AddUint64(&s.internodeOutputBytes, uint64(n)) } // Return internode total input bytes func (s *connStats) getInternodeInputBytes() uint64 { return atomic.LoadUint64(&s.internodeInputBytes) } // Return total output bytes func (s *connStats) getInternodeOutputBytes() uint64 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
* Uses the default buffer size and no output callback. * * @param process the system process to wrap */ public JobProcess(final Process process) { this(process, InputStreamThread.MAX_BUFFER_SIZE, null); } /** * Constructs a new JobProcess with the specified process, buffer size, and output callback. * * @param process the system process to wrap
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
@Test @DisplayName("Should decode output parameters correctly") void testDecodeOut() throws NdrException { // Given: Close handle message with mocked return value samr.SamrCloseHandle message = new samr.SamrCloseHandle(mockPolicyHandle); when(mockNdrBuffer.dec_ndr_long()).thenReturn(0); // When: Decoding output message.decode_out(mockNdrBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
logger.debug("Failed to print the output.", e); } return new ByteArrayOutputStream(); } } /** * Creates an OutputStream from a ToXContent object with the specified media type. * * @param xContent the content object to convert * @param mediaType the media type for the output * @return an OutputStream containing the converted content
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0)