- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 325 for deltas (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java
throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.id), this::asEditHtml); }); return redirect(getClass()); } /** * Deletes a related content item. * * @param form the edit form containing the ID of the item to delete * @return HTML response redirecting to the list page after deletion */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
docs/pt/docs/help-fastapi.md
Você gosta do **FastAPI**? Você gostaria de ajudar o FastAPI, outros usários, e o autor? Ou você gostaria de obter ajuda relacionada ao **FastAPI**?? Existem métodos muito simples de ajudar (A maioria das ajudas podem ser feitas com um ou dois cliques). E também existem vários modos de se conseguir ajuda. ## Inscreva-se na newsletter
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 8.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
*/ @Override public int getCount(final String sessionId) { return getCount(builder -> builder.setQuery(QueryBuilders.termQuery(SESSION_ID, sessionId))); } /** * Deletes all access results for a specific session. * * @param sessionId The session ID. */ @Override public void delete(final String sessionId) { deleteBySessionId(sessionId); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
return asJson( new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(false).status(ApiResult.Status.OK).result()); } /** * Deletes a synonym dictionary item by ID. * * @param dictId the dictionary ID * @param id the ID of the synonym item to delete * @return JSON response indicating the deletion status */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
cmd/erasure-sets.go
} return s, nil } // cleanup ".trash/" folder every 5m minutes with sufficient sleep cycles, between each // deletes a dynamic sleeper is used with a factor of 10 ratio with max delay between // deletes to be 2 seconds. func (s *erasureSets) cleanupDeletedObjects(ctx context.Context) { timer := time.NewTimer(globalAPIConfig.getDeleteCleanupInterval()) defer timer.Stop()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
maxPurgeSize = fessConfig.getPageThumbnailPurgeMaxFetchSizeAsInteger(); searchEngineClient = ComponentUtil.getSearchEngineClient(); } /** * Deletes files marked for deletion after checking if they exist in the search index. */ protected void deleteFiles() { final Map<String, Path> deleteFileMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
fun initialize() { cache.initialize() } /** * Closes the cache and deletes all of its stored values. This will delete all files in the cache * directory including files that weren't created by the cache. */ @Throws(IOException::class) fun delete() { cache.delete() } /** * Deletes all values stored in the cache. In-flight writes to the cache will complete normally,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
} } /** * Applies delay based on the configured interval rules. * This method calculates the appropriate delay for the current time * and applies it by sleeping the current thread. */ public void delayByRules() { final long delay = getDelay(); if (delay > 0) { ThreadUtil.sleep(delay); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
/** * Updates an existing dictionary item. * * @param item the item to update */ public abstract void update(T item); /** * Deletes a dictionary item. * * @param item the item to delete */ public abstract void delete(T item); /** * A paginated list implementation that wraps another list and provides
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.id), this::asEditHtml); }); return redirect(getClass()); } /** * Deletes a path mapping based on the provided form data. * * @param form the edit form containing the path mapping ID to delete * @return HTML response redirecting to the path mapping list page */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0)