Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 621 - 630 of 2,731 for doAs (0.08 seconds)

  1. src/main/resources/fess_env_suggest.properties

    # Is development environment here? (used for various purpose, you should set false if unknown)
    development.here = false
    
    # The title of environment (e.g. local or integration or production)
    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 2.2K bytes
    - Click Count (0)
  2. CHANGELOG/CHANGELOG-1.17.md

    - Removed plugin watching of the deprecated directory `{kubelet_root_dir}/plugins` and CSI V0 support in accordance with deprecation announcement in https://v1-13.docs.kubernetes.io/docs/setup/release/notes ([#84533](https://github.com/kubernetes/kubernetes/pull/84533), [@davidz627](https://github.com/davidz627))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Click Count (1)
  3. docs/zh-hant/docs/index.md

    ### 互動式 API 文件 { #interactive-api-docs }
    
    接著前往 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。
    
    你會看到自動生成的互動式 API 文件(由 [Swagger UI](https://github.com/swagger-api/swagger-ui) 提供):
    
    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ### 替代 API 文件 { #alternative-api-docs }
    
    現在前往 [http://127.0.0.1:8000/redoc](http://127.0.0.1:8000/redoc)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20.8K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/schema-extra-example.md

    {* ../../docs_src/schema_extra_example/tutorial003_an_py310.py hl[22:29] *}
    
    ### Beispiel in der Dokumentations-Benutzeroberfläche { #example-in-the-docs-ui }
    
    Mit jeder der oben genannten Methoden würde es in `/docs` so aussehen:
    
    <img src="/img/tutorial/body-fields/image01.png">
    
    ### `Body` mit mehreren `examples` { #body-with-multiple-examples }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java

            final ProtocolHelper protocolHelper = new ProtocolHelper();
    
            // Should not throw exception with invalid package
            protocolHelper.loadProtocols("org.invalid.package.does.not.exist");
    
            // Should have empty arrays initially
            assertEquals(0, protocolHelper.getWebProtocols().length);
            assertEquals(0, protocolHelper.getFileProtocols().length);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 35.1K bytes
    - Click Count (0)
  6. internal/s3select/select.go

    func (s *ScanRange) Validate() error {
    	if s == nil {
    		return nil
    	}
    	if s.Start == nil && s.End == nil {
    		// This parameter is optional, but when specified, it must not be empty.
    		// Ref: https://docs.aws.amazon.com/AmazonS3/latest/API/API_SelectObjectContent.html#AmazonS3-SelectObjectContent-request-ScanRange
    		return errors.New("ScanRange: No Start or End specified")
    	}
    	if s.Start == nil || s.End == nil {
    		return nil
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Feb 18 16:25:55 GMT 2025
    - 21.2K bytes
    - Click Count (0)
  7. docs/ko/docs/how-to/configure-swagger-ui.md

    # Swagger UI 구성 { #configure-swagger-ui }
    
    추가적인 [Swagger UI 매개변수](https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/)를 구성할 수 있습니다.
    
    구성을 하려면, `FastAPI()` 앱 객체를 생성할 때 또는 `get_swagger_ui_html()` 함수에 `swagger_ui_parameters` 인수를 전달하십시오.
    
    `swagger_ui_parameters`는 Swagger UI에 직접 전달된 구성을 포함하는 딕셔너리를 받습니다.
    
    FastAPI는 이 구성을 **JSON** 형식으로 변환하여 JavaScript와 호환되도록 합니다. 이는 Swagger UI에서 필요로 하는 형식입니다.
    
    ## 구문 강조 비활성화 { #disable-syntax-highlighting }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/cookie-param-models.md

    **FastAPI** 會從請求收到的 **Cookie** 中擷取 **每個欄位** 的資料,並交給你定義的 Pydantic 模型。
    
    ## 查看文件 { #check-the-docs }
    
    你可以在 `/docs` 的文件介面中看到已定義的 Cookie:
    
    <div class="screenshot">
    <img src="/img/tutorial/cookie-param-models/image01.png">
    </div>
    
    /// info
    
    請注意,由於**瀏覽器會以特殊且在背景進行的方式處理 Cookie**,因此**不會**輕易允許 **JavaScript** 存取它們。
    
    當你前往位於 `/docs` 的 **API 文件介面**時,可以看到路徑操作的 Cookie 說明。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  9. docs/fr/docs/how-to/general.md

    ## URL de la documentation OpenAPI { #openapi-docs-urls }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  10. docs/zh/docs/how-to/configure-swagger-ui.md

    其包括这些默认配置参数:
    
    {* ../../fastapi/openapi/docs.py ln[9:24] hl[18:24] *}
    
    你可以通过在 `swagger_ui_parameters` 中设置不同的值来覆盖它们。
    
    比如,如果要禁用 `deepLinking`,你可以像这样传递设置到 `swagger_ui_parameters` 中:
    
    {* ../../docs_src/configure_swagger_ui/tutorial003_py310.py hl[3] *}
    
    ## 其他 Swagger UI 参数 { #other-swagger-ui-parameters }
    
    查看所有其他可用的配置,请阅读官方的 [Swagger UI 参数文档](https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top