Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 242 for nlstat (0.16 sec)

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

    	cmsg.Len = uint32(length)
    }
    
    func Fstat(fd int, stat *Stat_t) error {
    	return fstat(fd, stat)
    }
    
    func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
    	return fstatat(dirfd, path, stat, flags)
    }
    
    func Lstat(path string, stat *Stat_t) error {
    	return lstat(path, stat)
    }
    
    func Stat(path string, statptr *Stat_t) error {
    	return stat(path, statptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. releasenotes/notes/send-stat.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 12 16:23:08 UTC 2020
    - 178 bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    }
    
    // Stat implements a version of os.Stat that operates on the overlay filesystem.
    func Stat(path string) (fs.FileInfo, error) {
    	Trace("Stat", path)
    	return overlayStat(path, os.Stat, "stat")
    }
    
    // overlayStat implements lstat or Stat (depending on whether os.Lstat or os.Stat is passed in).
    func overlayStat(path string, osStat func(string) (fs.FileInfo, error), opName string) (fs.FileInfo, error) {
    	cpath := canonicalize(path)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/os/stat_windows.go

    	"syscall"
    	"unsafe"
    )
    
    // Stat returns the [FileInfo] structure describing file.
    // If there is an error, it will be of type [*PathError].
    func (file *File) Stat() (FileInfo, error) {
    	if file == nil {
    		return nil, ErrInvalid
    	}
    	return statHandle(file.name, file.pfd.Sysfd)
    }
    
    // stat implements both Stat and Lstat of a file.
    func stat(funcname, name string, followSurrogates bool) (FileInfo, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/runtime/race/race_darwin_amd64.go

    //go:cgo_import_dynamic grantpt grantpt ""
    //go:cgo_import_dynamic ioctl ioctl ""
    //go:cgo_import_dynamic isatty isatty ""
    //go:cgo_import_dynamic lstat$INODE64 lstat$INODE64 ""
    //go:cgo_import_dynamic mach_absolute_time mach_absolute_time ""
    //go:cgo_import_dynamic mach_task_self_ mach_task_self_ ""
    //go:cgo_import_dynamic mach_timebase_info mach_timebase_info ""
    //go:cgo_import_dynamic mach_vm_region_recurse mach_vm_region_recurse ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. src/runtime/race/race_darwin_arm64.go

    //go:cgo_import_dynamic grantpt grantpt ""
    //go:cgo_import_dynamic ioctl ioctl ""
    //go:cgo_import_dynamic isatty isatty ""
    //go:cgo_import_dynamic lstat lstat ""
    //go:cgo_import_dynamic mach_absolute_time mach_absolute_time ""
    //go:cgo_import_dynamic mach_task_self_ mach_task_self_ ""
    //go:cgo_import_dynamic mach_timebase_info mach_timebase_info ""
    //go:cgo_import_dynamic mach_vm_region_recurse mach_vm_region_recurse ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go

    func fixStatTimFields(stat *Stat_t) {
    	stat.Atim.Nsec >>= 32
    	stat.Mtim.Nsec >>= 32
    	stat.Ctim.Nsec >>= 32
    }
    
    func Fstat(fd int, stat *Stat_t) error {
    	err := fstat(fd, stat)
    	if err != nil {
    		return err
    	}
    	fixStatTimFields(stat)
    	return nil
    }
    
    func Fstatat(dirfd int, path string, stat *Stat_t, flags int) error {
    	err := fstatat(dirfd, path, stat, flags)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpResourceUploader.java

            }
            URI parent = uri.resolve(parentPath);
    
            try {
                channel.lstat(parentPath);
                return;
            } catch (com.jcraft.jsch.SftpException e) {
                if (e.id != ChannelSftp.SSH_FX_NO_SUCH_FILE) {
                    throw new ResourceException(parent, String.format("Could not lstat resource '%s'.", parent), e);
                }
            }
            ensureParentDirectoryExists(channel, parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. pkg/volume/volume_linux_test.go

    // It returns true if it is otherwise false.
    func verifyFileOwner(path string, uid, gid int) bool {
    	info, err := os.Lstat(path)
    	if err != nil {
    		return false
    	}
    	stat, ok := info.Sys().(*syscall.Stat_t)
    	if !ok || stat == nil {
    		return false
    	}
    
    	if int(stat.Uid) != uid || int(stat.Gid) != gid {
    		return false
    	}
    
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/path/filepath/path.go

    //
    // Walk calls the function with a non-nil err argument in two cases.
    //
    // First, if an [os.Lstat] on the root directory or any directory or file
    // in the tree fails, Walk calls the function with path set to that
    // directory or file's path, info set to nil, and err set to the error
    // from os.Lstat.
    //
    // Second, if a directory's Readdirnames method fails, Walk calls the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top