Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 132 for encInt (0.13 sec)

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

    	ENETUNREACH     = syscall.Errno(0x33)
    	ENFILE          = syscall.Errno(0x17)
    	ENOATTR         = syscall.Errno(0x57)
    	ENOBUFS         = syscall.Errno(0x37)
    	ENODEV          = syscall.Errno(0x13)
    	ENOENT          = syscall.Errno(0x2)
    	ENOEXEC         = syscall.Errno(0x8)
    	ENOLCK          = syscall.Errno(0x4d)
    	ENOLINK         = syscall.Errno(0x5b)
    	ENOMEM          = syscall.Errno(0xc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	ENETUNREACH     = syscall.Errno(0x33)
    	ENFILE          = syscall.Errno(0x17)
    	ENOATTR         = syscall.Errno(0x57)
    	ENOBUFS         = syscall.Errno(0x37)
    	ENODEV          = syscall.Errno(0x13)
    	ENOENT          = syscall.Errno(0x2)
    	ENOEXEC         = syscall.Errno(0x8)
    	ENOLCK          = syscall.Errno(0x4d)
    	ENOLINK         = syscall.Errno(0x5b)
    	ENOMEM          = syscall.Errno(0xc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	ENETUNREACH     = syscall.Errno(0x33)
    	ENFILE          = syscall.Errno(0x17)
    	ENOATTR         = syscall.Errno(0x57)
    	ENOBUFS         = syscall.Errno(0x37)
    	ENODEV          = syscall.Errno(0x13)
    	ENOENT          = syscall.Errno(0x2)
    	ENOEXEC         = syscall.Errno(0x8)
    	ENOLCK          = syscall.Errno(0x4d)
    	ENOLINK         = syscall.Errno(0x5b)
    	ENOMEM          = syscall.Errno(0xc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux.go

    	}
    	// In some cases, Linux can return a path that starts with the
    	// "(unreachable)" prefix, which can potentially be a valid relative
    	// path. To work around that, return ENOENT if path is not absolute.
    	if buf[0] != '/' {
    		return "", ENOENT
    	}
    
    	return string(buf[0 : n-1]), nil
    }
    
    func Getgroups() (gids []int, err error) {
    	n, err := getgroups(0, nil)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	SIGXFSZ   = syscall.Signal(0x1f)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    		if zoneData, err := loadTzinfoFromDirOrZip(*zoneinfo, name); err == nil {
    			if z, err := LoadLocationFromTZData(name, zoneData); err == nil {
    				return z, nil
    			}
    			firstErr = err
    		} else if err != syscall.ENOENT {
    			firstErr = err
    		}
    	}
    	if z, err := loadLocation(name, platformZoneSources); err == nil {
    		return z, nil
    	} else if firstErr == nil {
    		firstErr = err
    	}
    	return nil, firstErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	SIGXFSZ   = syscall.Signal(0x19)
    )
    
    // Error table
    var errorList = [...]struct {
    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top