Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for title (0.41 sec)

  1. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

            queryMap.values().stream().distinct().forEach(facetInfo::addQuery);
        }
    
        public String getTitle() {
            return title;
        }
    
        public void setTitle(final String title) {
            this.title = title;
        }
    
        public Map<String, String> getQueryMap() {
            return queryMap;
        }
    
        public void addQuery(final String key, final String query) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            languageHelper.langFields = new String[] { "title", "content" };
        }
    
        public void test_createScript() {
            Map<String, Object> doc = new HashMap<>();
            assertEquals("aaa", languageHelper.createScript(doc, "aaa").getIdOrCode());
    
            doc.put("lang", "ja");
            assertEquals("aaa;ctx._source.title_ja=ctx._source.title;ctx._source.content_ja=ctx._source.content",
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/QueryCommandTest.java

            assertQueryBuilder("title", "test", MatchPhraseQueryBuilder.class);
            assertQueryBuilder("title", "a", MatchPhraseQueryBuilder.class);
            assertQueryBuilder("title", "あ", PrefixQueryBuilder.class);
            assertQueryBuilder("title", "ああ", MatchPhraseQueryBuilder.class);
            assertQueryBuilder("title", "ア", PrefixQueryBuilder.class);
            assertQueryBuilder("title", "アア", MatchPhraseQueryBuilder.class);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String JOB_TEMPLATE_TITLE_WEB = "job.template.title.web";
    
        /** The key of the configuration. e.g. File Crawler - {0} */
        String JOB_TEMPLATE_TITLE_FILE = "job.template.title.file";
    
        /** The key of the configuration. e.g. Data Crawler - {0} */
        String JOB_TEMPLATE_TITLE_DATA = "job.template.title.data";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Map.of("title", List.of("*")), //
                    Set.of(), //
                    buildQuery("title:*"));
    
            assertQueryContext(
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            String title = DocumentUtil.getValue(document, fessConfig.getIndexFieldTitle(), String.class);
            if (StringUtil.isBlank(title)) {
                title = DocumentUtil.getValue(document, fessConfig.getIndexFieldFilename(), String.class);
                if (StringUtil.isBlank(title)) {
                    title = DocumentUtil.getValue(document, fessConfig.getIndexFieldUrl(), String.class);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_system_info_env_title = "{labels.system_info_env_title}";
    
        /** The key of the message: System Properties */
        public static final String LABELS_system_info_prop_title = "{labels.system_info_prop_title}";
    
        /** The key of the message: Fess Properties */
        public static final String LABELS_system_info_fess_prop_title = "{labels.system_info_fess_prop_title}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.teletexTerminalIdentifier = value;
        }
    
        public String getTitle() {
            checkSpecifiedProperty("title");
            return convertEmptyToNull(title);
        }
    
        public void setTitle(String value) {
            registerModifiedProperty("title");
            this.title = value;
        }
    
        public Long getUidNumber() {
            checkSpecifiedProperty("uidNumber");
            return uidNumber;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    return OptionalEntity.of(Map.of("_id", "001", "title", "test1", "content", "test2"));
                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final Map<String, Object> document = indexingHelper.getDocument(client, "001", new String[] { "title", "content" });
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/admin/SearchListTests.java

                }
    
                final Map<String, Object> doc = new HashMap<>();
                doc.put("doc_id", setting.get("doc_id"));
                doc.put("url", setting.get("url_link"));
                doc.put("title", setting.get("title"));
                doc.put("role", "Rguest");
                doc.put("boost", setting.get("boost"));
                //            doc.put("click_count", 100);  // Validation Error
                requestBody.put("doc", doc);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
Back to top