- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 712 for doDelete (0.14 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
} /** * Deletes a document by ID from the search index. * * @param id the document ID to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/searchlist/doc/{doc_id} @Execute public JsonResponse<ApiResult> delete$doc(final String id) { try { final QueryBuilder query = QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
assertTrue(chain3.changePasswordCallCount <= 1); } // Test delete with no chains public void test_delete_noChains() { User user = createTestUser("testuser"); authenticationManager.delete(user); // Should not throw exception even with no chains } // Test delete with single chain public void test_delete_singleChain() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
}).createPageNumberList()); return labelTypeList; } /** * Delete a label type. * * @param labelType The label type to delete. */ public void delete(final LabelType labelType) { labelTypeBhv.delete(labelType, op -> { op.setRefreshPolicy(Constants.TRUE); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
cmd/bootstrap-peer-server_gen.go
err = msgp.WrapError(err, "MinioEnv") return } if z.MinioEnv == nil { z.MinioEnv = make(map[string]string, zb0003) } else if len(z.MinioEnv) > 0 { for key := range z.MinioEnv { delete(z.MinioEnv, key) } } for zb0003 > 0 { zb0003-- var za0002 string var za0003 string za0002, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "MinioEnv")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 21 14:49:49 UTC 2024 - 7K bytes - Viewed (0) -
docs/ko/docs/tutorial/first-steps.md
* `POST` * `GET` * `PUT` * `DELETE` ...흔히 사용되지 않는 것들도 있습니다: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` HTTP 프로토콜에서는 이러한 "메소드"를 하나(또는 이상) 사용하여 각 경로와 통신할 수 있습니다. --- API를 설계할 때 일반적으로 특정 행동을 수행하기 위해 특정 HTTP 메소드를 사용합니다. 일반적으로 다음과 같습니다: * `POST`: 데이터를 생성하기 위해. * `GET`: 데이터를 읽기 위해. * `PUT`: 데이터를 수정하기 위해. * `DELETE`: 데이터를 삭제하기 위해.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.3K bytes - Viewed (0) -
docs/zh-hant/docs/tutorial/first-steps.md
這裡的「操作」指的是 HTTP 的「方法」之一。 其中包括: * `POST` * `GET` * `PUT` * `DELETE` ……以及更少見的: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` 在 HTTP 協定中,你可以使用這些「方法」之一(或更多)與每個路徑進行通信。 --- 在建置 API 時,你通常使用這些特定的 HTTP 方法來執行特定的動作。 通常你使用: * `POST`:用來建立資料。 * `GET`:用來讀取資料。 * `PUT`:用來更新資料。 * `DELETE`:用來刪除資料。 所以,在 OpenAPI 中,每個 HTTP 方法都被稱為「操作」。 我們將會稱它們為「**操作**」。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:20:58 UTC 2024 - 11.6K bytes - Viewed (0) -
cmd/erasure-sets.go
} set := s.getHashedSet(object) return set.DeleteObject(ctx, bucket, object, opts) } // DeleteObjects - bulk delete of objects // Bulk delete is only possible within one set. For that purpose // objects are group by set first, and then bulk delete is invoked // for each set, the error response of each delete will be returned
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37K bytes - Viewed (1) -
guava-tests/test/com/google/common/io/FilesTest.java
} @Override public boolean renameTo(File to) { return canRename && super.renameTo(to); } @Override public boolean delete() { return canDelete && super.delete(); } private static final long serialVersionUID = 0; } public void testLineReading() throws IOException { File temp = createTempFile();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
} /** * Deletes a bad word. * @param badWord The bad word to delete. */ public void delete(final BadWord badWord) { badWordBhv.delete(badWord, op -> op.setRefreshPolicy(Constants.TRUE)); } /** * Sets up search conditions for bad word list queries.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
} // DELETE /api/admin/fileauth/setting/{id} /** * Deletes a specific file authentication setting. * * @param id the file authentication setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0)