- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 3,198 for final (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
* @param queryResponseList The list of query responses. */ public void addSearchLog(final SearchRequestParams params, final LocalDateTime requestedTime, final String queryId, final String query, final int pageStart, final int pageSize, final QueryResponseList queryResponseList) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
return (int) (this.fp - start); } catch (final CIFSException e) { throw SmbException.wrap(e); } } @Override public final void readFully(final byte b[]) throws SmbException { readFully(b, 0, b.length); } @Override public final void readFully(final byte b[], final int off, final int len) throws SmbException { int n = 0, count;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java
// flags static final int FLAGS_CLOSE_AFTER_THIS_REQUEST = 0x01; static final int FLAGS_CLOSE_IF_END_REACHED = 0x02; static final int FLAGS_RETURN_RESUME_KEYS = 0x04; static final int FLAGS_RESUME_FROM_PREVIOUS_END = 0x08; static final int FLAGS_FIND_WITH_BACKUP_INTENT = 0x10; private final int searchAttributes; private final int tflags; private final int informationLevel;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
*/ // GET /api/admin/badword/settings // PUT /api/admin/badword/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final BadWordPager pager = copyBeanToNewBean(body, BadWordPager.class); final List<BadWord> list = badWordService.getBadWordList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayUtilTest.java
*/ @Test public void testAddAll() throws Exception { final String[] array = new String[] { "111" }; final String[] newArray = ArrayUtil.add(array, "222"); assertThat(newArray.length, is(2)); assertThat(newArray[0], is("111")); assertThat(newArray[1], is("222")); final String[] emptyArray = new String[0];
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbException.java
/** * */ private static final long serialVersionUID = 484863569441792249L; // to replace a bunch of one-off binary searches private static final Map<Integer, String> errorCodeMessages; private static final Map<Integer, String> winErrorCodeMessages; private static final Map<Integer, Integer> dosErrorCodeStatuses; static { final Map<Integer, String> errorCodeMessagesTmp = new HashMap<>();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
* @return optional label type entity */ public static OptionalEntity<LabelType> getLabelType(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final String username = systemHelper.getUsername(); final long currentTime = systemHelper.getCurrentTimeAsLong(); return getEntity(form, username, currentTime).map(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
*/ public void search(final SearchRequestParams searchRequestParams, final SearchRenderData data, final OptionalThing<FessUserBean> userBean) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final long startTime = systemHelper.getCurrentTimeAsLong(); final long requestedTime = startTime; final SearchRequestParams params = rewrite(searchRequestParams);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
public HtmlResponse upload(final UploadForm form) { validate(form, messages -> {}, this::asListHtml); verifyToken(this::asListHtml); final String fileName = form.bulkFile.getFileName(); final File tempFile = ComponentUtil.getSystemHelper().createTempFile("fess_restore_", ".tmp"); try (final InputStream in = form.bulkFile.getInputStream(); final OutputStream out = new FileOutputStream(tempFile)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
public static final String AS_NQ = "nq"; /** The parameter for OR query. */ public static final String AS_OQ = "oq"; /** The parameter for exact phrase query. */ public static final String AS_EPQ = "epq"; /** The parameter for query. */ public static final String AS_Q = "q"; /** The parameter for filetype. */ public static final String AS_FILETYPE = "filetype";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0)