Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for IGNORE (0.06 sec)

  1. SambaHelper.java

    = sid.getType(); L62: if (logger.isDebugEnabled()) { L63: try { L64: logger.debug("Processing SID: {} {} {}", 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())...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jun 27 10:58:21 UTC 2024
      3.3K bytes
  2. SuggestCreator.java

    exitCode.set(1); L219: latch.countDown(); L220: }); L221: L222: try { L223: latch.await(); L224: } catch (final InterruptedException ignore) { L225: if (logger.isDebugEnabled()) { L226: logger.debug("Interrupted.", ignore); L227: } L228: exitCode.set(1); L229: } L230: } L231: L232: if (ComponentUtil.getFessConfig().isSuggestSearchLog()) { L233: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      10K bytes
  3. 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
  4. 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
  5. FessXpathTransformer.java

    final Map<String, String> configMap = getConfigPrameterMap(responseData, ConfigName.CONFIG); L214: final String ignore = configMap.get(Config.IGNORE_ROBOTS_TAGS); L215: if (ignore == null) { L216: if (fessConfig.isCrawlerIgnoreRobotsTags()) { L217: return; L218: } L219: } else if (Boolean.parseBoolean(ignore)) { L220: return; L221: } L222: L223: // meta tag L224: try { L225: final Node value...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      42.9K bytes
  6. 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
  7. 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
  8. 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
  9. ApiAdminSearchlistAction.java

    } L97: throwValidationErrorApi(messages -> messages.addErrorsResultSizeExceeded(GLOBAL)); L98: } L99: L100: throwValidationErrorApi(messages -> messages.addErrorsInvalidQueryUnknown(GLOBAL)); L101: return null; // ignore L102: } L103: L104: // GET /api/admin/searchlist/doc/{doc_id} L105: @Execute L106: public JsonResponse<ApiResult> get$doc(final String id) { L107: return asJson(new ApiDocResponse().doc(searchEngineClient.getDocument(fessConfig...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Jul 24 09:03:45 UTC 2024
      10.2K bytes
  10. UpgradeUtil.java

    (logger.isDebugEnabled()) { L80: logger.debug("Failed to create {} alias for {}", aliasName, indexName); L81: } L82: } L83: } catch (final ResourceNotFoundRuntimeException e) { L84: // ignore L85: } catch (final Exception e) { L86: logger.warn("{} is not found.", aliasConfigPath, e); L87: } L88: return false; L89: } L90: L91: public static boolean addMapping(final IndicesAdminClient indicesClient,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.1K bytes
Back to top