Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for segments (0.17 sec)

  1. src/bufio/bufio_test.go

    	r := NewReader(&StringReader{data: segments})
    	for {
    		r, _, err := r.ReadRune()
    		if err != nil {
    			if err != io.EOF {
    				return
    			}
    			break
    		}
    		got += string(r)
    	}
    	if got != want {
    		t.Errorf("segments=%v got=%s want=%s", segments, got, want)
    	}
    }
    
    var segmentList = [][]string{
    	{},
    	{""},
    	{"日", "本語"},
    	{"\u65e5", "\u672c", "\u8a9e"},
    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)
  2. src/cmd/cgo/doc.go

    for __cgo__N to learn the type of each identifier. (The types also
    distinguish functions from global variables.) Cgo reads the constant
    values from the __cgodebug_* from the object file's data segment.
    
    At this point cgo knows the meaning of each C.xxx well enough to start
    the translation process.
    
    Translating Go
    
    Given the input Go files x.go and y.go, cgo generates these source
    files:
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/archive/zip/reader_test.go

    	} else if size != f.UncompressedSize64 {
    		t.Errorf("%v: UncompressedSize=%#x does not match UncompressedSize64=%#x", f.Name, size, f.UncompressedSize64)
    	}
    
    	// Check that OpenRaw returns the correct byte segment
    	rw, err := f.OpenRaw()
    	if err != nil {
    		t.Errorf("%v: OpenRaw error=%v", f.Name, err)
    		return
    	}
    	start, err := f.DataOffset()
    	if err != nil {
    		t.Errorf("%v: DataOffset error=%v", f.Name, err)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg debug/macho, method (FatArch) ImportedSymbols() ([]string, error)
    pkg debug/macho, method (FatArch) Section(string) *Section
    pkg debug/macho, method (FatArch) Segment(string) *Segment
    pkg debug/macho, type FatArch struct
    pkg debug/macho, type FatArch struct, embedded *File
    pkg debug/macho, type FatArch struct, embedded FatArchHeader
    pkg debug/macho, type FatArchHeader struct
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    [32]byte
    [2*N] struct { x, y int32 }
    [1000]*float64
    [3][5]int
    [2][2][2]float64  // same as [2]([2]([2]float64))
    </pre>
    
    <h3 id="Slice_types">Slice types</h3>
    
    <p>
    A slice is a descriptor for a contiguous segment of an <i>underlying array</i> and
    provides access to a numbered sequence of elements from that array.
    A slice type denotes the set of all slices of arrays of its element type.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/macho, type Segment64 struct, Addr uint64
    pkg debug/macho, type Segment64 struct, Cmd LoadCmd
    pkg debug/macho, type Segment64 struct, Filesz uint64
    pkg debug/macho, type Segment64 struct, Flag uint32
    pkg debug/macho, type Segment64 struct, Len uint32
    pkg debug/macho, type Segment64 struct, Maxprot uint32
    pkg debug/macho, type Segment64 struct, Memsz uint64
    pkg debug/macho, type Segment64 struct, Name [16]uint8
    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)
  7. doc/godebug.md

    This behavior is controlled by the `httplaxcontentlength` setting.
    
    Go 1.22 changed the behavior of ServeMux to accept extended
    patterns and unescape both patterns and request paths by segment.
    This behavior can be controlled by the
    [`httpmuxgo121` setting](/pkg/net/http/#ServeMux).
    
    Go 1.22 added the [Alias type](/pkg/go/types#Alias) to [go/types](/pkg/go/types)
    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)
  8. doc/asm.html

    <code>NOSPLIT</code> = 4
    <br>
    (For <code>TEXT</code> items.)
    Don't insert the preamble to check if the stack must be split.
    The frame for the routine, plus anything it calls, must fit in the
    spare space remaining in the current stack segment.
    Used to protect routines such as the stack splitting code itself.
    </li>
    <li>
    <code>RODATA</code> = 8
    <br>
    (For <code>DATA</code> and <code>GLOBL</code> items.)
    Put this data in a read-only section.
    </li>
    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)
  9. doc/go_spec.html

    	T7 [10]struct{ f []T7 }   // T7 contains T7 as component of a slice in a struct
    )
    </pre>
    
    <h3 id="Slice_types">Slice types</h3>
    
    <p>
    A slice is a descriptor for a contiguous segment of an <i>underlying array</i> and
    provides access to a numbered sequence of elements from that array.
    A slice type denotes the set of all slices of arrays of its element type.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top