- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 201 for Parsen (0.06 seconds)
-
docs/de/docs/advanced/path-operation-advanced-configuration.md
Dann verwenden wir den Request direkt und extrahieren den Body als `bytes`. Das bedeutet, dass FastAPI nicht einmal versucht, die Request-Payload als JSON zu parsen. Und dann parsen wir in unserem Code diesen YAML-Inhalt direkt und verwenden dann wieder dasselbe Pydantic-Modell, um den YAML-Inhalt zu validieren: {* ../../docs_src/path_operation_advanced_configuration/tutorial007_py39.py hl[24:31] *}Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 24 10:28:19 GMT 2025 - 8.3K bytes - Click Count (0) -
docs/de/docs/tutorial/path-params.md
/// check | Testen Dadurch erhalten Sie Editor-Unterstützung innerhalb Ihrer Funktion, mit Fehlerprüfungen, Codevervollständigung, usw. /// ## Daten-<abbr title="Auch bekannt als: Serialisierung, Parsen, Marshalling">Konversion</abbr> { #data-conversion }
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 10.5K bytes - Click Count (0) -
docs/de/docs/tutorial/query-params.md
Die gleichen Prozesse, die für Pfad-Parameter gelten, werden auch auf Query-Parameter angewendet: * Editor Unterstützung (natürlich) * Daten-<abbr title="Konvertieren des Strings, der von einem HTTP-Request kommt, in Python-Daten">„Parsen“</abbr> * Datenvalidierung * Automatische Dokumentation ## Defaultwerte { #defaults } Da Query-Parameter kein fester Teil eines Pfades sind, können sie optional sein und Defaultwerte haben.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 5K bytes - Click Count (0) -
docs/de/docs/index.md
* <abbr title="auch bekannt als: Serialisierung, Parsen, Marshalling">Konvertierung</abbr> von Eingabedaten: Aus dem Netzwerk kommend, zu Python-Daten und -Typen. Lesen von: * JSON. * Pfad-Parametern. * Query-Parametern. * Cookies. * Headern. * Formularen. * Dateien.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Dec 26 09:39:53 GMT 2025 - 25.8K bytes - Click Count (1) -
docs/de/docs/tutorial/body-nested-models.md
Aber mit all den Vorzügen: * Editor-Unterstützung (Codevervollständigung überall) * Datenkonvertierung (auch bekannt als Parsen, Serialisierung) * Datenvalidierung * Schema-Dokumentation
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 7.6K bytes - Click Count (0) -
docs/de/docs/alternatives.md
Eine weitere wichtige Funktion, die von APIs benötigt wird, ist das <abbr title="Lesen und Konvertieren nach Python-Daten">Parsen</abbr> von Daten aus eingehenden Requests. Webargs wurde entwickelt, um dieses für mehrere Frameworks, einschließlich Flask, bereitzustellen.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Oct 11 17:48:49 GMT 2025 - 27.4K bytes - Click Count (0) -
scripts/translate.py
<abbr title="auch bekannt als: Endpunkte, Routen">Pfad</abbr> <abbr title="Programm das auf Fehler im Code prüft">Linter</abbr> <abbr title="Konvertieren des Strings eines HTTP-Requests in Python-Daten">Parsen</abbr> <abbr title="vor 2023-03">0.95.0</abbr> <abbr title="2023-08-26">zum Zeitpunkt als das hier geschrieben wurde</abbr> »»»
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 19:05:53 GMT 2025 - 34.1K bytes - Click Count (0) -
src/cmd/asm/internal/asm/parse.go
p.start(op) if name, abi, ok := p.funcAddress(); ok { fmt.Fprintf(w, "ref %s %s\n", name, abi) } } } func (p *Parser) start(operand []lex.Token) { p.input = operand p.inputPos = 0 } // address parses the operand into a link address structure. func (p *Parser) address(operand []lex.Token) obj.Addr { p.start(operand) addr := obj.Addr{} p.operand(&addr) return addr }
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Nov 12 03:59:40 GMT 2025 - 37.3K bytes - Click Count (0) -
internal/jwt/parser.go
package jwt // This file is a re-implementation of the original code here with some // additional allocation tweaks reproduced using GODEBUG=allocfreetrace=1 // original file https://github.com/golang-jwt/jwt/blob/main/parser.go // borrowed under MIT License https://github.com/golang-jwt/jwt/blob/main/LICENSE import ( "bytes" "crypto" "crypto/hmac" "encoding/base64" "errors" "fmt" "hash" "time"
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
} } } } } /** * Parses primitive values from JSON parser. * * @param jsonParser the JSON parser * @return the parsed primitive value * @throws IOException if an I/O error occurs */ protected Object parsePrimitive(final JsonParser jsonParser) throws IOException {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sun Dec 14 01:18:25 GMT 2025 - 16.5K bytes - Click Count (0)