Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2821 - 2830 of 2,878 for int3 (0.07 sec)

  1. guava-tests/test/com/google/common/base/PredicatesTest.java

        private static final long serialVersionUID = 0x150ddL;
    
        @Override
        public boolean apply(@Nullable Integer i) {
          return (i.intValue() & 1) == 1;
        }
    
        @Override
        public int hashCode() {
          return 0x150dd;
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          return obj instanceof IsOdd;
        }
    
        @Override
        public String toString() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.15.md

    - Watch will now support converting response objects into Table or PartialObjectMetadata forms. ([#71548](https://github.com/kubernetes/kubernetes/pull/71548), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  3. fastapi/dependencies/utils.py

        *, flat_dependant: Dependant, name: str, embed_body_fields: bool
    ) -> Optional[ModelField]:
        """
        Get a ModelField representing the request body for a path operation, combining
        all body parameters into a single field if necessary.
    
        Used to check if it's form data (with `isinstance(body_field, params.Form)`)
        or JSON and to generate the JSON Schema for a request body.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 21:46:26 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/query-params-str-validations.md

    ```Python hl_lines="7"
    {!> ../../docs_src/query_params_str_validations/tutorial013.py!}
    ```
    
    ////
    
    /// note
    
    Keep in mind that in this case, FastAPI won't check the contents of the list.
    
    For example, `List[int]` would check (and document) that the contents of the list are integers. But `list` alone wouldn't.
    
    ///
    
    ## Declare more metadata
    
    You can add more information about the parameter.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. docs/tr/docs/alternatives.md

    API'lara gereken bir diğer büyük özellik ise veri doğrulamadır, yani verinin çeşitli parametrelere bağlı olarak doğru ve tutarlı olduğundan emin olmaktır. Örneğin bir alanın `int` olmasına karar verdiniz, daha sonra rastgele bir metin değeri almasını istemezsiniz. Bu özellikle sisteme dışarıdan gelen veri için kullanışlı bir özellik oluyor.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. docs/ru/docs/alternatives.md

    Еще одна важная функция, необходимая API — проверка данных, позволяющая убедиться, что данные действительны и соответствуют заданным параметрам.
    Как пример, можно указать, что ожидаются данные типа `int`, а не какая-то произвольная строка.
    Это особенно полезно для входящих данных.
    
    Без системы проверки данных Вам пришлось бы прописывать все проверки вручную.
    
    Именно для обеспечения этих функций и была создана Marshmallow.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

    ### OpenStack
    
    SIG-OpenStack updated the OpenStack provider to use newer APIs, consolidated community code into one repository, engaged with the Cloud Provider Working Group to have a consistent plan for moving provider code into individual repositories, improved testing of provider code, and strengthened ties with the OpenStack developer community.
    
    ### API-machinery
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. docs/em/docs/alternatives.md

    ➕1️⃣ 🦏 ⚒ 💚 🔗 💽 🔬, ⚒ 💭 👈 💽 ☑, 🤝 🎯 🔢. 🖼, 👈 🏑 `int`, & 🚫 🎲 🎻. 👉 ✴️ ⚠ 📨 💽.
    
    🍵 💽 🔬 ⚙️, 👆 🔜 ✔️ 🌐 ✅ ✋, 📟.
    
    👫 ⚒ ⚫️❔ 🍭 🏗 🚚. ⚫️ 👑 🗃, & 👤 ✔️ ⚙️ ⚫️ 📚 ⏭.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/query-params-str-validations.md

    {!> ../../docs_src/query_params_str_validations/tutorial013.py!}
    ```
    
    ////
    
    /// note | "Технические детали"
    
    Запомните, что в таком случае, FastAPI не будет проверять содержимое списка.
    
    Например, для List[int] список будет провалидирован (и задокументирован) на содержание только целочисленных элементов. Но для простого `list` такой проверки не будет.
    
    ///
    
    ## Больше метаданных
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_2x.md

           <version>1.6.0</version>
         </dependency>
         ```
    
     *  New: `Cache.initialize()`. Call this on a background thread to eagerly
        initialize the response cache.
     *  New: Fold `MockWebServerRule` into `MockWebServer`. This makes it easier to
        write JUnit tests with `MockWebServer`. The `MockWebServer` library now
        depends on JUnit, though it continues to work with all testing frameworks.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
Back to top