Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 181 for doc_id (0.24 seconds)

  1. src/main/webapp/js/search.js

      });
    
      $result.on("mousedown", "a.link", function(e) {
        var $link = $(this);
        var docId = $link.attr("data-id");
        var url = $link.attr("href");
        var queryId = $("#queryId").val();
        var order = $link.attr("data-order");
        var rt = $("#rt").val();
        var goUrl = contextPath + "/go/?rt=" + rt + "&docId=" + docId + "&queryId=" + queryId + "&order=" + order;
    
        var hashIndex = url.indexOf("#");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  2. src/main/config/openapi/openapi-user.yaml

            '500':
              $ref: '#/components/responses/InternalServerError'
    
      /documents/{docId}/favorite:
        post:
          tags:
            - favorite
          summary: Set a favorite mark
          description: Set a favorite mark to the document
          operationId: setFavorite
          parameters:
            - name: docId
              in: path
              description: Document ID to be favorited
              required: true
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 09 06:31:27 GMT 2024
    - 21.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                @Override
                public String getIndexFieldId() {
                    return "_id";
                }
    
                @Override
                public String getIndexFieldDocId() {
                    return "doc_id";
                }
    
                @Override
                public String getIndexFieldBoost() {
                    return "boost";
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  4. 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>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                final List<String> docIds = indexes.stream()
                        .filter(i -> i > 0 && i <= searchResults.size())
                        .map(i -> getStringValue(searchResults.get(i - 1), "doc_id"))
                        .filter(StringUtil::isNotBlank)
                        .collect(Collectors.toList());
    
                return RelevanceEvaluationResult.withRelevantDocs(docIds, indexes);
            } catch (final Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

        @Test
        public void test_chatSourceFromMap() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "Test Title");
            doc.put("url", "https://example.com");
            doc.put("doc_id", "doc-123");
            doc.put("content_description", "Test snippet");
    
            final ChatSource source = new ChatSource(5, doc);
    
            assertEquals(5, source.getIndex());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            doc.put("doc_id", "doc123");
            doc.put("url_link", "http://proxy.example.com/file.doc");
    
            final ChatMessage.ChatSource source = new ChatMessage.ChatSource(1, doc);
            assertEquals("http://proxy.example.com/file.doc", source.getUrlLink());
            assertNull(source.getGoUrl());
    
            source.setGoUrl("/go/?rt=123&docId=doc123&queryId=q1&order=0");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            @Override
            public Integer getSuggestUpdateContentsLimitDocSizeAsInteger() {
                return 50000;
            }
    
            @Override
            public String getIndexFieldDocId() {
                return "doc_id";
            }
    
            @Override
            public String getIndexFieldClickCount() {
                return "click_count";
            }
    
            @Override
            public String getIndexDocumentSearchIndex() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/entity/ChatMessage.java

             * @return the document ID
             */
            public String getDocId() {
                return docId;
            }
    
            /**
             * Sets the document ID.
             *
             * @param docId the document ID
             */
            public void setDocId(final String docId) {
                this.docId = docId;
            }
    
            /**
             * Gets the source snippet.
             *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 04:52:31 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  10. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
Back to Top