Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for v_size (0.4 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const CS7 ideal-int
    pkg syscall (netbsd-arm64-cgo), const CS8 = 768
    pkg syscall (netbsd-arm64-cgo), const CS8 ideal-int
    pkg syscall (netbsd-arm64-cgo), const CSIZE = 768
    pkg syscall (netbsd-arm64-cgo), const CSIZE ideal-int
    pkg syscall (netbsd-arm64-cgo), const CSTART = 17
    pkg syscall (netbsd-arm64-cgo), const CSTART ideal-int
    pkg syscall (netbsd-arm64-cgo), const CSTATUS = 20
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg crypto/md5, const BlockSize = 64
    pkg crypto/md5, const Size = 16
    pkg crypto/sha1, const BlockSize = 64
    pkg crypto/sha1, const Size = 20
    pkg crypto/sha256, const BlockSize = 64
    pkg crypto/sha256, const Size = 32
    pkg crypto/sha256, const Size224 = 28
    pkg crypto/sha512, const BlockSize = 128
    pkg crypto/sha512, const Size = 64
    pkg crypto/sha512, const Size384 = 48
    pkg crypto/tls, const NoClientCert = 0
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  3. api/go1.2.txt

    pkg syscall (linux-arm-cgo), type Statfs_t struct, Bsize int32
    pkg syscall (linux-arm-cgo), type Statfs_t struct, Ffree uint64
    pkg syscall (linux-arm-cgo), type Statfs_t struct, Files uint64
    pkg syscall (linux-arm-cgo), type Statfs_t struct, Flags int32
    pkg syscall (linux-arm-cgo), type Statfs_t struct, Frsize int32
    pkg syscall (linux-arm-cgo), type Statfs_t struct, Fsid Fsid
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  4. src/bufio/scan.go

    )
    
    const (
    	// MaxScanTokenSize is the maximum size used to buffer a token
    	// unless the user provides an explicit buffer with [Scanner.Buffer].
    	// The actual maximum token size may be smaller as the buffer
    	// may need to include, for instance, a newline.
    	MaxScanTokenSize = 64 * 1024
    
    	startBufSize = 4096 // Size of initial allocation for buffer.
    )
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg crypto/sha1, const Size ideal-int
    pkg crypto/sha1, func New() hash.Hash
    pkg crypto/sha256, const BlockSize ideal-int
    pkg crypto/sha256, const Size ideal-int
    pkg crypto/sha256, const Size224 ideal-int
    pkg crypto/sha256, func New() hash.Hash
    pkg crypto/sha256, func New224() hash.Hash
    pkg crypto/sha512, const BlockSize ideal-int
    pkg crypto/sha512, const Size ideal-int
    pkg crypto/sha512, const Size384 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const CS7 ideal-int
    pkg syscall (darwin-arm64), const CS8 = 768
    pkg syscall (darwin-arm64), const CS8 ideal-int
    pkg syscall (darwin-arm64), const CSIZE = 768
    pkg syscall (darwin-arm64), const CSIZE ideal-int
    pkg syscall (darwin-arm64), const CSTART = 17
    pkg syscall (darwin-arm64), const CSTART ideal-int
    pkg syscall (darwin-arm64), const CSTATUS = 20
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const CS7 ideal-int
    pkg syscall (freebsd-arm64), const CS8 = 768
    pkg syscall (freebsd-arm64), const CS8 ideal-int
    pkg syscall (freebsd-arm64), const CSIZE = 768
    pkg syscall (freebsd-arm64), const CSIZE ideal-int
    pkg syscall (freebsd-arm64), const CSTART = 17
    pkg syscall (freebsd-arm64), const CSTART ideal-int
    pkg syscall (freebsd-arm64), const CSTATUS = 20
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. src/archive/zip/reader.go

    func NewReader(r io.ReaderAt, size int64) (*Reader, error) {
    	if size < 0 {
    		return nil, errors.New("zip: size cannot be negative")
    	}
    	zr := new(Reader)
    	var err error
    	if err = zr.init(r, size); err != nil && err != ErrInsecurePath {
    		return nil, err
    	}
    	return zr, err
    }
    
    func (r *Reader) init(rdr io.ReaderAt, size int64) error {
    	end, baseOffset, err := readDirectoryEnd(rdr, size)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  9. src/archive/zip/struct.go

    	directoryEndLen          = 22         // + comment
    	dataDescriptorLen        = 16         // four uint32: descriptor signature, crc32, compressed size, size
    	dataDescriptor64Len      = 24         // two uint32: signature, crc32 | two uint64: compressed size, size
    	directory64LocLen        = 20         //
    	directory64EndLen        = 56         // + extra
    
    	// Constants for the first byte in CreatorVersion.
    	creatorFAT    = 0
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  10. misc/wasm/go_js_wasm_exec

    	SOURCE="$(readlink "$SOURCE")"
    	[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
    done
    DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
    
    # Increase the V8 stack size from the default of 984K
    # to 8192K to ensure all tests can pass without hitting
    # stack size limits.
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Feb 02 15:35:28 GMT 2023
    - 603 bytes
    - Viewed (0)
Back to top