- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for Park (0.02 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java
// FileInputStream does not support mark/reset assertFalse(stream.markSupported()); assertEquals('A', stream.read()); assertEquals('B', stream.read()); // Mark is not supported, so calling mark has no effect stream.mark(10); assertEquals('C', stream.read());Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java
IgnoreCloseInputStream stream = new IgnoreCloseInputStream(underlyingStream); // ByteArrayInputStream supports mark assertTrue(stream.markSupported()); } public void test_markAndReset_delegatesToUnderlying() throws IOException { // Test that mark() and reset() delegate to underlying stream byte[] data = "ABCDEFGH".getBytes();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java
* This method delegates to {@link FileInputStream#mark(int)}. * * @param readlimit the maximum limit of bytes that can be read before the mark position becomes invalid */ @Override public synchronized void mark(final int readlimit) { fileInputStream.mark(readlimit); } /** * Tests if this input stream supports the mark and reset methods.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 4.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java
* @param readlimit the maximum limit of bytes that can be read before the mark position becomes invalid */ @Override public synchronized void mark(final int readlimit) { inputStream.mark(readlimit); } /** * Tests if this input stream supports the mark and reset methods. * * @return true if this stream instance supports the mark and reset methods; false otherwise */ @OverrideRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 4.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
} // Atomically get or create the AtomicLong for this host using Cache.get() // This ensures thread-safe, atomic get-or-create behavior // Initialize with 0 to mark uninitialized state final AtomicLong lastTime = lastTimes.get(host, () -> new AtomicLong(0)); synchronized (lastTime) { final long lastValue = lastTime.get();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
/** * Logger for this class. */ protected static final Logger logger = LogManager.getLogger(AbstractXmlExtractor.class); /** * UTF-7 Byte Order Mark definition. */ protected static final ByteOrderMark BOM_UTF_7 = new ByteOrderMark("UTF-7", 0x2B, 0x2F, 0x76); /** * HTML4 unescape translator. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 8.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ExtractorResourceManagementTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
return false; } // =================================================================================== // Birthplace Mark // =============== @Override public void markAsSelect() { __createdBySelect = true; } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
/** Robots tag value indicating no following of links */ private static final String ROBOTS_TAG_NOFOLLOW = "nofollow"; /** Size of UTF-8 BOM (Byte Order Mark) in bytes */ private static final int UTF8_BOM_SIZE = 3; /** Flag indicating whether content should be pruned */ public boolean prunedContent = true;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
// Test escaping asterisk String query1 = "test*query"; String escaped1 = SuggestUtil.escapeWildcardQuery(query1); assertEquals("test\\*query", escaped1); // Test escaping question mark String query2 = "test?query"; String escaped2 = SuggestUtil.escapeWildcardQuery(query2); assertEquals("test\\?query", escaped2); // Test escaping bothRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0)