Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 398 for gelede (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

        }
    
        /**
         * Deletes a request header configuration from the database.
         *
         * @param requestHeader the request header configuration to delete
         */
        public void delete(final RequestHeader requestHeader) {
    
            requestHeaderBhv.delete(requestHeader, 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.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java

         * @param user The user to update.
         */
        void update(User user);
    
        /**
         * Deletes a user from the authentication chain.
         * @param user The user to delete.
         */
        void delete(User user);
    
        /**
         * Changes the password for the specified user.
         * @param username The username for which to change the password.
         * @param password The new password.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            // Clean up temp files
            if (tempOutputFile != null && tempOutputFile.exists()) {
                tempOutputFile.delete();
            }
            if (tempDir != null) {
                Files.walk(tempDir).sorted((a, b) -> b.compareTo(a)).forEach(path -> {
                    try {
                        Files.delete(path);
                    } catch (IOException e) {
                        // Ignore cleanup errors
                    }
                });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/role/admin_role_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.crud_button_delete" />">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        }
    
        /**
         * Deletes a scheduler setting by ID.
         *
         * @param id the ID of the scheduler setting to delete
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/scheduler/setting/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String id) {
            final ScheduledJob entity = scheduledJobService.getScheduledJob(id).orElseGet(() -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Delete a key match.
         *
         * @param keyMatch The key match to delete.
         */
        public void delete(final KeyMatch keyMatch) {
    
            keyMatchBhv.delete(keyMatch, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            // Load data first
            protwordsFile.reload(null);
    
            // 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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  8. okhttp-testing-support/src/main/kotlin/okhttp3/okio/LoggingFilesystem.kt

        dir: Path,
        mustCreate: Boolean,
      ) {
        log("createDirectory($dir)")
    
        super.createDirectory(dir, mustCreate)
      }
    
      override fun delete(
        path: Path,
        mustExist: Boolean,
      ) {
        log("delete($path)")
    
        super.delete(path, mustExist)
      }
    
      override fun sink(
        path: Path,
        mustCreate: Boolean,
      ): Sink {
        log("sink($path)")
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            // Test with multiple permissions
            testUser.setPermissions(new String[] { "read", "write", "delete" });
            permissions = fessUserBean.getPermissions();
            assertEquals(3, permissions.length);
            assertEquals("read", permissions[0]);
            assertEquals("write", permissions[1]);
            assertEquals("delete", permissions[2]);
        }
    
        public void test_getRoles() {
            // Test with empty roles
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

        }
    
        /**
         * Deletes a user.
         *
         * @param form the edit form containing the ID of the user to delete
         * @return HTML response redirecting to the list page after deletion
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse delete(final EditForm form) {
            verifyCrudMode(form.crudMode, CrudMode.DETAILS);
            validate(form, messages -> {}, this::asDetailsHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
Back to top