Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for roleFieldName (0.12 sec)

  1. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

        String[] tagFieldNames = new String[] { "label", "virtual_host" };
        String roleFieldName = "role";
    
        public void test_parseQueryLog() throws Exception {
    
            QueryLog queryLog = new QueryLog("content:検索エンジン", null);
            List<SuggestItem> items = defaultContentsParser.parseQueryLog(queryLog, supportedFields, tagFieldNames, roleFieldName,
                    createDefaultReadingConverter(), createDefaultNormalizer());
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

            }
            final String[] tags = tagList.toArray(new String[tagList.size()]);
            final String[] roles1 = SuggestUtil.parseQuery(queryString, roleFieldName);
            final String[] roles2 = filterQueryString == null ? new String[0] : SuggestUtil.parseQuery(filterQueryString, roleFieldName);
            final String[] roles = new String[roles1.length + roles2.length];
    
            if (roles1.length > 0) {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            this.tagFieldNames = tagFieldNames;
            return this;
        }
    
        public SuggestIndexer setRoleFieldName(final String roleFieldName) {
            this.roleFieldName = roleFieldName;
            return this;
        }
    
        public SuggestIndexer setReadingConverter(final ReadingConverter readingConverter) {
            this.readingConverter = readingConverter;
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

        List<SuggestItem> parseQueryLog(QueryLog queryLog, String[] fields, String[] tagFieldNames, String roleFieldName,
                ReadingConverter readingConverter, Normalizer normalizer);
    
        List<SuggestItem> parseDocument(Map<String, Object> document, String[] fields, String[] tagFieldNames, String roleFieldName,
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            public static final String SUPPORTED_FIELDS = "supportedFields";
            public static final String TAG_FIELD_NAME = "tagFieldName";
            public static final String ROLE_FIELD_NAME = "roleFieldName";
            public static final String LANG_FIELD_NAME = "langFieldName";
            public static final String PARALLEL_PROCESSING = "parallel";
            public static final String MAX_CONTENT_LENGTH = "maxContextLength";
    
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top