Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for S_IFDIR (0.12 sec)

  1. src/syscall/ztypes_freebsd_riscv64.go

    	Nvcsw    int64
    	Nivcsw   int64
    }
    
    type Rlimit struct {
    	Cur int64
    	Max int64
    }
    
    type _Gid_t uint32
    
    const (
    	S_IFMT   = 0xf000
    	S_IFIFO  = 0x1000
    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    	S_IWUSR  = 0x80
    	S_IXUSR  = 0x40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. src/syscall/syscall_wasip1.go

    	S_IFBOUNDSOCK = 0000230000
    	S_IFSOCKADDR  = 0000220000
    	S_IFDSOCK     = 0000210000
    
    	S_IFSOCK = 0000140000
    	S_IFLNK  = 0000120000
    	S_IFREG  = 0000100000
    	S_IFBLK  = 0000060000
    	S_IFDIR  = 0000040000
    	S_IFCHR  = 0000020000
    	S_IFIFO  = 0000010000
    
    	S_UNSUP = 0000370000
    
    	S_ISUID = 0004000
    	S_ISGID = 0002000
    	S_ISVTX = 0001000
    
    	S_IREAD  = 0400
    	S_IWRITE = 0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/syscall/types_windows.go

    )
    
    type WSABuf struct {
    	Len uint32
    	Buf *byte
    }
    
    // Invented values to support what package os expects.
    const (
    	S_IFMT   = 0x1f000
    	S_IFIFO  = 0x1000
    	S_IFCHR  = 0x2000
    	S_IFDIR  = 0x4000
    	S_IFBLK  = 0x6000
    	S_IFREG  = 0x8000
    	S_IFLNK  = 0xa000
    	S_IFSOCK = 0xc000
    	S_ISUID  = 0x800
    	S_ISGID  = 0x400
    	S_ISVTX  = 0x200
    	S_IRUSR  = 0x100
    	S_IWRITE = 0x80
    	S_IWUSR  = 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/os/file_unix.go

    			// only once as ready (both read and write).
    			// Issue 19093.
    			// Also don't add directories to the netpoller.
    			if err == nil && (typ == syscall.S_IFREG || typ == syscall.S_IFDIR) {
    				pollable = false
    			}
    
    			// In addition to the behavior described above for regular files,
    			// on Darwin, kqueue does not work properly with fifos:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	S_IXOTH                         = 0x0001
    	S_IRWXO                         = 0x0007
    	S_IREAD                         = S_IRUSR
    	S_IWRITE                        = S_IWUSR
    	S_IEXEC                         = S_IXUSR
    	S_IFDIR                         = 0x01000000
    	S_IFCHR                         = 0x02000000
    	S_IFREG                         = 0x03000000
    	S_IFFIFO                        = 0x04000000
    	S_IFIFO                         = 0x04000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. src/syscall/zerrors_darwin_arm64.go

    	SO_WANTMORE                       = 0x4000
    	SO_WANTOOBFLAG                    = 0x8000
    	S_IEXEC                           = 0x40
    	S_IFBLK                           = 0x6000
    	S_IFCHR                           = 0x2000
    	S_IFDIR                           = 0x4000
    	S_IFIFO                           = 0x1000
    	S_IFLNK                           = 0xa000
    	S_IFMT                            = 0xf000
    	S_IFREG                           = 0x8000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  7. src/syscall/zerrors_aix_ppc64.go

    	S_HIPRI                       = 0x2
    	S_ICRYPTO                     = 0x80000
    	S_IEXEC                       = 0x40
    	S_IFBLK                       = 0x6000
    	S_IFCHR                       = 0x2000
    	S_IFDIR                       = 0x4000
    	S_IFIFO                       = 0x1000
    	S_IFJOURNAL                   = 0x10000
    	S_IFLNK                       = 0xa000
    	S_IFMPX                       = 0x2200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	S_HIPRI                       = 0x2
    	S_ICRYPTO                     = 0x80000
    	S_IEXEC                       = 0x40
    	S_IFBLK                       = 0x6000
    	S_IFCHR                       = 0x2000
    	S_IFDIR                       = 0x4000
    	S_IFIFO                       = 0x1000
    	S_IFJOURNAL                   = 0x10000
    	S_IFLNK                       = 0xa000
    	S_IFMPX                       = 0x2200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	S_HIPRI                       = 0x2
    	S_ICRYPTO                     = 0x80000
    	S_IEXEC                       = 0x40
    	S_IFBLK                       = 0x6000
    	S_IFCHR                       = 0x2000
    	S_IFDIR                       = 0x4000
    	S_IFIFO                       = 0x1000
    	S_IFJOURNAL                   = 0x10000
    	S_IFLNK                       = 0xa000
    	S_IFMPX                       = 0x2200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_darwin_amd64.go

    	SO_WANTMORE                       = 0x4000
    	SO_WANTOOBFLAG                    = 0x8000
    	S_IEXEC                           = 0x40
    	S_IFBLK                           = 0x6000
    	S_IFCHR                           = 0x2000
    	S_IFDIR                           = 0x4000
    	S_IFIFO                           = 0x1000
    	S_IFLNK                           = 0xa000
    	S_IFMT                            = 0xf000
    	S_IFREG                           = 0x8000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
Back to top