Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for doc_id (0.03 sec)

  1. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

                @Override
                public String getIndexFieldId() {
                    return "_id";
                }
    
                @Override
                public String getIndexFieldDocId() {
                    return "doc_id";
                }
    
                @Override
                public String getIndexFieldBoost() {
                    return "boost";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            @Override
            public String getIndexDocumentUpdateIndex() {
                return "fess.update";
            }
    
            @Override
            public String getIndexFieldDocId() {
                return "doc_id";
            }
    
            @Override
            public String getIndexFieldId() {
                return "_id";
            }
    
            @Override
            public String getIndexFieldVersion() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                @Override
                public String getIndexFieldId() {
                    return "id";
                }
    
                @Override
                public String getIndexFieldDocId() {
                    return "doc_id";
                }
    
                @Override
                public String getIndexFieldBoost() {
                    return "boost";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    index.field.config_id=config_id
    # Field name for expiration date in the index.
    index.field.expires=expires
    # Field name for URL in the index.
    index.field.url=url
    # Field name for document ID in the index.
    index.field.doc_id=doc_id
    # Field name for internal ID in the index.
    index.field.id=_id
    # Field name for version in the index.
    index.field.version=_version
    # Field name for sequence number in the index.
    index.field.seq_no=_seq_no
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. url */
        String INDEX_FIELD_URL = "index.field.url";
    
        /** The key of the configuration. e.g. doc_id */
        String INDEX_FIELD_doc_id = "index.field.doc_id";
    
        /** The key of the configuration. e.g. _id */
        String INDEX_FIELD_ID = "index.field.id";
    
        /** The key of the configuration. e.g. _version */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                // Override to avoid null pointer issues
                final String docid = (String) docMap.get("_id");
                if (docid == null) {
                    return "default.jpg";
                }
                return getImageFilename(docid);
            }
    
            @Override
            public void destroy() {
                // Override to avoid null pointer issues with thread
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         *
         * @param docId The document ID to retrieve
         * @param fields Array of field names to include in the result
         * @param userBean Optional user information for permission checking
         * @return Optional entity containing the document data if found
         */
        public OptionalEntity<Map<String, Object>> getDocumentByDocId(final String docId, final String[] fields,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                jsonPath = JsonPath.from(response.asString());
            }
    
            for (String docId : docIds) {
                given().contentType("application/json").delete(getEsUrl() + "/" + DOC_INDEX_NAME + "/" + docId);
            }
        }
    
        protected static List<Map<String, Object>> readCrawlingInfo(final String configId) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/cbean/cq/bs/BsFavoriteLogCQ.java

        }
    
        public void setDocId_Equal(String docId) {
            setDocId_Term(docId, null);
        }
    
        public void setDocId_Equal(String docId, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDocId_Term(docId, opLambda);
        }
    
        public void setDocId_Term(String docId) {
            setDocId_Term(docId, null);
        }
    
        public void setDocId_Term(String docId, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 42.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            UserInfoHelper userInfoHelper = new UserInfoHelper();
            MockletHttpServletRequest request = getMockRequest();
    
            String[] docIds = userInfoHelper.getResultDocIds("nonExistentQuery");
            assertEquals(0, docIds.length);
        }
    
        public void test_setters() {
            UserInfoHelper userInfoHelper = new UserInfoHelper();
    
            userInfoHelper.setResultDocIdsCacheSize(50);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top