Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Same (0.21 sec)

  1. doc/go1.17_spec.html

    }
    </pre>
    
    <p>
    A field declared with a type but no explicit field name is called an <i>embedded field</i>.
    An embedded field must be specified as
    a type name <code>T</code> or as a pointer to a non-interface type name <code>*T</code>,
    and <code>T</code> itself may not be
    a pointer type. The unqualified type name acts as the field name.
    </p>
    
    <pre>
    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)
  2. src/cmd/cgo/internal/test/callback.go

    	}
    	nestedCall(func() {
    		n = runtime.Callers(4, pc)
    	})
    	if n != len(name) {
    		t.Errorf("expected %d frames, got %d", len(name), n)
    	}
    	for i := 0; i < n; i++ {
    		f := runtime.FuncForPC(pc[i] - 1) // TODO: use runtime.CallersFrames
    		if f == nil {
    			t.Fatalf("expected non-nil Func for pc %d", pc[i])
    		}
    		fname := f.Name()
    		// Remove the prepended pathname from automatically
    		// generated cgo function names.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg debug/plan9obj, type SectionHeader struct
    pkg debug/plan9obj, type SectionHeader struct, Name string
    pkg debug/plan9obj, type SectionHeader struct, Offset uint32
    pkg debug/plan9obj, type SectionHeader struct, Size uint32
    pkg debug/plan9obj, type Sym struct
    pkg debug/plan9obj, type Sym struct, Name string
    pkg debug/plan9obj, type Sym struct, Type int32
    pkg debug/plan9obj, type Sym struct, Value uint64
    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)
Back to top