Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 759 for syso (0.97 sec)

  1. src/vendor/golang.org/x/net/route/sys_freebsd.go

    }
    
    // SysType implements the SysType method of Sys interface.
    func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    func (m *RouteMessage) Sys() []Sys {
    	if kernelAlign == 8 {
    		return []Sys{
    			&RouteMetrics{
    				PathMTU: int(nativeEndian.Uint64(m.raw[m.extOff+8 : m.extOff+16])),
    			},
    		}
    	}
    	return []Sys{
    		&RouteMetrics{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. src/runtime/defs_solaris.go

    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <sys/mman.h>
    #include <sys/select.h>
    #include <sys/siginfo.h>
    #include <sys/signal.h>
    #include <sys/stat.h>
    #include <sys/time.h>
    #include <sys/ucontext.h>
    #include <sys/regset.h>
    #include <sys/unistd.h>
    #include <sys/fork.h>
    #include <sys/port.h>
    #include <semaphore.h>
    #include <errno.h>
    #include <signal.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go

    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error)
    //sys	getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT
    //sys	Lstat(path string, stat *Stat_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/syscall/types_dragonfly.go

    #include <stdio.h>
    #include <unistd.h>
    #include <sys/event.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    #include <sys/param.h>
    #include <sys/ptrace.h>
    #include <sys/resource.h>
    #include <sys/select.h>
    #include <sys/signal.h>
    #include <sys/socket.h>
    #include <sys/stat.h>
    #include <sys/time.h>
    #include <sys/types.h>
    #include <sys/un.h>
    #include <sys/wait.h>
    #include <net/bpf.h>
    #include <net/if.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/sys_netbsd.go

    type RouteMetrics struct {
    	PathMTU int // path maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    func (m *RouteMessage) Sys() []Sys {
    	return []Sys{
    		&RouteMetrics{
    			PathMTU: int(nativeEndian.Uint64(m.raw[m.extOff+8 : m.extOff+16])),
    		},
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/sys_dragonfly.go

    type RouteMetrics struct {
    	PathMTU int // path maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    func (m *RouteMessage) Sys() []Sys {
    	return []Sys{
    		&RouteMetrics{
    			PathMTU: int(nativeEndian.Uint64(m.raw[m.extOff+8 : m.extOff+16])),
    		},
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/target.go

    }
    
    func (t *Target) IsLOONG64() bool {
    	return t.Arch.Family == sys.Loong64
    }
    
    func (t *Target) IsPPC64() bool {
    	return t.Arch.Family == sys.PPC64
    }
    
    func (t *Target) IsRISCV64() bool {
    	return t.Arch.Family == sys.RISCV64
    }
    
    func (t *Target) IsS390X() bool {
    	return t.Arch.Family == sys.S390X
    }
    
    func (t *Target) IsWasm() bool {
    	return t.Arch.Family == sys.Wasm
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go

    //go:build loong64 && linux
    
    package unix
    
    import "unsafe"
    
    //sys	EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) = SYS_EPOLL_PWAIT
    //sys	Fadvise(fd int, offset int64, length int64, advice int) (err error) = SYS_FADVISE64
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fstatfs(fd int, buf *Statfs_t) (err error)
    //sys	Ftruncate(fd int, length int64) (err error)
    //sysnb	Getegid() (egid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. pkg/volume/util/device_util_linux_test.go

    		"/sys/class/iscsi_host/host2/device/session1/target2:0:0/2:0:0:1": "2:0:0:1",
    		"/sys/class/iscsi_host/host2/device/session1/target2:0:0/2:0:0:2": "2:0:0:2",
    		"/sys/class/iscsi_host/host3/device/session2/target3:0:0/3:0:0:1": "3:0:0:1",
    		"/sys/class/iscsi_host/host3/device/session2/target3:0:0/3:0:0:2": "3:0:0:2",
    	}
    	if dev, ok := links[name]; ok {
    		return &fakeFileInfo{name: dev}, nil
    	}
    	return nil, errors.New("not Implemented for Mock")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/registry/syscall.go

    	_ERROR_NO_MORE_ITEMS syscall.Errno = 259
    )
    
    //sys	regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) = advapi32.RegCreateKeyExW
    //sys	regDeleteKey(key syscall.Handle, subkey *uint16) (regerrno error) = advapi32.RegDeleteKeyW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top