Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 424 for deleteMe (0.04 sec)

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

                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * 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)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                urlFilterService.delete(sid);
            } catch (final Exception e) {
                logger.warn("Failed to delete UrlFilter for {}", sid, e);
            }
    
            try {
                // clear queue
                urlQueueService.clearCache();
                urlQueueService.delete(sid);
            } catch (final Exception e) {
                logger.warn("Failed to delete UrlQueue for {}", sid, e);
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         */
        public void delete(final DataConfig dataConfig) {
            dataConfigBhv.delete(dataConfig, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
        }
    
        /**
         * Retrieves a data configuration by its unique identifier.
         *
         * @param id the unique identifier of the data configuration
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/RecursiveDeleteOption.java

       *
       * <p><b>Warning:</b> On a file system that supports symbolic links, it is possible for an
       * insecure recursive delete to delete files and directories that are <i>outside</i> the directory
       * being deleted. This can happen if, after checking that a file is a directory (and not a
       * symbolic link), that directory is deleted and replaced by a symbolic link to an outside
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

        }
    
        /**
         * Deletes documents matching the given query from the search index.
         *
         * @param body the search parameters defining which documents to delete
         * @return JSON response containing the count of deleted documents
         */
        // DELETE /api/admin/searchlist/query
        @Execute
        public JsonResponse<ApiResult> delete$query(final SearchBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/GroupService.java

            });
    
        }
    
        /**
         * Deletes a group from both LDAP and the database, and removes the group
         * 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)
  8. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

        }
    
        /**
         * Deletes a related content entity from the database.
         * After deletion, updates the related content helper to refresh the cache.
         *
         * @param relatedContent the RelatedContent entity to delete
         */
        public void delete(final RelatedContent relatedContent) {
    
            relatedContentBhv.delete(relatedContent, 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.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

            return fileConfigList;
        }
    
        /**
         * Deletes a file configuration and its associated authentication records.
         * This method removes the file configuration from the database and also
         * deletes all related file authentication entries.
         *
         * @param fileConfig the file configuration to be deleted
         */
        public void delete(final FileConfig fileConfig) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                @Override
                public long purge(long expiry) {
                    // Just count files that would be deleted
                    return 1L;
                }
            };
            testManager.baseDir = tempDir;
    
            long result = testManager.purge(1L);
            assertTrue(result >= 0); // Count of deleted files
        }
    
        // Test FilePurgeVisitor
        public void test_FilePurgeVisitor() throws IOException {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top