Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 77 (0.18 sec)

  1. docs/em/docs/tutorial/security/simple-oauth2.md

    === "๐Ÿ 3๏ธโƒฃ.6๏ธโƒฃ & ๐Ÿ”›"
    
        ```Python hl_lines="3  77-79"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    
    === "๐Ÿ 3๏ธโƒฃ.1๏ธโƒฃ0๏ธโƒฃ & ๐Ÿ”›"
    
        ```Python hl_lines="1  75-77"
        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    ### โœ… ๐Ÿ”
    
    ๐Ÿ‘‰ โ˜ ๐Ÿ‘ฅ โœ”๏ธ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ“Š โšช๏ธโžก๏ธ ๐Ÿ‘† ๐Ÿ’ฝ, โœ‹๏ธ ๐Ÿ‘ฅ ๐Ÿšซ โœ… ๐Ÿ”.
    
    โžก๏ธ ๐Ÿšฎ ๐Ÿ‘ˆ ๐Ÿ’ฝ Pydantic `UserInDB` ๐Ÿท ๐Ÿฅ‡.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ListsTest.java

      }
    
      public void testComputeArrayListCapacity() {
        assertEquals(5, Lists.computeArrayListCapacity(0));
        assertEquals(13, Lists.computeArrayListCapacity(8));
        assertEquals(89, Lists.computeArrayListCapacity(77));
        assertEquals(22000005, Lists.computeArrayListCapacity(20000000));
        assertEquals(Integer.MAX_VALUE, Lists.computeArrayListCapacity(Integer.MAX_VALUE - 1000));
      }
    
      public void testNewArrayListFromCollection() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 35.2K bytes
    - Viewed (0)
  3. cmd/apierrorcode_string.go

    	_ = x[ErrSignatureDoesNotMatch-71]
    	_ = x[ErrMethodNotAllowed-72]
    	_ = x[ErrInvalidPart-73]
    	_ = x[ErrInvalidPartOrder-74]
    	_ = x[ErrMissingPart-75]
    	_ = x[ErrAuthorizationHeaderMalformed-76]
    	_ = x[ErrMalformedPOSTRequest-77]
    	_ = x[ErrPOSTFileRequired-78]
    	_ = x[ErrSignatureVersionNotSupported-79]
    	_ = x[ErrBucketNotEmpty-80]
    	_ = x[ErrAllAccessDisabled-81]
    	_ = x[ErrPolicyInvalidVersion-82]
    	_ = x[ErrMissingFields-83]
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/security/simple-oauth2.md

    ์˜ค๋ฅ˜์˜ ๊ฒฝ์šฐ `HTTPException` ์˜ˆ์™ธ๋ฅผ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค:
    
    === "ํŒŒ์ด์ฌ 3.7 ์ด์ƒ"
    
        ```Python hl_lines="3  77-79"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    
    === "ํŒŒ์ด์ฌ 3.10 ์ด์ƒ"
    
        ```Python hl_lines="1  75-77"
        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    ### ํŒจ์Šค์›Œ๋“œ ํ™•์ธํ•˜๊ธฐ
    
    ์ด ์‹œ์ ์—์„œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์˜ ์‚ฌ์šฉ์ž ๋ฐ์ดํ„ฐ ํ˜•์‹์„ ํ™•์ธํ–ˆ์ง€๋งŒ ์•”ํ˜ธ๋ฅผ ํ™•์ธํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค.
    
    ๋จผ์ € ๋ฐ์ดํ„ฐ๋ฅผ Pydantic `UserInDB` ๋ชจ๋ธ์— ๋„ฃ๊ฒ ์Šต๋‹ˆ๋‹ค.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 22:37:23 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/simple-oauth2.md

        ```
    
    === "Python 3.10+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls mรถglich.
    
        ```Python hl_lines="1  75-77"
        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls mรถglich.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:08:44 GMT 2024
    - 14.3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/simple-oauth2.md

        {!> ../../../docs_src/security/tutorial003_an.py!}
        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="1  75-77"
        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ListsTest.java

      }
    
      public void testComputeArrayListCapacity() {
        assertEquals(5, Lists.computeArrayListCapacity(0));
        assertEquals(13, Lists.computeArrayListCapacity(8));
        assertEquals(89, Lists.computeArrayListCapacity(77));
        assertEquals(22000005, Lists.computeArrayListCapacity(20000000));
        assertEquals(Integer.MAX_VALUE, Lists.computeArrayListCapacity(Integer.MAX_VALUE - 1000));
      }
    
      public void testNewArrayListFromCollection() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 35.2K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

                  }
                ]
              }
            ]
          },
          "gridPos": {
            "h": 6,
            "w": 6,
            "x": 6,
            "y": 42
          },
          "id": 77,
          "options": {
            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 102K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

              "unit": "s"
            },
            "overrides": []
          },
          "gridPos": {
            "h": 7,
            "w": 12,
            "x": 12,
            "y": 26
          },
          "id": 77,
          "options": {
            "minVizHeight": 75,
            "minVizWidth": 75,
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "lastNotNull"
              ],
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 93K bytes
    - Viewed (2)
Back to top