Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 005 (0.04 sec)

  1. pyproject.toml

    Issues = "https://github.com/fastapi/fastapi/issues"
    Changelog = "https://fastapi.tiangolo.com/release-notes/"
    
    [project.optional-dependencies]
    
    standard = [
        "fastapi-cli[standard] >=0.0.5",
        # For the test client
        "httpx >=0.23.0",
        # For templates
        "jinja2 >=2.11.2",
        # For forms and file uploads
        "python-multipart >=0.0.7",
        # To validate email fields
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 14:19:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    			// perpetually hung here.
    			w := xioutil.NewDeadlineWorker(globalDriveConfig.GetMaxTimeout())
    			w.Run(func() error {
    				return removeAll(entry)
    			})
    		}
    	}
    }
    
    const almostFilledPercent = 0.05
    
    func (s *xlStorage) diskAlmostFilled() bool {
    	info, err := s.diskInfoCache.Get()
    	if err != nil {
    		return false
    	}
    	if info.Used == 0 || info.UsedInodes == 0 {
    		return false
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:58:27 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    ```bash
    pip install "fastapi[standard]"
    ```
    
    #### Other Changes
    
    * This adds support for calling the CLI as:
    
    ```bash
    python -m fastapi
    ```
    
    * And it upgrades `fastapi-cli[standard] >=0.0.5`.
    
    #### Technical Details
    
    Before this, `fastapi` would include the standard dependencies, with Uvicorn and the `fastapi-cli`, etc.
    
    And `fastapi-slim` would not include those standard dependencies.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
Back to top