- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 209 for PUT (0.02 sec)
-
ApiAdminWebconfigAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L79: return null; L80: })).status(Status.OK).result()); L81: } L82: L83: // PUT /api/admin/webconfig/setting L84: @Execute L85: public JsonResponse<ApiResult> put$setting(final CreateBody body) { L86: validateApi(body, messages -> {}); L87: body.crudMode = CrudMode.CREATE; L88: final WebConfig webConfig = getWebConfig(body).map(entity -> { L89:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7K bytes -
FessMultipartRequestHandler.java
String[] { value }; L283: } L284: elementsAll.put(fieldName, newArray); L285: elementsText.put(fieldName, newArray); L286: } L287: L288: protected void addFileParameter(final DiskFileItem item) { L289: final String fieldName = item.getFieldName(); L290: final MultipartFormFile formFile = newActionMultipartFormFile(item); L291: elementsAll.put(fieldName, formFile); L292: elementsFile.put(fieldName, formFile); L293: } L294: L295: protected...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
CurlHelper.java
"application/json"); L85: } L86: L87: public CurlRequest post(final String path) { L88: return request(Method.POST, path).header("Content-Type", "application/json"); L89: } L90: L91: public CurlRequest put(final String path) { L92: return request(Method.PUT, path).header("Content-Type", "application/json"); L93: } L94: L95: public CurlRequest delete(final String path) { L96: return request(Method.DELETE, path).header("Content-Type", "application/json"); L97: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 4.8K bytes -
DataStoreFactory.java
throw new IllegalArgumentException("name or dataStore is null."); L59: } L60: if (logger.isDebugEnabled()) { L61: logger.debug("Loaded {}", name); L62: } L63: dataStoreMap.put(name.toLowerCase(Locale.ROOT), dataStore); L64: dataStoreMap.put(dataStore.getClass().getSimpleName().toLowerCase(Locale.ROOT), dataStore); L65: } L66: L67: public DataStore getDataStore(final String name) { L68: if (name == null) { L69: return null; L70:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.1K bytes -
ApiAdminKeymatchAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L74: return null; L75: })).status(Status.OK).result()); L76: } L77: L78: // PUT /api/admin/keymatch/setting L79: @Execute L80: public JsonResponse<ApiResult> put$setting(final CreateBody body) { L81: validateApi(body, messages -> {}); L82: body.crudMode = CrudMode.CREATE; L83: final KeyMatch keyMatch = getKeyMatch(body).map(entity -> { L84: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.2K bytes -
ApiAdminRoleAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); L60: return null; L61: })).status(ApiResult.Status.OK).result()); L62: } L63: L64: // PUT /api/admin/role/setting L65: @Execute L66: public JsonResponse<ApiResult> put$setting(final CreateBody body) { L67: validateApi(body, messages -> {}); L68: body.crudMode = CrudMode.CREATE; L69: final Role entity = getRole(body).orElseGet(() -> { L70: t...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.2K bytes -
PythonJob.java
cmdList, pb -> { L116: pb.directory(baseDir); L117: pb.redirectErrorStream(true); L118: final Map<String, String> environment = pb.environment(); L119: environment.put("SESSION_ID", sessionId); L120: environment.put("OPENSEARCH_URL", SystemUtil.getSearchEngineHttpAddress()); L121: }); L122: L123: final InputStreamThread it = jobProcess.getInputStreamThread(); L124: it.start(); L125: L126: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.9K bytes -
BsLabelType.java
addFieldToSource(sourceMap, "virtualHost", virtualHost); L126: } L127: return sourceMap; L128: } L129: L130: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L131: sourceMap.put(field, value); L132: } L133: L134: // =================================================================================== L135: // Basic Override L136: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 8.5K bytes -
BsWebAuthentication.java
addFieldToSource(sourceMap, "webConfigId", webConfigId); L132: } L133: return sourceMap; L134: } L135: L136: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L137: sourceMap.put(field, value); L138: } L139: L140: // =================================================================================== L141: // Basic Override L142: // ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9K bytes -
DataStoreParams.java
ParamMap<>(new HashMap<>()); L27: } L28: L29: protected DataStoreParams(final Map<String, Object> params) { L30: this.params = new ParamMap<>(new HashMap<>(getDataMap(params))); L31: } L32: L33: public void put(final String key, final Object value) { L34: params.put(key, value); L35: } L36: L37: public Object get(final String key) { L38: return params.get(key); L39: } L40: L41: public String getAsString(final String key) { L42: if (params.get(key) instanceof...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes