Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Finalize (0.6 sec)

  1. src/cmd/cgo/gcc.go

    			p.recordTypedefs1(a, pos, visited)
    		}
    	case *dwarf.StructType:
    		for _, f := range dt.Field {
    			p.recordTypedefs1(f.Type, pos, visited)
    		}
    	}
    }
    
    // prepareNames finalizes the Kind field of not-type names and sets
    // the mangled name of all names.
    func (p *Package) prepareNames(f *File) {
    	for _, n := range f.Name {
    		if n.Kind == "not-type" {
    			if n.Define == "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  2. doc/go_mem.html

    and Java’s <code>volatile</code> variables.
    </p>
    
    <h3 id="finalizer">Finalizers</h3>
    
    <p>
    The <a href="/pkg/runtime/"><code>runtime</code></a> package provides
    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top