Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 831 for openat (0.49 sec)

  1. docs/pt/docs/tutorial/extra-models.md

        email = user_dict["email"],
        full_name = user_dict["full_name"],
        hashed_password = hashed_password,
    )
    ```
    
    !!! warning
        As funções adicionais de suporte são apenas para demonstração de um fluxo possível dos dados, mas é claro que elas não fornecem segurança real.
    
    ## Reduzir duplicação
    
    Reduzir a duplicação de código é uma das ideias principais no **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/path-operation-advanced-configuration.md

    ## OpenAPI-Extra
    
    Wenn Sie in Ihrer Anwendung eine *Pfadoperation* deklarieren, generiert **FastAPI** automatisch die relevanten Metadaten dieser *Pfadoperation*, die in das OpenAPI-Schema aufgenommen werden sollen.
    
    !!! note "Technische Details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    ## OpenAPI supplémentaire
    
    Lorsque vous déclarez un *chemin* dans votre application, **FastAPI** génère automatiquement les métadonnées concernant ce *chemin* à inclure dans le schéma OpenAPI.
    
    !!! note "Détails techniques"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/path-operation-advanced-configuration.md

    ## OpenAPI Extra
    
    When you declare a *path operation* in your application, **FastAPI** automatically generates the relevant metadata about that *path operation* to be included in the OpenAPI schema.
    
    !!! note "Technical details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/types.go

    	"errors"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/mergepatch"
    	openapi "k8s.io/kube-openapi/pkg/util/proto"
    )
    
    const (
    	patchStrategyOpenapiextensionKey = "x-kubernetes-patch-strategy"
    	patchMergeKeyOpenapiextensionKey = "x-kubernetes-patch-merge-key"
    )
    
    type LookupPatchItem interface {
    	openapi.SchemaVisitor
    
    	Error() error
    	Path() *openapi.Path
    }
    
    type kindItem struct {
    	key          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  6. docs/de/docs/reference/openapi/docs.md

    # OpenAPI `docs`
    
    Werkzeuge zur Verwaltung der automatischen OpenAPI-UI-Dokumentation, einschließlich Swagger UI (standardmäßig unter `/docs`) und ReDoc (standardmäßig unter `/redoc`).
    
    ::: fastapi.openapi.docs.get_swagger_ui_html
    
    ::: fastapi.openapi.docs.get_redoc_html
    
    ::: fastapi.openapi.docs.get_swagger_ui_oauth2_redirect_html
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:15:17 UTC 2024
    - 395 bytes
    - Viewed (0)
  7. src/debug/macho/fat.go

    			}
    		}
    
    		ff.Arches = append(ff.Arches, fa)
    	}
    
    	return &ff, nil
    }
    
    // OpenFat opens the named file using [os.Open] and prepares it for use as a Mach-O
    // universal binary.
    func OpenFat(name string) (*FatFile, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFatFile(f)
    	if err != nil {
    		f.Close()
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    package common
    
    // Schema is the adapted type for an OpenAPI schema that CEL uses.
    // This schema does not cover all OpenAPI fields but only these CEL requires
    // are exposed as getters.
    type Schema interface {
    	// Type returns the OpenAPI type.
    	// Multiple types are not supported. It should return
    	// empty string if no type is specified.
    	Type() string
    
    	// Format returns the OpenAPI format. May be empty
    	Format() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. docs/tr/docs/how-to/general.md

    ## OpenAPI Meta Verileri - Dokümantasyon
    
    OpenAPI şemanıza lisans, sürüm, iletişim vb. meta veriler eklemek için, [Tutorial - Metadata and Docs URLs](../tutorial/metadata.md){.internal-link target=_blank} sayfasını okuyun.
    
    ## OpenAPI Bağlantı Özelleştirme
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. docs/zh/docs/how-to/general.md

    ## OpenAPI 自定义 URL
    
    要自定义 OpenAPI 的 URL(或删除它),请阅读 [教程 - 元数据和文档 URL](../tutorial/metadata.md#openapi-url){.internal-link target=_blank} 文档。
    
    ## OpenAPI 文档 URL
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 22 23:41:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top