Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for hugger (0.18 sec)

  1. api/go1.5.txt

    pkg debug/elf, const R_PPC64_ADDR16_HA R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HI = 5
    pkg debug/elf, const R_PPC64_ADDR16_HI R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HIGHER = 39
    pkg debug/elf, const R_PPC64_ADDR16_HIGHER R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HIGHERA = 40
    pkg debug/elf, const R_PPC64_ADDR16_HIGHERA R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HIGHEST = 41
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/bytes/buffer_test.go

    package bytes_test
    
    import (
    	. "bytes"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"math/rand"
    	"strconv"
    	"testing"
    	"unicode/utf8"
    )
    
    const N = 10000       // make this bigger for a larger (and slower) test
    var testString string // test data for write tests
    var testBytes []byte  // test data; same as testString but as a slice.
    
    type negativeReader struct{}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  3. api/go1.12.txt

    pkg go/token, method (*File) LineStart(int) Pos
    pkg io, type StringWriter interface { WriteString }
    pkg io, type StringWriter interface, WriteString(string) (int, error)
    pkg log, method (*Logger) Writer() io.Writer
    pkg math/bits, func Add(uint, uint, uint) (uint, uint)
    pkg math/bits, func Add32(uint32, uint32, uint32) (uint32, uint32)
    pkg math/bits, func Add64(uint64, uint64, uint64) (uint64, uint64)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 02 21:21:53 GMT 2019
    - 13.5K bytes
    - Viewed (0)
  4. src/archive/zip/zip_test.go

    // 0xFFFFFFFF, but not before.
    func TestZip64DirectoryOffset(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	t.Parallel()
    	const filename = "huge.txt"
    	gen := func(wantOff uint64) func(*Writer) {
    		return func(w *Writer) {
    			w.testHookCloseSizeOffset = func(size, off uint64) {
    				if off != wantOff {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  5. api/go1.21.txt

    pkg log/slog, method (*Logger) DebugContext(context.Context, string, ...interface{}) #61200
    pkg log/slog, method (*Logger) Debug(string, ...interface{}) #56345
    pkg log/slog, method (*Logger) Enabled(context.Context, Level) bool #56345
    pkg log/slog, method (*Logger) ErrorContext(context.Context, string, ...interface{}) #61200
    pkg log/slog, method (*Logger) Error(string, ...interface{}) #56345
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  6. api/go1.6.txt

    pkg debug/elf, const R_MIPS_GPREL32 = 12
    pkg debug/elf, const R_MIPS_GPREL32 R_MIPS
    pkg debug/elf, const R_MIPS_HI16 = 5
    pkg debug/elf, const R_MIPS_HI16 R_MIPS
    pkg debug/elf, const R_MIPS_HIGHER = 28
    pkg debug/elf, const R_MIPS_HIGHER R_MIPS
    pkg debug/elf, const R_MIPS_HIGHEST = 29
    pkg debug/elf, const R_MIPS_HIGHEST R_MIPS
    pkg debug/elf, const R_MIPS_INSERT_A = 25
    pkg debug/elf, const R_MIPS_INSERT_A R_MIPS
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  7. doc/godebug.md

    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 Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arch.go

    	instructions["JGE"] = x86.AJGE  /* greater than or equal (signed) (SF = OF) */
    	instructions["JGT"] = x86.AJGT  /* greater than (signed) (ZF = 0 && SF = OF) */
    	instructions["JHI"] = x86.AJHI  /* higher (unsigned) (CF = 0 && ZF = 0) */
    	instructions["JHS"] = x86.AJCC  /* alternate */
    	instructions["JL"] = x86.AJLT   /* alternate */
    	instructions["JLE"] = x86.AJLE  /* less than or equal (signed) (ZF = 1 || SF != OF) */
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  9. doc/go1.22.html

      class boundaries of the memory allocator, so some objects may be moved up a size
      class.
    </p>
    <p>
      A consequence of this change is that some objects' addresses that were previously
      always aligned to a 16 byte (or higher) boundary will now only be aligned to an 8
      byte boundary.
      Some programs that use assembly instructions that require memory addresses to be
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  10. api/go1.4.txt

    pkg net/http, type Transport struct, DialTLS func(string, string) (net.Conn, error)
    
    # CL 132750043 net/http/httputil: Pass a Logger to ReverseProxy, allowing the user to control logging., Mark Theunissen <******@****.***>
    pkg net/http/httputil, type ReverseProxy struct, ErrorLog *log.Logger
    
    # CL 148370043 os, syscall: add Unsetenv, Brad Fitzpatrick <******@****.***>
    pkg os, func Unsetenv(string) error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
Back to top