- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 591 for related (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java
} return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result()); } /** * Deletes document-related suggest words. * * @return JSON response indicating success or failure */ // DELETE /api/admin/suggest/document @Execute public JsonResponse<ApiResult> delete$document() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug-report.yaml
attributes: label: What happened? description: | Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. If this matter is security related, please disclose it privately via https://kubernetes.io/security validations: required: true - type: textarea id: expected attributes: label: What did you expect to happen?
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon Feb 28 09:34:43 UTC 2022 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
} /** * Gets the related query helper component. * @return The related query helper. */ public static RelatedQueryHelper getRelatedQueryHelper() { return getComponent(RELATED_QUERY_HELPER); } /** * Gets the related content helper component. * @return The related content helper. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
import jakarta.servlet.http.HttpSession; /** * Abstract base class for search-related actions in the Fess search application. * Provides common functionality for search operations, including search form handling, * label management, user authentication, and search result processing. * * This class extends FessBaseAction and serves as the foundation for all search-related * web actions in the application. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicate.java
* or method references instead of classes, leaving your code easier to migrate in the future. * * <p>The {@link Predicates} class provides common predicates and related utilities. * * <p>See the Guava User Guide article on <a * href="https://github.com/google/guava/wiki/FunctionalExplained">the use of {@code Predicate}</a>. * * @author Kevin Bourrillion * @since 2.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 18 15:22:00 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/PluginException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception for plugin-related errors. */ public class PluginException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Creates a plugin exception with message and cause. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ThemeException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when theme-related operations fail. * This exception is used for errors during theme installation, uninstallation, or configuration. */ public class ThemeException extends FessSystemException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/RequestParameter.java
* This class encapsulates HTTP request parameters that can have multiple values, * such as query parameters, form parameters, or other request-related data. * * <p>This class is immutable and thread-safe. Once created, the parameter name * and values cannot be modified.</p> * */ public class RequestParameter { /** The name of the request parameter. */ private final String name;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/NumberConversionUtil.java
import java.text.DecimalFormatSymbols; import java.util.Locale; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.text.DecimalFormatSymbolsUtil; /** * Utility class for conversions related to {@link Number}. * * @author higa */ public abstract class NumberConversionUtil { /** * Do not instantiate. */ protected NumberConversionUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SearchQueryException.java
* * This exception is typically thrown when query parsing, serialization, * or processing fails during search operations. It extends FessSystemException * to provide specific handling for search query-related errors. */ public class SearchQueryException extends FessSystemException { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)