- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 398 for gelede (0.91 sec)
-
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
accessTokenBhv.insertOrUpdate(accessToken, op -> op.setRefreshPolicy(Constants.TRUE)); } /** * Delete the access token. * @param accessToken The access token. */ public void delete(final AccessToken accessToken) { accessTokenBhv.delete(accessToken, op -> op.setRefreshPolicy(Constants.TRUE)); } /** * Set up the list condition.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
* @param id the ID of the stopwords item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/stopwords/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) { stopwordsService.getStopwordsItem(dictId, id).ifPresent(entity -> { stopwordsService.delete(dictId, entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
})).status(Status.OK).result()); } // DELETE /api/admin/joblog/log/{id} /** * Deletes a specific job log. * Useful for cleaning up old job execution records. * * @param id the job log ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$log(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.popular_word_word_enabled=Popular Word Response labels.supported_search_web=Web labels.supported_search_none=Unavailable labels.purge_search_log_day=Delete old search logs labels.purge_job_log_day=Delete old job logs labels.purge_user_info_day=Delete old user logs labels.purge_by_bots=Bot names to delete logs labels.log_level=Log Level labels.csv_file_encoding=CSV File Encoding labels.notification_to=Notification Mail
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
} /** * Creates a new CurlRequest with the DELETE method for the specified URL. * * @param url the URL to which the DELETE request will be sent * @return a CurlRequest object configured with the DELETE method and the specified URL */ public static CurlRequest delete(final String url) { return new CurlRequest(Method.DELETE, url); } /**
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
try { outputFile.delete(); generator.setCommandList(Collections.singletonList("echo test")); generator.generate(null, outputFile); assertTrue(true); } catch (final Exception e) { assertTrue(true); } finally { if (outputFile.exists()) { outputFile.delete(); } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/resources/log4j2.xml
</Policies> <DefaultRolloverStrategy fileIndex="max" min="1" max="${backup.max.history}" compressionLevel="9"> <Delete basePath="${log.file.basedir}"> <IfFileName glob="${domain.name}*.log.gz" /> <IfLastModified age="P${backup.max.age}D" /> </Delete> </DefaultRolloverStrategy> </RollingFile> <RollingFile name="AuditFile" fileName="${log.file.basedir}/audit.log"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:17:33 UTC 2023 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
// updated file addDocument(localParams, dataMap); } else if (getParamValue(localParams, "event.delete", "delete").equals(eventType)) { // deleted file deleteDocument(localParams, dataMap); } else {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
asyncImport(fileName, tempFile); } catch (final IOException e) { logger.warn("Failed to create a temp file.", e); if (tempFile.exists() && !tempFile.delete()) { logger.warn("Failed to delete {}.", tempFile.getAbsolutePath()); } throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, fileName), this::asListHtml); }
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/app/web/admin/dataconfig/AdminDataconfigAction.java
}); return redirect(getClass()); } /** * Delete a data config. * @param form The edit form. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS); validate(form, messages -> {}, this::asDetailsHtml);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0)