Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for informal (0.21 sec)

  1. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_T_NONE = 3
    pkg syscall (freebsd-arm64), const BPF_T_NONE ideal-int
    pkg syscall (freebsd-arm64), const BPF_T_NORMAL = 0
    pkg syscall (freebsd-arm64), const BPF_T_NORMAL ideal-int
    pkg syscall (freebsd-arm64), const BPF_TAX = 0
    pkg syscall (freebsd-arm64), const BPF_TAX ideal-int
    pkg syscall (freebsd-arm64), const BPF_TXA = 128
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/testing.md

    ```Python hl_lines="2  12  15-18"
    {!../../../docs_src/app_testing/tutorial001.py!}
    ```
    
    !!! tip "Tipp"
        Beachten Sie, dass die Testfunktionen normal `def` und nicht `async def` sind.
    
        Und die Anrufe an den Client sind ebenfalls normale Anrufe, die nicht `await` verwenden.
    
        Dadurch können Sie `pytest` ohne Komplikationen direkt nutzen.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:20:01 GMT 2024
    - 7K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

        LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER
        FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR
        LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE
        POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT
        APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH
        PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const MADV_FREE_REUSE = 8
    pkg syscall (darwin-arm64), const MADV_FREE_REUSE ideal-int
    pkg syscall (darwin-arm64), const MADV_NORMAL = 0
    pkg syscall (darwin-arm64), const MADV_NORMAL ideal-int
    pkg syscall (darwin-arm64), const MADV_RANDOM = 1
    pkg syscall (darwin-arm64), const MADV_RANDOM ideal-int
    pkg syscall (darwin-arm64), const MADV_SEQUENTIAL = 2
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (darwin-386), const MADV_FREE ideal-int
    pkg syscall (darwin-386), const MADV_FREE_REUSABLE ideal-int
    pkg syscall (darwin-386), const MADV_FREE_REUSE ideal-int
    pkg syscall (darwin-386), const MADV_NORMAL ideal-int
    pkg syscall (darwin-386), const MADV_RANDOM ideal-int
    pkg syscall (darwin-386), const MADV_SEQUENTIAL ideal-int
    pkg syscall (darwin-386), const MADV_WILLNEED ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  6. ChangeLog.md

    - [`KT-57435`](https://youtrack.jetbrains.com/issue/KT-57435) Fix computing mangled names for functions with context receivers
    - [`KT-57219`](https://youtrack.jetbrains.com/issue/KT-57219) K2: incorrect relative order of normal and use-site-targeted annotations on property getter in the resulting bytecode
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.13.md

    * Fixes a flaw (CVE-2019-11253) in json/yaml decoding where large or malformed documents could consume excessive server resources. Request bodies for normal API requests (create/delete/update/patch operations of regular resources) are now limited to 3MB. ([#83261](https://github.com/kubernetes/kubernetes/pull/83261), [@liggitt](https://github.com/liggitt))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 273.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.11.md

        * nonexistent.  This patch adds an anonymous function call inside
        * the loop to correctly handle acquiring the write lock with deferred
        * unlock to run at that function's completion, following the normal
        * golang lock/deferred-unlock pattern.
    * fix UnmountDevice failure on Windows ([#68608](https://github.com/kubernetes/kubernetes/pull/68608), [@andyzhangx](https://github.com/andyzhangx))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/body-nested-models.md

    * Editor support (completion, etc.), even for nested models
    * Data conversion
    * Data validation
    * Automatic documentation
    
    ## Special types and validation
    
    Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-files.md

    For example, inside of an `async` *path operation function* you can get the contents with:
    
    ```Python
    contents = await myfile.read()
    ```
    
    If you are inside of a normal `def` *path operation function*, you can access the `UploadFile.file` directly, for example:
    
    ```Python
    contents = myfile.file.read()
    ```
    
    !!! note "`async` Technical Details"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 10.2K bytes
    - Viewed (0)
Back to top