- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 343 for readings1 (0.13 seconds)
-
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
queryItems[0] = new SuggestItem(new String[] { "検索", "エンジン" }, readings, new String[] { "content" }, 1, 0, -1, tags, roles, null, SuggestItem.Kind.DOCUMENT); String[][] readings2 = new String[2][]; readings2[0] = new String[] { "zenbun", "fuga" }; readings2[1] = new String[] { "kensaku", "fuga" }; String[] tags2 = new String[] { "tag3" };
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 37.1K bytes - Click Count (0) -
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" },Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 6.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java
import java.io.IOException; import java.util.List; /** * Interface for converting text into its reading form. */ public interface ReadingConverter { /** * Returns the maximum number of readings. * * @return the maximum number of readings, default is 10. */ default int getMaxReadingNum() { return 10; } /**Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 17 14:28:21 GMT 2025 - 1.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
final boolean apply) { final String[] readings; if (StringUtil.isBlank(reading)) { readings = word.replace(" ", TEXT_SEP).replaceAll(TEXT_SEP + "+", TEXT_SEP).split(TEXT_SEP); } else { readings = reading.replace(" ", TEXT_SEP).replaceAll(TEXT_SEP + "+", TEXT_SEP).split(TEXT_SEP); } final List<String> labelList = new ArrayList<>(); if (tags != null) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 22.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
super(term, position, startOffset, endOffset, positionIncrement, type, attributes); } public String getReading() { return reading; } public void setReading(String reading) { this.reading = reading; } }
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Sep 01 13:33:03 GMT 2025 - 15.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
final List<String> roles = (List<String>) sourceArray[i].get(ELEVATE_WORD_ROLES); if (elevateWord != null && boost != null && readings != null && fields != null) { elevateWords[i] = new ElevateWord(elevateWord.toString(), Float.parseFloat(boost.toString()), readings, fields, tags, roles); } } return elevateWords; } /** * Add an elevate word.
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserEdgeCaseTest.java
String[] words = new String[] { "word1", "word2", "word3" }; // Only provide readings for first word String[][] readings = new String[][] { new String[] { "reading1" } }; String[] fields = new String[] { "content" }; SuggestItem item = parser.parseSearchWords(words, readings, fields, null, null, 1, defaultReadingConverter, defaultNormalizer, analyzer, null);
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 20.3K bytes - Click Count (0) -
docs/metrics/healthcheck/README.md
scheme: HTTP initialDelaySeconds: 120 periodSeconds: 30 timeoutSeconds: 10 successThreshold: 1 failureThreshold: 3 ``` ## Readiness probe This probe always responds with '200 OK'. Only fails if 'etcd' is configured and unreachable. When readiness probe fails, Kubernetes like platforms turn-off routing to the container. ``` readinessProbe: httpGet: path: /minio/health/ready port: 9000
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Jul 06 16:18:38 GMT 2023 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java
* A chain of {@link ReadingConverter} implementations that applies each converter in sequence to generate possible reading variations of a given text. * It maintains a list of ReadingConverter instances and iterates through them, applying each converter to the input text and accumulating the results. * The chain stops processing when the maximum number of readings is reached. */ public class ReadingConverterChain implements ReadingConverter { /**Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Wed Dec 31 05:38:07 GMT 2025 - 3.8K bytes - Click Count (1) -
docs/zh-hant/llm-prompt.md
- Use clear, concise technical Traditional Chinese consistent with existing docs. - Address the reader naturally (commonly using “你/你的”). ### Headings - Follow existing Traditional Chinese heading style (short and descriptive). - Do not add trailing punctuation to headings. ### Quotes and punctuation
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Dec 29 18:54:20 GMT 2025 - 2.2K bytes - Click Count (0)