- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 2,036 for wong (0.02 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java
private int cacheFileSize = 1_000_000; /** Name of the extractor to use */ private String extractorName = "tikaExtractor"; /** Maximum content length allowed */ private long maxContentLength = -1; /** * Constructs a new ExtractorBuilder. * * @param crawlerContainer the crawler container * @param in the input stream to extract data from
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealResponseBody.kt
* by malformed content types. */ private val contentTypeString: String?, private val contentLength: Long, private val source: BufferedSource, ) : ResponseBody() { override fun contentLength(): Long = contentLength override fun contentType(): MediaType? = contentTypeString?.toMediaTypeOrNull() override fun source(): BufferedSource = source
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/resources/fess_indices/_aws/fess/doc.json
} } ], "properties": { "anchor": { "type": "keyword" }, "boost": { "type": "float" }, "click_count": { "type": "long" }, "config_id": { "type": "keyword" }, "important_content": { "type": "text", "analyzer": "standard_analyzer",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); } @Override public Long getVersionNo() { return asDocMeta().version(); } public void setVersionNo(final Long version) { asDocMeta().version(version); } public void addSearchFieldLogValue(final String name, final String value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/LhaExtractor.java
/** Logger for this class. */ private static final Logger logger = LogManager.getLogger(LhaExtractor.class); /** Maximum content size for extraction. -1 means no limit. */ protected long maxContentSize = -1; /** * Creates a new LhaExtractor instance. */ public LhaExtractor() { super(); } /** * Extracts text content from an LHA archive input stream.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
} /** * Retrieves a long value from system properties with a default fallback. * * @param key the property key to look up * @param defaultValue the default value if the property is not found or invalid * @return the long value or default value */ protected Long getDefaultLong(final String key, final Long defaultValue) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
checkMaximumSize(4, 8, maxSize); checkMaximumSize(8, 8, maxSize); } checkMaximumSize(1, 8, Long.MAX_VALUE); checkMaximumSize(2, 8, Long.MAX_VALUE); checkMaximumSize(4, 8, Long.MAX_VALUE); checkMaximumSize(8, 8, Long.MAX_VALUE); // vary initial capacity wrt maximumSize for (int capacity = 0; capacity < 8; capacity++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
* @param paramMap The parameters. * @return The read interval. */ protected long getReadInterval(final DataStoreParams paramMap) { long readInterval = 0; final String value = paramMap.getAsString("readInterval"); if (StringUtil.isNotBlank(value)) { try { readInterval = Long.parseLong(value); } catch (final NumberFormatException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
t.setDaemon(true); return t; }); // Schedule periodic cleanup long cleanupInterval = context.getConfig().getLeaseTimeout(); if (cleanupInterval <= 0) { cleanupInterval = DEFAULT_LEASE_CLEANUP_INTERVAL; } final long finalCleanupInterval = cleanupInterval;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
} /** * Test very long URL handling */ public void test_veryLongUrl() { String sessionId = "test-session-020"; urlFilter.init(sessionId); // Create a very long URL StringBuilder longUrl = new StringBuilder("https://example.com/"); for (int i = 0; i < 1000; i++) { longUrl.append("very/long/path/segment/"); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0)