- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 290 for Convert (0.04 sec)
-
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
// Test convert with single language String text = "test text"; String field = "content"; List<String> results = converter.convert(text, field, "en"); assertNotNull(results); // Results may vary based on analyzer configuration } @Test public void testConvertWithMultipleLanguages() throws IOException { // Test convert with multiple languages
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/LongConversionUtil.java
*/ protected LongConversionUtil() { } /** * Converts the given object to a {@link Long}. * * @param o * the object to convert * @return the converted {@link Long} */ public static Long toLong(final Object o) { return toLong(o, null); } /** * Converts the given object to a {@link Long}. * * @param o
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java
* The class uses a Transliterator to convert between Hiragana and Katakana. * * <p>Constructor: * <ul> * <li>{@link #AnalyzerConverter(Client, SuggestSettings)}: Initializes the converter with the given client and settings.</li> * </ul> * * <p>Methods: * <ul> * <li>{@link #init()}: Initializes the converter. Currently does nothing.</li>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
assertEquals(result, duplicateHostHelper.convert(url)); url = "http://foo.com/"; result = "http://www.foo.com/"; assertEquals(result, duplicateHostHelper.convert(url)); url = "http://foo.com:8080/"; result = "http://www.foo.com:8080/"; assertEquals(result, duplicateHostHelper.convert(url)); url = "http://mail.bar.com/";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
"Unknown q: " + query.getClass() + " => " + query); } /** * Converts a TermQuery to a QueryBuilder with the given boost value. * * @param context the query context * @param termQuery the term query to convert * @param boost the boost value to apply * @return the converted QueryBuilder */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
} /** * Converts the given object to a {@link Date}. * * @param src * The source object to convert. * @return The converted {@link Date}. */ public static Date toDate(final Object src) { return toDate(src, null, LocaleUtil.getDefault()); } /** * Converts the given object to a {@link Date}. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
// Test convert with null text converter.init(); String text = null; String field = "content"; List<String> readings = converter.convert(text, field, "en"); assertNotNull(readings); assertTrue(readings.isEmpty()); } @Test public void testConvertWithMultipleLanguages() throws IOException { // Test convert with multiple languages
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
} /** * Converts the given object to a {@link Date}. * * @param src * The source object to convert. * @return The converted {@link Date}. */ public static Date toDate(final Object src) { return toDate(src, null, LocaleUtil.getDefault()); } /** * Converts the given object to a {@link Date}. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ConverterTest.java
Converter<String, Number> converter = Converter.<String, Number>from(forward, backward); assertNull(converter.convert(null)); assertNull(converter.reverse().convert(null)); assertEquals((Integer) 5, converter.convert("5")); assertEquals("5", converter.reverse().convert(5)); } // Null-passthrough violates our nullness annotations, so we don't support it under J2KT. @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/IntegerConversionUtil.java
*/ protected IntegerConversionUtil() { } /** * Converts to {@link Integer}. * * @param o * The object to convert * @return The converted {@link Integer} */ public static Integer toInteger(final Object o) { return toInteger(o, null); } /** * Converts to {@link Integer}. * * @param o * The object to convert
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0)