- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 168 for isPresent (0.07 sec)
-
src/main/java/org/codelibs/fess/helper/SearchHelper.java
final long requestedTime = startTime; final SearchRequestParams params = rewrite(searchRequestParams); LaRequestUtil.getOptionalRequest().ifPresent(request -> { request.setAttribute(Constants.REQUEST_LANGUAGES, params.getLanguages()); request.setAttribute(Constants.REQUEST_QUERIES, params.getQuery()); });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
} // DELETE /api/admin/relatedcontent/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { relatedContentService.getRelatedContent(id).ifPresent(entity -> { try { relatedContentService.delete(entity); saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
final boolean changed = ComponentUtil.getAuthenticationManager().changePassword(username, password); if (changed) { userBhv.selectEntity(cb -> cb.query().setName_Equal(username)).ifPresent(entity -> { final String encodedPassword = fessLoginAssist.encryptPassword(password); entity.setPassword(encodedPassword);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
logger.warn("Failed to process gsa.xml file: {}", fileName, e); } finally { deleteTempFile(tempFile); } configParser.getWebConfig().ifPresent(c -> webConfigBhv.insert(c)); configParser.getFileConfig().ifPresent(c -> fileConfigBhv.insert(c)); labelTypeBhv.batchInsert(Arrays.stream(configParser.getLabelTypes()).collect(Collectors.toList())); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
return true; }, (queryRequestBuilder, execTime, searchResponse) -> { final List<Map<String, String>> sessionIdList = new ArrayList<>(); searchResponse.ifPresent(response -> { final Terms terms = response.getAggregations().get(fessConfig.getIndexFieldSegment()); for (final Bucket bucket : terms.getBuckets()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
} // DELETE /api/admin/duplicatehost/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { duplicateHostService.getDuplicateHost(id).ifPresent(entity -> { try { duplicateHostService.delete(entity); saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
} final float importantContantLangBoost = fessConfig.getQueryBoostImportantContentLangAsDecimal().floatValue(); getQueryLanguages().ifPresent(langs -> stream(langs).of(stream -> stream.forEach(lang -> { defaultQuery.add( builder.apply(fessConfig.getIndexFieldTitle() + "_" + lang, fessConfig.getQueryBoostTitleLangAsDecimal().floatValue()));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
final LuceneQueryParser parser = new LuceneQueryParser(defaultField, analyzer); parser.setAllowLeadingWildcard(allowLeadingWildcard); LaRequestUtil.getOptionalRequest().ifPresent(req -> { if (req.getAttribute(Constants.DEFAULT_QUERY_OPERATOR) instanceof final String op) { parser.setDefaultOperator(Operator.valueOf(op)); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
})).status(Status.OK).result()); } // DELETE /api/admin/crawlinginfo/log/{id} @Execute public JsonResponse<ApiResult> delete$log(final String id) { crawlingInfoService.getCrawlingInfo(id).ifPresent(entity -> { try { crawlingInfoService.delete(entity); saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.9K bytes - Viewed (0)