- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 738 for failed (0.04 sec)
-
ApiAdminLabeltypeAction.java
= CrudMode.CREATE; L88: final LabelType labelType = getLabelType(body).map(entity -> { L89: try { L90: labelTypeService.store(entity); L91: } catch (final Exception e) { L92: logger.warn("Failed to process a request.", e); L93: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L94: } L95: return entity; L96: }).orElseGet(() -> {...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.8K bytes -
AdminSchedulerAction.java
L228: try { L229: scheduledJobService.store(entity); L230: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L231: } catch (final Exception e) { L232: logger.warn("Failed to process a request.", e); L233: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L234: this::asEditHtml); L235: } L236: }).orElse(()...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 18.1K bytes -
DocumentHelper.java
on e) { L85: if (logger.isDebugEnabled()) { L86: logger.debug("tikaExtractor is not found: {}", e.getMessage().replace('\n', ' ')); L87: } L88: } catch (final Exception e) { L89: logger.warn("Failed to initiaize TikaExtractor.", e); L90: } L91: } L92: L93: public String getTitle(final ResponseData responseData, final String title, final Map<String, Object> dataMap) { L94: if (title == null) { L95: return StringUtil.EMPTY;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 12K bytes -
ApiAdminWebconfigAction.java
= CrudMode.CREATE; L88: final WebConfig webConfig = getWebConfig(body).map(entity -> { L89: try { L90: webConfigService.store(entity); L91: } catch (final Exception e) { L92: logger.warn("Failed to process a request.", e); L93: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L94: } L95: return entity; L96: }).orElseGet(() -> {...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7K bytes -
ApiAdminFileconfigAction.java
CrudMode.CREATE; L88: final FileConfig fileConfig = getFileConfig(body).map(entity -> { L89: try { L90: fileConfigService.store(entity); L91: } catch (final Exception e) { L92: logger.warn("Failed to process a request.", e); L93: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L94: } L95: return entity; L96: }).orElseGet(() -> {...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7K bytes -
ApiAdminFileauthAction.java
CrudMode.CREATE; L91: final FileAuthentication fileAuth = getFileAuthentication(body).map(entity -> { L92: try { L93: fileAuthService.store(entity); L94: } catch (final Exception e) { L95: logger.warn("Failed to process a request.", e); L96: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L97: } L98: return entity; L99: }).orElseGet(() -> {...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.8K bytes -
AdminDesignAction.java
============ L291: private OptionalEntity<File> getTargetFile(final String fileName) { L292: final File baseDir = new File(getServletContext().getRealPath("/")); L293: final File targetFile = new File(getServletContext().getRealPath(fileName)); L294: final List<File> fileList = getAccessibleFileList(baseDir); L295: for (final File file : fileList) { L296: if (targetFile.equals(file)) { L297: return OptionalEntity.of(targetFile);...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 16.1K bytes -
IndexUpdater.java
L142: try { L143: urlFilterService.delete(sessionId); L144: } catch (final Exception e) { L145: logger.warn("Failed to delete url filters: {}", sessionId, e); L146: } L147: try { L148: urlQueueService.delete(sessionId); L149: } catch (final Exception e) { L150: logger.warn("Failed to delete url queues: {}", sessionId, e); L151: } L152: try { L153: dataService.delete(sessionId); L154: } catch...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24.2K bytes -
ElevateWordService.java
} L263: } L264: } catch (final Exception e) { L265: logger.warn("Failed to read a sugget elevate word: {}", list, e); L266: } L267: } L268: elevateWordBhv.refresh(); L269: } catch (final IOException e) { L270: logger.warn("Failed to read a sugget elevate word.", e); L271: } L272: } L273: L274: public void exportCsv(final Writer writer) { L275: final...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.5K bytes -
SearchLogHelper.java
{ L253: try { L254: return OptionalEntity.of(userInfoCache.get(userCode)); L255: } catch (final ExecutionException e) { L256: if (logger.isDebugEnabled()) { L257: logger.debug("Failed to access UserInfo cache.", e); L258: } L259: } L260: } L261: return OptionalEntity.empty(); L262: } L263: L264: protected void processSearchLogQueue(final Queue<SearchLog> queue) { L265: final...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 02:07:37 UTC 2024 21.7K bytes