Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 381 - 390 of 423 for Expect (0.04 seconds)

  1. docs/en/docs/fastapi-people.md

    They have proven to be **FastAPI Experts** by helping many others. โœจ
    
    /// tip
    
    You could become an official FastAPI Expert too!
    
    Just [help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github). ๐Ÿค“
    
    ///
    
    You can see the **FastAPI Experts** for:
    
    * [Last Month](#fastapi-experts-last-month) ๐Ÿค“
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

    /*
     * Written by Doug Lea and Martin Buchholz with assistance from
     * members of JCP JSR-166 Expert Group and released to the public
     * domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleArrayTest.java?revision=1.13
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/cache/Striped64.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.cache;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.lang.reflect.Field;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 15 22:17:15 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

    /*
     * Written by Doug Lea and Martin Buchholz with assistance from
     * members of JCP JSR-166 Expert Group and released to the public
     * domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleArrayTest.java?revision=1.13
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/hash/Striped64.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.hash;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.lang.reflect.Field;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 15 22:17:15 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  6. docs/en/docs/python-types.md

    **FastAPI** is all based on these type hints, they give it many advantages and benefits.
    
    But even if you never use **FastAPI**, you would benefit from learning a bit about them.
    
    /// note
    
    If you are a Python expert, and you already know everything about type hints, skip to the next chapter.
    
    ///
    
    ## Motivation { #motivation }
    
    Let's start with a simple example:
    
    {* ../../docs_src/python_types/tutorial001_py310.py *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
  7. internal/jwt/parser.go

    	jwtgo "github.com/golang-jwt/jwt/v4"
    	jsoniter "github.com/json-iterator/go"
    	"github.com/minio/minio/internal/bpool"
    )
    
    // SigningMethodHMAC - Implements the HMAC-SHA family of signing methods signing methods
    // Expects key type of []byte for both signing and validation
    type SigningMethodHMAC struct {
    	Name       string
    	Hash       crypto.Hash
    	HasherPool bpool.Pool[hash.Hash]
    }
    
    // Specific instances for HS256, HS384, HS512
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  8. docs/en/docs/tutorial/dependencies/index.md

    You can think of it as a *path operation function* without the "decorator" (without the `@app.get("/some-path")`).
    
    And it can return anything you want.
    
    In this case, this dependency expects:
    
    * An optional query parameter `q` that is a `str`.
    * An optional query parameter `skip` that is an `int`, and by default is `0`.
    * An optional query parameter `limit` that is an `int`, and by default is `100`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  9. tests/query_test.go

    		totalBatch += batch
    
    		if tx.RowsAffected != 2 {
    			t.Errorf("Incorrect affected rows, expects: 2, got %v", tx.RowsAffected)
    		}
    
    		if len(results) != 2 {
    			t.Errorf("Incorrect users length, expects: 2, got %v", len(results))
    		}
    
    		for idx := range results {
    			results[idx].Name = results[idx].Name + "_new"
    		}
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Tue Jul 22 06:21:04 GMT 2025
    - 51K bytes
    - Click Count (0)
  10. docs/ja/docs/help-fastapi.md

    * [GitHub Issues](https://github.com/fastapi/fastapi/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Aquestion+-label%3Aanswered+)
    
    ๅคšใใฎๅ ดๅˆใ€ใใฎ่ณชๅ•ใฎ็ญ”ใˆใ‚’ใ™ใงใซ็Ÿฅใฃใฆใ„ใ‚‹ใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚๐Ÿค“
    
    ใ‚‚ใ—ๅคšใใฎไบบใฎ่ณชๅ•ใซ็ญ”ใˆใฆๅŠฉใ‘ใฆใใ‚ŒใŸใชใ‚‰ใ€ใ‚ใชใŸใฏๅ…ฌๅผใฎ[FastAPI Expert](fastapi-people.md#fastapi-experts)ใซใชใ‚Šใพใ™ใ€‚๐ŸŽ‰
    
    ๆœ€ใ‚‚ๅคงไบ‹ใชใƒใ‚คใƒณใƒˆใฏใ€Œ่ฆชๅˆ‡ใงใ‚ใ‚‹ใ“ใจใ€ใ‚’ๅฟƒใŒใ‘ใ‚‹ใ“ใจใงใ™ใ€‚ไบบใฏใƒ•ใƒฉใ‚นใƒˆใƒฌใƒผใ‚ทใƒงใƒณใ‚’ๆŠฑใˆใฆใ‚„ใฃใฆๆฅใ‚‹ใฎใงใ€ๅฟ…ใšใ—ใ‚‚ๆœ€่‰ฏใฎ่žใๆ–นใ‚’ใ—ใฆใ„ใ‚‹ใจใฏ้™ใ‚Šใพใ›ใ‚“ใŒใ€ใงใใ‚‹้™ใ‚Š่ฆชๅˆ‡ใซๅฏพๅฟœใ—ใพใ—ใ‚‡ใ†ใ€‚๐Ÿค—
    
    **FastAPI** ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใฏ่ฆชๅˆ‡ใงๆญ“่ฟŽ็š„ใงใ‚ใ‚‹ใ“ใจใ‚’็›ฎๆŒ‡ใ—ใฆใ„ใพใ™ใ€‚ๅŒๆ™‚ใซใ€ใ„ใ˜ใ‚ใ‚„ไป–่€…ใธใฎ็„ก็คผใชๆŒฏใ‚‹่ˆžใ„ใฏๅ—ใ‘ๅ…ฅใ‚Œใชใ„ใงใใ ใ•ใ„ใ€‚ใŠไบ’ใ„ใ‚’ๅคงไบ‹ใซใ—ใพใ—ใ‚‡ใ†ใ€‚
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 15.3K bytes
    - Click Count (0)
Back to Top