Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for UtimesNano (0.28 sec)

  1. src/internal/syscall/unix/at_wasip1.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    const (
    	// UTIME_OMIT is the sentinel value to indicate that a time value should not
    	// be changed. It is useful for example to indicate for example with UtimesNano
    	// to avoid changing AccessTime or ModifiedTime.
    	// Its value must match syscall/fs_wasip1.go
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 458 bytes
    - Viewed (0)
  2. src/internal/syscall/unix/at_js.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    const (
    	// UTIME_OMIT is the sentinel value to indicate that a time value should not
    	// be changed. It is useful for example to indicate for example with UtimesNano
    	// to avoid changing AccessTime or ModifiedTime.
    	// Its value must match syscall/fs_js.go
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 454 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s

    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_UtimesNanoAtAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·UtimesNanoAt(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_UtimesNanoAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·UtimesNano(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_MkfifoatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Mkfifoat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_ChtagAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Chtag(SB), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/os/file_posix.go

    		if t.IsZero() {
    			utimes[i] = syscall.Timespec{Sec: _UTIME_OMIT, Nsec: _UTIME_OMIT}
    		} else {
    			utimes[i] = syscall.NsecToTimespec(t.UnixNano())
    		}
    	}
    	set(0, atime)
    	set(1, mtime)
    	if e := syscall.UtimesNano(fixLongPath(name), utimes[0:]); e != nil {
    		return &PathError{Op: "chtimes", Path: name, Err: e}
    	}
    	return nil
    }
    
    // Chdir changes the current working directory to the file,
    // which must be a directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/syscall/fs_js.go

    		// TODO(neelance): remove when we require at least this Node.js version
    		return ENOSYS
    	}
    	_, err := fsCall("lchown", path, uint32(uid), uint32(gid))
    	return err
    }
    
    func UtimesNano(path string, ts []Timespec) error {
    	// UTIME_OMIT value must match internal/syscall/unix/at_js.go
    	const UTIME_OMIT = -0x2
    	if err := checkPath(path); err != nil {
    		return err
    	}
    	if len(ts) != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. src/syscall/syscall_bsd.go

    func Utimes(path string, tv []Timeval) (err error) {
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    func UtimesNano(path string, ts []Timespec) error {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	err := utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    	if err != ENOSYS {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    func Utimes(path string, tv []Timeval) error {
    	if tv == nil {
    		return utimes(path, nil)
    	}
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    func UtimesNano(path string, ts []Timespec) error {
    	if ts == nil {
    		err := utimensat(AT_FDCWD, path, nil, 0)
    		if err != ENOSYS {
    			return err
    		}
    		return utimes(path, nil)
    	}
    	if len(ts) != 2 {
    		return EINVAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error)
    
    func UtimesNano(path string, ts []Timespec) error {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. src/syscall/syscall_solaris.go

    }
    
    func gethostname() (name string, err uintptr)
    
    func Gethostname() (name string, err error) {
    	name, e1 := gethostname()
    	if e1 != 0 {
    		err = Errno(e1)
    	}
    	return name, err
    }
    
    func UtimesNano(path string, ts []Timespec) error {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/syscall/syscall_aix.go

    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error)
    
    func UtimesNano(path string, ts []Timespec) error {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top