Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,208 for fileNames (0.11 sec)

  1. src/go/doc/testdata/bugpara.0.golden

    // 
    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
  2. docs_src/request_files/tutorial002.py

    async def create_files(files: List[bytes] = File()):
        return {"file_sizes": [len(file) for file in files]}
    
    
    @app.post("/uploadfiles/")
    async def create_upload_files(files: List[UploadFile]):
        return {"filenames": [file.filename for file in files]}
    
    
    @app.get("/")
    async def main():
        content = """
    <body>
    <form action="/files/" enctype="multipart/form-data" method="post">
    <input name="files" type="file" multiple>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 811 bytes
    - Viewed (0)
  3. docs_src/request_files/tutorial002_an_py39.py

    async def create_files(files: Annotated[list[bytes], File()]):
        return {"file_sizes": [len(file) for file in files]}
    
    
    @app.post("/uploadfiles/")
    async def create_upload_files(files: list[UploadFile]):
        return {"filenames": [file.filename for file in files]}
    
    
    @app.get("/")
    async def main():
        content = """
    <body>
    <form action="/files/" enctype="multipart/form-data" method="post">
    <input name="files" type="file" multiple>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 826 bytes
    - Viewed (0)
  4. src/go/doc/testdata/issue13742.0.golden

    // 
    PACKAGE issue13742
    
    IMPORTPATH
    	testdata/issue13742
    
    IMPORTS
    	go/ast
    
    FILENAMES
    	testdata/issue13742.go
    
    FUNCTIONS
    	// Both F0 and G0 should appear as functions. 
    	func F0(Node)
    
    	// Both F1 and G1 should appear as functions. 
    	func F1(ast.Node)
    
    	// 
    	func G0() Node
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 04:10:51 UTC 2016
    - 299 bytes
    - Viewed (0)
  5. src/go/doc/testdata/issue13742.1.golden

    // 
    PACKAGE issue13742
    
    IMPORTPATH
    	testdata/issue13742
    
    IMPORTS
    	go/ast
    
    FILENAMES
    	testdata/issue13742.go
    
    FUNCTIONS
    	// Both F0 and G0 should appear as functions. 
    	func F0(Node)
    
    	// Both F1 and G1 should appear as functions. 
    	func F1(ast.Node)
    
    	// 
    	func G0() Node
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 04:10:51 UTC 2016
    - 299 bytes
    - Viewed (0)
  6. src/go/doc/testdata/issue13742.2.golden

    // 
    PACKAGE issue13742
    
    IMPORTPATH
    	testdata/issue13742
    
    IMPORTS
    	go/ast
    
    FILENAMES
    	testdata/issue13742.go
    
    FUNCTIONS
    	// Both F0 and G0 should appear as functions. 
    	func F0(Node)
    
    	// Both F1 and G1 should appear as functions. 
    	func F1(ast.Node)
    
    	// 
    	func G0() Node
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 04:10:51 UTC 2016
    - 299 bytes
    - Viewed (0)
  7. src/go/doc/testdata/predeclared.1.golden

    // Package predeclared is a go/doc test for handling of exported ...
    PACKAGE predeclared
    
    IMPORTPATH
    	testdata/predeclared
    
    FILENAMES
    	testdata/predeclared.go
    
    TYPES
    	// 
    	type bool int
    
    	// Must not be visible. 
    	func (b bool) String() string
    
    	// 
    	type error struct{}
    
    	// Must not be visible. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 00:35:30 UTC 2016
    - 330 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/self_test.go

    }
    
    func pkgFiles(path string) ([]*syntax.File, error) {
    	filenames, err := pkgFilenames(path, true) // from stdlib_test.go
    	if err != nil {
    		return nil, err
    	}
    
    	var files []*syntax.File
    	for _, filename := range filenames {
    		file, err := syntax.ParseFile(filename, nil, nil, 0)
    		if err != nil {
    			return nil, err
    		}
    		files = append(files, file)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/go/doc/testdata/error2.1.golden

    // 
    PACKAGE error2
    
    IMPORTPATH
    	testdata/error2
    
    FILENAMES
    	testdata/error2.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the locally-declared error interface
    		// is only visible if all declarations are shown.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// In struct types, an embedded error must only be visible
    		// if AllDecls is set.
    		error
    	}
    
    	// 
    	type T0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 565 bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		},
    		{
    			filenames: []string{"file"},
    			errExp:    false,
    		},
    		{
    			filenames: []string{"dir"},
    			recursive: true,
    			errExp:    false,
    		},
    		{
    			kustomize: "dir",
    			errExp:    false,
    		},
    	}
    	for _, testcase := range testcases {
    		o := &FilenameOptions{
    			Kustomize: testcase.kustomize,
    			Filenames: testcase.filenames,
    			Recursive: testcase.recursive,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
Back to top