Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for visibility (0.18 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	}
    
    	currSymSrcFile.csectSymNb = uint64(f.symbolCount)
    
    	// No offset because no name
    	s = &XcoffSymEnt64{
    		Nvalue:  firstEntry,
    		Nscnum:  extnum,
    		Nsclass: C_HIDEXT,
    		Ntype:   0, // check visibility ?
    		Nnumaux: 1,
    	}
    	f.addSymbol(s)
    
    	aux := &XcoffAuxCSect64{
    		Xsmclas:  XMC_PR,
    		Xsmtyp:   XTY_SD | logBase2(Funcalign)<<3,
    		Xauxtype: _AUX_CSECT,
    	}
    	f.addSymbol(aux)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    		// to set a forwarded exported field on an unexported embedded struct
    		// even though there is a name conflict, even when it would have been
    		// impossible to do so according to Go visibility rules.
    		// Go forbids this because it is ambiguous whether S7.Q refers to
    		// S7.embed1.Q or S7.embed2.Q. Since embed1 and embed2 are unexported,
    		// it should be impossible for an external package to set either Q.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top