Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 301 for Document (0.34 sec)

  1. src/main/java/org/codelibs/fess/Constants.java

        /** Property key for suggest search log configuration. */
        public static final String SUGGEST_SEARCH_LOG_PROPERTY = "suggest.searchlog";
    
        /** Property key for suggest documents configuration. */
        public static final String SUGGEST_DOCUMENTS_PROPERTY = "suggest.document";
    
        /** Property key for suggest search log purge day configuration. */
        public static final String PURGE_SUGGEST_SEARCH_LOG_DAY_PROPERTY = "purge.suggest.searchlog.day";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/FacetInfo.java

        /** Maximum number of facet values to return */
        public Integer size;
    
        /** Minimum document count required for a facet value to be included */
        public Long minDocCount;
    
        /** Sort order for facet values (e.g., "count.desc", "term.asc") */
        public String sort;
    
        /** Value to use for documents that don't have the facet field */
        public String missing;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

        @ValidateTypeFailure
        public Integer offset;
    
        /**
         * The page number for pagination.
         */
        @ValidateTypeFailure
        public Integer pn;
    
        /**
         * Similar document hash for finding related documents.
         */
        @Size(max = 1000)
        public String sdh;
    
        /**
         * Parameter to control tracking of total hits in search results.
         */
        @Size(max = 100)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. docs/features/caching.md

    This will skip the normal events such as DNS, connecting to the network, and downloading the response body.
    
    As recommended by the HTTP RFC the max age of a document is defaulted to 10% of the 
    document's age at the time it was served based on "Last-Modified". Default expiration dates aren't used for URIs 
    containing a query.
    
     - CallStart
     - **CacheHit**
     - CallEnd
     
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("title", "Test Document");
    
            assertTrue(qrList.add(doc1));
            assertEquals(1, qrList.size());
            assertEquals(doc1, qrList.get(0));
    
            Map<String, Object> doc2 = new HashMap<>();
            doc2.put("title", "Test Document 2");
            qrList.add(0, doc2);
            assertEquals(2, qrList.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         */
        public void setForceStop(final boolean b) {
            forceStop.set(b);
        }
    
        /**
         * Generates a document ID.
         *
         * @param map A map of data for the document.
         * @return A unique document ID.
         */
        public String generateDocId(final Map<String, Object> map) {
            return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            queryContext.setQueryBuilder(initialQuery);
    
            // Add boolean query
            queryContext.addQuery(boolQuery -> {
                boolQuery.filter(QueryBuilders.termQuery("type", "document"));
                boolQuery.must(QueryBuilders.rangeQuery("date").gte("2024-01-01"));
            });
    
            // Add function score
            queryContext.addFunctionScore(list -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. LICENSES/vendor/github.com/containerd/errdefs/pkg/LICENSE

       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 05 11:36:39 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

    import org.codelibs.fess.util.SystemUtil;
    
    import jakarta.servlet.ServletContext;
    
    /**
     * Job class for generating thumbnails for documents in the search engine.
     * This job executes the ThumbnailGenerator process as a separate JVM process
     * to create thumbnail images for supported document types.
     */
    public class GenerateThumbnailJob extends ExecJob {
        /** Logger for this class. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_thumbnail.xml

    		<property name="generatorList">
    			["${path}/generate-thumbnail"]
    		</property>
    		<postConstruct name="addCondition">
    			<arg>"mimetype"</arg>
    			<arg>"application/vnd.openxmlformats-officedocument.wordprocessingml.document"</arg>
    		</postConstruct>
    		<postConstruct name="addCondition">
    			<arg>"mimetype"</arg>
    			<arg>"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"</arg>
    		</postConstruct>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Oct 11 21:34:52 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top