- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for getOutputStream (0.38 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
return connection.getInputStream(); } @Override public OutputStream getOutputStream() throws IOException { try { connect(); } catch (final IOException ex) {} final OutputStream output = connection.getOutputStream(); cachedOutput = new ByteArrayOutputStream(); return new CacheStream(output, cachedOutput); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
public InputStream getInputStream() throws IOException { return new SocketInputStream(super.getInputStream()); } @Override public OutputStream getOutputStream() throws IOException { return new SocketOutputStream(super.getOutputStream()); } @Override public int getPort() { return super.getPort(); } @Override public InetAddress getLocalAddress() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
CopyUtil.copy(in, out); } catch (final IOException e) { throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, e); } } }).execute()) { try (ServletOutputStream out = response.getOutputStream(); InputStream in = curlResponse.getContentAsStream()) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
OutputStream initialOutputStream = mock(OutputStream.class); when(mockConnection.getOutputStream()).thenReturn(initialOutputStream); // Act // Get output stream and write data to it OutputStream os = ntlmConnection.getOutputStream(); assertNotNull(os); byte[] testData = "test data".getBytes(); os.write(testData); os.flush();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
try (final XContentBuilder builder = func.apply(mediaType.contentBuilder(), ToXContent.EMPTY_PARAMS)) { builder.flush(); return builder.getOutputStream(); } catch (final IOException e) { if (logger.isDebugEnabled()) { logger.debug("Failed to print the output.", e); } return new ByteArrayOutputStream();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
response.setContentType(buf.toString()); writeHeaders(response); try (PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), enc))) { out.print(text); } catch (final IOException e) { throw new IORuntimeException(e); } } /** * Writes custom headers to the HTTP response.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 06:54:47 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
handshake(); return this.connection.getInputStream(); } @SuppressWarnings("resource") @Override public OutputStream getOutputStream() throws IOException { connect(); final OutputStream output = this.connection.getOutputStream(); this.cachedOutput = new ByteArrayOutputStream(); return new CacheStream(output, this.cachedOutput); } @Override
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
builder.startObject(); response.toXContent(builder, ToXContent.EMPTY_PARAMS); builder.endObject(); builder.flush(); try (OutputStream out = builder.getOutputStream()) { stats = ((ByteArrayOutputStream) out).toString(Constants.UTF_8); } } catch (final Exception e) { appendException(buf, e).append(','); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.8K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt
private val remoteAddress: InetAddress = localAddress, private val remotePort: Int = 1234, ) : Socket() { override fun getInputStream() = Buffer().inputStream() override fun getOutputStream() = Buffer().outputStream() override fun getInetAddress() = remoteAddress override fun getLocalAddress() = localAddress override fun getLocalPort() = localPortRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 5.3K bytes - Viewed (0)