Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Hoeger (0.22 sec)

  1. src/arena/arena.go

    // the runtime manually, though any memory obtained from freed arenas must
    // not be accessed once that happens. An Arena is automatically freed once
    // it is no longer referenced, so it must be kept alive (see runtime.KeepAlive)
    // until any memory allocated from it is no longer needed.
    //
    // An Arena must never be used concurrently by multiple goroutines.
    type Arena struct {
    	a unsafe.Pointer
    }
    
    // NewArena allocates a new arena.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    		// ReadSlice, and it's that function that handles
    		// the last byte.
    	}
    
    	// Try all readers with UnreadByte.
    	for rno, read := range readers {
    		// Some input data that is longer than the minimum reader buffer size.
    		const n = 10
    		var buf bytes.Buffer
    		for i := 0; i < n; i++ {
    			buf.WriteString("abcdefg")
    		}
    
    		r := NewReaderSize(&buf, minReadBufferSize)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg io, func CopyBuffer(Writer, Reader, []uint8) (int64, error)
    pkg log, const LUTC = 32
    pkg log, const LUTC ideal-int
    pkg log, func Output(int, string) error
    pkg log, method (*Logger) SetOutput(io.Writer)
    pkg math/big, const Above = 1
    pkg math/big, const Above Accuracy
    pkg math/big, const AwayFromZero = 3
    pkg math/big, const AwayFromZero RoundingMode
    pkg math/big, const Below = -1
    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)
  4. api/go1.3.txt

    pkg net/http, type ConnState int
    pkg net/http, type Response struct, TLS *tls.ConnectionState
    pkg net/http, type Server struct, ConnState func(net.Conn, ConnState)
    pkg net/http, type Server struct, ErrorLog *log.Logger
    pkg net/http, type Transport struct, TLSHandshakeTimeout time.Duration
    pkg regexp/syntax, method (*Inst) MatchRunePos(int32) int
    pkg regexp/syntax, method (InstOp) String() string
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg log/syslog (netbsd-arm64-cgo), const LOG_WARNING Priority
    pkg log/syslog (netbsd-arm64-cgo), func Dial(string, string, Priority, string) (*Writer, error)
    pkg log/syslog (netbsd-arm64-cgo), func NewLogger(Priority, int) (*log.Logger, error)
    pkg log/syslog (netbsd-arm64-cgo), func New(Priority, string) (*Writer, error)
    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Alert(string) error
    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Close() error
    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)
  6. doc/next/6-stdlib/1-time.md

    ### Timer changes
    
    Go 1.23 makes two significant changes to the implementation of
    [time.Timer] and [time.Ticker].
    
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64.s

    	SHLL	CX, R12
    	SHLL	CX, foo+4(SB)
    	// Old syntax, still accepted:
    	SHLL	CX, R11:AX // SHLL CX, AX, R11
    
    // LTYPEM spec6	{ outcode($1, &$2); }
    	MOVL	AX, R11
    	MOVL	$4, R11
    //	MOVL	AX, 0(AX):DS // no longer works - did it ever?
    
    // LTYPEI spec7	{ outcode($1, &$2); }
    	IMULB	DX
    	IMULW	DX, BX
    	IMULL	R11, R12
    	IMULQ	foo+4(SB), R11
    
    // LTYPEXC spec8	{ outcode($1, &$2); }
    	CMPPD	X1, X2, 4
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 18:57:21 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  8. 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)
  9. doc/go_spec.html

    </li>
    </ul>
    
    <h4 id="Go_1.17">Go 1.17</h4>
    <ul>
    <li>
    A slice may be <a href="#Conversions">converted</a> to an array pointer if the slice and array element
    types match, and the array is not longer than the slice.
    </li>
    <li>
    The built-in <a href="#Package_unsafe">package <code>unsafe</code></a> includes the new functions
    <code>Add</code> and <code>Slice</code>.
    </li>
    </ul>
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  10. 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)
Back to top