Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 282 for fileset (0.28 sec)

  1. .space/fleet.devfile.yaml

    schemaVersion: 2.2.0
    attributes:
      space:
        instanceType: regular
        editor:
          type: Fleet
    components:
      - name: kotlin-build-env
        container:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 15:24:12 UTC 2023
    - 240 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract.go

    	}
    	fieldsEntry, ok := findManagedFields(accessor, fieldManager, subresource)
    	if !ok {
    		return nil
    	}
    	fieldset := &fieldpath.Set{}
    	err = fieldset.FromJSON(bytes.NewReader(fieldsEntry.FieldsV1.Raw))
    	if err != nil {
    		return fmt.Errorf("error marshalling FieldsV1 to JSON: %w", err)
    	}
    
    	u := typedObj.ExtractItems(fieldset.Leaves()).AsValue().Unstructured()
    	m, ok := u.(map[string]interface{})
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 03:17:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. cmd/sftp-server-driver.go

    		return nil, err
    	}
    
    	switch r.Method {
    	case "List":
    		var files []os.FileInfo
    
    		bucket, prefix := path2BucketObject(r.Filepath)
    		if bucket == "" {
    			buckets, err := clnt.ListBuckets(r.Context())
    			if err != nil {
    				return nil, err
    			}
    
    			for _, bucket := range buckets {
    				files = append(files, &minioFileInfo{
    					p:     bucket.Name,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/syscall/fs_js.go

    		path = cwd + "/" + path
    	}
    	f := &jsFile{
    		path:    path,
    		entries: entries,
    	}
    	filesMu.Lock()
    	files[fd] = f
    	filesMu.Unlock()
    	return fd, nil
    }
    
    func Close(fd int) error {
    	filesMu.Lock()
    	delete(files, fd)
    	filesMu.Unlock()
    	_, err := fsCall("close", fd)
    	return err
    }
    
    func CloseOnExec(fd int) {
    	// nothing to do - no exec
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. src/cmd/internal/src/xpos.go

    }
    
    // FileTable returns a slice of all files used to build this package.
    func (t *PosTable) FileTable() []string {
    	// Create a LUT of the global package level file indices. This table is what
    	// is written in the debug_lines header, the file[N] will be referenced as
    	// N+1 in the debug_lines table.
    	fileLUT := make([]string, len(t.nameMap))
    	for str, i := range t.nameMap {
    		fileLUT[i] = str
    	}
    	return fileLUT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedupdater_test.go

       "data": {
          "k": "v"
       }
    }`), &u)
    				if err != nil {
    					panic(err)
    				}
    				for i := 0; i < 9999; i++ {
    					unique := fmt.Sprintf("this-key-is-very-long-so-as-to-create-a-very-large-serialized-fieldset-%v", i)
    					unstructured.SetNestedField(u.Object, "A", "data", unique)
    				}
    				return u
    			}(),
    		},
    		{
    			name: "old object + new object annotations + new object last-applied annotation is too big",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. src/os/stat_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    	fs.size = int64(fs.sys.Size)
    	fs.modTime = stTimespecToTime(fs.sys.Mtim)
    	fs.mode = FileMode(fs.sys.Mode & 0777)
    	switch fs.sys.Mode & syscall.S_IFMT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top