Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 179 for robust (0.04 seconds)

  1. src/main/webapp/WEB-INF/view/chat/chat.jsp

    				<div class="card shadow-sm">
    					<div class="card-header d-flex justify-content-between align-items-center">
    						<div id="statusArea" class="status-lozenge status-ready" role="status" aria-live="polite">
    							<i class="fa fa-robot me-1" aria-hidden="true"></i>
    							<span class="status-text"><la:message key="labels.chat_status_ready" /></span>
    						</div>
    						<div class="d-flex gap-2">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/tutorial/stream-json-lines.md

    {* ../../docs_src/stream_json_lines/tutorial001_py310.py ln[1:24] hl[9:11,22] *}
    
    如果你宣告了回傳型別,FastAPI 會用它來進行資料的**驗證**、在 OpenAPI 中**文件化**、**過濾**,並使用 Pydantic 進行**序列化**。
    
    /// tip
    
    由於 Pydantic 會在 **Rust** 端進行序列化,宣告回傳型別可獲得比未宣告時高得多的**效能**。
    
    ///
    
    ### 非 async 的*路徑操作函式* { #non-async-path-operation-functions }
    
    你也可以用一般的 `def` 函式(沒有 `async`),同樣用 `yield`。
    
    FastAPI 會確保正確執行,不會阻塞事件迴圈。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:33:04 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  3. docs/zh/docs/tutorial/server-sent-events.md

    如果你将返回类型声明为 `AsyncIterable[Item]`,FastAPI 将使用它通过 Pydantic对数据进行**校验**、**文档化**和**序列化**。
    
    {* ../../docs_src/server_sent_events/tutorial001_py310.py ln[1:25] hl[10:12,23] *}
    
    /// tip | 提示
    
    由于 Pydantic 会在**Rust** 端序列化它,相比未声明返回类型,你将获得更高的**性能**。
    
    ///
    
    ### 非 async 的*路径操作函数* { #non-async-path-operation-functions }
    
    你也可以使用常规的 `def` 函数(没有 `async`),并以同样的方式使用 `yield`。
    
    FastAPI 会确保其正确运行,从而不阻塞事件循环。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/server-sent-events.md

    如果你把回傳型別宣告為 `AsyncIterable[Item]`,FastAPI 會用它來透過 Pydantic 進行**驗證**、**文件化**與**序列化**。
    
    {* ../../docs_src/server_sent_events/tutorial001_py310.py ln[1:25] hl[10:12,23] *}
    
    /// tip
    
    因為 Pydantic 會在 **Rust** 端進行序列化,如果你有宣告回傳型別,效能會比未宣告時高很多。
    
    ///
    
    ### 非 async 的路徑操作函式 { #non-async-path-operation-functions }
    
    你也可以使用一般的 `def` 函式(沒有 `async`),並同樣使用 `yield`。
    
    FastAPI 會確保正確執行,不會阻塞事件迴圈。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:33:04 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/eventbus/EventBus.java

     * translating code from using an event bus to using a reactive-streams framework, see these two
     * guides: <a href="https://blog.jkl.gg/implementing-an-event-bus-with-rxjava-rxbus/">1</a>, <a
     * href="https://lorentzos.com/rxjava-as-event-bus-the-right-way-10a36bdd49ba">2</a>.) Some usages
     * of EventBus may be better written using <a
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 03:10:51 GMT 2024
    - 12.7K bytes
    - Click Count (0)
  6. CHANGELOG.md

        with these curl arguments:
    
        ```
        curl \
          --http2-prior-knowledge \
          --proxy localhost:8888 \
          --proxytunnel \
          http://squareup.com/robots.txt
        ```
    
     *  Fix: Support executing OkHttp on kotlin-stdlib versions as old as 1.4. The library still builds
        on up-to-date Kotlin releases (1.6.21) but no longer needs that version as a runtime dependency.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 15 11:57:47 GMT 2026
    - 36.2K bytes
    - Click Count (2)
  7. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionCoalescingTest.kt

          HandshakeCertificates
            .Builder()
            .heldCertificate(certificate)
            .build()
        server.useHttps(serverHandshakeCertificates.sslSocketFactory())
        url = server.url("/robots.txt")
      }
    
      /**
       * Test connecting to the main host then an alternative, although only subject alternative names
       * are used if present no special consideration of common name.
       */
      @Test
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Jun 19 11:44:16 GMT 2025
    - 19.1K bytes
    - Click Count (0)
  8. src/main/resources/fess_config.properties

    # Pattern for environment variable keys in crawling data.
    crawler.data.env.param.key.pattern=^FESS_ENV_.*
    # Whether to ignore robots.txt during crawling.
    crawler.ignore.robots.txt=false
    # Whether to ignore robots meta tags during crawling.
    crawler.ignore.robots.tags=false
    # Whether to ignore content exceptions during crawling.
    crawler.ignore.content.exception=true
    # HTTP status codes considered as failure URLs.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  9. docs/en/docs/deployment/manually.md

    * [Daphne](https://github.com/django/daphne): the ASGI server built for Django Channels.
    * [Granian](https://github.com/emmett-framework/granian): A Rust HTTP server for Python applications.
    * [NGINX Unit](https://unit.nginx.org/howto/fastapi/): NGINX Unit is a lightweight and versatile web application runtime.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  10. docs/es/docs/deployment/manually.md

    * [Daphne](https://github.com/django/daphne): el servidor ASGI construido para Django Channels.
    * [Granian](https://github.com/emmett-framework/granian): Un servidor HTTP Rust para aplicaciones en Python.
    * [NGINX Unit](https://unit.nginx.org/howto/fastapi/): NGINX Unit es un runtime para aplicaciones web ligero y versátil.
    
    ## Máquina Servidor y Programa Servidor { #server-machine-and-server-program }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 7K bytes
    - Click Count (0)
Back to Top