Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for structfield2 (0.15 sec)

  1. src/encoding/binary/binary.go

    		t := v.Type()
    		l := v.NumField()
    		for i := 0; i < l; i++ {
    			// Note: Calling v.CanSet() below is an optimization.
    			// It would be sufficient to check the field name,
    			// but creating the StructField info for each field is
    			// costly (run "go test -bench=ReadStruct" and compare
    			// results when making changes to this code).
    			if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {
    				d.value(v)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/encoding/gob/type.go

    }
    
    // isSent reports whether this struct field is to be transmitted.
    // It will be transmitted only if it is exported and not a chan or func field
    // or pointer to chan or func.
    func isSent(field *reflect.StructField) bool {
    	if !isExported(field.Name) {
    		return false
    	}
    	// If the field is a chan or func or pointer thereto, don't send it.
    	// That is, treat it like an unexported field.
    	typ := field.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    	},
    
    	/* LEXICAL_BLOCK_SIMPLE */
    	{
    		DW_TAG_lexical_block,
    		DW_CHILDREN_yes,
    		[]dwAttrForm{
    			{DW_AT_low_pc, DW_FORM_addr},
    			{DW_AT_high_pc, DW_FORM_addr},
    		},
    	},
    
    	/* STRUCTFIELD */
    	{
    		DW_TAG_member,
    		DW_CHILDREN_no,
    		[]dwAttrForm{
    			{DW_AT_name, DW_FORM_string},
    			{DW_AT_data_member_location, DW_FORM_udata},
    			{DW_AT_type, DW_FORM_ref_addr},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    		// simply a read on JSON from MinIO and write it back as "parquet".
    		//
    		// import org.apache.spark.sql.SparkSession
    		// import org.apache.spark.sql.types.{IntegerType, StringType, StructField, StructType}
    		// object SparkJSONRead {
    		//   def main(args: Array[String]): Unit = {
    		//     val spark:SparkSession = SparkSession.builder()
    		//       .appName("SparkByExample")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    		st = sym.SDWARFCUINFO
    	case dwarf.DW_ABRV_VARIABLE:
    		st = sym.SDWARFVAR
    	default:
    		// Everything else is assigned a type of SDWARFTYPE. that
    		// this also includes loose ends such as STRUCT_FIELD.
    		st = sym.SDWARFTYPE
    	}
    	ds := d.ldr.LookupOrCreateSym(dwarf.InfoPrefix+name, 0)
    	dsu := d.ldr.MakeSymbolUpdater(ds)
    	dsu.SetType(st)
    	d.ldr.SetAttrNotInSymbolTable(ds, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/dwarf, type Reader struct
    pkg debug/dwarf, type StructField struct
    pkg debug/dwarf, type StructField struct, BitOffset int64
    pkg debug/dwarf, type StructField struct, BitSize int64
    pkg debug/dwarf, type StructField struct, ByteOffset int64
    pkg debug/dwarf, type StructField struct, ByteSize int64
    pkg debug/dwarf, type StructField struct, Name string
    pkg debug/dwarf, type StructField struct, Type Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top