- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for grapes (0.02 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java
import java.io.IOException; import java.io.InputStream; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.io.FileUtil; /** * A custom InputStream that wraps a temporary file. This class ensures that the temporary file * is deleted when the stream is closed. */ public class TemporaryFileInputStream extends InputStream {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MultipleCrawlingAccessException.java
* This exception holds an array of Throwable objects representing the individual causes. * It extends CrawlingAccessException and provides methods to print the stack traces of all causes. * */ public class MultipleCrawlingAccessException extends CrawlingAccessException { private static final long serialVersionUID = 1L; /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
* @throws Exception if the component cannot be created */ @Override public T create() throws Exception { return (T) crawlerContainer.getComponent(componentName); } /** * Wraps an object instance into a pooled object. * @param obj The object to wrap * @return A PooledObject wrapping the given object */ @Override public PooledObject<T> wrap(final T obj) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java
* */ public class IgnoreCloseInputStream extends InputStream { /** The wrapped input stream. */ private transient InputStream inputStream; /** * Constructs a new IgnoreCloseInputStream that wraps the specified input stream. * * @param inputStream the input stream to wrap */ public IgnoreCloseInputStream(final InputStream inputStream) { this.inputStream = inputStream; }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java
assertNotNull(mainStackTrace); assertNotNull(causeStackTrace); assertTrue(mainStackTrace.length > 0); assertTrue(causeStackTrace.length > 0); // Stack traces should be different assertNotSame(mainStackTrace, causeStackTrace); } /** * Test printStackTrace functionality */ public void test_printStackTrace() {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 20K bytes - Viewed (0)