- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 172 for delegation (0.12 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
// DELETE /api/admin/relatedcontent/setting/{id} /** * Deletes a specific related content setting. * * @param id the related content setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { relatedContentService.getRelatedContent(id).ifPresent(entity -> { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
// DELETE /api/admin/duplicatehost/setting/{id} /** * Deletes a specific duplicate host setting. * * @param id the duplicate host setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { duplicateHostService.getDuplicateHost(id).ifPresent(entity -> { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java
import java.util.List; import java.util.concurrent.atomic.AtomicInteger; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Tester to ensure forwarding wrapper works by delegating calls to the corresponding method with * the same parameters forwarded and return value forwarded back or exception propagated as is. * * <p>For example: * * {@snippet :
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 9.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingSortedMultiset.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// Get an existing item ProtwordsItem item = protwordsFile.get(1).get(); // Delete the item protwordsFile.delete(item); // Verify deletion protwordsFile.reload(null); PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 100); for (ProtwordsItem listItem : list) { assertFalse("test1".equals(listItem.getInput()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
* @param offset the offset into the array at which to start * @return the value found in the array in the form of a long */ static int load32(byte[] source, int offset) { // TODO(user): Measure the benefit of delegating this to LittleEndianBytes also. return (source[offset] & 0xFF) | ((source[offset + 1] & 0xFF) << 8) | ((source[offset + 2] & 0xFF) << 16) | ((source[offset + 3] & 0xFF) << 24); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
} // DELETE /api/admin/accesstoken/setting/{id} /** * Deletes an access token setting by ID. * * @param id the access token ID to delete * @return JSON response confirming deletion */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) { accessTokenService.getAccessToken(id).ifPresent(entity -> { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
}); } /** * Deletes job logs that have any of the specified job statuses. * * @param jobStatusList the list of job statuses to match for deletion */ public void deleteByJobStatus(final List<String> jobStatusList) { jobLogBhv.queryDelete(cb -> { cb.query().setJobStatus_InScope(jobStatusList); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
}); return redirect(getClass()); } /** * Deletes a key match. * * @param form the edit form * @return HTML response after deletion */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.7K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingSortedMultiset.java
* lead to unexpected behavior. In this case, you should override {@code add(Object)} as well, * either providing your own implementation, or delegating to the provided {@code standardAdd} * method. * * <p>The {@code standard} methods and any collection views they return are not guaranteed to be
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8K bytes - Viewed (0)