- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ExecutionTimeoutException (0.12 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ExecutionTimeoutException.java
/** * @author shinsuke * */ public class ExecutionTimeoutException extends ExtractException { private static final long serialVersionUID = 1L; public ExecutionTimeoutException(final String message, final Throwable cause) { super(message, cause); } public ExecutionTimeoutException(final String message) { super(message); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
throw new ExecutionTimeoutException("The command execution is timeout: " + cmdList); } } catch (final CrawlerSystemException e) { throw e; } catch (final InterruptedException e) { if (mt != null && mt.isTeminated()) { throw new ExecutionTimeoutException("The command execution is timeout: " + cmdList, e); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java
import java.util.Map; import org.codelibs.core.exception.IORuntimeException; import org.codelibs.core.io.FileUtil; import org.codelibs.fess.crawler.entity.ExtractData; import org.codelibs.fess.crawler.exception.ExecutionTimeoutException; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class CommandExtractorTest extends PlainTestCase { private File createScriptTempFile(final int sleep) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 9.8K bytes - Viewed (0)