Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ignore (0.04 sec)

  1. SambaHelper.java

    type, sid, sid.toDisplayString()); L65: } catch (final Exception e) { L66: // ignore L67: } L68: } L69: final Integer id = fessConfig.getAvailableSmbSidType(type); L70: if (id != null) { L71: return createSearchRole(id, sid.getAccountName()); L72: } L73: if (logger.isDebugEnabled()) { L74: logger.debug("Ignored SID: {} {}", type, sid); L75: } L76: return null; L77: } L78: L79: public String...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jun 27 10:58:21 UTC 2024
      3.3K bytes
  2. ProtwordsFile.java

    reader.readLine()) != null) { L130: if (line.length() == 0 || line.charAt(0) == '#') { L131: if (updater != null) { L132: updater.write(line); L133: } L134: continue; // ignore empty lines and comments L135: } L136: L137: final String inputStrings = line; L138: final String input = unescape(inputStrings); L139: L140: if (input.length() > 0) { L141: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
  3. StopwordsFile.java

    reader.readLine()) != null) { L130: if (line.length() == 0 || line.charAt(0) == '#') { L131: if (updater != null) { L132: updater.write(line); L133: } L134: continue; // ignore empty lines and comments L135: } L136: L137: final String inputStrings = line; L138: final String input = unescape(inputStrings); L139: L140: if (input.length() > 0) { L141: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
  4. CommandChain.java

    L158: mt.interrupt(); L159: } catch (final Exception e) { L160: // ignore L161: } L162: } L163: if (currentProcess != null) { L164: try { L165: currentProcess.destroy(); L166: } catch (final Exception e) { L167: // ignore L168: } L169: } L170: currentProcess = null; L171: L172: } L173: } L174: L175:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.3K bytes
  5. ScriptExecutorJob.java

    get(Constants.SCHEDULED_JOB); L58: final String id = scheduledJob.getId(); L59: final String target = scheduledJob.getTarget(); L60: if (!ComponentUtil.getFessConfig().isSchedulerTarget(target)) { L61: logger.info("Ignore Job {}:{} because of not target: {}", scheduledJob.getName(), id, scheduledJob.getTarget()); L62: return; L63: } L64: L65: final JobHelper jobHelper = ComponentUtil.getJobHelper(); L66: if (!jobHelper.isAvailable(id))...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.3K bytes
  6. SearchForm.java

    ComponentUtil.getFessConfig().getPageSearchlogMaxFetchSizeAsInteger()) { L50: return SearchLogPager.DEFAULT_PAGE_SIZE; L51: } L52: return value; L53: } catch (final NumberFormatException e) { L54: // ignore L55: return SearchLogPager.DEFAULT_PAGE_SIZE; L56: } L57: } L58:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.7K bytes
  7. FessCurtainFinallyHook.java

    eadedHttpConnectionManager"); L40: final Method method = clazz.getMethod("shutdownAll", (Class<?>[]) null); L41: method.invoke(null, (Object[]) null); L42: } catch (final ClassNotFoundException e) { L43: // ignore L44: } catch (final Exception e) { L45: logger.warn("Could not shutdown Commons HttpClient.", e); L46: } L47: } L48:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.7K bytes
  8. CrawlingConfig.java

    HTML_CANONICAL_XPATH = "html.canonical.xpath"; L131: public static final String HTML_PRUNED_TAGS = "html.pruned.tags"; L132: public static final String PIPELINE = "pipeline"; L133: public static final String IGNORE_ROBOTS_TAGS = "ignore.robots.tags"; L134: public static final String SCRIPT_TYPE = "script.type"; L135: public static final String HTML_CHILD_URL_RULES = "html.child.url.rules"; L136: } L137: L138: // meta.* L139: // meta.<field>=<value>...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      5.5K bytes
  9. ResourceUtil.java

    Path("/" + root + base); L151: if (webinfPath != null && Files.exists(Paths.get(webinfPath))) { L152: return Paths.get(webinfPath, names); L153: } L154: } catch (final Throwable e) { L155: // ignore L156: } L157: final String webinfBase = root + base; L158: if (Files.exists(Paths.get(webinfBase))) { L159: return Paths.get(webinfBase, names); L160: } L161: final String srcWebInfBase = "src/main/webapps"...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 08:52:32 UTC 2024
      7.5K bytes
  10. FessApiFailureHook.java

    StringWriter(); final PrintWriter pw = new PrintWriter(sw)) { L110: cause.printStackTrace(pw); L111: pw.flush(); L112: sb.append(" [ ").append(sw.toString()).append(" ]"); L113: } catch (final IOException ignore) {} L114: return sb.toString(); L115: }; L116: L117: if (Constants.TRUE.equalsIgnoreCase(ComponentUtil.getFessConfig().getApiJsonResponseExceptionIncluded())) { L118: return stacktraceString.get(); L119: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.8K bytes
Back to top