Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 86 for docid2 (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/resources/fess_indices/fess/doc.json

          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  2. 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)
  3. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            docs.add(doc1);
    
            final Map<String, Object> doc2 = new LinkedHashMap<>();
            doc2.put("url", "https://other.com/docs/guide");
            doc2.put("title", "Guide");
            doc2.put("content", "Guide content");
            doc2.put("lang", "ja");
            doc2.put("anchor", Arrays.asList("https://a.com", "https://b.com"));
            docs.add(doc2);
    
            setupMockComponents(docs);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsFavoriteLogBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setCreatedAt(toLocalDateTime(source.get("createdAt")));
                result.setDocId(DfTypeUtil.toString(source.get("docId")));
                result.setQueryId(DfTypeUtil.toString(source.get("queryId")));
                result.setUrl(DfTypeUtil.toString(source.get("url")));
                result.setUserInfoId(DfTypeUtil.toString(source.get("userInfoId")));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            if (configId == null) {
                final String docId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldId(), String.class);
                throw new FessSystemException("configId is null in document. docId: " + docId);
            }
            if (configId.length() < 2) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. AI_POLICY.md

    ## What contributors can expect from us
    
    1. **Human review, human decisions.** A real human developer will review your PR, provide feedback, and decide whether to accept or reject it. We may use AI tools to help us understand your changes, but a human is always in charge.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  9. src/main/resources/fess_indices/_aws/fess/doc.json

          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/query/QueryCommandTest.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
    - 10.1K bytes
    - Click Count (0)
Back to Top