Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for roleFieldName (0.04 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 Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 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 Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

         *
         * @param queryLog the query log to parse
         * @param fields the fields to extract from the query log
         * @param tagFieldNames the names of the fields to use as tags
         * @param roleFieldName the name of the field to use for roles
         * @param readingConverter the converter to use for reading values
         * @param normalizer the normalizer to use for normalizing values
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            return this;
        }
    
        /**
         * Sets the role field name.
         * @param roleFieldName The role field name.
         * @return This SuggestIndexer instance.
         */
        public SuggestIndexer setRoleFieldName(final String roleFieldName) {
            this.roleFieldName = roleFieldName;
            return this;
        }
    
        /**
         * Sets the reading converter.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            /** Tag field name key. */
            public static final String TAG_FIELD_NAME = "tagFieldName";
            /** Role field name key. */
            public static final String ROLE_FIELD_NAME = "roleFieldName";
            /** Language field name key. */
            public static final String LANG_FIELD_NAME = "langFieldName";
            /** Parallel processing key. */
            public static final String PARALLEL_PROCESSING = "parallel";
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top