Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 213 for dangling (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

    import jakarta.servlet.http.HttpSession;
    
    /**
     * Abstract base class for search-related actions in the Fess search application.
     * Provides common functionality for search operations, including search form handling,
     * label management, user authentication, and search result processing.
     *
     * This class extends FessBaseAction and serves as the foundation for all search-related
     * web actions in the application.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java

    import java.util.HashMap;
    import java.util.Map;
    
    import org.apache.logging.log4j.core.config.plugins.validation.constraints.Required;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for handling tag operations in storage management.
     * This form represents tag data including path, name, and associated metadata.
     */
    public class TagForm {
    
        /**
         * The file or directory path associated with this tag.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/QueryParseException.java

    import org.apache.lucene.queryparser.classic.ParseException;
    
    /**
     * Exception thrown when a query parsing error occurs.
     * This exception wraps Lucene's ParseException to provide consistent error handling
     * within the Fess search framework.
     *
     */
    public class QueryParseException extends FessSystemException {
    
        /** Serial version UID for serialization compatibility */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/WebApiResponse.java

    import jakarta.servlet.http.HttpServletResponseWrapper;
    
    /**
     * Wrapper for HTTP servlet responses in web API context.
     * This class extends HttpServletResponseWrapper to provide custom response handling
     * for web API responses, including dummy output stream management.
     */
    public class WebApiResponse extends HttpServletResponseWrapper {
    
        /**
         * Constructs a WebApiResponse with the specified response.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Implementation of IndexUpdateCallback for handling document indexing operations.
     * This class manages the process of updating the search index with documents from
     * data stores, including bulk operations, document transformation, and error handling.
     */
    public class IndexUpdateCallbackImpl implements IndexUpdateCallback {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o classificationUndefinedHandlingType: (NotRequired - Default LOGGING)
        #  The handling type when undefined classification is found.
        #
        #   EXCEPTION - throws exception when found
        #   LOGGING   - logging only when found (exception if ReplaceSchema)
        #   ALLOWED   - no action
        #
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ds.callback;
    
    import java.util.Map;
    
    import org.codelibs.fess.entity.DataStoreParams;
    
    /**
     * Callback interface for handling index update operations during data store processing.
     * This interface provides methods for storing documents, tracking processing metrics,
     * and committing changes to the search index.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/BoostQueryCommand.java

    import org.codelibs.fess.exception.InvalidQueryException;
    import org.lastaflute.core.message.UserMessages;
    import org.opensearch.index.query.QueryBuilder;
    
    /**
     * Query command implementation for handling Boost queries.
     * Processes Lucene BoostQuery objects and applies boost factors.
     */
    public class BoostQueryCommand extends QueryCommand {
        /**
         * Default constructor for BoostQueryCommand.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/StorageException.java

     */
    package org.codelibs.fess.exception;
    
    /**
     * This exception is thrown when a storage-related error occurs.
     * It can be used to wrap underlying storage exceptions, providing a
     * consistent error handling mechanism for storage operations.
     */
    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/DownloadBody.java

    import org.codelibs.fess.app.web.admin.elevateword.DownloadForm;
    
    /**
     * Download body for elevate word API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading elevate word configurations via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top