- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 569 for gelede (0.04 sec)
-
src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp
</button> <c:if test="${editable}"> <button type="button" class="btn btn-danger" name="delete" data-toggle="modal" data-target="#confirmToDelete" value="<la:message key="labels.crawling_info_button_delete" />">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
* * @param dictId the dictionary ID * @param id the ID of the stemmer override item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/stemmerOverride/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
internal/lru/lru.go
func (c *LRU[K, V]) Purge() { c.mu.Lock() defer c.mu.Unlock() for k, v := range c.items { if c.onEvict != nil { c.onEvict(k, v.Value) } delete(c.items, k) } for _, b := range c.buckets { for _, ent := range b.entries { delete(b.entries, ent.Key) } } c.evictList.Init() } // Add adds a value to the cache. Returns true if an eviction occurred.
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 12.5K bytes - Viewed (0) -
docs/features/caching.md
## Cache directory The cache directory must be exclusively owned by a single instance. Deleting the cache when it is no longer needed can be done. However this may delete the purpose of the cache which is designed to persist between app restarts. ```kotlin cache.delete() ``` ## Pruning the Cache Pruning the entire Cache to clear space temporarily can be done using evictAll. ```kotlin cache.evictAll() ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 3.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
- [Deployments](#deployments) - [kubectl rolling-update: < v1.4.0 client vs >=v1.4.0 cluster](#kubectl-rolling-update--v140-client-vs-v140-cluster) - [kubectl delete: < v1.4.0 client vs >=v1.4.0 cluster](#kubectl-delete--v140-client-vs-v140-cluster) - [DELETE operation in REST API](#delete-operation-in-rest-api) - [Action Required Before Upgrading](#action-required-before-upgrading) - [optionally, remove the old secret](#optionally-remove-the-old-secret)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRoleType.java
sb.append(dm).append(sortOrder); sb.append(dm).append(updatedBy); sb.append(dm).append(updatedTime); sb.append(dm).append(value); if (sb.length() > dm.length()) { sb.delete(0, dm.length()); } sb.insert(0, "{").append("}"); return sb.toString(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
}); } /** * Delete a design file. * @param form The file access form. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final FileAccessForm form) { getTargetFile(form.fileName).ifPresent(file -> { if (!file.delete()) { logger.error("Failed to delete {}", file.getAbsolutePath());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/CrudMode.java
/** * Mode for editing an existing record. */ public static final int EDIT = 2; /** * Mode for deleting a record. */ public static final int DELETE = 3; /** * Mode for viewing record details. */ public static final int DETAILS = 4; /** * Protected constructor to prevent instantiation. */ protected CrudMode() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
logger.warn("Failed to execute command for thumbnail ID: {}", thumbnailId); if (outputFile.isFile() && !outputFile.delete()) { logger.warn("Failed to delete output file: {}", outputFile.getAbsolutePath()); } return false; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java
final KuromojiItem kuromojiItem1 = itemList1.get(0); kuromojiFile.delete(kuromojiItem1); final PagingList<KuromojiItem> itemList2 = kuromojiFile.selectList(0, 20); assertEquals(2, itemList2.size()); final KuromojiItem kuromojiItem2 = itemList2.get(1); kuromojiFile.delete(kuromojiItem2); final PagingList<KuromojiItem> itemList3 = kuromojiFile.selectList(0,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.3K bytes - Viewed (0)