- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 262 for vers (0.02 sec)
-
docs/pt/docs/tutorial/body-fields.md
/// note | Detalhes Técnicos Na realidade, `Query`, `Path` e outros que você verá em seguida, criam objetos de subclasses de uma classe `Param` comum, que é ela mesma uma subclasse da classe `FieldInfo` do Pydantic. E `Field` do Pydantic retorna uma instância de `FieldInfo` também. `Body` também retorna objetos de uma subclasse de `FieldInfo` diretamente. E tem outras que você verá mais tarde que são subclasses da classe `Body`.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 2.6K bytes - Viewed (0) -
schema/constraint.go
type CheckConstraint struct { Name string Constraint string // length(phone) >= 10 *Field } func (chk *CheckConstraint) GetName() string { return chk.Name } func (chk *CheckConstraint) Build() (sql string, vars []interface{}) { return "CONSTRAINT ? CHECK (?)", []interface{}{clause.Column{Name: chk.Name}, clause.Expr{SQL: chk.Constraint}} } // ParseCheckConstraints parse schema check constraintsRegistered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Mon Mar 18 07:33:54 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/resources/fess_label_tr.properties
labels.crawling_info_DataCrawlExecTime=Tarama Yürütme Süresi (Veri Deposu) labels.crawling_info_DataCrawlStartTime=Tarama Başlangıç Zamanı (Veri Deposu) labels.crawling_info_DataCrawlEndTime=Tarama Bitiş Zamanı (Veri Deposu) labels.crawling_info_DataIndexExecTime=İndeksleme Yürütme Süresi (Veri Deposu) labels.crawling_info_DataIndexSize=İndeks Boyutu (Veri Deposu) labels.webauth_configuration=Web Kimlik Doğrulama
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 47K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/sub-dependencies.md
/// tip | Consejo Todo esto podría no parecer tan útil con estos ejemplos simples. Pero verás lo útil que es en los capítulos sobre **seguridad**. Y también verás la cantidad de código que te ahorrará.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.9K bytes - Viewed (0) -
cmd/listen-notification-handlers.go
// Validate if bucket exists. objAPI := api.ObjectAPI() if objAPI == nil { writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL) return } vars := mux.Vars(r) bucketName := vars["bucket"] if bucketName == "" { if s3Error := checkRequestAuthType(ctx, r, policy.ListenNotificationAction, bucketName, ""); s3Error != ErrNone {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 6K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params-numeric-validations.md
/// info | Informação O FastAPI adicionou suporte a `Annotated` (e passou a recomendá-lo) na versão 0.95.0. Se você tiver uma versão mais antiga, verá erros ao tentar usar `Annotated`. Certifique-se de [Atualizar a versão do FastAPI](../deployment/versions.md#upgrading-the-fastapi-versions){.internal-link target=_blank} para pelo menos 0.95.1 antes de usar `Annotated`. ///
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 6.7K bytes - Viewed (0) -
docs/tr/docs/tutorial/first-steps.md
#### Veri "Şeması" "Şema" terimi, JSON içeriği gibi bazı verilerin şeklini de ifade edebilir. Bu durumda, JSON özellikleri ve sahip oldukları veri türleri gibi anlamlarına gelir. #### OpenAPI ve JSON Şema
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 10.4K bytes - Viewed (0) -
cmd/admin-handlers.go
apiErr.Description = fmt.Sprintf("unable to perform in-place update, release time is unrecognized: %s", currentReleaseTime) writeErrorResponseJSON(ctx, w, apiErr, r.URL) return } vars := mux.Vars(r) updateURL := vars["updateURL"] dryRun := r.Form.Get("dry-run") == "true" mode := getMinioMode() if updateURL == "" { updateURL = minioReleaseInfoURL if runtime.GOOS == globalWindowsOSName {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 99.7K bytes - Viewed (0) -
buildSrc/src/main/kotlin/Osgi.kt
override fun getRuntimeOnlyConfigurationName(): String = jvmMainSourceSet.runtimeOnlyConfigurationName + "ForFakeMain" override fun getTaskName( verb: String?, target: String?, ) = "${jvmMainSourceSet.getTaskName(verb, target)}ForFakeMain" } extensions .getByType(JavaPluginExtension::class.java) .sourceSets .add(mainSourceSet)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 5.1K bytes - Viewed (0) -
docs/pt/docs/how-to/extending-openapi.md
# Extendendo o OpenAPI { #extending-openapi } Existem alguns casos em que pode ser necessário modificar o esquema OpenAPI gerado. Nesta seção, você verá como fazer isso. ## O processo normal { #the-normal-process } O processo normal (padrão) é o seguinte: Uma aplicação (instância) do `FastAPI` possui um método `.openapi()` que deve retornar o esquema OpenAPI.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.6K bytes - Viewed (0)