Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,788 for rdev (0.04 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices.go

    }
    
    func (pdev *podDevices) pods() sets.Set[string] {
    	pdev.RLock()
    	defer pdev.RUnlock()
    	ret := sets.New[string]()
    	for k := range pdev.devs {
    		ret.Insert(k)
    	}
    	return ret
    }
    
    func (pdev *podDevices) size() int {
    	pdev.RLock()
    	defer pdev.RUnlock()
    	return len(pdev.devs)
    }
    
    func (pdev *podDevices) hasPod(podUID string) bool {
    	pdev.RLock()
    	defer pdev.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_mips64x.go

    	st := &stat_t{}
    	err = stat(path, st)
    	fillStat_t(s, st)
    	return
    }
    
    func fillStat_t(s *Stat_t, st *stat_t) {
    	s.Dev = st.Dev
    	s.Ino = st.Ino
    	s.Mode = st.Mode
    	s.Nlink = st.Nlink
    	s.Uid = st.Uid
    	s.Gid = st.Gid
    	s.Rdev = st.Rdev
    	s.Size = st.Size
    	s.Atim = Timespec{int64(st.Atime), int64(st.Atime_nsec)}
    	s.Mtim = Timespec{int64(st.Mtime), int64(st.Mtime_nsec)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go

    	st := &stat_t{}
    	err = stat(path, st)
    	fillStat_t(s, st)
    	return
    }
    
    func fillStat_t(s *Stat_t, st *stat_t) {
    	s.Dev = st.Dev
    	s.Ino = st.Ino
    	s.Mode = st.Mode
    	s.Nlink = st.Nlink
    	s.Uid = st.Uid
    	s.Gid = st.Gid
    	s.Rdev = st.Rdev
    	s.Size = st.Size
    	s.Atim = Timespec{int64(st.Atime), int64(st.Atime_nsec)}
    	s.Mtim = Timespec{int64(st.Mtime), int64(st.Mtime_nsec)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/archive/tar/stat_unix.go

    			major := uint32((dev & 0x00000000000fff00) >> 8)
    			major |= uint32((dev & 0xfffff00000000000) >> 32)
    			minor := uint32((dev & 0x00000000000000ff) >> 0)
    			minor |= uint32((dev & 0x00000ffffff00000) >> 12)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "darwin", "ios":
    			// Copied from golang.org/x/sys/unix/dev_darwin.go.
    			major := uint32((dev >> 24) & 0xff)
    			minor := uint32(dev & 0xffffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    type Stat_t struct { //Linux Definition
    	Dev     uint64
    	Ino     uint64
    	Nlink   uint64
    	Mode    uint32
    	Uid     uint32
    	Gid     uint32
    	_       int32
    	Rdev    uint64
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int64
    	Blocks  int64
    	_       [3]int64
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. api/except.txt

    pkg syscall (freebsd-386), type Stat_t struct, Dev uint32
    pkg syscall (freebsd-386), type Stat_t struct, Gen uint32
    pkg syscall (freebsd-386), type Stat_t struct, Ino uint32
    pkg syscall (freebsd-386), type Stat_t struct, Lspare int32
    pkg syscall (freebsd-386), type Stat_t struct, Nlink uint16
    pkg syscall (freebsd-386), type Stat_t struct, Pad_cgo_0 [8]uint8
    pkg syscall (freebsd-386), type Stat_t struct, Rdev uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    type Pid_t int32
    
    type _Gid_t uint32
    
    type dev_t uint32
    
    type Stat_t struct {
    	Dev      uint32
    	Ino      uint32
    	Mode     uint32
    	Nlink    int16
    	Flag     uint16
    	Uid      uint32
    	Gid      uint32
    	Rdev     uint32
    	Size     int32
    	Atim     Timespec
    	Mtim     Timespec
    	Ctim     Timespec
    	Blksize  int32
    	Blocks   int32
    	Vfstype  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    type Pid_t int32
    
    type _Gid_t uint32
    
    type dev_t uint64
    
    type Stat_t struct {
    	Dev      uint64
    	Ino      uint64
    	Mode     uint32
    	Nlink    int16
    	Flag     uint16
    	Uid      uint32
    	Gid      uint32
    	Rdev     uint64
    	Ssize    int32
    	Atim     Timespec
    	Mtim     Timespec
    	Ctim     Timespec
    	Blksize  int64
    	Blocks   int64
    	Vfstype  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/syscall/fs_js.go

    	}
    
    	return n, nil
    }
    
    func setStat(st *Stat_t, jsSt js.Value) {
    	st.Dev = int64(jsSt.Get("dev").Int())
    	st.Ino = uint64(jsSt.Get("ino").Int())
    	st.Mode = uint32(jsSt.Get("mode").Int())
    	st.Nlink = uint32(jsSt.Get("nlink").Int())
    	st.Uid = uint32(jsSt.Get("uid").Int())
    	st.Gid = uint32(jsSt.Get("gid").Int())
    	st.Rdev = int64(jsSt.Get("rdev").Int())
    	st.Size = int64(jsSt.Get("size").Int())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/syscall/ztypes_openbsd_riscv64.go

    	S_IRUSR  = 0x100
    	S_IWUSR  = 0x80
    	S_IXUSR  = 0x40
    	S_IRWXG  = 0x38
    	S_IRWXO  = 0x7
    )
    
    type Stat_t struct {
    	Mode           uint32
    	Dev            int32
    	Ino            uint64
    	Nlink          uint32
    	Uid            uint32
    	Gid            uint32
    	Rdev           int32
    	Atim           Timespec
    	Mtim           Timespec
    	Ctim           Timespec
    	Size           int64
    	Blocks         int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top