- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 193 for delegation (0.52 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
} /** * Deletes a stopwords dictionary item by ID. * * @param dictId the dictionary ID * @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) {
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/admin/dict/stopwords/AdminDictStopwordsAction.java
} /** * Delete a stopwords entry. * * @param form the edit form containing the entry ID to delete * @return HTML response redirecting to the list page after successful deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS, form.dictId);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
assertTrue(true); } // Test FilePurgeVisitor postVisitDirectory public void test_FilePurgeVisitor_postVisitDirectory() throws IOException { // Test empty directory deletion logic File emptyDir = new File(tempDir, "empty"); emptyDir.mkdirs(); assertTrue(emptyDir.exists()); // Simulate the behavior of postVisitDirectory - delete empty directories
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
int NT_STATUS_OBJECT_PATH_SYNTAX_BAD = 0xC000003b; /** The process cannot access the file because it is being used by another process */ int NT_STATUS_SHARING_VIOLATION = 0xC0000043; /** The file is pending deletion */ int NT_STATUS_DELETE_PENDING = 0xC0000056; /** There are currently no logon servers available to service the logon request */ int NT_STATUS_NO_LOGON_SERVERS = 0xC000005e;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
// DELETE /api/admin/fileauth/setting/{id} /** * Deletes a specific file authentication setting. * * @param id the file authentication setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { fileAuthService.getFileAuthentication(id).ifPresent(entity -> { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilterStrategies.java
final AtomicLongArray data; private final LongAddable bitCount; LockFreeBitArray(long bits) { checkArgument(bits > 0, "data length is zero!"); // Avoid delegating to this(long[]), since AtomicLongArray(long[]) will clone its input and // thus double memory usage. this.data = new AtomicLongArray(Ints.checkedCast(LongMath.divide(bits, 64, RoundingMode.CEILING)));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMap.java
* behavior of {@link #putAll}, which can lead to unexpected behavior. In this case, you should * override {@code putAll} as well, either providing your own implementation, or delegating to the * provided {@code standardPutAll} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
} /** * Deletes a bad word setting by ID. * * @param id the ID of the bad word to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/badword/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableSet.java
* the behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should * override {@code addAll} as well, either providing your own implementation, or delegating to the * provided {@code standardAddAll} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
import jakarta.annotation.Resource; /** * Service class for managing file configuration operations. * This service provides CRUD operations for file crawler configurations, * including retrieval, storage, deletion, and search functionality. * It handles pagination and integrates with the file authentication system. */ public class FileConfigService extends FessAppService { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0)