Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 147 for readings1 (0.07 sec)

  1. src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestResponseTest.java

            String[][] readings = new String[1][];
            readings[0] = new String[] { "test" };
            items.add(new SuggestItem(new String[] { "test" }, readings, new String[] { "content" }, 1, 0, -1, new String[] { "tag1" },
                    new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.DOCUMENT));
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractor.java

                    }
                    if (headingText.length() > 0) {
                        headings.add(headingText.toString());
                    }
                    super.visit(heading);
                }
            });
    
            if (!headings.isEmpty()) {
                extractData.putValues("headings", headings.toArray(new String[0]));
            }
        }
    
        /**
         * Extracts link URLs from the document.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java

        }
    
        @Test
        public void test_addLanguage() throws Exception {
            SuggestItem[] items = new SuggestItem[1];
            String[][] readings = new String[1][];
            readings[0] = new String[] { "test" };
            items[0] = new SuggestItem(new String[] { "test" }, readings, new String[] { "content" }, 0, 15, -1, new String[] { "tag1" },
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponseTest.java

            String[][] readings = new String[1][];
            readings[0] = new String[] { "word1" };
            items.add(new SuggestItem(new String[] { "word1" }, readings, new String[] { "content" }, 0, 10, -1, new String[] { "tag1" },
                    new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.QUERY));
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzer.java

        /**
         * Analyzes the given text and returns a list of tokens along with their readings.
         *
         * @param text the text to analyze
         * @param field the field associated with the text
         * @param lang the language of the text
         * @return a list of analyzed tokens with their readings
         */
        List<AnalyzeToken> analyzeAndReading(String text, String field, String lang);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsElevateWordCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setReading_SpanTerm(String reading) {
            setReading_SpanTerm("reading", null);
        }
    
        public void setReading_SpanTerm(String reading, ConditionOptionCall<SpanTermQueryBuilder> opLambda) {
            SpanTermQueryBuilder builder = regSpanTermQ("reading", reading);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 64.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsElevateWord.java

            this.permissions = value;
        }
    
        public String getReading() {
            checkSpecifiedProperty("reading");
            return convertEmptyToNull(reading);
        }
    
        public void setReading(String value) {
            registerModifiedProperty("reading");
            this.reading = value;
        }
    
        public String getSuggestWord() {
            checkSpecifiedProperty("suggestWord");
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

     * <li>{@link #langFieldName} - Language field name.
     * <li>{@link #badWords} - List of bad words.
     * <li>{@link #parallel} - Flag for parallel processing.
     * <li>{@link #readingConverter} - Reading converter.
     * <li>{@link #contentsReadingConverter} - Contents reading converter.
     * <li>{@link #normalizer} - Normalizer.
     * <li>{@link #analyzer} - Suggest analyzer.
     * <li>{@link #contentsParser} - Contents parser.
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 34.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                            final String reading = readingList.get(readingCount);
                            if (i + 1 == queries.length && prefixQuery) {
                                readingQueryBuilder.should(QueryBuilders.prefixQuery(fieldName, reading));
                            } else {
                                readingQueryBuilder.should(QueryBuilders.termQuery(fieldName, reading));
                            }
                        }
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        public String token;
    
        /** Segmentation information for the token */
        @Required
        @Size(max = 1000)
        public String segmentation;
    
        /** Reading (pronunciation) of the token in katakana */
        @Required
        @Size(max = 1000)
        public String reading;
    
        /** Part of speech tag for the token */
        @Required
        @Size(max = 1000)
        public String pos;
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top