Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for locate (0.24 sec)

  1. src/bytes/buffer.go

    	// This avoids unnecessary zero-ing of the first len(b) bytes of the
    	// allocated slice, but this pattern causes b to escape onto the heap.
    	//
    	// Instead use the append-make pattern with a nil slice to ensure that
    	// we allocate buffers rounded up to the closest size class.
    	c := len(b) + n // ensure enough space for n elements
    	if c < 2*cap(b) {
    		// The growth rate has historically always been 2x. In the future,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  2. api/go1.14.txt

    pkg log/syslog (freebsd-arm64), const LOG_LOCAL4 Priority
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL5 = 168
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL5 Priority
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL6 = 176
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL6 Priority
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL7 = 184
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL7 Priority
    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. src/cmd/cgo/gcc.go

    			// other than try to determine a Go representation.
    			tt := *t
    			tt.C = &TypeRepr{"%s %s", []interface{}{dt.Kind, tag}}
    			// We don't know what the representation of this struct is, so don't let
    			// anyone allocate one on the Go side. As a side effect of this annotation,
    			// pointers to this type will not be considered pointers in Go. They won't
    			// get writebarrier-ed or adjusted during a stack copy. This should handle
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg debug/gosym, type Func struct, Entry uint64
    pkg debug/gosym, type Func struct, FrameSize int
    pkg debug/gosym, type Func struct, LineTable *LineTable
    pkg debug/gosym, type Func struct, Locals []*Sym
    pkg debug/gosym, type Func struct, Obj *Obj
    pkg debug/gosym, type Func struct, Params []*Sym
    pkg debug/gosym, type Func struct, embedded *Sym
    pkg debug/gosym, type LineTable struct
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  5. doc/asm.html

    </li>
    <li>
    <code>LOCAL</code> = 128
    <br>
    This symbol is local to the dynamic shared object.
    </li>
    <li>
    <code>TLSBSS</code> = 256
    <br>
    (For <code>DATA</code> and <code>GLOBL</code> items.)
    Put this data in thread local storage.
    </li>
    <li>
    <code>NOFRAME</code> = 512
    <br>
    (For <code>TEXT</code> items.)
    Do not insert instructions to allocate a stack frame and save/restore the return
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  6. api/go1.20.txt

    pkg log/syslog (freebsd-riscv64), const LOG_LOCAL4 = 160 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_LOCAL4 Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_LOCAL5 = 168 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_LOCAL5 Priority #53466
    pkg log/syslog (freebsd-riscv64), const LOG_LOCAL6 = 176 #53466
    pkg log/syslog (freebsd-riscv64), const LOG_LOCAL6 Priority #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)
  7. README.md

    reliable, and efficient software.
    
    ![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg)
    *Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attributions license][cc4-by].*
    
    Our canonical Git repository is located at https://go.googlesource.com/go.
    There is a mirror of the repository at https://github.com/golang/go.
    
    Unless otherwise noted, the Go source files are distributed under the
    BSD-style license found in the LICENSE file.
    
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Nov 02 20:14:56 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg log/syslog (darwin-386), const LOG_LOCAL4 = 160
    pkg log/syslog (darwin-386), const LOG_LOCAL4 Priority
    pkg log/syslog (darwin-386), const LOG_LOCAL5 = 168
    pkg log/syslog (darwin-386), const LOG_LOCAL5 Priority
    pkg log/syslog (darwin-386), const LOG_LOCAL6 = 176
    pkg log/syslog (darwin-386), const LOG_LOCAL6 Priority
    pkg log/syslog (darwin-386), const LOG_LOCAL7 = 184
    pkg log/syslog (darwin-386), const LOG_LOCAL7 Priority
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  9. src/bufio/bufio.go

    // delim.
    // For simple uses, a Scanner may be more convenient.
    func (b *Reader) ReadBytes(delim byte) ([]byte, error) {
    	full, frag, n, err := b.collectFragments(delim)
    	// Allocate new buffer to hold the full pieces and the fragment.
    	buf := make([]byte, n)
    	n = 0
    	// Copy full pieces and fragment in.
    	for i := range full {
    		n += copy(buf[n:], full[i])
    	}
    	copy(buf[n:], frag)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  10. src/archive/zip/writer.go

    	// think, see e.g. comments in zipfile.c:putextended() and
    	// https://bugs.openjdk.org/browse/JDK-7073588.
    	// The approach here is to write 8 byte sizes if needed without
    	// adding a zip64 extra in the local header (too late anyway).
    	var buf []byte
    	if w.isZip64() {
    		buf = make([]byte, dataDescriptor64Len)
    	} else {
    		buf = make([]byte, dataDescriptorLen)
    	}
    	b := writeBuf(buf)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top