Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for appendNode (0.14 sec)

  1. src/os/file_windows.go

    // to close the wrong file descriptor.
    type file struct {
    	pfd        poll.FD
    	name       string
    	dirinfo    atomic.Pointer[dirInfo] // nil unless directory being read
    	appendMode bool                    // whether file is opened for appending
    }
    
    // Fd returns the Windows handle referencing the open file.
    // If f is closed, the file descriptor becomes invalid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/os/file.go

    //
    // If file was opened with the O_APPEND flag, WriteAt returns an error.
    func (f *File) WriteAt(b []byte, off int64) (n int, err error) {
    	if err := f.checkValid("write"); err != nil {
    		return 0, err
    	}
    	if f.appendMode {
    		return 0, errWriteAtInAppendMode
    	}
    
    	if off < 0 {
    		return 0, &PathError{Op: "writeat", Path: f.name, Err: errors.New("negative offset")}
    	}
    
    	for len(b) > 0 {
    		m, e := f.pwrite(b, off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/os/file_plan9.go

    // to close the wrong file descriptor.
    type file struct {
    	fdmu       poll.FDMutex
    	fd         int
    	name       string
    	dirinfo    atomic.Pointer[dirInfo] // nil unless directory being read
    	appendMode bool                    // whether file is opened for appending
    }
    
    // Fd returns the integer Plan 9 file descriptor referencing the open file.
    // If f is closed, the file descriptor becomes invalid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top