- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 2,228 for final (0.04 sec)
-
src/main/java/org/codelibs/fess/util/JvmUtil.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/LogTests.java
@Tag("it") public class LogTests extends CrudTestBase { private static final String NAME_PREFIX = "logTest_"; private static final String API_PATH = "/api/admin/log"; private static final String LIST_ENDPOINT_SUFFIX = "files"; private static final String ITEM_ENDPOINT_SUFFIX = "file"; private static final String KEY_PROPERTY = ""; @Override protected String getNamePrefix() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
*/ @Override public LogEvent rewrite(final LogEvent event) { final String loggerName = event.getLoggerName(); if (loggerName == null) { return event; } for (final String name : loggerNames) { if (loggerName.startsWith(name)) { final Level sourceLevel = event.getLevel(); if (sourceLevel != Level.ERROR) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/FloatConversionUtil.java
*/ public static Float toFloat(final Object o) { return toFloat(o, null); } /** * Converts to {@link Float}. * * @param o * The object to convert * @param pattern * The pattern string * @return The converted {@link Float} */ public static Float toFloat(final Object o, final String pattern) { if (o == null) {
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/lang/ObjectUtil.java
*/ public static <T> T defaultValue(final T t, final T defaultValue) { return t == null ? defaultValue : t; } /** * Returns true if the two objects are not equal. * * @param o1 the first object * @param o2 the second object * @return true if not equal, false otherwise */ public static boolean notEquals(final Object o1, final Object o2) { return !equals(o1, o2);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
/** * Get a list of label types. * * @param labelTypePager The pager for label types. * @return A list of label types. */ public List<LabelType> getLabelTypeList(final LabelTypePager labelTypePager) { final PagingResultBean<LabelType> labelTypeList = labelTypeBhv.selectPage(cb -> { cb.paging(labelTypePager.getPageSize(), labelTypePager.getCurrentPageNumber());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
*/ public class QueryContext { /** Prefix for queries that search only in URL fields. */ protected static final String ALLINURL_FIELD_PREFIX = "allinurl:"; /** Prefix for queries that search only in title fields. */ protected static final String ALLINTITLE_FIELD_PREFIX = "allintitle:"; /** The OpenSearch query builder used for executing the search. */ protected QueryBuilder queryBuilder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java
*/ public class BeanFieldSetAccessibleFailureException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The target class. */ protected final Class<?> targetClass; /** * The target field. */ protected final transient Field targetField; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java
*/ public class BeanMethodSetAccessibleFailureException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The target class. */ protected final Class<?> targetClass; /** * The target method. */ protected final transient Method targetMethod; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java
*/ public RoleTypePager() { super(); } private static final long serialVersionUID = 1L; /** * Default page size for pagination. */ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number for pagination. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0)