Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for store (0.03 sec)

  1. Crawler.java

    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: final Map<String,...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24K bytes
  2. ApiAdminSearchlistAction.java

    ComponentUtil.getCrawlingInfoHelper().generateId(entity); L130: entity.put(fessConfig.getIndexFieldId(), newId); L131: L132: final String index = fessConfig.getIndexDocumentUpdateIndex(); L133: searchEngineClient.store(index, entity); L134: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L135: } catch (final Exception e) { L136: logger.warn("Failed to add {}", entity, e); L137: throwVa...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Jul 24 09:03:45 UTC 2024
      10.2K bytes
  3. ApiAdminBadwordAction.java

    -> { L94: throwValidationErrorApi(messages -> { L95: messages.addErrorsCrudFailedToCreateInstance(GLOBAL); L96: }); L97: return null; L98: }); L99: try { L100: badWordService.store(entity); L101: suggestHelper.addBadWord(entity.getSuggestWord(), false); L102: } catch (final Exception e) { L103: logger.warn("Failed to process a request.", e); L104: throwValidationErrorApi(messages -> me...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.4K bytes
  4. PathMappingService.java

    }).createPageNumberList()); L55: L56: return pathMappingList; L57: } L58: L59: public OptionalEntity<PathMapping> getPathMapping(final String id) { L60: return pathMappingBhv.selectByPK(id); L61: } L62: L63: public void store(final PathMapping pathMapping) { L64: L65: pathMappingBhv.insertOrUpdate(pathMapping, op -> { L66: op.setRefreshPolicy(Constants.TRUE); L67: }); L68: L69: ComponentUtil.getPathMappingHelper().init(); L70: } L71: L72:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.7K bytes
  5. DictionaryManagerTest.java

    dictionaryManager = new DictionaryManager(); L60: final SynonymCreator synonymCreator = new SynonymCreator(); L61: final SynonymFile synonymFile = (SynonymFile) synonymCreator.create(file1.getPath(), new Date()); L62: dictionaryManager.store(synonymFile, file1); L63: final DictionaryFile<? extends DictionaryItem>[] synonymFiles = dictionaryManager.getDictionaryFiles(); L64: assertEquals(1, synonymFiles.length); L65: } L66: */ L67: L68:}...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.4K bytes
  6. CharMappingFile.java

    } 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 { L300: newFile.delete(); L301: } L302: } else { L303: newFile.delete(); L304: } L305: } L306: } L307: L308:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      10.2K bytes
  7. FileListIndexUpdateCallbackImpl.java

    } L94: return new ThreadPoolExecutor(nThreads, nThreads, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>(nThreads), L95: new ThreadPoolExecutor.CallerRunsPolicy()); L96: } L97: L98: @Override L99: public void store(final DataStoreParams paramMap, final Map<String, Object> dataMap) { L100: final CrawlerStatsHelper crawlerStatsHelper = ComponentUtil.getCrawlerStatsHelper(); L101: final StatsKeyObject keyObj = paramMap.get(Constants.CRAWLER_STATS_KEY)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      16.8K bytes
  8. AdminRelatedcontentAction.java

    CrudMode.CREATE); L185: validate(form, messages -> {}, this::asEditHtml); L186: verifyToken(this::asEditHtml); L187: getRelatedContent(form).ifPresent(entity -> { L188: try { L189: relatedContentService.store(entity); L190: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L191: } catch (final Exception e) { L192: logger.warn("Failed to process a request.", e); L193: throwValidationError(messages...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.2K bytes
  9. AdminBoostdocAction.java

    CrudMode.CREATE); L185: validate(form, messages -> {}, this::asEditHtml); L186: verifyToken(this::asEditHtml); L187: getBoostDocumentRule(form).ifPresent(entity -> { L188: try { L189: boostDocumentRuleService.store(entity); L190: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L191: } catch (final Exception e) { L192: logger.warn("Failed to process a request.", e); L193: throwValidationError(messages...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.1K bytes
  10. ApiAdminBoostdocAction.java

    L83: validateApi(body, messages -> {}); L84: body.crudMode = CrudMode.CREATE; L85: final BoostDocumentRule boostDoc = getBoostDocumentRule(body).map(entity -> { L86: try { L87: boostDocumentRuleService.store(entity); L88: } catch (final Exception e) { L89: logger.warn("Failed to process a request.", e); L90: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)));...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.4K bytes
Back to top