Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 875 for dofiles (0.16 sec)

  1. docs/zh/docs/tutorial/request-files.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/static-files.md

    `name="static"` 提供了一个能被**FastAPI**内部使用的名字。
    
    所有这些参数可以不同于"`static`",根据你应用的需要和具体细节调整它们。
    
    ## 更多信息
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 03 12:49:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/static-files.md

    alm <******@****.***> 1652144857 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 10 01:07:37 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/request-files.md

    # Request Files
    
    You can define files to be uploaded by the client using `File`.
    
    !!! info
        To receive uploaded files, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        E.g. `pip install python-multipart`.
    
        This is because uploaded files are sent as "form data".
    
    ## Import `File`
    
    Import `File` and `UploadFile` from `fastapi`:
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. docs/tr/docs/tutorial/static-files.md

    Hasan Sezer Taşan <******@****.***> 1716249428 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 23:57:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/run/run.go

    		var src string
    		if len(p.GoFiles) > 0 {
    			src = p.GoFiles[0]
    		} else if len(p.CgoFiles) > 0 {
    			src = p.CgoFiles[0]
    		} else {
    			// this case could only happen if the provided source uses cgo
    			// while cgo is disabled.
    			hint := ""
    			if !cfg.BuildContext.CgoEnabled {
    				hint = " (cgo is disabled)"
    			}
    			base.Fatalf("go: no suitable source files%s", hint)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/dirhash/hash.go

    	z, err := zip.OpenReader(zipfile)
    	if err != nil {
    		return "", err
    	}
    	defer z.Close()
    	var files []string
    	zfiles := make(map[string]*zip.File)
    	for _, file := range z.File {
    		files = append(files, file.Name)
    		zfiles[file.Name] = file
    	}
    	zipOpen := func(name string) (io.ReadCloser, error) {
    		f := zfiles[name]
    		if f == nil {
    			return nil, fmt.Errorf("file %q not found in zip", name) // should never happen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/FileClasspathHasher.groovy

    /**
     * Creates snapshot based on file paths.
     */
    class FileClasspathHasher implements ClasspathHasher {
        @Override
        HashCode hash(ClassPath classpath) {
            def hasher = Hashing.newHasher()
            classpath.asFiles*.path.each { String path ->
                hasher.putString(path)
            }
            return hasher.hash();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 18 07:07:38 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. cmd/data-usage_test.go

    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir2/d2file2", size: 300},
    		{name: "dir2/d2file3/", size: 300},
    		{name: "dir2/d2file4/", size: 300},
    		{name: "dir2/d2file5", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    		{name: "dir1/dira/dirasub/sublevel3/dccccfile", size: 10},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/fix/fix.go

    			if !printed {
    				fmt.Fprintf(os.Stderr, "go: not fixing packages in dependency modules\n")
    				printed = true
    			}
    			continue
    		}
    		// Use pkg.gofiles instead of pkg.Dir so that
    		// the command only applies to this package,
    		// not to packages in subdirectories.
    		files := base.RelPaths(pkg.InternalAllGoFiles())
    		goVersion := ""
    		if pkg.Module != nil {
    			goVersion = "go" + pkg.Module.GoVersion
    		} else if pkg.Standard {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top