Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 159 for Nname (0.2 sec)

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

    	SYS_CONNECT              = 98  // { int|sys||connect(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_GETPRIORITY          = 100 // { int|sys||getpriority(int which, id_t who); }
    	SYS_BIND                 = 104 // { int|sys||bind(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_SETSOCKOPT           = 105 // { int|sys||setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_netbsd_arm64.go

    	SYS_CONNECT              = 98  // { int|sys||connect(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_GETPRIORITY          = 100 // { int|sys||getpriority(int which, id_t who); }
    	SYS_BIND                 = 104 // { int|sys||bind(int s, const struct sockaddr *name, socklen_t namelen); }
    	SYS_SETSOCKOPT           = 105 // { int|sys||setsockopt(int s, int level, int name, const void *val, socklen_t valsize); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Freeswap  uint32
    	Procs     uint16
    	Pad       uint16
    	Totalhigh uint32
    	Freehigh  uint32
    	Unit      uint32
    	_         [8]int8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint32
    	Fname  [6]int8
    	Fpack  [6]int8
    }
    
    type EpollEvent struct {
    	Events uint32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	OPEN_TREE_CLOEXEC = 0x80000
    )
    
    const (
    	POLLRDHUP = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]int8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      [4]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    	FADV_DONTNEED = 0x4
    	FADV_NOREUSE  = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_386.go

    	Sysname    [65]int8
    	Nodename   [65]int8
    	Release    [65]int8
    	Version    [65]int8
    	Machine    [65]int8
    	Domainname [65]int8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint32
    	Fname  [6]int8
    	Fpack  [6]int8
    }
    
    type EpollEvent struct {
    	Events uint32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	_AT_FDCWD            = -0x64
    	_AT_REMOVEDIR        = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/scanner.go

    	nlsemi bool // if set '\n' and EOF translate to ';'
    
    	// current token, valid after calling next()
    	line, col uint
    	blank     bool // line is blank up to col
    	tok       token
    	lit       string   // valid if tok is _Name, _Literal, or _Semi ("semicolon", "newline", or "EOF"); may be malformed if bad is true
    	bad       bool     // valid if tok is _Literal, true if a syntax error occurred, lit may be malformed
    	kind      LitKind  // valid if tok is _Literal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/iimport.go

    }
    
    func (p *iimporter) doDecl(pkg *types.Package, name string) {
    	// See if we've already imported this declaration.
    	if obj := pkg.Scope().Lookup(name); obj != nil {
    		return
    	}
    
    	off, ok := p.pkgIndex[pkg][name]
    	if !ok {
    		errorf("%v.%v not in index", pkg, name)
    	}
    
    	r := &importReader{p: p, currPkg: pkg}
    	r.declReader.Reset(p.declData[off:])
    
    	r.obj(name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/time/zoneinfo.go

    //   - $GOROOT/lib/time/zoneinfo.zip
    //   - the time/tzdata package, if it was imported
    func LoadLocation(name string) (*Location, error) {
    	if name == "" || name == "UTC" {
    		return UTC, nil
    	}
    	if name == "Local" {
    		return Local, nil
    	}
    	if containsDotDot(name) || name[0] == '/' || name[0] == '\\' {
    		// No valid IANA Time Zone name contains a single dot,
    		// much less dot dot. Likewise, none begin with a slash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]uint8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	_      [4]byte
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      [4]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    	FADV_DONTNEED = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go

    type Dirent struct {
    	Ino    uint64
    	Off    int64
    	Reclen uint16
    	Type   uint8
    	Name   [256]uint8
    	_      [5]byte
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    	_      [4]byte
    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    	Name [0]byte
    	_    [4]byte
    }
    
    const (
    	FADV_DONTNEED = 0x4
    	FADV_NOREUSE  = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top