Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 351 - 360 of 1,075 for lere (0.05 seconds)

  1. docs/fr/docs/help-fastapi.md

    * Lire ce que j'écris (ou me suivre) sur [**Dev.to**](https://dev.to/tiangolo) ou [**Medium**](https://medium.com/@tiangolo).
        * Lire d'autres idées, des articles, et découvrir des outils que j'ai créés.
        * Me suivre pour lire quand je publie quelque chose de nouveau.
    
    ## Tweeter à propos de **FastAPI** { #tweet-about-fastapi }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  2. scripts/general-llm-prompt.md

        end
    ```
    
    ### Special blocks
    
    There are special blocks of notes, tips and others that look like:
    
    /// note
    Here goes a note
    ///
    
    To translate it, keep the same line and add the translation after a vertical bar.
    
    For example, if you were translating to Spanish, you would write:
    
    /// note | Nota
    
    Some examples in Spanish:
    
    Source (English):
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 10:55:36 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

       */
      public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) {
        /*
         * TODO(lowasser): consider checking for ImmutableAsList here
         * TODO(lowasser): consider checking for Multiset here
         */
        // Don't refer to ImmutableSortedSet by name so it won't pull in all that code
        if (elements instanceof ImmutableSet && !(elements instanceof SortedSet)) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Nov 07 16:09:47 GMT 2025
    - 35.3K bytes
    - Click Count (0)
  4. cmd/xl-storage.go

    			// if there is a part with data.
    			partPath := fmt.Sprintf("part.%d", fi.Parts[0].Number)
    			dataPath := pathJoin(path, fi.DataDir, partPath)
    			_, lerr := Lstat(pathJoin(volumeDir, dataPath))
    			if lerr != nil {
    				// Set the inline header, our inlined data is fine.
    				fi.SetInlineData()
    				return fi, nil
    			}
    			// Data exists on disk, remove the version from metadata.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 91.7K bytes
    - Click Count (0)
  5. docs/fr/docs/tutorial/cookie-param-models.md

    Par exemple, si le client tente d'envoyer un cookie `santa_tracker` avec la valeur `good-list-please`, il recevra une **réponse d'erreur** lui indiquant que le `santa_tracker` <dfn title="Le Père Noël désapprouve le manque de cookies. 🎅 D'accord, plus de blagues de cookies.">le cookie n'est pas autorisé</dfn> :
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  6. internal/s3select/sql/jsonpath.go

    				if arr, ok := rval.([]any); ok {
    					result = append(result, arr...)
    					continue
    				}
    			}
    			result = append(result, rval)
    		}
    		return result, true, nil
    	}
    	panic("cannot reach here")
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  7. scripts/translate.py

                    "- If the original English content has added parts, also add these parts to the translation.",
                    "- If the original English content has removed parts, also remove them from the translation, unless you were instructed earlier to not do that in specific cases.",
                    "- If parts of the original English content have changed, also change those parts in the translation.",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  8. cmd/globals.go

    	globalMinioModeDistErasure     = "mode-server-distributed-xl"
    	globalDirSuffix                = "__XLDIR__"
    	globalDirSuffixWithSlash       = globalDirSuffix + slashSeparator
    
    	// Add new global values here.
    )
    
    const (
    	// Limit fields size (except file) to 1Mib since Policy document
    	// can reach that size according to https://aws.amazon.com/articles/1434
    	maxFormFieldSize = int64(1 * humanize.MiByte)
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Sep 03 18:23:41 GMT 2024
    - 16.2K bytes
    - Click Count (1)
  9. android/guava/src/com/google/common/collect/Iterables.java

       *
       * @param removeFrom the iterable to (potentially) remove elements from
       * @param predicate a predicate that determines whether an element should be removed
       * @return {@code true} if any elements were removed from the iterable
       * @throws UnsupportedOperationException if the iterable does not support {@code remove()}.
       * @since 2.0
       */
      @CanIgnoreReturnValue
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 16 18:35:28 GMT 2025
    - 43.8K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/handling-errors.md

    ### Remplacer les exceptions de validation de la requête { #override-request-validation-exceptions }
    
    Lorsqu'une requête contient des données invalides, **FastAPI** lève en interne une `RequestValidationError`.
    
    Et il inclut également un gestionnaire d'exception par défaut pour cela.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10K bytes
    - Click Count (0)
Back to Top