Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for indexing (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

         * and performs bulk indexing operations with proper error handling.
         *
         * @param searchEngineClient the search engine client to use for indexing
         * @param docList the list of documents to be indexed
         * @throws SearchEngineClientException if the bulk indexing operation fails
         */
        public void sendDocuments(final SearchEngineClient searchEngineClient, final DocList docList) {
            if (docList.isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            // Add first document - should trigger indexing because cache size is 1
            Map<String, Object> dataMap1 = new HashMap<>();
            dataMap1.put("url", "http://example.com/test1");
            indexUpdateCallback.store(paramMap, dataMap1);
            assertEquals(1, indexingHelper.sendDocumentsCalled);
    
            // Add second document - should trigger indexing again
            Map<String, Object> dataMap2 = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                }
            });
            refresh();
        }
    
        /**
         * Indexes suggest data from documents.
         *
         * @param success A callback for successful indexing.
         * @param error   A callback for indexing errors.
         */
        public void indexFromDocuments(final Consumer<Boolean> success, final Consumer<Throwable> error) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt

                  // pseudo headers. Literal Header Field without Indexing - Indexed Name.
                  writeInt(headerNameIndex, PREFIX_4_BITS, 0)
                  writeByteString(value)
                }
                else -> {
                  // Literal Header Field with Incremental Indexing - Indexed Name.
                  writeInt(headerNameIndex, PREFIX_6_BITS, 0x40)
                  writeByteString(value)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

    import org.codelibs.fess.util.DocumentUtil;
    import org.codelibs.fess.util.MemoryUtil;
    
    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.
     */
    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. src/main/java/org/codelibs/fess/Constants.java

     * This class provides constants for system configuration, crawling and indexing defaults, user agent strings,
     * status values, field names, date/time formats, authentication types, and various reserved words and patterns.
     *
     * <p>Key constant categories include:</p>
     * <ul>
     * <li>System configuration property keys</li>
     * <li>Default values for crawling and indexing operations</li>
     * <li>User agent strings and patterns for web crawling</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        protected String[] sortFields;
    
        /** Set of fields that are allowed in API responses */
        protected Set<String> apiResponseFieldSet;
    
        /** Set of fields that are not analyzed during indexing */
        protected Set<String> notAnalyzedFieldSet;
    
        /** List of additional default fields with their boost values */
        protected List<Pair<String, Float>> additionalDefaultList = new ArrayList<>();
    
        /**
    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/java/org/codelibs/fess/indexer/IndexUpdater.java

     * <li>Transforms document data using appropriate transformers</li>
     * <li>Applies document boosting rules and click/favorite count enhancements</li>
     * <li>Sends processed documents to the search engine for indexing</li>
     * <li>Manages cleanup of processed crawler session data</li>
     * </ul>
     *
     * <p>The updater runs continuously until crawling is finished and all documents are processed.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_message.properties

    errors.failed_to_change_password=Failed to change your password.
    errors.unknown_version_for_upgrade=Unknown version for upgrade.
    errors.failed_to_upgrade_from=Failed to upgrade from {0}.
    errors.failed_to_reindex=Failed to start re-indexing from {0} to {1}.
    errors.failed_to_read_request_file=Failed to read a request file: {0}
    errors.invalid_header_for_request_file=Invalid header line: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_en.properties

    errors.failed_to_change_password=Failed to change your password.
    errors.unknown_version_for_upgrade=Unknown version for upgrade.
    errors.failed_to_upgrade_from=Failed to upgrade from {0}.
    errors.failed_to_reindex=Failed to start re-indexing from {0} to {1}.
    errors.failed_to_read_request_file=Failed to read a request file: {0}
    errors.invalid_header_for_request_file=Invalid header line: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top