Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for deletions (0.32 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            }
        }
    
        protected boolean deleteDocument(final DataStoreParams paramMap, final Map<String, Object> dataMap) {
    
            if (logger.isDebugEnabled()) {
                logger.debug("Deleting {}", dataMap);
            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            // required check
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    success.upload_file_to_storage=Uploaded {0}
    success.sso_logout=Logged out.
    success.update_storage_tags=Updated tags for {0}.
    
    success.crud_create_crud_table=Created data.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            for (final String sessionId : finishedSessionIdList) {
                final long execTime2 = systemHelper.getCurrentTimeAsLong();
                if (logger.isDebugEnabled()) {
                    logger.debug("Deleting document data: {}", sessionId);
                }
                deleteBySessionId(sessionId);
                if (logger.isDebugEnabled()) {
                    logger.debug("Deleted {} documents. The execution time is {}ms.", sessionId,
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Installing {0} plugin. */
        public static final String SUCCESS_install_plugin = "{success.install_plugin}";
    
        /** The key of the message: Deleting {0} plugin. */
        public static final String SUCCESS_delete_plugin = "{success.delete_plugin}";
    
        /** The key of the message: Uploaded {0} */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/popper.min.js.map

    '';\n    this.popper.style.bottom = '';\n    this.popper.style.willChange = '';\n    this.popper.style[getSupportedPropertyName('transform')] = '';\n  }\n\n  this.disableEventListeners();\n\n  // remove the popper if user explicitly asked for the deletion on destroy\n  // do not use `remove` because IE11 doesn't support it\n  if (this.options.removeOnDestroy) {\n    this.popper.parentNode.removeChild(this.popper);\n  }\n  return this;\n}\n","/**\n * Get the window associated with the element\n * @argument...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  6. src/packaging/common/scripts/postrm

        fi
    
        if command -v update-rc.d >/dev/null; then
            update-rc.d fess remove >/dev/null || true
        fi
    fi
    
    if [ "$REMOVE_DIRS" = "true" ]; then
        if [ -d "$PID_DIR" ]; then
            echo -n "Deleting PID directory..."
            rm -rf "$PID_DIR" && echo " OK" || echo " ERROR: unable to delete directory [$PID_DIR]"
        fi
    fi
    
    if [ "$REMOVE_USER_AND_GROUP" = "true" ]; then
        if id "$FESS_USER" > /dev/null 2>&1 ; then
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    success.upload_file_to_storage=Uploaded {0}
    success.sso_logout=Logged out.
    success.update_storage_tags=Updated tags for {0}.
    
    success.crud_create_crud_table=Created data.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

            try (Stream<Path> walk = Files.walk(dir, FileVisitOption.FOLLOW_LINKS)) {
                walk.sorted(Comparator.reverseOrder()).forEach(f -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Deleting {}", f);
                    }
                    try {
                        Files.delete(f);
                    } catch (final IOException e) {
                        logger.warn("Failed to delete {}", f, e);
                    }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        }
    
        protected void delete(final String entryDN, final Supplier<Hashtable<String, String>> envSupplier) {
            try (DirContextHolder holder = getDirContext(envSupplier)) {
                logger.debug("Deleting {}", entryDN);
                holder.get().destroySubcontext(entryDN);
            } catch (final NamingException e) {
                throw new LdapOperationException("Failed to delete " + entryDN, e);
            }
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
Back to top