- Sort Score
- Num 10 results
- Language All
Results 341 - 350 of 1,154 for Web (0.2 seconds)
-
mockwebserver/README.md
MockWebServer ============= A scriptable web server for testing HTTP clients ### Motivation This library makes it easy to test that your app Does The Right Thing when it makes HTTP and HTTPS calls. It lets you specify which responses to return and then verify that requests were made as expected. Because it exercises your full HTTP stack, you can be confident that you're
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 8.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.web.util.LaRequestUtil; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Base search form class that extends SearchRequestParams. * Provides form fields and methods for handling search requests in the web interface.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 5.7K bytes - Click Count (0) -
docs/zh-hant/docs/deployment/concepts.md
# 部署概念 { #deployments-concepts } 當你要部署一個 FastAPI 應用,或其實任何類型的 Web API 時,有幾個你可能在意的概念。掌握這些概念後,你就能找出最適合部署你應用的方式。 一些重要的概念包括: - 安全性 - HTTPS - 開機自動執行 - 重新啟動 - 複本(執行中的行程數量) - 記憶體 - 啟動前的前置步驟 我們將看看它們如何影響部署。 最終目標是能夠以安全、避免中斷,並盡可能高效使用運算資源(例如遠端伺服器/虛擬機)的方式來服務你的 API 用戶端。🚀 我會在這裡多介紹一些這些觀念,希望能幫你建立必要的直覺,讓你能在非常不同、甚至尚未出現的未來環境中決定要如何部署你的 API。 在思考這些概念之後,你將能夠評估與設計最適合部署你自己 API 的方式。 在接下來的章節,我會提供更具體的部署 FastAPI 應用的食譜。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 16.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
import org.codelibs.fess.util.RenderDataUtil; import org.dbflute.optional.OptionalEntity; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; import org.lastaflute.web.response.render.RenderData; import org.lastaflute.web.ruts.process.ActionRuntime; import org.lastaflute.web.validation.VaMessenger; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 25.5K bytes - Click Count (1) -
docs/zh/docs/project-generation.md
- 🤖 自动生成的前端客户端。 - 🧪 [Playwright](https://playwright.dev) 用于端到端测试。 - 🦇 支持暗黑模式。 - 🐋 [Docker Compose](https://www.docker.com) 用于开发与生产。 - 🔒 默认启用安全的密码哈希。 - 🔑 JWT(JSON Web Token)认证。 - 📫 基于邮箱的密码找回。 - ✅ 使用 [Pytest](https://pytest.org) 进行测试。 - 📞 [Traefik](https://traefik.io) 用作反向代理/负载均衡。 - 🚢 使用 Docker Compose 的部署指南,包括如何设置前端 Traefik 代理以自动处理 HTTPS 证书。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/WebApiException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when web API operations encounter errors. * This exception includes an HTTP status code to indicate the nature of the error. */ public class WebApiException extends FessSystemException {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Web Authentication Details */ public static final String LABELS_web_auth_details = "{labels.web_auth_details}"; /** The key of the message: Web Config Details */ public static final String LABELS_web_config_details = "{labels.web_config_details}"; /** The key of the message: Web Authentication List */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 172.6K bytes - Click Count (0) -
.gitignore
/default.etcd # Also ignore protoc installed by hack/install-protoc.sh /third_party/protoc* # User cluster configs .kubeconfig .tags* # Version file for dockerized build .dockerized-kube-version-defs # Web UI /www/master/node_modules/ /www/master/npm-debug.log /www/master/shared/config/development.json # Karma output /www/test_out
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Mar 17 02:28:41 GMT 2026 - 2.2K bytes - Click Count (0) -
docs/ko/docs/project-generation.md
- 🤖 자동으로 생성된 프론트엔드 클라이언트. - 🧪 End-to-End 테스트를 위한 [Playwright](https://playwright.dev). - 🦇 다크 모드 지원. - 🐋 개발 환경과 프로덕션(운영)을 위한 [Docker Compose](https://www.docker.com). - 🔒 기본으로 지원되는 안전한 비밀번호 해싱. - 🔑 JWT (JSON Web Token) 인증. - 📫 이메일 기반 비밀번호 복구. - ✅ [Pytest](https://pytest.org)를 이용한 테스트. - 📞 리버스 프록시 / 로드 밸런서로서의 [Traefik](https://traefik.io). - 🚢 Docker Compose를 이용한 배포 지침: 자동 HTTPS 인증서를 처리하기 위한 프론트엔드 Traefik 프록시 설정 방법을 포함.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 2.3K bytes - Click Count (0) -
fastapi-slim/README.md
**Source Code**: <a href="https://github.com/fastapi/fastapi" target="_blank">https://github.com/fastapi/fastapi</a> --- FastAPI is a modern, fast (high-performance), web framework for building APIs with Python based on standard Python type hints. ## `fastapi-slim` ⚠️ Do not install this package. ⚠️ This package, `fastapi-slim`, does nothing other than depend on `fastapi`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 12:33:49 GMT 2026 - 2.1K bytes - Click Count (0)