- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for ignore (0.04 sec)
-
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 -
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 -
CharMappingFile.java
} L284: return null; L285: } L286: L287: @Override L288: public void close() { L289: try { L290: writer.flush(); L291: } catch (final IOException e) { L292: // ignore L293: } L294: CloseableUtil.closeQuietly(writer); L295: L296: if (isCommit) { L297: try { L298: dictionaryManager.store(CharMappingFile.this, newFile); L299: } finally...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
SynonymFile.java
reader.readLine()) != null) { L131: if (line.length() == 0 || line.charAt(0) == '#') { L132: if (updater != null) { L133: updater.write(line); L134: } L135: continue; // ignore empty lines and comments L136: } L137: L138: String[] inputs; L139: String[] outputs; L140: L141: final List<String> sides = split(line, "=>"); L142: if (sides.size() > 1)...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 12.5K bytes -
StemmerOverrideFile.java
} L281: return null; L282: } L283: L284: @Override L285: public void close() { L286: try { L287: writer.flush(); L288: } catch (final IOException e) { L289: // ignore L290: } L291: CloseableUtil.closeQuietly(writer); L292: L293: if (isCommit) { L294: try { L295: dictionaryManager.store(StemmerOverrideFile.this, newFile); L296: } finally...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
fess_config.properties
e3cu3002 L218:crawler.crawling.data.encoding=UTF-8 L219:crawler.web.protocols=http,https L220:crawler.file.protocols=file,smb,smb1,ftp,storage L221:crawler.data.env.param.key.pattern=^FESS_ENV_.* L222:crawler.ignore.robots.txt=false L223:crawler.ignore.robots.tags=false L224:crawler.ignore.content.exception=true L225:crawler.failure.url.status.codes=404 L226:crawler.system.monitor.interval=60 L227:crawler.hotthread.ignore_idle_threads=true L228:crawler.hotthread.interval=500ms L229:crawler.hotthread.snapshots=10...github.com/codelibs/fess/src/main/resources/fes...Tue Oct 01 14:13:38 UTC 2024 30.9K bytes -
RoleQueryHelper.java
catch (final RuntimeException e) { L142: try { L143: requestManager.findLoginManager(FessUserBean.class).ifPresent(LoginManager::logout); L144: } catch (final Exception e1) { L145: // ignore L146: } L147: throw e; L148: } L149: } L150: L151: if (defaultRoleList != null) { L152: roleSet.addAll(defaultRoleList); L153: } L154: L155: if (logger.isDebugEnabled())...github.com/codelibs/fess/src/main/java/org/code...Thu Jul 25 01:48:41 UTC 2024 11.5K bytes -
AdminMaintenanceAction.java
(StringUtil.isNotBlank(ip)) { L284: if (buf.length() > 0) { L285: buf.append(" : "); L286: } L287: buf.append(ip); L288: } L289: } catch (final Exception e) { L290: // ignore L291: } L292: return buf.toString(); L293: } L294: L295: protected boolean isLogFilename(final String name) { L296: return name.endsWith(".log") || name.endsWith(".log.gz"); L297: } L298: L299: protected boolean startReindex(final...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 14K bytes -
ComponentUtil.java
hasComponent(INGEST_FACTORY); L594: } L595: L596: public static boolean available() { L597: try { L598: return SingletonLaContainer.getComponent(SYSTEM_HELPER) != null; L599: } catch (final Exception e) { L600: // ignore L601: } L602: return false; L603: } L604: L605: /** L606: * For test purpose only. L607: * L608: * @param fessConfig fessConfig instance L609: */ L610: public static void setFessConfig(final FessConfig fessConfig)...github.com/codelibs/fess/src/main/java/org/code...Mon Jun 17 13:35:51 UTC 2024 20.2K bytes -
AdminSearchlistAction.java
throwValidationError(messages -> messages.addErrorsResultSizeExceeded(GLOBAL), this::asListHtml); L156: } L157: L158: throwValidationError(messages -> messages.addErrorsInvalidQueryUnknown(GLOBAL), this::asListHtml); L159: return null; // ignore L160: } L161: L162: @Execute L163: @Secured({ ROLE, ROLE + VIEW }) L164: public HtmlResponse search(final ListForm form) { L165: saveToken(); L166: return doSearch(form); L167: } L168: L169: @Execute L170: @Secured({...github.com/codelibs/fess/src/main/java/org/code...Wed Jul 24 09:03:45 UTC 2024 18.3K bytes