- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 81 for doSend (0.03 sec)
-
src/main/java/jcifs/smb1/util/transport/Transport.java
/** * Sends a request to the remote endpoint. * * @param request the request to send * @throws IOException if an I/O error occurs */ protected abstract void doSend(Request request) throws IOException; /** * Receives a response from the remote endpoint. * * @param response the response object to populate * @throws IOException if an I/O error occurs
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
* @throws IOException if an I/O error occurs */ protected <T extends Response> long doSend(final Request request, final T response, final Set<RequestParam> params, final long timeout) throws IOException { final long firstKey = prepareRequests(request, response, params, timeout); doSend(request); return firstKey; } /** * @param request * @param response
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
* * @param request the request to send * @throws IOException if an I/O error occurs */ protected void doSend0(final Request request) throws IOException { try { doSend(request); } catch (final IOException ioe) { if (LogStream.level > 2) { ioe.printStackTrace(log); } try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.5K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
maxReadWriteSize = Math.min(maxReadWriteSize, response.getMaxReadWriteSize()); maxReceiveSize = Math.min(maxReceiveSize, response.getMaxReceiveSize()); } @Override protected void doSend(ServerMessageBlock2 request) throws IOException { if (shouldUseRdmaReadWrite(request)) { sendWithRdmaReadWrite(request); } else { sendWithRdmaSendReceive(request); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} return true; } } return false; } protected void doSend0(final Request request) throws IOException { try { doSend(request); } catch (final IOException ioe) { log.warn("send failed", ioe); try { disconnect(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java
} try (final ResponseData responseData = storageClient.doHead("storage://fess/dir1/")) { assertNull(responseData); } try (final ResponseData responseData = storageClient.doHead("storage://fess/dir1/dir2/")) { assertNull(responseData); } try (final ResponseData responseData = storageClient.doHead("storage://fess/dir3/")) { assertNull(responseData); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 13.8K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
/// tip For this to work, you need to `pip install python-dotenv`. /// ### The `.env` file { #the-env-file } You could have a `.env` file with: ```bash ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp" ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
final CrawlerWebServer server = new CrawlerWebServer(7070); server.start(); final String url = "http://localhost:7070/"; try { final ResponseData responseData = httpClient.doHead(url); assertNotNull(responseData.getLastModified()); assertTrue(responseData.getLastModified().getTime() < new Date().getTime()); } finally { server.stop(); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
} try (final ResponseData responseData = smbClient.doHead(baseUrl)) { assertNull(responseData); } try (final ResponseData responseData = smbClient.doHead(baseUrl + "dir1/")) { assertNull(responseData); } try (final ResponseData responseData = smbClient.doHead(baseUrl + "dir1/dir2/")) { assertNull(responseData); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 13.7K bytes - Viewed (0)