- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 296 for patterns (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 03 09:24:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
*/ public static CopyOptions dateConverter(final String pattern, final CharSequence... propertyNames) { return new CopyOptions().dateConverter(pattern, propertyNames); } /** * Returns a {@link CopyOptions} with a SQL date converter applied. * * @param pattern * The date pattern. Must not be {@literal null} or an empty string. * @param propertyNames
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicates.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/IntegerConversionUtil.java
* @param pattern * The pattern string * @return The converted {@literal int} */ public static int toPrimitiveInt(final Object o, final String pattern) { return switch (o) { case null -> 0; case Number n -> n.intValue(); case String s -> toPrimitiveInt(s);
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/core/convert/DoubleConversionUtil.java
} /** * Converts to {@link Double}. * * @param o * The object to convert * @param pattern * The pattern string * @return The converted {@link Double} */ public static Double toDouble(final Object o, final String pattern) { if (o == null) { return null; } else if (o instanceof Double) { return (Double) o;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/ByteConversionUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/resources/log4j2.xml
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:17:33 UTC 2023 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
* * @param cmdList the command list to add properties to * @param regex the regular expression pattern to match property names */ protected void addFessCustomSystemProperties(final List<String> cmdList, final String regex) { if (StringUtil.isNotBlank(regex)) { final Pattern pattern = Pattern.compile(regex);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/NumberConverter.java
/** * The pattern for numbers. */ protected String pattern; /** * Constructs an instance. * * @param pattern * the pattern for numbers */ public NumberConverter(final String pattern) { assertArgumentNotEmpty("pattern", pattern); this.pattern = pattern; } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.1K bytes - Viewed (0)