- Sort Score
- Num 10 results
- Language All
Results 241 - 250 of 1,154 for Web (0.01 seconds)
-
src/main/resources/fess_env_thumbnail.properties
# ======================================================================================== # Web
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 12 13:38:57 GMT 2018 - 2.2K bytes - Click Count (0) -
docs/zh/docs/tutorial/security/simple-oauth2.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 9K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-forms.md
表单数据通常使用“媒体类型” `application/x-www-form-urlencoded` 进行编码。 但当表单包含文件时,会编码为 `multipart/form-data`。你将在下一章阅读如何处理文件。 如果你想了解更多关于这些编码和表单字段的信息,请参阅 [<abbr title="Mozilla Developer Network - Mozilla 开发者网络">MDN</abbr> Web 文档的 `POST`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST)。 /// /// warning 你可以在一个路径操作中声明多个 `Form` 参数,但不能同时再声明要接收为 JSON 的 `Body` 字段,因为此时请求体会使用 `application/x-www-form-urlencoded` 而不是 `application/json` 进行编码。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.5K bytes - Click Count (0) -
docs/zh/docs/deployment/manually.md
``` </div> 这在大多数情况下都能正常运行。😎 例如,您可以使用该命令在容器、服务器等环境中启动您的 **FastAPI** 应用。 ## ASGI 服务器 { #asgi-servers } 让我们深入了解一些细节。 FastAPI 使用了一种用于构建 Python Web 框架和服务器的标准,称为 <abbr title="Asynchronous Server Gateway Interface - 异步服务器网关接口">ASGI</abbr>。FastAPI 本质上是一个 ASGI Web 框架。 要在远程服务器上运行 **FastAPI** 应用(或任何其他 ASGI 应用),您需要一个 ASGI 服务器程序,例如 **Uvicorn**。它是 `fastapi` 命令默认使用的 ASGI 服务器。 除此之外,还有其他一些可选的 ASGI 服务器,例如:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 6.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/CreateBody.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.webauth; import org.codelibs.fess.app.web.admin.webauth.CreateForm; /** * Request body for creating web authentication via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1011 bytes - Click Count (0) -
docs/ja/docs/tutorial/cors.md
* `allow_credentials` - オリジン間リクエストでCookieをサポートする必要があることを示します。デフォルトは `False` です。 `allow_credentials` が `True` に設定されている場合、`allow_origins`、`allow_methods`、`allow_headers` のいずれも `['*']` に設定できません。これらはすべて[明示的に指定](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#credentialed_requests_and_wildcards)する必要があります。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 6.8K bytes - Click Count (0) -
guava-gwt/src/com/google/common/annotations/Annotations.gwt.xml
util.concurrent tests under Guava. The problem is that GWT responds poorly to two .gwt.xml files in the same Java package; see https://groups.google.com/g/google-web-toolkit-contributors/c/CqYH59Dt_rQ/m/uVGW1QdUsXUJ for details. The summary is that it ignores one file in favor of the other. util.concurrent, like nearly all our packages, has two .gwt.xml files: oneCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jul 19 16:02:36 GMT 2024 - 1.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/JobLogTests.java
private static String webConfigId; @BeforeAll protected static void initAll() { RestAssured.baseURI = getFessUrl(); settingTestToken(); // Create and execute a web crawler to generate job logs createWebConfig(); logger.info("WebConfig is created"); refresh(); webConfigId = getWebConfigIds(NAME_PREFIX).get(0); createJob();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:29:45 GMT 2025 - 9.9K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/openapi-webhooks.md
這表示,與其由使用者向你的 API 發送請求,改為你的 API(或你的應用)可能會向他們的系統(他們的 API、他們的應用)發送請求。 這通常稱為 webhook。 ## Webhook 步驟 { #webhooks-steps } 流程通常是:你在程式碼中定義要發送的訊息,也就是請求的主體(request body)。 你也會以某種方式定義應用在哪些時刻會發送那些請求或事件。 而你的使用者則會以某種方式(例如在某個 Web 控制台)設定你的應用應該將這些請求送往的 URL。 關於如何註冊 webhook 的 URL,以及實際發送那些請求的程式碼等所有邏輯,都由你決定。你可以在自己的程式碼中用你想要的方式撰寫。 ## 使用 FastAPI 與 OpenAPI 記錄 webhook { #documenting-webhooks-with-fastapi-and-openapi }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
* <p> * If the specified Jar file has the extension <code>.war</code>, only entries whose path starts with the prefix <code>WEB-INF/classes</code> are traversed. * The handler receives the entry name excluding the prefix. For example, if the Jar file contains <code>/WEB-INF/classes/ccc/ddd/Eee.class</code>, * the handler receives the package name <code>ccc.ddd</code> and the class name <code>Eee</code>. * </p> *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 9.5K bytes - Click Count (0)