Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for transparent (0.3 sec)

  1. doc/godebug.md

    setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial).
    
    Go 1.22 changed how the runtime interacts with transparent huge pages on Linux.
    In particular, a common default Linux kernel configuration can result in
    significant memory overheads, and Go 1.22 no longer works around this default.
    To work around this issue without adjusting kernel settings, transparent huge
    pages can be disabled for Go memory with the
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_NETANALYZER = 240
    pkg syscall (freebsd-arm64), const DLT_NETANALYZER ideal-int
    pkg syscall (freebsd-arm64), const DLT_NETANALYZER_TRANSPARENT = 241
    pkg syscall (freebsd-arm64), const DLT_NETANALYZER_TRANSPARENT ideal-int
    pkg syscall (freebsd-arm64), const DLT_NFC_LLCP = 245
    pkg syscall (freebsd-arm64), const DLT_NFC_LLCP ideal-int
    pkg syscall (freebsd-arm64), const DLT_NFLOG = 239
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  3. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const DLT_NETANALYZER = 240 #53466
    pkg syscall (freebsd-riscv64), const DLT_NETANALYZER ideal-int #53466
    pkg syscall (freebsd-riscv64), const DLT_NETANALYZER_TRANSPARENT = 241 #53466
    pkg syscall (freebsd-riscv64), const DLT_NETANALYZER_TRANSPARENT ideal-int #53466
    pkg syscall (freebsd-riscv64), const DLT_NFC_LLCP = 245 #53466
    pkg syscall (freebsd-riscv64), const DLT_NFC_LLCP ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  4. src/archive/tar/common.go

    	TypeFifo    = '6' // FIFO node
    
    	// Type '7' is reserved.
    	TypeCont = '7'
    
    	// Type 'x' is used by the PAX format to store key-value records that
    	// are only relevant to the next file.
    	// This package transparently handles these types.
    	TypeXHeader = 'x'
    
    	// Type 'g' is used by the PAX format to store key-value records that
    	// are relevant to all subsequent files.
    	// This package only supports parsing and composing such headers,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  5. src/archive/zip/reader.go

    	return rc.f.Close()
    }
    
    // DataOffset returns the offset of the file's possibly-compressed
    // data, relative to the beginning of the zip file.
    //
    // Most callers should instead use [File.Open], which transparently
    // decompresses data and verifies checksums.
    func (f *File) DataOffset() (offset int64, err error) {
    	bodyOffset, err := f.findBodyOffset()
    	if err != nil {
    		return
    	}
    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)
Back to top