Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 301 for Document (0.04 sec)

  1. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            }
            return childUrlSet;
        }
    
        /**
         * Retrieves child URLs for a given document ID from the search engine index.
         * This method queries the search engine for child documents and extracts their URLs.
         *
         * @param searchEngineClient the search engine client to query
         * @param id the parent document ID to find children for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            return null;
        }
    
        /**
         * Processes a document through the ingest pipeline if an ingest factory is available.
         * Applies all configured ingesters to transform and enrich the document data.
         *
         * @param accessResult the access result containing document metadata
         * @param map the document data map to process
         * @return the processed document map after applying all ingesters
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            final Map<String, Object> document = new HashMap<>();
            document.put("title", "");
            assertEquals("", viewHelper.getContentTitle(document));
    
            document.put("title", "111");
            assertEquals("111", viewHelper.getContentTitle(document));
    
            document.put("title", "aaa");
            assertEquals("<strong>aaa</strong>", viewHelper.getContentTitle(document));
    
            document.put("title", "AAA");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

        }
    
        /**
         * The search query used to find the document.
         * Optional field with maximum length of 1000 characters.
         */
        @Size(max = 1000)
        public String q;
    
        /**
         * The document ID of the document to delete.
         * Required field for identifying the specific document.
         */
        @Required
        public String docId;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            List<Map<String, Object>> documents = new ArrayList<>();
            for (int i = 11; i <= 20; i++) {
                Map<String, Object> doc = new HashMap<>();
                doc.put("id", String.valueOf(i));
                doc.put("title", "Document " + i);
                doc.put("score", 1.0 - (i * 0.01));
                documents.add(doc);
            }
            searchRenderData.setDocumentItems(documents);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchHelper.java

     * This class provides comprehensive search functionality including document search,
     * scroll search, and bulk operations. It handles search request parameter processing,
     * query building, response formatting, and search log management.
     *
     * Key features:
     * - Document search with pagination and faceting
     * - Scroll search for large result sets
     * - Document retrieval by ID
     * - Bulk document updates
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/adminlte.min.js

    s(this.options.maximizeIcon)},t.fullscreen=function(){document.documentElement.requestFullscreen?document.documentElement.requestFullscreen():document.documentElement.webkitRequestFullscreen?document.documentElement.webkitRequestFullscreen():document.documentElement.msRequestFullscreen&&document.documentElement.msRequestFullscreen()},t.windowed=function(){document.exitFullscreen?document.exitFullscreen():document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&doc...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String CRAWLER_DOCUMENT_MAX_SITE_LENGTH = "crawler.document.max.site.length";
    
        /** The key of the configuration. e.g. UTF-8 */
        String CRAWLER_DOCUMENT_SITE_ENCODING = "crawler.document.site.encoding";
    
        /** The key of the configuration. e.g. unknown */
        String CRAWLER_DOCUMENT_UNKNOWN_HOSTNAME = "crawler.document.unknown.hostname";
    
        /** The key of the configuration. e.g. false */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/SearchForm.java

    /**
     * The search form for Boost Document.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The URL expression field for boost document configuration.
         */
        public String urlExpr;
    
        /**
         * The boost expression field for document scoring.
         */
        public String boostExpr;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

            }
        }
    
        /**
         * Deletes old documents that have the same URL but different document IDs
         * as the documents in the provided list. This prevents duplicate documents
         * from accumulating in the index.
         *
         * @param searchEngineClient the search engine client to use for deletion
         * @param docList the list of new documents to check against
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
Back to top