Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for clearCache (0.09 sec)

  1. AbstractDataStoreTest.java

    throw e; L68: } catch (final Exception e) { L69: return null; L70: } finally { L71: final GroovyClassLoader loader = groovyShell.getClassLoader(); L72: loader.clearCache(); L73: } L74: } L75: L76: @Override L77: protected String getName() { L78: return Constants.DEFAULT_SCRIPT; L79: } L80: }.register(); L81: } L82: L83: public...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.1K bytes
  2. PythonJob.java

    out.append("Exit Code: ").append(exitValue).append("\nOutput:\n").append(it.getOutput()); L141: throw new JobProcessingException(out.toString()); L142: } L143: ComponentUtil.getPopularWordHelper().clearCache(); L144: } catch (final JobProcessingException e) { L145: throw e; L146: } catch (final Exception e) { L147: throw new JobProcessingException("Python Process terminated.", e); L148: } finally { L149: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.9K bytes
  3. GroovyEngine.java

    logger.warn("Failed to evaluate groovy script: {} => {}", template, paramMap, e); L45: return null; L46: } finally { L47: final GroovyClassLoader loader = groovyShell.getClassLoader(); L48: loader.clearCache(); L49: } L50: } L51: L52: @Override L53: protected String getName() { L54: return "groovy"; L55: } L56: L57:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      2K bytes
  4. PopularWordHelper.java

    return wordList; L88: }); L89: } catch (final ExecutionException e) { L90: logger.warn("Failed to load popular words.", e); L91: } L92: return Collections.emptyList(); L93: } L94: L95: public void clearCache() { L96: cache.invalidateAll(); L97: } L98: L99: protected String getCacheKey(final String seed, final String[] tags, final String[] roles, final String[] fields, L100: final String[] excludes) { L101: final StringBuilder...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.6K bytes
  5. SuggestHelper.java

    suggester.indexer().deleteBadWord(badWord); L395: refresh(); L396: } L397: L398: public synchronized void refresh() { L399: suggester.refresh(); L400: if (popularWordHelper != null) { L401: popularWordHelper.clearCache(); L402: } L403: } L404: L405: public void setSearchStoreInterval(final long searchStoreInterval) { L406: this.searchStoreInterval = searchStoreInterval; L407: } L408:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
  6. GenerateThumbnailJob.java

    out.append("Exit Code: ").append(exitValue).append("\nOutput:\n").append(it.getOutput()); L244: throw new JobProcessingException(out.toString()); L245: } L246: ComponentUtil.getPopularWordHelper().clearCache(); L247: } catch (final JobProcessingException e) { L248: throw e; L249: } catch (final Exception e) { L250: throw new JobProcessingException("ThumbnailGenerator Process terminated.", e); L251: } finally...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      10.6K bytes
  7. SuggestJob.java

    out.append("Exit Code: ").append(exitValue).append("\nOutput:\n").append(it.getOutput()); L226: throw new JobProcessingException(out.toString()); L227: } L228: ComponentUtil.getPopularWordHelper().clearCache(); L229: } catch (final JobProcessingException e) { L230: throw e; L231: } catch (final Exception e) { L232: throw new JobProcessingException("SuggestCreator Process terminated.", e); L233: } finally {...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Jun 23 04:13:47 UTC 2024
      10K bytes
  8. DocBoostMatcherTest.java

    throw e; L51: } catch (final Exception e) { L52: return null; L53: } finally { L54: final GroovyClassLoader loader = groovyShell.getClassLoader(); L55: loader.clearCache(); L56: } L57: } L58: L59: @Override L60: protected String getName() { L61: return Constants.DEFAULT_SCRIPT; L62: } L63: }.register(); L64: } L65: L66: public...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.6K bytes
  9. WebFsIndexHelper.java

    urlFilterService.delete(sid); L489: } catch (final Exception e) { L490: logger.warn("Failed to delete UrlFilter for {}", sid, e); L491: } L492: L493: try { L494: // clear queue L495: urlQueueService.clearCache(); L496: urlQueueService.delete(sid); L497: } catch (final Exception e) { L498: logger.warn("Failed to delete UrlQueue for {}", sid, e); L499: } L500: L501: try { L502: // clear L503: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      22.6K bytes
Back to top