- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for Localize (0.15 sec)
-
src/main/java/org/codelibs/fess/exception/InvalidQueryException.java
private static final long serialVersionUID = 1L; /** Message code for localized error messages */ private final transient VaMessenger<FessMessages> messageCode; /** * Creates a new InvalidQueryException with message code, message, and cause. * * @param messageCode the message code for localized error messages * @param message the detailed error message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
} /** * Converts validation messages to a localized string representation for API responses. * Uses the request locale if available, otherwise defaults to English. * * @param validationMessagesLambda lambda function that adds validation messages * @return concatenated string of localized validation messages separated by spaces */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (1) -
guava/src/com/google/common/collect/ImmutableMap.java
// a copy of the entries array. Likewise, localSize is the same as size except in that case. // It's possible to keep using this Builder after calling buildKeepingLast(), so we need to // ensure that its state is not corrupted by removing duplicates that should cause a later // buildOrThrow() to fail, or by changing the size. @Nullable Entry<K, V>[] localEntries; int localSize = size; if (valueComparator == null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 44.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
this.messageCode = messageCode; } /** * Gets the message code for internationalized error display. * * The message code can be used by the presentation layer to retrieve * localized error messages appropriate for the user's language settings. * * @return The message code for error message localization */ public VaMessenger<FessMessages> getMessageCode() { return messageCode;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
return null; }).filter(StringUtil::isNotBlank).orElse(url); } /** * Gets the localized page path for a given page name. * Checks for locale-specific versions before falling back to default. * * @param page the page name * @return the localized page path */ public String getPagePath(final String page) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
assertNotNull(newStackTrace); assertTrue(newStackTrace.length > 0); } public void test_getLocalizedMessage() { // Test getLocalizedMessage method String message = "Localized message test"; ResultOffsetExceededException exception = new ResultOffsetExceededException(message); // By default, getLocalizedMessage returns the same as getMessage
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableMap.java
localSize = localAlternatingKeysAndValues.length >>> 1; } } sortEntries(localAlternatingKeysAndValues, localSize, valueComparator); } entriesUsed = true; ImmutableMap<K, V> map = RegularImmutableMap.create(localSize, localAlternatingKeysAndValues, this);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 41.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertEquals(message, firstCall); } public void test_getLocalizedMessage() { // Test getLocalizedMessage (should be same as getMessage for this exception) String message = "Localized message test"; UnsupportedSearchException exception = new UnsupportedSearchException(message); assertEquals(exception.getMessage(), exception.getLocalizedMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
assertTrue(exception.getMessage().length() > 5000); } public void test_getLocalizedMessage() { // Test getLocalizedMessage method (inherited from Throwable) String message = "Localized error message"; DataStoreException exception = new DataStoreException(message); // By default, getLocalizedMessage returns the same as getMessage
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0)