- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for getUpdateMap (0.93 sec)
-
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
} @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); // updateMap.put("click_count", 100); return updateMap; } @Override protected void testUpdate() { // Test: update settings api final Map<String, Object> updateMap = getUpdateMap();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 02:18:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/BackupTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SuggestTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/GroupTests.java
attributes.put("gidNumber", Integer.valueOf(id).toString()); requestBody.put("attributes", attributes); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); final Map<String, String> newAttributes = new HashMap<>(); newAttributes.put("gidNumber", "100");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/AccessTokenTests.java
requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("permissions", "Radmin-api"); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("permissions", "Radmin-api2"); return updateMap; } @Override protected void checkUpdate() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 02:18:38 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/DuplicateHostTests.java
requestBody.put("sort_order", id); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("duplicate_host_name", "new_duplicate_host"); return updateMap; } @Test void crudTest() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/KeyMatchTests.java
requestBody.put("max_size", Integer.valueOf(id).toString()); requestBody.put("boost", 100); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("query", "new_query"); return updateMap; } @Test void crudTest() { testCreate();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/LabelTypeTests.java
requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("value", Integer.valueOf(id).toString()); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("value", "newValue"); return updateMap; } @Test void crudTest() { testCreate();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/LogTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
abstract protected String getItemEndpointSuffix(); abstract protected Map<String, Object> createTestParam(int id); abstract protected Map<String, Object> getUpdateMap(); // ================ // Constant // ================ protected String getIdKey() { return "id"; } @BeforeAll protected static void initAll() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0)