Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for create_item (0.04 sec)

  1. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

         * Field name for creation time timestamp.
         */
        protected static final String CREATE_TIME = "createTime";
    
        /**
         * Document type.
         */
        protected static final String _DOC = "_doc";
    
        /**
         * Fields that store timestamps.
         */
        protected static final String[] timestampFields = { LAST_MODIFIED, CREATE_TIME };
    
        /**
         * Hash function for generating IDs.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 34.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                    builder.setSize(maxDocumentCacheSize <= 0 ? 1 : maxDocumentCacheSize);
                    builder.addSort(OpenSearchAccessResult.CREATE_TIME, SortOrder.ASC);
                };
    
                final DocList docList = new DocList();
                final List<OpenSearchAccessResult> accessResultList = new ArrayList<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top