- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 153 for gelede (0.11 sec)
-
src/test/java/org/codelibs/curl/CurlTest.java
// ## Arrange ## final String url = "http://example.com"; // ## Act ## final CurlRequest request = Curl.delete(url); // ## Assert ## assertNotNull(request); assertEquals(Method.DELETE, request.method()); } @Test public void test_HeadFactoryMethod() { // ## Arrange ## final String url = "http://example.com";
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a role. * @param role The role to delete. */ public void delete(final Role role) { ComponentUtil.getLdapManager().delete(role); roleBhv.delete(role, op -> { op.setRefreshPolicy(Constants.TRUE); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
} /** * Delete a protected words entry by ID from the specified dictionary. * * @param dictId identifier of the dictionary * @param id identifier of the entry to delete * @return JSON response containing deletion result and entry ID */ // DELETE /api/admin/dict/protwords/setting/{dictId}/{id} @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
* association from all users that belong to this group. * * @param group the group entity to delete */ public void delete(final Group group) { ComponentUtil.getLdapManager().delete(group); groupBhv.delete(group, op -> { op.setRefreshPolicy(Constants.TRUE); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java
} /** * Deletes all suggest words from the system. * * @return JSON response indicating success or failure */ // DELETE /api/admin/suggest/all @Execute public JsonResponse<ApiResult> delete$all() { if (!suggestHelper.deleteAllWords()) { throwValidationErrorApi(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
} /** * Deletes a user setting by ID. * * @param id the ID of the user setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/user/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { final User entity = userService.getUser(id).orElseGet(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
* * @param id the ID of the related query to delete * @return JSON response confirming deletion status */ // DELETE /api/admin/relatedquery/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { relatedQueryService.getRelatedQuery(id).ifPresent(entity -> { try { relatedQueryService.delete(entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
plugin.xml
<property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" /> <target name="install.plugins"> <mkdir dir="${target.dir}" /> <delete dir="${plugins.dir}" /> <mkdir dir="${plugins.dir}" /> <!-- analysis-extension --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
}); } /** * Deletes a failure URL entity from the data store. * * @param failureUrl the FailureUrl entity to delete */ public void delete(final FailureUrl failureUrl) { failureUrlBhv.delete(failureUrl, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
* @param id the ID of the Kuromoji item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/kuromoji/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) { kuromojiService.getKuromojiItem(dictId, id).ifPresent(entity -> { kuromojiService.delete(dictId, entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0)