Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 209 for PUT (0.01 sec)

  1. SearchApiManager.java

    "ctx._source." + fessConfig.getIndexFieldFavoriteCount() + "+=1"); L658: builder.setScript(script); L659: final Map<String, Object> upsertMap = new HashMap<>(); L660: upsertMap.put(fessConfig.getIndexFieldFavoriteCount(), 1); L661: builder.setUpsert(upsertMap); L662: builder.setRefreshPolicy(Constants.TRUE); L663: }); L664: L665: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  2. RelatedContentHelper.java

    Pair<Map<String, String>, List<Pair<Pattern, String>>> pair = relatedContentMap.get(key); L69: if (pair == null) { L70: pair = new Pair<>(new HashMap<>(), new ArrayList<>()); L71: relatedContentMap.put(key, pair); L72: } L73: if (entity.getTerm().startsWith(regexPrefix)) { L74: final String regex = entity.getTerm().substring(regexPrefix.length()); L75: if (StringUtil.isBlank(regex)) { L76: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.8K bytes
  3. BsDataConfig.java

    addFieldToSource(sourceMap, "virtualHosts", virtualHosts); L144: } L145: return sourceMap; L146: } L147: L148: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L149: sourceMap.put(field, value); L150: } L151: L152: // =================================================================================== L153: // Basic Override L154: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  4. ApiAdminLabeltypeAction.java

    throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L79: return null; L80: })).status(Status.OK).result()); L81: } L82: L83: // PUT /api/admin/labeltype/setting L84: @Execute L85: public JsonResponse<ApiResult> put$setting(final CreateBody body) { L86: validateApi(body, messages -> {}); L87: body.crudMode = CrudMode.CREATE; L88: final LabelType labelType = getLabelType(body).map(entity -> { L89:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.8K bytes
  5. LanguageHelper.java

    L63: if (language != null) { L64: if (logger.isDebugEnabled()) { L65: logger.debug("set {} to lang field", language); L66: } L67: doc.put(fessConfig.getIndexFieldLang(), language); L68: break; L69: } L70: } L71: } L72: if (language == null) { L73: return; L74: } L75: } L76:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.5K bytes
  6. _readme.txt

    L1:Directory for library extension L2: L3:If you use a database that DBFlute does not have its JDBC driver, L4:put your own JDBC driver for the database here. L5:(e.g. Oracle, DB2, SQLServer)...
    github.com/codelibs/fess/dbflute_fess/extlib/_r...
    Sat Jul 04 22:46:31 UTC 2015
      177 bytes
  7. CrawlerStatsHelper.java

    keyObj, final String action) { L102: getCacheKey(keyObj).ifPresent(key -> { L103: try { L104: final StatsObject data = statsCache.getIfPresent(key); L105: if (data != null) { L106: data.put(escapeValue(action), getCurrentTimeMillis()); L107: } L108: } catch (final Exception e) { L109: final StringBuilder buf = createStringBuffer(keyObj, getCurrentTimeMillis()); L110: buf.append('...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      9.9K bytes
  8. ApiAdminBoostdocAction.java

    throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L76: return null; L77: })).status(Status.OK).result()); L78: } L79: L80: // PUT /api/admin/boostdoc/setting L81: @Execute L82: public JsonResponse<ApiResult> put$setting(final CreateBody body) { L83: validateApi(body, messages -> {}); L84: body.crudMode = CrudMode.CREATE; L85: final BoostDocumentRule boostDoc = getBoostDocumentRule(body).map(entity...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.4K bytes
  9. ApiAdminGroupAction.java

    throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L62: return null; L63: })).status(ApiResult.Status.OK).result()); L64: } L65: L66: // PUT /api/admin/group/setting L67: @Execute L68: public JsonResponse<ApiResult> put$setting(final CreateBody body) { L69: validateApi(body, messages -> {}); L70: validateAttributes(body.attributes, this::throwValidationErrorApi); L71: body.crudMode = CrudMode.CREATE; L72:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.8K bytes
  10. ApiAdminDictMappingAction.java

    messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, String.valueOf(id))); L66: return null; L67: })).status(ApiResult.Status.OK).result()); L68: } L69: L70: // PUT /api/admin/dict/mapping/setting/{dictId} L71: @Execute L72: public JsonResponse<ApiResult> put$setting(final String dictId, final CreateBody body) { L73: body.dictId = dictId; L74: validateApi(body, messages -> {}); L75: body.crudMode = CrudMode.CREATE; L76: final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.2K bytes
Back to top