- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 1,374 for messages (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
@Execute public JsonResponse<ApiResult> post$index(final InstallBody body) { validateApi(body, messages -> {}); final Artifact artifact = ComponentUtil.getPluginHelper().getArtifact(body.name, body.version); if (artifact == null) { return asJson( new ApiResult.ApiErrorResponse().message("invalid name or version").status(ApiResult.Status.BAD_REQUEST).result()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
PULL_REQUESTS_ETIQUETTE.md
2. **Commits**: - Write clear messages: what changed and why (e.g., “Refactor S3 API handler to reduce latency so that requests process 20% faster”). - Rebase to tidy commits before submitting (e.g., `git rebase -i main` to squash typos or reword messages), unless multiple contributors worked on the branch.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun May 25 16:32:03 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java
logger.debug("{}:{}", query, boost); } return convertPrefixQuery(context, prefixQuery, boost); } throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY), "Unknown q: " + query.getClass() + " => " + query); } /** * Converts a prefix query to a query builder. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/LogHelper.java
/** * Interface for logging helper. * Provides a method to log messages with a specified log type and additional objects. */ public interface LogHelper { /** * Logs a message with the specified log type and additional objects. * * @param key the type of log message * @param objs additional objects to include in the log message */ void log(LogType key, Object... objs);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/resources/fess_message_pt_BR.properties
constraints.Range.message = {item} deve estar entre {min} e {max}. constraints.SafeHtml.message = {item} contém conteúdo HTML perigoso. constraints.ScriptAssert.message = A expressão de script "{script}" não é verdadeira. constraints.URL.message = {item} não é uma URL válida. constraints.Required.message = {item} é obrigatório. constraints.TypeInteger.message = {item} deve ser um número. constraints.TypeLong.message = {item} deve ser um número.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java
* @param message the message to be logged * @param error the associated exception, or null if not applicable */ void log(@Nonnull Level level, @Nonnull String message, @Nullable Throwable error); /** * Logs a debug message without an associated exception. * * @param message the debug message to be logged */ default void debug(String message) { log(Level.DEBUG, message);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 31 20:56:58 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Response.java
/** * Gets the error status code. * * @return status code */ int getErrorCode(); /** * Sets the message ID. * * @param k the message ID to set */ void setMid(long k); /** * Gets the message ID. * * @return mid */ long getMid(); /** * Verifies the signature of this response. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
} catch (final ResultOffsetExceededException e) { if (logger.isDebugEnabled()) { logger.debug(e.getMessage(), e); } saveError(messages -> { messages.addErrorsResultSizeExceeded(GLOBAL); }); return redirectToRoot(); } } /** * Moves to a specific page. * @param form The search form.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
/** * Unicode encoding used for NTLM messages. */ protected static final String UNI_ENCODING = "UTF-16LE"; private int flags; /** * Returns the flags currently in use for this message. * * @return An <code>int</code> containing the flags in use for this * message. */ public int getFlags() { return this.flags; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java
*/ public SearchEngineClientException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new SearchEngineClientException with the specified message. * * @param message the detail message explaining the exception */ public SearchEngineClientException(final String message) { super(message); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)