- Sort Score
- Num 10 results
- Language All
Results 201 - 210 of 286 for parties (0.07 seconds)
-
docs/fr/docs/tutorial/dependencies/index.md
Mais comme **FastAPI** est basĂ© sur les standards Python, y compris `Annotated`, vous pouvez utiliser cette astuce dans votre code. đ /// Les dĂ©pendances continueront de fonctionner comme prĂ©vu, et la **meilleure partie** est que **lâinformation de type sera conservĂ©e**, ce qui signifie que votre Ă©diteur pourra continuer Ă vous fournir **lâautocomplĂ©tion**, **des erreurs en ligne**, etc. Idem pour dâautres outils comme `mypy`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 11.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/simple-oauth2.md
{* ../../docs_src/security/tutorial003_an_py310.py hl[58:66,69:74,94] *} /// info L'enâtĂȘte supplĂ©mentaire `WWW-Authenticate` avec la valeur `Bearer` que nous renvoyons ici fait Ă©galement partie de la spĂ©cification. Il est prĂ©vu qu'un code d'Ă©tat HTTP (d'erreur) 401 « UNAUTHORIZED » renvoie Ă©galement un enâtĂȘte `WWW-Authenticate`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 11.2K bytes - Click Count (0) -
docs/pt/docs/tutorial/security/simple-oauth2.md
# Simples OAuth2 com senha e Bearer { #simple-oauth2-with-password-and-bearer } Agora vamos construir a partir do capĂtulo anterior e adicionar as partes que faltam para ter um fluxo de segurança completo. ## Obtenha o `username` e a `password` { #get-the-username-and-password } Ă utilizado o utils de segurança da **FastAPI** para obter o `username` e a `password`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 10.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
kryo.register(TreeMap.class, new MapSerializer<>()); // Immutable collections (from Collections utility) // Register each class individually to ensure partial failures don't skip all registrations registerClassSafely(kryo, Collections.emptyList().getClass()); registerClassSafely(kryo, Collections.emptySet().getClass());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:54:09 GMT 2026 - 10.5K bytes - Click Count (3) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/Punycode.kt
* * This class contains a Kotlin implementation of the pseudocode specified by RFC 3492. It includes * direct translation of the pseudocode presented there. * * Partner this class with [UTS #46] to implement IDNA2008 [RFC 5890] like most browsers do. * * [RFC 3492]: https://datatracker.ietf.org/doc/html/rfc3492 * [RFC 5890]: https://datatracker.ietf.org/doc/html/rfc5890
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 8.6K bytes - Click Count (0) -
cmd/server_test.go
c.Assert(err, nil) // verify whether complete multipart was successful. c.Assert(response.StatusCode, http.StatusOK) var parts []CompletePart for _, part := range completeUploads.Parts { part.ETag = canonicalizeETag(part.ETag) parts = append(parts, part) } etag := getCompleteMultipartMD5(parts) c.Assert(canonicalizeETag(response.Header.Get(xhttp.ETag)), etag)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 118.1K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java
assertEquals("child-project", gav.artifactId()); assertEquals("1.0.0", gav.version()); } @Test @DisplayName("should handle partial parent inheritance") void shouldHandlePartialParentInheritance() throws Exception { String pomXml = """ <?xml version="1.0" encoding="UTF-8"?>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 17.3K bytes - Click Count (0) -
cmd/xl-storage-format-v2_gen.go
return } } } case "PartSizes": var zb0007 uint32 zb0007, err = dc.ReadArrayHeader() if err != nil { err = msgp.WrapError(err, "PartSizes") return } if cap(z.PartSizes) >= int(zb0007) { z.PartSizes = (z.PartSizes)[:zb0007] } else { z.PartSizes = make([]int64, zb0007) } for za0006 := range z.PartSizes { z.PartSizes[za0006], err = dc.ReadInt64()
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 55.8K bytes - Click Count (0) -
cmd/erasure-server-pool-rebalance.go
return fmt.Errorf("rebalanceObject: NewMultipartUpload() %w", err) } defer z.AbortMultipartUpload(ctx, bucket, oi.Name, res.UploadID, ObjectOptions{NoAuditLog: true}) parts := make([]CompletePart, len(oi.Parts)) for i, part := range oi.Parts { hr, err := hash.NewReader(ctx, io.LimitReader(gr, part.Size), part.Size, "", "", part.ActualSize) if err != nil { return fmt.Errorf("rebalanceObject: hash.NewReader() %w", err)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 28.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/first-steps.md
### Ătape 3 : crĂ©er un « chemin dâaccĂšs » { #step-3-create-a-path-operation } #### Chemin { #path } « Chemin » fait ici rĂ©fĂ©rence Ă la derniĂšre partie de lâURL Ă partir du premier `/`. Donc, dans une URL telle que : ``` https://example.com/items/foo ``` ... le chemin serait : ``` /items/foo ``` /// infoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 15.1K bytes - Click Count (0)