Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for docid1 (0.05 sec)

  1. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsFavoriteLogCB.java

                doColumn("_id");
            }
    
            public void columnCreatedAt() {
                doColumn("createdAt");
            }
    
            public void columnDocId() {
                doColumn("docId");
            }
    
            public void columnQueryId() {
                doColumn("queryId");
            }
    
            public void columnUrl() {
                doColumn("url");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java

         */
        @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)
  3. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                            <label for="doc.doc_id" class="col-sm-3 text-sm-right col-form-label">doc_id</label>
                                            <div class="col-sm-9">
                                                    ${f:h(doc.doc_id)}
                                                <la:hidden styleId="doc.doc_id" property="doc.doc_id"/>
                                            </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                        }
                        return DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class);
                    }).forEach(docId -> {
                        boolQuery.should(QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), docId));
                    });
    
                    if (boolQuery.hasClauses()) {
                        if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsClickLogCB.java

                doColumn("_id");
            }
    
            public void columnUrlId() {
                doColumn("urlId");
            }
    
            public void columnDocId() {
                doColumn("docId");
            }
    
            public void columnOrder() {
                doColumn("order");
            }
    
            public void columnQueryId() {
                doColumn("queryId");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.setForceStop(false);
            assertFalse(systemHelper.isForceStop());
        }
    
        public void test_generateDocId() {
            final String docId = systemHelper.generateDocId(Collections.emptyMap());
            assertNotNull(docId);
            assertEquals(32, docId.length());
        }
    
        public void test_abbreviateLongText() {
            assertEquals("", systemHelper.abbreviateLongText(""));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        public void test_updateDocument_existingDocId() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("doc_id", "existing_id");
            doc.put("url", "http://example.com");
    
            indexUpdater.updateDocument(doc);
    
            assertEquals("existing_id", doc.get("doc_id"));
        }
    
        // Test addBoostValue
        public void test_addBoostValue() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsClickLogBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setUrlId(DfTypeUtil.toString(source.get("urlId")));
                result.setDocId(DfTypeUtil.toString(source.get("docId")));
                result.setOrder(DfTypeUtil.toInteger(source.get("order")));
                result.setQueryId(DfTypeUtil.toString(source.get("queryId")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("title", "Doc1");
            Map<String, Object> doc2 = new HashMap<>();
            doc2.put("title", "Doc2");
            documentList.add(doc1);
    
            QueryResponseList qrList = new QueryResponseList(documentList, 0, 10, 0);
    
            assertTrue(qrList.contains(doc1));
            assertFalse(qrList.contains(doc2));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            // Test with normal values
            List<Map<String, Object>> documentList = new ArrayList<>();
            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("title", "Test Document 1");
            doc1.put("content", "This is test content");
            documentList.add(doc1);
    
            long allRecordCount = 100L;
            String allRecordCountRelation = "eq";
            long queryTime = 50L;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
Back to top