Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 119 for fileFor (0.18 sec)

  1. src/syscall/ztypes_netbsd_amd64.go

    	Pad_cgo_2     [4]byte
    }
    
    type Statfs_t [0]byte
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno    uint64
    	Reclen    uint16
    	Namlen    uint16
    	Type      uint8
    	Name      [512]int8
    	Pad_cgo_0 [3]byte
    }
    
    type Fsid struct {
    	X__fsid_val [2]int32
    }
    
    const (
    	pathMax = 0x400
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    	if !f.valid() {
    		return "?", 0
    	}
    	fileno, _ := pcvalue(f, f.pcfile, targetpc, strict)
    	line, _ = pcvalue(f, f.pcln, targetpc, strict)
    	if fileno == -1 || line == -1 || int(fileno) >= len(datap.filetab) {
    		// print("looking for ", hex(targetpc), " in ", funcname(f), " got file=", fileno, " line=", lineno, "\n")
    		return "?", 0
    	}
    	file = funcfile(f, fileno)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/syscall/syscall_freebsd.go

    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/syscall/syscall_dragonfly.go

    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Fileno), unsafe.Sizeof(Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	namlen, ok := direntNamlen(buf)
    	if !ok {
    		return 0, false
    	}
    	return (16 + namlen + 1 + 7) &^ 7, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. pkg/util/filesystem/util_windows.go

    	// we need to dial the file and check if we receive an error to determine if a file is Unix Domain Socket file.
    
    	// Note that querrying for the Reparse Points (https://docs.microsoft.com/en-us/windows/win32/fileio/reparse-points)
    	// for the file (using FSCTL_GET_REPARSE_POINT) and checking for reparse tag: reparseTagSocket
    	// does NOT work in 1809 if the socket file is created within a bind mounted directory by a container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/syscall/ztypes_netbsd_arm.go

    	Pad_cgo_2     [4]byte
    }
    
    type Statfs_t [0]byte
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno    uint64
    	Reclen    uint16
    	Namlen    uint16
    	Type      uint8
    	Name      [512]int8
    	Pad_cgo_0 [3]byte
    }
    
    type Fsid struct {
    	X__fsid_val [2]int32
    }
    
    const (
    	pathMax = 0x400
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  7. src/syscall/ztypes_openbsd_386.go

    	Pad_cgo_0     [2]byte
    	Mount_info    [160]byte
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    	Namlen       uint8
    	X__d_padding [4]uint8
    	Name         [256]int8
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  8. src/syscall/ztypes_openbsd_arm64.go

    	Pad_cgo_0     [2]byte
    	Mount_info    [160]byte
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    	Namlen       uint8
    	X__d_padding [4]uint8
    	Name         [256]int8
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  9. src/syscall/ztypes_openbsd_mips64.go

    	Pad_cgo_0     [2]byte
    	Mount_info    [160]byte
    }
    
    type Flock_t struct {
    	Start  int64
    	Len    int64
    	Pid    int32
    	Type   int16
    	Whence int16
    }
    
    type Dirent struct {
    	Fileno       uint64
    	Off          int64
    	Reclen       uint16
    	Type         uint8
    	Namlen       uint8
    	X__d_padding [4]uint8
    	Name         [256]int8
    }
    
    type Fsid struct {
    	Val [2]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  10. src/os/path_windows.go

    // directory results in a path that is too long, fixLongPath returns
    // the absolute path with the extended-length prefix.
    //
    // See https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file#maximum-path-length-limitation
    func fixLongPath(path string) string {
    	if windows.CanUseLongPaths {
    		return path
    	}
    	return addExtendedPrefix(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top