Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 301 for Document (0.08 sec)

  1. src/main/java/org/codelibs/fess/score/ScoreBooster.java

         * @return The number of processed documents.
         */
        public abstract long process();
    
        /**
         * Enables this score booster.
         */
        protected void enable() {
            final ScoreUpdater scoreUpdater = ComponentUtil.getComponent("scoreUpdater");
            scoreUpdater.addScoreBooster(this);
        }
    
        /**
         * Updates the score of documents.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for boost document management with pagination support.
     * Provides pagination functionality for boost document rule lists.
     */
    public class BoostDocPager implements Serializable {
        private static final long serialVersionUID = 1L;
    
        /** Default current page number. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * File transformer implementation for the Fess search engine.
     * This transformer handles file-based document transformation and content extraction
     * using the Fess file transformation process with support for various file types.
     *
     * <p>It extends AbstractFessFileTransformer to provide specialized file processing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java

            verifyToken(() -> asHtml(path_AdminSuggest_AdminSuggestJsp).useForm(SuggestForm.class));
            return redirect(getClass());
        }
    
        /**
         * Deletes document-based suggest words from the suggest index.
         *
         * @return HTML response redirecting to the index page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteDocumentWords() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/security.js

    Loaded&render=explicit"+(d.lang?"&hl="+d.lang:""),f=document.createElement("script");f.type="text/javascript",f.async=!0,f.defer=!0,f.src=e,document.getElementsByTagName("body")[0].appendChild(f)}};b.reCaptchaLoaded=function(b){b&&"object"==typeof b&&b.length||(b=a("form")),b.each(function(){var b=a(this),c=b.get(0).validationConfig||b.context.validationConfig||!1;c&&a('[data-validation~="recaptcha"]',b).each(function(){var d=a(this),e=document.createElement("DIV"),f=c.reCaptchaSiteKey||d.valAtt...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 10.5K bytes
    - Viewed (1)
  6. src/main/resources/fess_message_fr.properties

    errors.target_file_does_not_exist = Le fichier {0} n'existe pas.
    errors.failed_to_delete_file = Échec de la suppression du fichier {0}.
    errors.docid_not_found = ID de document non trouvé. Cause : {0}
    errors.document_not_found = L'URL de l'ID de document est introuvable. Cause : {0}
    errors.not_load_from_server = Impossible de charger depuis ce serveur. Cause : {0}
    errors.failed_to_start_job = Échec du démarrage d'une tâche : {0}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(QueryFieldConfig.class);
    
        /** Field name for document score in search results */
        public static final String SCORE_FIELD = "score";
    
        /** Field name for OpenSearch document score */
        public static final String DOC_SCORE_FIELD = "_score";
    
        /** Field name for site information in search results */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.dict_stopwords_button_download = Télécharger
    labels.dict_stopwords_button_upload = Téléverser
    labels.dict_stopwords_file = Fichier de mots vides
    labels.boost_document_rule_configuration=Boost de document
    labels.boost_document_rule_title_details=Boost de document
    labels.boost_document_rule_list_url_expr=Condition
    labels.boost_document_rule_url_expr=Condition
    labels.boost_document_rule_boost_expr=Expression de boost
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    return OptionalEntity.empty();
                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final Map<String, Object> document = indexingHelper.getDocument(client, "999", new String[] { "title" });
            assertNull(document);
        }
    
        public void test_getDocumentListByQuery_withNullFields() {
            documentSizeByQuery = 1L;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/documents/BulkBody.java

     */
    package org.codelibs.fess.app.web.api.admin.documents;
    
    import java.util.List;
    import java.util.Map;
    
    /**
     * Request body for bulk document operations containing a list of documents.
     */
    public class BulkBody {
    
        /**
         * Creates a new instance of BulkBody.
         */
        public BulkBody() {
            // Default constructor
        }
    
        /**
         * List of documents to be processed in bulk operations.
         */
    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