Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for PUT (0.02 sec)

  1. Curl.java

    return new CurlRequest(Method.GET, url); L30: } L31: L32: public static CurlRequest post(final String url) { L33: return new CurlRequest(Method.POST, url); L34: } L35: L36: public static CurlRequest put(final String url) { L37: return new CurlRequest(Method.PUT, url); L38: } L39: L40: public static CurlRequest delete(final String url) { L41: return new CurlRequest(Method.DELETE, url); L42: } L43: L44: public static CurlRequest head(final String url) { L45:...
    github.com/codelibs/curl4j/src/main/java/org/co...
    Mon Nov 14 21:05:19 UTC 2022
      1.7K bytes
  2. RelatedQueryTests.java

    requestBody = new HashMap<>(); L63: final String keyProp = NAME_PREFIX + id; L64: requestBody.put(KEY_PROPERTY, keyProp); L65: requestBody.put("queries", "query" + id); L66: return requestBody; L67: } L68: L69: @Override L70: protected Map<String, Object> getUpdateMap() { L71: final Map<String, Object> updateMap = new HashMap<>(); L72: updateMap.put("queries", "new_query"); L73: return updateMap; L74: } L75: L76: @Test L77: void crudTest()...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.3K bytes
  3. SynonymTests.java

    requestBody = new HashMap<>(); L68: final String keyProp = NAME_PREFIX + id; L69: requestBody.put(KEY_PROPERTY, keyProp); L70: requestBody.put("outputs", "output"); L71: return requestBody; L72: } L73: L74: @Override L75: protected Map<String, Object> getUpdateMap() { L76: final Map<String, Object> updateMap = new HashMap<>(); L77: updateMap.put("outputs", "new_outputs"); L78: return updateMap; L79: } L80: L81: @Test L82: void crudTest()...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.4K bytes
  4. ApiResult.java

    Object> fieldMap = new HashMap<>(2, 1f); L199: fieldMap.put("name", field.getName()); L200: fieldMap.put("result", field.getValueCountMap().entrySet().stream().map(e -> { L201: final Map<String, Object> valueCount = new HashMap<>(2, 1f); L202: valueCount.put("value", e.getKey()); L203: valueCount.put("count", e.getValue()); L204: return valueCount;...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.5K bytes
  5. ApiAdminRelatedqueryAction.java

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

    String objectName = item.objectName(); L280: map.put("id", encodeId(objectName)); L281: map.put("path", prefix); L282: map.put("name", getName(objectName)); L283: map.put("hashCode", item.hashCode()); L284: map.put("size", item.size()); L285: map.put("directory", item.isDir()); L286: if (!item.isDir()) { L287: map.put("lastModified", item.lastModified()); L288: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      19.9K bytes
  7. User.java

    Map<String, Object> sourceMap = new HashMap<>(); L114: if (name != null) { L115: sourceMap.put("name", name); L116: } L117: if (password != null) { L118: sourceMap.put("password", password); L119: } L120: if (groups != null) { L121: sourceMap.put("groups", groups); L122: } L123: if (roles != null) { L124: sourceMap.put("roles", roles); L125: } L126: if (attributes != null) { L127: sourceMap...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.8K bytes
  8. ElevateWordTests.java

    Object> requestBody = new HashMap<>(); L63: final String keyProp = NAME_PREFIX + id; L64: requestBody.put(KEY_PROPERTY, keyProp); L65: requestBody.put("boost", id); L66: return requestBody; L67: } L68: L69: @Override L70: protected Map<String, Object> getUpdateMap() { L71: final Map<String, Object> updateMap = new HashMap<>(); L72: updateMap.put(KEY_PROPERTY, NAME_PREFIX + "new"); L73: return updateMap; L74: } L75: L76: @Test L77: void crudTest()...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.3K bytes
  9. RelatedContentTests.java

    requestBody = new HashMap<>(); L63: final String keyProp = NAME_PREFIX + id; L64: requestBody.put(KEY_PROPERTY, keyProp); L65: requestBody.put("content", "query" + id); L66: return requestBody; L67: } L68: L69: @Override L70: protected Map<String, Object> getUpdateMap() { L71: final Map<String, Object> updateMap = new HashMap<>(); L72: updateMap.put("content", "new_query"); L73: return updateMap; L74: } L75: L76: @Test L77: void crudTest()...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.3K bytes
  10. MappingTests.java

    requestBody = new HashMap<>(); L68: final String keyProp = NAME_PREFIX + id; L69: requestBody.put(KEY_PROPERTY, keyProp); L70: requestBody.put("output", "output"); L71: return requestBody; L72: } L73: L74: @Override L75: protected Map<String, Object> getUpdateMap() { L76: final Map<String, Object> updateMap = new HashMap<>(); L77: updateMap.put("output", "new_output"); L78: return updateMap; L79: } L80: L81: @Test L82: void crudTest()...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.4K bytes
Back to top