Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Getdents (0.07 sec)

  1. cmd/os_unix.go

    	}
    
    	return nil
    }
    
    // The buffer must be at least a block long.
    // refer https://github.com/golang/go/issues/24015
    const blockSize = 8 << 10 // 8192
    
    // By default at least 128 entries in single getdents call (1MiB buffer)
    var (
    	direntPool = sync.Pool{
    		New: func() interface{} {
    			buf := make([]byte, blockSize*128)
    			return &buf
    		},
    	}
    
    	direntNamePool = sync.Pool{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg syscall (linux-386), func Futimes(int, []Timeval) error
    pkg syscall (linux-386), func Futimesat(int, string, []Timeval) error
    pkg syscall (linux-386), func Getcwd([]uint8) (int, error)
    pkg syscall (linux-386), func Getdents(int, []uint8) (int, error)
    pkg syscall (linux-386), func Getpeername(int) (Sockaddr, error)
    pkg syscall (linux-386), func Getpgid(int) (int, error)
    pkg syscall (linux-386), func Getpgrp() int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  3. api/go1.2.txt

    pkg syscall (linux-arm-cgo), func Futimesat(int, string, []Timeval) error
    pkg syscall (linux-arm-cgo), func Getcwd([]uint8) (int, error)
    pkg syscall (linux-arm-cgo), func Getdents(int, []uint8) (int, error)
    pkg syscall (linux-arm-cgo), func Getpeername(int) (Sockaddr, error)
    pkg syscall (linux-arm-cgo), func Getpgid(int) (int, error)
    pkg syscall (linux-arm-cgo), func Getpgrp() int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top