- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 738 for failed (0.07 sec)
-
GroovyEngine.java
GroovyShell(new Binding(bindingMap)); L39: try { L40: return groovyShell.evaluate(template); L41: } catch (final JobProcessingException e) { L42: throw e; L43: } catch (final Exception e) { L44: 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:...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 2K bytes -
DataConfig.java
(StringUtil.isNotBlank(port)) { L235: try { L236: smbAuth.setPort(Integer.parseInt(port)); L237: } catch (final NumberFormatException e) { L238: logger.warn("Failed to parse {}", port, e); L239: } L240: } L241: smbAuth.setUsername(username); L242: smbAuth.setPassword(password == null ? StringUtil.EMPTY : password); L243: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 18.5K bytes -
AdminUserAction.java
-> { L217: try { L218: userService.store(entity); L219: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L220: } catch (final Exception e) { L221: logger.warn("Failed to add {}", entity, e); L222: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L223: this::asEditHtml); L224: } L225: }).orElse(()...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.9K bytes -
postrm
L46: L47: *) L48: echo "post remove script called with unknown argument \`$1'" >&2 L49: exit 1 L50: ;; L51:esac L52: L53:# Sets the default values for fess variables used in this script L54:FESS_USER="${packaging.fess.user}" L55:FESS_GROUP="${packaging.fess.group}" L56:PID_DIR="${packaging.fess.pid.dir}" L57: L58:# Source the default env file L59:if [ "$SOURCE_ENV_FILE" = "true" ]; then L60: FESS_ENV_FILE="${packaging.env.file}" L61: if [ -f "$FESS_ENV_FILE" ]; then L62: ...github.com/codelibs/fess/src/packaging/common/s...Thu Dec 10 01:24:02 UTC 2015 2.2K bytes -
CrawlerLogHelper.java
(!ComponentUtil.available()) { L120: if (logger.isDebugEnabled()) { L121: logger.debug("container was destroyed."); L122: } L123: return; L124: } L125: logger.warn("Failed to store a failure url.", e); L126: } L127: L128: if (cae.isDebugEnabled()) { L129: logger.debug("[{}] Crawling Access Exception at {}", failureUrlId, urlQueue.getUrl(), cae); L130: } else if (cae.isInfoEnabled()) {...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 7.3K bytes -
FessWebResourceRoot.java
} L53: } catch (final Exception e) { L54: logger.log(Level.WARNING, e, () -> { L55: final String canonicalPath = possibleJar.getCanonicalPath(); L56: return "Failed to read " + canonicalPath; L57: }); L58: } L59: } L60: } L61: } L62:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.5K bytes -
Crawler.java
dayForCleanup); L359: } catch (final Exception e) { L360: logger.warn("Failed to store crawling information.", e); L361: } L362: L363: try { L364: return crawler.doCrawl(options); L365: } finally { L366: try { L367: crawlingInfoHelper.store(options.sessionId, false); L368: } catch (final Exception e) { L369: logger.warn("Failed to store crawling information.", e); L370: } L371: L372: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes -
ViewHelper.java
refox", "file://")); L405: } else { L406: url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.firefox", "file://///")); L407: } L408: break; L409: case CHROME: L410: if (isLocalFile) { L411: url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.chrome", "file://")); L412: } else { L413: url = url.replaceFirst("file:/+", systemProper...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
CacheAction.java
Object> doc = null; L56: try { L57: doc = searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getCacheResponseFields(), getUserBean()).orElse(null); L58: } catch (final Exception e) { L59: logger.warn("Failed to request: {}", form.docId, e); L60: } L61: if (doc == null) { L62: saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId)); L63: return redirect(ErrorAction.class); L64: } L65: L66: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.4K bytes -
FessUserLocaleProcessProvider.java
(StringUtil.isNotBlank(name)) { L49: try { L50: return requestManager.getParameter(name).filter(StringUtil::isNotBlank).map(LocaleUtils::toLocale); L51: } catch (final Exception e) { L52: logger.debug("Failed to parse a value of {}.", name, e); L53: } L54: } L55: return OptionalObject.empty(); L56: } L57: L58: @Override L59: public OptionalThing<Locale> getRequestedLocale(final RequestManager requestManager) { L60: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.8K bytes