Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for strictable (0.22 sec)

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

    	/* C_FILE */
    	s := &XcoffSymEnt64{
    		Noffset: uint32(f.stringTable.add(".file")),
    		Nsclass: C_FILE,
    		Nscnum:  N_DEBUG,
    		Ntype:   0, // Go isn't inside predefined language.
    		Nnumaux: 1,
    	}
    	f.addSymbol(s)
    	currSymSrcFile.file = s
    
    	// Auxiliary entry for file name.
    	auxf := &XcoffAuxFile64{
    		Xoffset:  uint32(f.stringTable.add(name)),
    		Xftype:   XFT_FN,
    		Xauxtype: _AUX_FILE,
    	}
    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/fmt/fmt_test.go

    	// structs
    	{"%v", A{1, 2, "a", []int{1, 2}}, `{1 2 a [1 2]}`},
    	{"%+v", A{1, 2, "a", []int{1, 2}}, `{i:1 j:2 s:a x:[1 2]}`},
    
    	// +v on structs with Stringable items
    	{"%+v", B{1, 2}, `{I:<1> j:2}`},
    	{"%+v", C{1, B{2, 3}}, `{i:1 B:{I:<2> j:3}}`},
    
    	// other formats on Stringable items
    	{"%s", I(23), `<23>`},
    	{"%q", I(23), `"<23>"`},
    	{"%x", I(23), `3c32333e`},
    	{"%#x", I(23), `0x3c32333e`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top