- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 83 for readDirect (0.38 sec)
-
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
* * @throws IOException if a network error occurs */ @Override public int read(final byte[] b, final int off, final int len) throws IOException { return readDirect(b, off, len); } /** * Reads up to len bytes of data from this input stream into an array of bytes. * * @param b the buffer into which the data is readRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
* * @throws IOException * if a network error occurs */ @Override public int read(final byte[] b, final int off, final int len) throws IOException { return readDirect(b, off, len); } /** * Reads up to len bytes of data from this input stream into an array of bytes. * Optimized for better performance with larger read sizes and reduced round trips. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
return in.read(inB); } } @Override public int recv(final byte[] buf, final int off, final int len) throws IOException { return getInput().readDirect(buf, off, len); } @Override public void send(final byte[] buf, final int off, final int length) throws IOException { getOutput().writeDirect(buf, off, length, 1); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/error/redirect.jsp
Shinsuke Sugaya <******@****.***> 1703312328 +0900
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 23 06:18:48 UTC 2023 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
return redirect(ErrorAction.class); } final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class); if (url == null) { saveError(messages -> messages.addErrorsDocumentNotFound(GLOBAL, form.docId)); return redirect(ErrorAction.class); } if (fessConfig.isSearchLog()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
*/ public GoForm() { super(); } /** * Document identifier for the target document to redirect to. * This is required and limited to 100 characters. */ @Required @Size(max = 100) public String docId; /** * Redirect target or return URL parameter. * This is required and limited to 10000 characters to accommodate long URLs. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
} else { logger.warn("Failed to process metadata.", e); saveError(e.getMessageCode()); } return redirect(LoginAction.class); } } /** * Attempts to redirect to the search page with preserved search parameters. * * This method checks if there are saved search parameters from a previousRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
if (user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray())) { return redirect(AdminDashboardAction.class); } final Class<? extends FessAdminAction> actionClass = AdminAction.getAdminActionClass(user); if (actionClass != null) { return redirect(actionClass); } return redirectToRoot(); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java
} saveInfo(messages -> messages.addSuccessDeleteDocFromIndex(GLOBAL)); verifyToken(() -> asHtml(path_AdminSuggest_AdminSuggestJsp).useForm(SuggestForm.class)); return redirect(getClass()); } /** * Deletes document-based suggest words from the suggest index. * * @return HTML response redirecting to the index page */ @ExecuteRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0)