Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 213 for unload (0.04 seconds)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                reload(updater);
            }
        }
    
        /**
         * Reloads the dictionary file.
         *
         * @param updater The updater.
         */
        protected void reload(final KuromojiUpdater updater) {
            try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) {
                reload(updater, curlResponse.getContentAsStream());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 11.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String ADAPTIVE_LOAD_CONTROL = "adaptive.load.control";
    
        /** The key of the configuration. e.g. 100 */
        String WEB_LOAD_CONTROL = "web.load.control";
    
        /** The key of the configuration. e.g. 100 */
        String API_LOAD_CONTROL = "api.load.control";
    
        /** The key of the configuration. e.g. 1 */
        String LOAD_CONTROL_MONITOR_INTERVAL = "load.control.monitor.interval";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  3. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                s3Client.putObject(request, RequestBody.fromInputStream(inputStream, size));
            } catch (final Exception e) {
                throw new StorageException("Failed to upload " + objectName, e);
            }
        }
    
        @Override
        public void downloadObject(final String objectName, final OutputStream outputStream) {
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                reload(updater);
            }
        }
    
        /**
         * Reloads the synonym dictionary from its source file.
         *
         * @param updater An optional updater to apply changes during reload.
         * @throws DictionaryException if the dictionary file cannot be read.
         */
        protected void reload(final SynonymUpdater updater) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java

    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for storage item operations in the admin interface.
     * This form handles file upload and management operations for storage items.
     */
    public class ItemForm {
    
        /** The path of the storage item */
        public String path;
    
        /**
         * Default constructor.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  6. src/packaging/common/scripts/postinst

        if command -v systemctl >/dev/null; then
            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using systemd"
            echo " sudo systemctl daemon-reload"
            echo " sudo systemctl enable fess.service"
            echo "### You can start fess service by executing"
            echo " sudo systemctl start fess.service"
    
        elif command -v chkconfig >/dev/null; then
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

            saveToken();
            return asHtml(path_AdminDesign_AdminDesignJsp).useForm(DesignForm.class);
        }
    
        /**
         * Upload a design file.
         * @param form The upload form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upload(final UploadForm form) {
            validate(form, messages -> {}, () -> asListHtml(form));
            verifyToken(this::asListHtml);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading bad word files to the Fess search engine.
     * This form is used in the admin interface to upload bad word dictionary files
     * that contain words to be filtered from search results.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing bad words to be uploaded.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  9. src/packaging/deb/init.d/fess

    	fi
    	log_end_msg 0
    	;;
      status)
    	status_of_proc -p $PID_FILE fess fess && exit 0 || exit $?
        ;;
      restart|force-reload)
    	if [ -f "$PID_FILE" ]; then
    		$0 stop
    		sleep 1
    	fi
    	$0 start
    	;;
      *)
    	log_success_msg "Usage: $0 {start|stop|restart|force-reload|status}"
    	exit 1
    	;;
    esac
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_download.jsp

                                            <la:link href="../uploadpage"
                                                     styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                                <i class="fa fa-upload" aria-hidden="true"></i>
                                                <la:message key="labels.elevate_word_link_upload"/>
                                            </la:link>
                                        </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 5.5K bytes
    - Click Count (0)
Back to Top