Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 152 for WEB (0.05 sec)

  1. docs/zh-hant/docs/index.md

    **程式碼**: <a href="https://github.com/tiangolo/fastapi" target="_blank">https://github.com/tiangolo/fastapi</a>
    
    ---
    
    FastAPI 是一個現代、快速(高效能)的 web 框架,用於 Python 並採用標準 Python 型別提示。
    
    主要特點包含:
    
    - **快速**: 非常高的效能,可與 **NodeJS** 和 **Go** 效能相當 (歸功於 Starlette and Pydantic)。 [FastAPI 是最快的 Python web 框架之一](#performance)。
    - **極速開發**: 提高開發功能的速度約 200% 至 300%。 \*
    - **更少的 Bug**: 減少約 40% 的人為(開發者)導致的錯誤。 \*
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. docs/ja/docs/deployment/concepts.md

    # デプロイメントのコンセプト
    
    **FastAPI**を用いたアプリケーションをデプロイするとき、もしくはどのようなタイプのWeb APIであっても、おそらく気になるコンセプトがいくつかあります。
    
    それらを活用することでアプリケーションを**デプロイするための最適な方法**を見つけることができます。
    
    重要なコンセプトのいくつかを紹介します:
    
    * セキュリティ - HTTPS
    * 起動時の実行
    * 再起動
    * レプリケーション(実行中のプロセス数)
    * メモリー
    * 開始前の事前のステップ
    
    これらが**デプロイメント**にどのような影響を与えるかを見ていきましょう。
    
    最終的な目的は、**安全な方法で**APIクライアントに**サービスを提供**し、**中断を回避**するだけでなく、**計算リソース**(例えばリモートサーバー/仮想マシン)を可能な限り効率的に使用することです。🚀
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. src/net/url/url.go

    // url was received in an HTTP request, so the url is interpreted
    // only as an absolute URI or an absolute path.
    // The string url is assumed not to have a #fragment suffix.
    // (Web browsers strip #fragment before sending the URL to a web server.)
    func ParseRequestURI(rawURL string) (*URL, error) {
    	url, err := parse(rawURL, true)
    	if err != nil {
    		return nil, &Error{"parse", rawURL, err}
    	}
    	return url, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. docs/fr/docs/features.md

    * Cela permet d'utiliser de la **génération automatique de code client** dans beaucoup de langages.
    
    ### Documentation automatique
    
    Documentation d'API interactive et interface web d'exploration. Comme le framework est basé sur OpenAPI, de nombreuses options sont disponibles. Deux d'entre-elles sont incluses par défaut.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. docs/zh/docs/tutorial/bigger-applications.md

    # 更大的应用 - 多个文件
    
    如果你正在开发一个应用程序或 Web API,很少会将所有的内容都放在一个文件中。
    
    **FastAPI** 提供了一个方便的工具,可以在保持所有灵活性的同时构建你的应用程序。
    
    !!! info
        如果你来自 Flask,那这将相当于 Flask 的 Blueprints。
    
    ## 一个文件结构示例
    
    假设你的文件结构如下:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    │   └── routers
    │   │   ├── __init__.py
    │   │   ├── items.py
    │   │   └── users.py
    │   └── internal
    │       ├── __init__.py
    │       └── admin.py
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/types.go

    	MetricsBindAddress string
    	// bindAddressHardFail, if true, tells kube-proxy to treat failure to bind to a
    	// port as fatal and exit
    	BindAddressHardFail bool
    	// enableProfiling enables profiling via web interface on /debug/pprof handler.
    	// Profiling handlers will be handled by metrics server.
    	EnableProfiling bool
    	// showHiddenMetricsForVersion is the version for which you want to show hidden metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    	// method:path -> has coverage
    	expectedCases := map[string]bool{}
    
    	// Test all the non-web-service handlers
    	for _, path := range fw.serverUnderTest.restfulCont.RegisteredHandlePaths() {
    		expectedCases["GET:"+path] = false
    		expectedCases["POST:"+path] = false
    	}
    
    	// Test all the generated web-service paths
    	for _, ws := range fw.serverUnderTest.restfulCont.RegisteredWebServices() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/dependencies/index.md

    Actually, all (or most) of the web frameworks work in this same way.
    
    You never call those functions directly. They are called by your framework (in this case, **FastAPI**).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

    import okhttp3.internal.isHealthy
    import okhttp3.internal.tls.OkHostnameVerifier
    import okhttp3.internal.ws.RealWebSocket
    import okio.BufferedSink
    import okio.BufferedSource
    
    /**
     * A connection to a remote web server capable of carrying 1 or more concurrent streams.
     *
     * Connections are shared in a connection pool. Accesses to the connection's state must be guarded
     * by holding a lock on the connection.
     */
    class RealConnection(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. docs/vi/docs/features.md

    * Điều này cho phép tự động hóa **trình sinh code client** cho nhiều ngôn ngữ lập trình khác nhau.
    
    ### Tự động hóa tài liệu
    
    
    Tài liệu tương tác API và web giao diện người dùng. Là một framework được dựa trên OpenAPI do đó có nhiều tùy chọn giao diện cho tài liệu API, 2 giao diện bên dưới là mặc định.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top