Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 582 for roots (0.04 sec)

  1. helm-releases/minio-3.6.4.tgz

    install --set existingSecret=my-minio-secret minio/minio ``` The following fields are expected in the secret: | .data.\<key\> in Secret | Corresponding variable | Description | Required | |:-------- | `rootUser` | `rootUser` | Root user. | yes | | `rootPassword` | `rootPassword` | Root password. | yes | All corresponding variables will be ignored in values file. ### Configure TLS To enable TLS for MinIO containers, acquire TLS certificates from a CA or create self-signed certificates. While creating / acquiring...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Apr 12 01:30:28 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  2. docs/pl/docs/tutorial/first-steps.md

    ## Podsumowanie
    
    * Zaimportuj `FastAPI`.
    * Stwórz instancję `app`.
    * Dodaj **dekorator operacji na ścieżce** (taki jak `@app.get("/")`).
    * Napisz **funkcję obsługującą ścieżkę** (taką jak `def root(): ...` powyżej).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 16:51:30 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/first-steps.md

    JSON으로 자동 변환되는 객체들과 모델들(ORM 등을 포함해서)이 많이 있습니다. 가장 마음에 드는 것을 사용하십시오, 이미 지원되고 있을 것입니다.
    
    ## 요약
    
    * `FastAPI` 임포트.
    * `app` 인스턴스 생성.
    * (`@app.get("/")`처럼) **경로 작동 데코레이터** 작성.
    * (위에 있는 `def root(): ...`처럼) **경로 작동 함수** 작성.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/first-steps.md

    * Importieren Sie `FastAPI`.
    * Erstellen Sie eine `app` Instanz.
    * Schreiben Sie einen **Pfadoperation-Dekorator** (wie z. B. `@app.get("/")`).
    * Schreiben Sie eine **Pfadoperation-Funktion** (wie z. B. oben `def root(): ...`).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. helm-releases/minio-1.0.2.tgz

    install --set existingSecret=my-minio-secret minio/minio ``` The following fields are expected in the secret: | .data.<key> in Secret | Corresponding variable | Description | Required | |:-------- | `rootUser` | `rootUser` | Root user. | yes | | `rootPassword` | `rootPassword` | Root password. | yes | All corresponding variables will be ignored in values file. Configure TLS ---------- To enable TLS for MinIO containers, acquire TLS certificates from a CA or create self-signed certificates. While creating...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 24 18:58:05 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  6. internal/lock/lock_windows.go

    			return path
    		default:
    			pathbuf[w] = '\\'
    			w++
    			for ; r < n && !os.IsPathSeparator(path[r]); r++ {
    				pathbuf[w] = path[r]
    				w++
    			}
    		}
    	}
    	// A drive's root directory needs a trailing \
    	if w == len(`\\?\c:`) {
    		pathbuf[w] = '\\'
    		w++
    	}
    	return string(pathbuf[:w])
    }
    
    // Open - perm param is ignored, on windows file perms/NT acls
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/GcFinalization.java

        System.runFinalization();
      }
    
      private static RuntimeException formatRuntimeException(String format, Object... args) {
        return new RuntimeException(String.format(Locale.ROOT, format, args));
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. docs/es/docs/tutorial/first-steps.md

    ## Repaso
    
    * Importa `FastAPI`.
    * Crea un instance de `app`.
    * Escribe un **decorador de operación de path** (como `@app.get("/")`).
    * Escribe una **función de la operación de path** (como `def root(): ...` arriba).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/first-steps.md

    ## Récapitulatif
    
    * Importez `FastAPI`.
    * Créez une instance d'`app`.
    * Ajoutez une **décorateur d'opération de chemin** (tel que `@app.get("/")`).
    * Ajoutez une **fonction de chemin** (telle que `def root(): ...` comme ci-dessus).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/first-steps.md

    ## Recapitulando
    
    * Importe `FastAPI`.
    * Crie uma instância do `app`.
    * Coloque o **decorador que define a operação** (como `@app.get("/")`).
    * Escreva uma **função para a operação da rota** (como `def root(): ...`) abaixo.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top