- Sort Score
- Result 10 results
- Languages All
Results 821 - 830 of 1,170 for part3 (0.06 sec)
-
internal/crypto/sse_test.go
// Copyright (c) 2015-2021 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 8.4K bytes - Viewed (0) -
doc/go_spec.html
a decimal point, a fractional part (decimal digits), and an exponent part (<code>e</code> or <code>E</code> followed by an optional sign and decimal digits). One of the integer part or the fractional part may be elided; one of the decimal point or the exponent part may be elided. An exponent value exp scales the mantissa (integer and fractional part) by 10<sup>exp</sup>. </p> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
src/archive/tar/strconv.go
// which is allowed for by the PAX specification, but not always portable. func parsePAXTime(s string) (time.Time, error) { const maxNanoSecondDigits = 9 // Split string into seconds and sub-seconds parts. ss, sn, _ := strings.Cut(s, ".") // Parse the seconds. secs, err := strconv.ParseInt(ss, 10, 64) if err != nil { return time.Time{}, ErrHeader } if len(sn) == 0 {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 01 14:28:42 UTC 2023 - 9K bytes - Viewed (0) -
docs/es/docs/tutorial/first-steps.md
``` </div> ### Paso 3: crea una *operación de path* #### Path "Path" aquí se refiere a la última parte de una URL comenzando desde el primer `/`. Entonces, en una URL como: ``` https://example.com/items/foo ``` ...el path sería: ``` /items/foo ``` /// info | Información
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.9K bytes - Viewed (0) -
docs/es/docs/tutorial/path-params.md
``` /files/{file_path:path} ``` En este caso el nombre del parámetro es `file_path` y la última parte, `:path`, le dice que el parámetro debería coincidir con cualquier path. Entonces lo puedes usar con: ```Python hl_lines="6" {!../../docs_src/path_params/tutorial004.py!} ``` /// tip | Consejo
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/first-steps.md
<span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div> ### Passo 3: crie uma *rota* #### Rota "Rota" aqui se refere à última parte da URL, começando do primeiro `/`. Então, em uma URL como: ``` https://example.com/items/foo ``` ...a rota seria: ``` /items/foo ``` /// info | "Informação"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/first-steps.md
Pode ser usado pelo time de frontend (que pode ser você no caso). Pode ser usado por aplicações e sistemas third party (de terceiros). E também pode ser usada por você mesmo, para debugar, checar e testar a mesma aplicação. ## O Fluxo da `senha` Agora vamos voltar um pouco e entender o que é isso tudo.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.4K bytes - Viewed (0) -
cmd/generic-handlers.go
// Copyright (c) 2015-2021 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 20.5K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
/// <div class="termy"> ```console $ echo "*" > .venv/.gitignore ``` </div> /// details | O que esse comando significa * `echo "*"`: irá "imprimir" o texto `*` no terminal (a próxima parte muda isso um pouco) * `>`: qualquer coisa impressa no terminal pelo comando à esquerda de `>` não deve ser impressa, mas sim escrita no arquivo que vai à direita de `>` * `.gitignore`: o nome do arquivo onde o texto deve ser escrito
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:37:13 UTC 2024 - 22.6K bytes - Viewed (0) -
helm-releases/minio-3.1.2.tgz
etes#2-create-kubernetes-secret certSecret: "" publicCrt: public.crt privateKey: private.key ## Trusted Certificates Settings for MinIO. Ref: https://docs.minio.io/docs/how-to-secure-access-to-minio-server-with-tls#install-certificates-from-third-party-cas ## Bundle multiple trusted certificates into one secret and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret ## When using self-signed certificates, remember to include MinIO's own certificate...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Sep 18 04:26:47 UTC 2021 - 14.4K bytes - Viewed (0)