Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 598 for verb (0.02 seconds)

  1. docs_src/schema_extra_example/tutorial005_py310.py

                    "summary": "A normal example",
                    "description": "A **normal** item works correctly.",
                    "value": {
                        "name": "Foo",
                        "description": "A very nice Item",
                        "price": 35.4,
                        "tax": 3.2,
                    },
                },
                "converted": {
                    "summary": "An example with converted data",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Aug 26 18:03:13 GMT 2023
    - 1.3K bytes
    - Click Count (0)
  2. docs/pt/docs/tutorial/dependencies/sub-dependencies.md

    /// tip | Dica
    
    Tudo isso pode não parecer muito útil com esses exemplos.
    
    Mas você verá o quão útil isso é nos capítulos sobre **segurança**.
    
    E você também verá a quantidade de código que você não precisara escrever.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:48:53 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/query-params.md

    Path parametreleri için geçerli olan aynı süreç query parametreleri için de geçerlidir:
    
    * Editör desteği (tabii ki)
    * Veri <dfn title="bir HTTP request'ten gelen string'i Python verisine dönüştürme">"ayrıştırma"</dfn>
    * Veri doğrulama
    * Otomatik dokümantasyon
    
    ## Varsayılanlar { #defaults }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  4. docs/fr/docs/tutorial/schema-extra-example.md

    Avant cela, seule la clé `example` avec un exemple unique était prise en charge. Elle l'est toujours par OpenAPI 3.1.0, mais elle est dépréciée et ne fait pas partie du standard JSON Schema. Vous êtes donc encouragé à migrer de `example` vers `examples`. 🤓
    
    Vous pouvez en lire davantage à la fin de cette page.
    
    ///
    
    ## Arguments supplémentaires de `Field` { #field-additional-arguments }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/handling-errors.md

    Bu handler’lar, `HTTPException` `raise` ettiğinizde ve request geçersiz veri içerdiğinde varsayılan JSON response’ları döndürmekten sorumludur.
    
    Bu exception handler’ları kendi handler’larınızla override edebilirsiniz.
    
    ### Request Validation Exception’larını Override Etmek { #override-request-validation-exceptions }
    
    Bir request geçersiz veri içerdiğinde, **FastAPI** içeride `RequestValidationError` raise eder.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            value = "${spaces}";
            assertEquals("   ", ResourceUtil.resolve(value));
    
            // Test long property name
            System.setProperty("very.long.property.name.with.many.dots", "long");
            value = "${very.long.property.name.with.many.dots}";
            assertEquals("long", ResourceUtil.resolve(value));
    
            // Test multiple occurrences of same variable
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

       */
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static ImmutableLongArray copyOf(LongStream stream) {
        // Note this uses very different growth behavior from copyOf(Iterable) and the builder.
        long[] array = stream.toArray();
        return (array.length == 0) ? EMPTY : new ImmutableLongArray(array);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 12 14:49:24 GMT 2025
    - 22K bytes
    - Click Count (0)
  8. dbflute_fess/dfprop/documentMap.dfprop

        # o isSuppressSchemaHtmlOutsideSql: (NotRequired - Default false)
        #  Does it remove outsideSql information from SchemaHtml?
        #  Basically you don't need this.
        #  OutsideSql information (related to tables) is very useful.
        #
        #; isSuppressSchemaHtmlOutsideSql = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/PruneChangelogsTask.java

        }
    
        /**
         * Find the releases prior to the supplied version, and find the changelog files in those releases by inspecting the
         * git trees at each tag.
         * <p>
         * If the supplied version is the very first in a new major series, then the method will look tag in the previous
         * major series. Otherwise, all git tags in the current major series will be inspected.
         *
         * @param gitWrapper used for git operations
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 6.6K bytes
    - Click Count (0)
  10. docs/fr/docs/deployment/docker.md

    Ensuite, vers la fin du `Dockerfile`, nous copions tout le code. Comme c'est ce qui **change le plus fréquemment**, nous le plaçons vers la fin, car presque toujours, tout ce qui suit cette étape ne pourra pas utiliser le cache.
    
    ```Dockerfile
    COPY ./app /code/app
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 32.3K bytes
    - Click Count (0)
Back to Top