- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for isCanceled (0.08 sec)
-
PythonJob.java
} catch (final Exception e) { L79: logger.warn("Failed to run python command.", e); L80: resultBuf.append(e.getMessage()).append("\n"); L81: } finally { L82: if (timeoutTask != null && !timeoutTask.isCanceled()) { L83: timeoutTask.cancel(); L84: } L85: } L86: L87: return resultBuf.toString(); L88: L89: } L90: L91: protected void executePython() { L92: final List<String> cmdList = new ArrayList<>();...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.9K bytes -
GenerateThumbnailJob.java
} catch (final Exception e) { L76: logger.warn("Failed to generate thumbnails.", e); L77: resultBuf.append(e.getMessage()).append("\n"); L78: } finally { L79: if (timeoutTask != null && !timeoutTask.isCanceled()) { L80: timeoutTask.cancel(); L81: } L82: } L83: L84: return resultBuf.toString(); L85: L86: } L87: L88: protected void executeThumbnailGenerator() { L89: final List<String> cmdList = new ArrayList<>();...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes -
SuggestJob.java
} catch (final Exception e) { L63: logger.warn("Failed to create suggest data.", e); L64: resultBuf.append(e.getMessage()).append("\n"); L65: } finally { L66: if (timeoutTask != null && !timeoutTask.isCanceled()) { L67: timeoutTask.cancel(); L68: } L69: } L70: L71: return resultBuf.toString(); L72: L73: } L74: L75: protected void executeSuggestCreator() { L76: final List<String> cmdList = new ArrayList<>();...github.com/codelibs/fess/src/main/java/org/code...Sun Jun 23 04:13:47 UTC 2024 10K bytes -
CrawlJob.java
e) { L163: throw e; L164: } catch (final Exception e) { L165: throw new JobProcessingException("Failed to execute a crawl job.", e); L166: } finally { L167: if (timeoutTask != null && !timeoutTask.isCanceled()) { L168: timeoutTask.cancel(); L169: } L170: } L171: L172: return resultBuf.toString(); L173: L174: } L175: L176: protected int getRunningJobCount() { L177: final AtomicInteger counter = new...github.com/codelibs/fess/src/main/java/org/code...Sun Jun 23 04:13:47 UTC 2024 15.1K bytes