Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 13 for content_description (0.07 seconds)

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

  1. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

                if (!switchFlg) {
                    boolean contains = doc.get("content_description").toString().toLowerCase().contains(query1);
                    if (!contains) {
                        switchFlg = true;
                    }
                } else {
                    assertTrue(doc.get("content_description").toString().toLowerCase().contains(query2), doc.toString());
                }
            }
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 19K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

            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());
            assertEquals("Test Title", source.getTitle());
    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)
  3. src/main/java/org/codelibs/fess/entity/ChatMessage.java

                }
                this.title = titleValue;
                this.url = toStringOrNull(doc.get("url"));
                this.docId = toStringOrNull(doc.get("doc_id"));
                this.snippet = toStringOrNull(doc.get("content_description"));
                this.urlLink = toStringOrNull(doc.get("url_link"));
            }
    
            private static String toStringOrNull(final Object value) {
                if (value == null) {
                    return null;
    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)
  4. src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java

                public String getIndexFieldAnchor() {
                    return "anchor";
                }
    
                @Override
                public String getResponseFieldContentDescription() {
                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  5. src/main/config/openapi/openapi-user.yaml

                            url:
                              type: string
                              format: uri
                              example: "https://fess.codelibs.org/"
                            content_description:
                              type: string
    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)
  6. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "Test Doc");
            doc.put("url", "http://example.com");
            doc.put("content", "<p>Hello <b>world</b></p>");
            doc.put("content_description", "description");
            documents.add(doc);
    
            final String result = client.testBuildContext(documents);
            assertTrue(result.contains("Hello world"));
            assertFalse(result.contains("<p>"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                public String getIndexFieldAnchor() {
                    return "anchor";
                }
    
                @Override
                public String getResponseFieldContentDescription() {
                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/fe.tld

      </function>
    
      <function>
        <description>Mask e-mail address.</description>
        <name>maskEmail</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String maskEmail(java.lang.String)</function-signature>
        <example>${fe:maskEmail(doc.content_description)}</example>
      </function>
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 18 11:38:54 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  9. src/main/resources/fess_config.properties

    index.field.virtual_host=virtual_host
    # Field name for content title in the response.
    response.field.content_title=content_title
    # Field name for content description in the response.
    response.field.content_description=content_description
    # Field name for URL link in the response.
    response.field.url_link=url_link
    # Field name for site path in the response.
    response.field.site_path=site_path
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                        </h3>
                                                        <div class="body col-sm-10">
                                                                ${doc.content_description}
                                                        </div>
                                                        <div class="body text-right">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.1K bytes
    - Click Count (0)
Back to Top