- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 234 for crashed (0.31 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
/** Maximum size for list operations */ protected int smbListSize = 65435; /** Maximum number of entries to return in list operations */ protected int smbListCount = 200; /** Time in milliseconds before cached file attributes expire */ protected long smbAttributeExpiration = 5000L; /** Whether to ignore exceptions during file copy operations */ protected boolean ignoreCopyToException = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheStats.java
this.totalLoadTime = totalLoadTime; this.evictionCount = evictionCount; } /** * Returns the number of times {@link Cache} lookup methods have returned either a cached or * uncached value. This is defined as {@code hitCount + missCount}. * * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 12.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Interpolator.java
* @return A new {@code UnaryOperator<String>} that caches the results of the original function. * If the original function returns null for a given input, null will be cached and returned for subsequent calls with the same input. * * @see Function * @see Optional * @see HashMap#computeIfAbsent(Object, Function) */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 13 16:14:35 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
final File file = new File(realPath); return file.isFile(); } /** * Creates cached content with highlighting for a document. * Uses Handlebars templates to render the cached content. * * @param doc the document data map * @param queries the search queries for highlighting * @return the rendered cache content */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
cmd/jwt_test.go
creds := globalActiveCred b.Run("uncached", func(b *testing.B) { fn := authenticateNode b.ResetTimer() b.ReportAllocs() for b.Loop() { fn(creds.AccessKey, creds.SecretKey) } }) b.Run("cached", func(b *testing.B) { fn := newCachedAuthToken() b.ResetTimer() b.ReportAllocs() for b.Loop() { fn() } })
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4.4K bytes - Viewed (0) -
docs/recipes.md
instances will stomp on each other, corrupt the response cache, and possibly crash your program. Response caching uses HTTP headers for all configuration. You can add request headers like `Cache-Control: max-stale=3600` and OkHttp's cache will honor them. Your webserver configures how long responses are cached with its own response headers, like `Cache-Control: max-age=9600`. There are cache headers to force a cached response, force a network response, or force the network response to be validated...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
assertNotNull(emptyResult); assertEquals(128, emptyResult.length()); // Test with null (should not crash but may return different result) try { String nullResult = crawlingInfoHelper.generateId((String) null); // If it doesn't crash, it should still return a valid hash assertNotNull(nullResult); assertEquals(128, nullResult.length());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hasher.java
/** * Equivalent to processing each {@code char} value in the {@code CharSequence}, in order. In * other words, no character encoding is performed; the low byte and high byte of each {@code * char} are hashed directly (in that order). The input must not be updated while this method is * in progress. * * <p><b>Warning:</b> This method will produce different output than most other languages do when
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 5.5K bytes - Viewed (0) -
README.md
- **Utility Classes** - All core functionality exposed through static utility methods for easy access ### Performance Optimizations - **Caching** - Bean descriptors and reflection metadata are cached for improved performance - **Lazy initialization** - Resources and expensive operations are initialized only when needed
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
* This class defines tag patterns that match HTML elements based on tag name, CSS class, ID, or custom attributes. * It is used to identify and remove unwanted HTML elements from crawled documents. */ public class PrunedTag { /** The HTML tag name to match (e.g., "div", "span", "p") */ private final String tag; /** The ID attribute value to match */ private String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0)