Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for Lockyer (0.2 sec)

  1. docs/ko/docs/deployment/server-workers.md

    지금부터 <a href="https://gunicorn.org/" class="external-link" target="_blank">**구니콘**</a>을 **유비콘 워커 프로세스**와 함께 사용하는 방법을 알려드리겠습니다.
    
    !!! info "정보"
        만약 도커와 쿠버네티스 같은 컨테이너를 사용하고 있다면 다음 챕터 [FastAPI와 컨테이너 - 도커](docker.md){.internal-link target=_blank}에서 더 많은 정보를 얻을 수 있습니다.
    
        특히, 쿠버네티스에서 실행할 때는 구니콘을 사용하지 않고 대신 컨테이너당 하나의 유비콘 프로세스를 실행하는 것이 좋습니다. 이 장의 뒷부분에서 설명하겠습니다.
    
    ## 구니콘과 유비콘 워커
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  2. docs/erasure/README.md

    ### 2. Run MinIO Server with Erasure Code
    
    Example: Start MinIO server in a 12 drives setup, using MinIO binary.
    
    ```sh
    minio server /data{1...12}
    ```
    
    Example: Start MinIO server in a 8 drives setup, using MinIO Docker image.
    
    ```sh
    podman run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio \
      -v /mnt/data1:/data1 \
      -v /mnt/data2:/data2 \
      -v /mnt/data3:/data3 \
      -v /mnt/data4:/data4 \
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 4.1K bytes
    - Viewed (0)
  3. LICENSES/vendor/github.com/moby/term/LICENSE

          incurred by, or claims asserted against, such Contributor by reason
          of your accepting any such warranty or additional liability.
    
       END OF TERMS AND CONDITIONS
    
       Copyright 2013-2018 Docker, Inc.
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
       You may obtain a copy of the License at
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Fri May 08 04:49:00 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.18.md

          - `scheduler_scheduling_latency_seconds` -> `scheduler_scheduling_duration_seconds `
          - `docker_operations` -> `docker_operations_total`
          - `docker_operations_latency_microseconds` -> `docker_operations_duration_seconds`
          - `docker_operations_errors` -> `docker_operations_errors_total`
          - `docker_operations_timeout` -> `docker_operations_timeout_total`
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Jun 16 17:18:28 GMT 2021
    - 373.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

    
    ## External Dependencies
    
    Continuous integration builds use Docker versions 1.11.2, 1.12.6, 1.13.1,
    and 17.03.2. These versions were validated on Kubernetes 1.8. However,
    consult an appropriate installation or upgrade guide before deciding what
    versions of Docker to use.
    
    - Docker 1.13.1 and 17.03.2
    
        - Shared PID namespace, live-restore, and overlay2 were validated.
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.12.md

    * On GCI, NPD starts to monitor kubelet, docker, containerd crashlooping, read-only filesystem and corrupt docker overlay2 issues. ([#71522](https://github.com/kubernetes/kubernetes/pull/71522), [@wangzhen127](https://github.com/wangzhen127))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 293.8K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.17.md

    - Ensure Azure availability zone is always in lower cases. ([#89722](https://github.com/kubernetes/kubernetes/pull/89722), [@feiskyer](https://github.com/feiskyer)) [SIG Cloud Provider]
    - Fix failing conformance when using docker container runtime w/ the docker/journald logging driver. [#87933](https://github.com/kubernetes/kubernetes/pull/87933) ([#88586](https://github.com/kubernetes/kubernetes/pull/88586), [@jdef](https://github.com/jdef)) [SIG Node]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Viewed (1)
  8. docs/zh/docs/tutorial/sql-databases.md

    * Microsoft SQL Server,等等其它数据库
    
    在此示例中,我们将使用**SQLite**,因为它使用单个文件并且 在Python中具有集成支持。因此,您可以复制此示例并按原样来运行它。
    
    稍后,对于您的产品级别的应用程序,您可能会要使用像**PostgreSQL**这样的数据库服务器。
    
    !!! tip
        这儿有一个**FastAPI**和**PostgreSQL**的官方项目生成器,全部基于**Docker**,包括前端和更多工具:<a href="https://github.com/tiangolo/full-stack-fastapi-postgresql" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-fastapi-postgresql</a>
    
    !!! note
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 27K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string runtimeClassName = 29;
    
      // EnableServiceLinks indicates whether information about services should be injected into pod's
      // environment variables, matching the syntax of Docker links.
      // Optional: Defaults to true.
      // +optional
      optional bool enableServiceLinks = 30;
    
      // PreemptionPolicy is the Policy for preempting pods with lower priority.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  10. .mailmap

    Hans Dockter <******@****.***>
    Hans Dockter <******@****.***> <hans.dockter@gradleware.com>
    Hans Dockter <******@****.***> <******@****.***>
    Hans Dockter <******@****.***> <******@****.***>
    Hans Dockter <******@****.***> <hd@hd-desktop.(none)>
    Hans Dockter <******@****.***> <mail@dockter.biz>
    Hans Dockter <******@****.***> U-WIN-T79U3J3QLBC\Hans Dockter <Hans Dockter@WIN-T79U3J3QLBC.(none)>
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 06:34:28 GMT 2017
    - 3.3K bytes
    - Viewed (0)
Back to top