- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 60 for presentation (0.28 sec)
-
src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Feb 14 12:15:45 UTC 2020 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
super(message); 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 */
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/resources/fess_thumbnail.xml
<arg>"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"</arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg> <arg>"application/vnd.openxmlformats-officedocument.presentationml.presentation"</arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg> <arg>"application/msword"</arg> </postConstruct> <postConstruct name="addCondition"> <arg>"mimetype"</arg>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Oct 11 21:34:52 UTC 2019 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ObjectUtil.java
public static int hashCode(final Object obj) { return obj == null ? 0 : obj.hashCode(); } /** * Returns the string representation of the specified object, or null if the object is null. * * @param obj the object * @return the string representation or null */ public static String toString(final Object obj) { return obj == null ? null : obj.toString(); } /**
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/dict/mapping/CharMappingItem.java
return false; } return true; } /** * Returns a string representation of this CharMappingItem including all fields. * * @return string representation of this object */ @Override public String toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/DecimalFormatUtil.java
/** * Normalizes the string representation of a number. * * @param s * A string representing a number * @return The normalized string * @see #normalize(String, Locale) */ public static String normalize(final String s) { return normalize(s, LocaleUtil.getDefault()); } /** * Normalizes the string representation of a number by removing grouping separators
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/net/UrlEscapers.java
* <li>All other characters are converted into one or more bytes using UTF-8 encoding and each * byte is then represented by the 3-character string "%XY", where "XY" is the two-digit, * uppercase, hexadecimal representation of the byte value. * </ul> * * <p>This escaper is suitable for escaping parameter names and values even when <a * href="https://www.w3.org/TR/html401/appendix/notes.html#h-B.2.2">using the non-standard
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
public String toString() { return "ProtwordsItem [id=" + id + ", inputs=" + input + ", newInputs=" + newInput + "]"; } /** * Converts this item to a string representation for writing to file. * @return the string representation of this item */ public String toLineString() { if (isUpdated()) { return StringUtils.join(newInput); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDouble.java
if (updater.compareAndSet(this, current, next)) { return nextVal; } } } /** * Returns the String representation of the current value. * * @return the String representation of the current value */ @Override public String toString() { return Double.toString(get()); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.5K bytes - Viewed (0)