- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 57 for CODES (0.01 sec)
-
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableMap.java
return Maps.equalsImpl(this, object); } @Override public int hashCode() { // not caching hash code since it could change if map values are mutable // in a way that modifies their hash codes return entrySet().hashCode(); } @Override public String toString() { return Maps.toStringImpl(this); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.7K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
created. * Fix: Avoid crashing when cache writing fails due to a full disk. * Fix: Improve caching of private responses. * Fix: Update cache-by-default response codes. * Fix: Reused `Request.Builder` instances no longer hold stale URL fields. * New: ConnectionSpec can now be configured to use the SSL socket's default cipher suites. To use, set the cipher suites to `null`.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
* This class handles user identification through cookies, session management, and query tracking. * It provides functionality for generating unique user codes, managing user sessions, * and tracking search result document IDs for analytics and personalization. * */ public class UserInfoHelper { /** * Default constructor for UserInfoHelper. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt
} return false } internal fun String.containsInvalidHostnameAsciiCodes(): Boolean { for (i in 0 until length) { val c = this[i] // The WHATWG Host parsing rules accepts some character codes which are invalid by // definition for OkHttp's host header checks (and the WHATWG Host syntax definition). Here // we rule out characters that would cause problems in host headers. if (c <= '\u001f' || c >= '\u007f') {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 11.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Equivalence.java
import java.util.Objects; import org.jspecify.annotations.NonNull; import org.jspecify.annotations.Nullable; /** * A strategy for determining whether two instances are considered equivalent, and for computing * hash codes in a manner consistent with that equivalence. Two examples of equivalences are the * {@linkplain #identity() identity equivalence} and the {@linkplain #equals "equals" equivalence}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 01:47:55 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
/** * Processes the response data from a crawled URL, including failure handling. * This method extends the base response processing to handle Fess-specific failure * URL tracking when certain HTTP status codes are encountered. * * @param urlQueue the URL queue item that was processed * @param responseData the response data from the crawl operation */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
tag1.setCss("highlight"); PrunedTag tag2 = new PrunedTag("div"); tag2.setId("test"); tag2.setCss("highlight"); // Equal objects must have equal hash codes assertEquals(tag1.hashCode(), tag2.hashCode()); // Hash code should be consistent int hash1 = tag1.hashCode(); int hash2 = tag1.hashCode(); assertEquals(hash1, hash2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multimap.java
* {@link Multimap#asMap}. * * <p>In general, two multimaps with identical key-value mappings may or may not have the same * hash codes, depending on the implementation. For example, two {@link SetMultimap} instances * with the same key-value mappings will have the same {@code hashCode}, but the {@code hashCode}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
// Expected for some implementations } } public void test_process_withStatusCodeSetting() throws IOException, ServletException { // Test setting different status codes StatusCodeWebApiManager manager = new StatusCodeWebApiManager(404); TestHttpServletRequest request = new TestHttpServletRequest(); TestHttpServletResponse response = new TestHttpServletResponse();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* and handles special cases like "all languages" selection. * * @param request The HTTP servlet request * @param params The search request parameters * @return Array of normalized language codes */ public String[] getLanguages(final HttpServletRequest request, final SearchRequestParams params) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0)