Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 267 for 9201 (0.02 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'search_engine.http.url'. <br>
         * The value is, e.g. http://localhost:9201 <br>
         * comment: <br>
         * The URL of the search engine HTTP endpoint.<br>
         * For IPv6 environments, use brackets around the IPv6 address (e.g., http://[::1]:9201)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  2. helm-releases/minio-2.0.1.tgz

    minio-2.0.1.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2021-08-31T05-46-54Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - storage - object-storage - S3 maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 2.0.1 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name to substitute for...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 31 09:09:09 GMT 2021
    - 13.6K bytes
    - Click Count (0)
  3. docs/bucket/replication/sio-error.sh

    	./minio server --address "127.0.0.1:$((9100 + i))" ${args2[@]} & # | tee /tmp/minio/node.$i &
    done
    
    sleep 10
    
    ./mc alias set myminio1 http://localhost:9001 minioadmin minioadmin
    ./mc alias set myminio2 http://localhost:9101 minioadmin minioadmin
    
    ./mc ready myminio1
    ./mc ready myminio2
    sleep 1
    
    ./mc mb myminio1/testbucket/ --with-lock
    ./mc mb myminio2/testbucket/ --with-lock
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sat May 18 18:19:01 GMT 2024
    - 1.7K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/response-status-code.md

    ///
    
    ## İsimleri hatırlamak için kısayol { #shortcut-to-remember-the-names }
    
    Önceki örneğe tekrar bakalım:
    
    {* ../../docs_src/response_status_code/tutorial001_py310.py hl[6] *}
    
    `201`, "Created" için kullanılan status code'dur.
    
    Ancak bu kodların her birinin ne anlama geldiğini ezberlemek zorunda değilsiniz.
    
    `fastapi.status` içindeki kolaylık değişkenlerini (convenience variables) kullanabilirsiniz.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  5. docs/en/docs/tutorial/response-status-code.md

    ///
    
    ## Shortcut to remember the names { #shortcut-to-remember-the-names }
    
    Let's see the previous example again:
    
    {* ../../docs_src/response_status_code/tutorial001_py310.py hl[6] *}
    
    `201` is the status code for "Created".
    
    But you don't have to memorize what each of these codes mean.
    
    You can use the convenience variables from `fastapi.status`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/response-status-code.md

    ///
    
    ## 快速記住名稱 { #shortcut-to-remember-the-names }
    
    再看一次前面的範例:
    
    {* ../../docs_src/response_status_code/tutorial001_py310.py hl[6] *}
    
    `201` 是「已建立(Created)」的狀態碼。
    
    但你不需要背下每個代碼代表什麼。
    
    你可以使用 `fastapi.status` 提供的便利變數。
    
    {* ../../docs_src/response_status_code/tutorial002_py310.py hl[1,6] *}
    
    它們只是方便用的常數,值與數字相同,但這樣你可以用編輯器的自動完成來找到它們:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  7. docs/zh/docs/tutorial/response-status-code.md

    ///
    
    ## 状态码名称快捷方式 { #shortcut-to-remember-the-names }
    
    再看下之前的例子:
    
    {* ../../docs_src/response_status_code/tutorial001_py310.py hl[6] *}
    
    `201` 表示“已创建”的状态码。
    
    但我们没有必要记住所有代码的含义。
    
    可以使用 `fastapi.status` 中的快捷变量。
    
    {* ../../docs_src/response_status_code/tutorial002_py310.py hl[1,6] *}
    
    这只是一种快捷方式,具有相同的数字代码,但它可以使用编辑器的自动补全功能:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  8. docs/ko/docs/tutorial/response-status-code.md

    ///
    
    ## 이름을 기억하는 쉬운 방법 { #shortcut-to-remember-the-names }
    
    이전 예시를 다시 확인해보겠습니다:
    
    {* ../../docs_src/response_status_code/tutorial001_py310.py hl[6] *}
    
    `201` 은 "생성됨"을 위한 상태 코드입니다.
    
    하지만 각각의 코드가 무엇을 의미하는지 외울 필요는 없습니다.
    
    `fastapi.status` 의 편의 변수를 사용할 수 있습니다.
    
    {* ../../docs_src/response_status_code/tutorial002_py310.py hl[1,6] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  9. .github/workflows/mint/nginx-8-node.conf

        }
    
        upstream console {
            ip_hash;
            server minio1:9001;
            server minio2:9001;
            server minio3:9001;
            server minio4:9001;
            server minio5:9001;
            server minio6:9001;
            server minio7:9001;
            server minio8:9001;
        }
    
        server {
            listen       9000;
            listen  [::]:9000;
            server_name  localhost;
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed May 15 16:52:29 GMT 2024
    - 3.4K bytes
    - Click Count (0)
  10. .github/workflows/update-rbe.yml

            map sigbuild-r2.10-python3.8 2.10-python3.8
            map sigbuild-r2.10-python3.9 2.10-python3.9
            map sigbuild-r2.10-python3.10 2.10-python3.10
            # TF 2.11
            map sigbuild-r2.11 2.11-python3.9
            map sigbuild-r2.11-python3.8 2.11-python3.8
            map sigbuild-r2.11-python3.9 2.11-python3.9
            map sigbuild-r2.11-python3.10 2.11-python3.10
            # WIP Clang Containers, used by TVCs
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 01 08:09:03 GMT 2026
    - 7.2K bytes
    - Click Count (1)
Back to Top