Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SEEK_END (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	QUERYCVT                        = 3
    	RUSAGE_CHILDREN                 = -0x1
    	RUSAGE_SELF                     = 0x0 // RUSAGE_THREAD unsupported on z/OS
    	SEEK_CUR                        = 1
    	SEEK_END                        = 2
    	SEEK_SET                        = 0
    	SETAUTOCVTALL                   = 5
    	SETAUTOCVTON                    = 2
    	SETCVTALL                       = 4
    	SETCVTOFF                       = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/os/file.go

    // Seek whence values.
    //
    // Deprecated: Use io.SeekStart, io.SeekCurrent, and io.SeekEnd.
    const (
    	SEEK_SET int = 0 // seek relative to the origin of the file
    	SEEK_CUR int = 1 // seek relative to the current offset
    	SEEK_END int = 2 // seek relative to the end
    )
    
    // LinkError records an error during a link or symlink or rename
    // system call and the paths that caused it.
    type LinkError struct {
    	Op  string
    	Old string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top