- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 1,099 for Deleted (0.04 sec)
-
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) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
import jakarta.servlet.http.HttpSession; /** * Abstract base class for search-related actions in the Fess search application. * Provides common functionality for search operations, including search form handling, * label management, user authentication, and search result processing. * * This class extends FessBaseAction and serves as the foundation for all search-related * web actions in the application. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/SmbPipeHandleTest.java
@Test public void testGetOutputStream() throws CIFSException { assertEquals(mockOutputStream, smbPipeHandle.getOutput(), "getOutput() should return the correct output stream."); } /** * Tests related to the lifecycle management of the handle (e.g., closing). */ @Nested public class LifecycleManagementTest { /** * Verifies that the close method can be called without throwing an exception.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 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) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(FileAuthentication entity) { doDelete(entity, null); } public void delete(FileAuthentication entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
ci/official/utilities/cleanup_docker.sh
# limitations under the License. # ============================================================================== cat <<EOF IMPORTANT: These tests ran under docker. This script does not clean up the container for you! You can delete the container with: $ docker rm -f tf You can also execute more commands within the container with e.g.: $ docker exec tf bazel clean $ docker exec -it tf bash EOF
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Aug 10 20:26:29 UTC 2023 - 998 bytes - Viewed (0) -
ISSUES.md
1. It must be a bug/performance issue or a feature request or a build issue or a documentation issue (for small doc fixes please send a PR instead). 1. Make sure the Issue Template is filled out. 1. The issue should be related to the repo it is created in. **Here's why we have this policy:** We want to focus on the work that benefits the whole community, e.g., fixing bugs and adding features. Individual support
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Feb 11 22:37:27 UTC 2021 - 606 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
} public void test_getRelatedQueries_nullQuery() { List<RelatedQuery> testData = new ArrayList<>(); testData.add(createRelatedQuery("test", new String[] { "related" }, "")); mockBhv.setTestData(testData); relatedQueryHelper.load(); String[] results = relatedQueryHelper.getRelatedQueries(null); assertEquals(0, results.length); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
} /* * Delete or Delete Directory Request / Response */ if (log.isDebugEnabled()) { log.debug("delete: " + fileName); } if ((this.attributes & ATTR_DIRECTORY) != 0) { /* * Recursively delete directory contents */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsScheduledJobBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(ScheduledJob entity) { doDelete(entity, null); } public void delete(ScheduledJob entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.3K bytes - Viewed (0)