Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 209 for PUT (0.02 sec)

  1. ScriptExecutor.java

    til; L23: L24:public class ScriptExecutor extends JobExecutor { L25: L26: @Override L27: public Object execute(final String scriptType, final String script) { L28: final Map<String, Object> params = new HashMap<>(); L29: params.put("executor", this); L30: L31: return ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(script, params); L32: } L33: L34:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.1K bytes
  2. ApiAdminDuplicatehostAction.java

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

    addFieldToSource(sourceMap, "virtualHost", virtualHost); L108: } L109: return sourceMap; L110: } L111: L112: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L113: sourceMap.put(field, value); L114: } L115: L116: // =================================================================================== L117: // Basic Override L118: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.1K bytes
  4. BaseThumbnailGenerator.java

    L66: } L67: L68: public void addCondition(final String key, final String regex) { L69: final String value = conditionMap.get(key); L70: if (StringUtil.isBlank(value)) { L71: conditionMap.put(key, regex); L72: } else { L73: conditionMap.put(key, value + "|" + regex); L74: } L75: } L76: L77: @Override L78: public boolean isTarget(final Map<String, Object> docMap) { L79: final String thumbnailFieldName = ComponentUtil.getFessConfi...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      11.1K bytes
  5. BsAccessToken.java

    addFieldToSource(sourceMap, "updatedTime", updatedTime); L114: } L115: return sourceMap; L116: } L117: L118: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L119: sourceMap.put(field, value); L120: } L121: L122: // =================================================================================== L123: // Basic Override L124: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.5K bytes
  6. AdminFileauthAction.java

    ta, "fileConfigItems", itemList); L309: } L310: L311: protected Map<String, String> createItem(final String label, final String value) { L312: final Map<String, String> map = new HashMap<>(2); L313: map.put(Constants.ITEM_LABEL, label); L314: map.put(Constants.ITEM_VALUE, value); L315: return map; L316: } L317: L318: // =================================================================================== L319: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.5K bytes
  7. AdminReqheaderAction.java

    ata, "webConfigItems", itemList); L299: } L300: L301: protected Map<String, String> createItem(final String label, final String value) { L302: final Map<String, String> map = new HashMap<>(2); L303: map.put(Constants.ITEM_LABEL, label); L304: map.put(Constants.ITEM_VALUE, value); L305: return map; L306: } L307: L308: // =================================================================================== L309: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.6K bytes
  8. CorsHandlerFactory.java

    CorsHandler> handerMap = new HashMap<>(); L28: L29: public void add(final String origin, final CorsHandler handler) { L30: if (logger.isDebugEnabled()) { L31: logger.debug("Loaded {}", origin); L32: } L33: handerMap.put(origin, handler); L34: } L35: L36: public CorsHandler get(final String origin) { L37: final CorsHandler handler = handerMap.get(origin); L38: if (handler != null) { L39: return handler; L40: } L41: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.4K bytes
  9. QueryProcessor.java

    queryCommand == null) { L53: throw new IllegalArgumentException("name or queryCommand is null."); L54: } L55: if (logger.isDebugEnabled()) { L56: logger.debug("Loaded {}", name); L57: } L58: queryCommandMap.put(name, queryCommand); L59: } L60: L61: public void addFilter(final Filter filter) { L62: filterList.add(filter); L63: createFilterChain(); L64: } L65: L66: protected void createFilterChain() { L67: FilterChain chain =...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.3K bytes
  10. ApiAdminAccesstokenAction.java

    throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L75: return null; L76: })).status(Status.OK).result()); L77: } L78: L79: // PUT /api/admin/accesstoken/setting L80: @Execute L81: public JsonResponse<ApiResult> put$setting(final CreateBody body) { L82: validateApi(body, messages -> {}); L83: body.crudMode = CrudMode.CREATE; L84: final AccessToken accessToken = getAccessToken(body).map(entity ->...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7K bytes
Back to top