- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 109 for equal (0.01 sec)
-
src/main/java/org/codelibs/core/lang/StringUtil.java
} /** * Returns whether two strings are equal. If both are null, returns <code>true</code>. * * @param target1 * the first string * @param target2 * the second string * @return true if the strings are equal, false otherwise */ public static boolean equals(final String target1, final String target2) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* Two CharMappingItem objects are equal if they have the same inputs and output. * Note: inputs arrays are sorted in the constructor, so no sorting is needed here. * * @param obj the object to compare with * @return true if the objects are equal, false otherwise */ @Override public boolean equals(final Object obj) { if (this == obj) { return true;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
} } } else { final Node idAttr = node.getAttributes().getNamedItem("id"); if (idAttr != null) { final String value = idAttr.getNodeValue(); return id.equals(value); } } } return false;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
* * @param h1 the first hour * @param m1 the first minute * @param h2 the second hour * @param m2 the second minute * @return positive if first time is earlier, 0 if equal, negative if later */ protected int compareTime(final int h1, final int m1, final int h2, final int m2) { if (h1 < h2) { return 1; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 12:34:02 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
if (SpnegoHttpFilter.Constants.LOGIN_CONF.equals(name)) { return getResourcePath(getProperty(SPNEGO_LOGIN_CONF, "auth_login.conf")); } if (SpnegoHttpFilter.Constants.KRB5_CONF.equals(name)) { return getResourcePath(getProperty(SPNEGO_KRB5_CONF, "krb5.conf")); } if (SpnegoHttpFilter.Constants.CLIENT_MODULE.equals(name)) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
private AuthScheme getAuthScheme() { final String scheme = getProtocolScheme(); if (Constants.BASIC.equals(scheme)) { return new BasicScheme(); } if (Constants.DIGEST.equals(scheme)) { return new DigestScheme(); } if (Constants.NTLM.equals(scheme)) { final Properties props = new Properties();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} if ("fess-crawler".equals(name)// || "fess-crawler-db".equals(name)// || "fess-crawler-db-h2".equals(name)// || "fess-crawler-db-mysql".equals(name)// || "fess-crawler-es".equals(name)// || "fess-crawler-opensearch".equals(name)// || "fess-crawler-lasta".equals(name)//Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayMap.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
if (targetLocale.equals(requestLocale) || targetLocale.equals(Locale.ROOT)) { return true; } if (requestLocale == null || !requestLocale.getLanguage().equals(targetLocale.getLanguage()) || targetLocale.getCountry().length() > 0 && !requestLocale.getCountry().equals(targetLocale.getCountry())) { return false; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.8K bytes - Viewed (0)