Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for structfield2 (0.15 sec)

  1. schema/relationship.go

    		ownFieldsMap[joinFieldName] = ownField
    		fieldsMap[joinFieldName] = ownField
    		joinTableFields = append(joinTableFields, reflect.StructField{
    			Name:    joinFieldName,
    			PkgPath: ownField.StructField.PkgPath,
    			Type:    ownField.StructField.Type,
    			Tag: removeSettingFromTag(appendSettingFromTag(ownField.StructField.Tag, "primaryKey"),
    				"column", "autoincrement", "index", "unique", "uniqueindex"),
    		})
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/reflect/badlinkname.go

    //go:linkname badlinkname_rtype_Field reflect.(*rtype).Field
    func badlinkname_rtype_Field(*rtype, int) StructField
    
    //go:linkname badlinkname_rtype_FieldAlign reflect.(*rtype).FieldAlign
    func badlinkname_rtype_FieldAlign(*rtype) int
    
    //go:linkname badlinkname_rtype_FieldByIndex reflect.(*rtype).FieldByIndex
    func badlinkname_rtype_FieldByIndex(*rtype, []int) StructField
    
    //go:linkname badlinkname_rtype_FieldByName reflect.(*rtype).FieldByName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. schema/field.go

    				}
    				// index is negative means is pointer
    				if field.FieldType.Kind() == reflect.Struct {
    					ef.StructField.Index = append([]int{fieldStruct.Index[0]}, ef.StructField.Index...)
    				} else {
    					ef.StructField.Index = append([]int{-fieldStruct.Index[0] - 1}, ef.StructField.Index...)
    				}
    
    				if prefix, ok := field.TagSettings["EMBEDDEDPREFIX"]; ok && ef.DBName != "" {
    					ef.DBName = prefix + ef.DBName
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	panic("reflect: StructOf does not support methods of embedded interfaces")
    }
    
    // runtimeStructField takes a StructField value passed to StructOf and
    // returns both the corresponding internal representation, of type
    // structField, and the pkgpath value to use for this field.
    func runtimeStructField(field StructField) (structField, string) {
    	if field.Anonymous && field.PkgPath != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/internal/abi/compiletype.go

    // CommonSize returns sizeof(Type) for a compilation target with a given ptrSize
    func CommonSize(ptrSize int) int { return 4*ptrSize + 8 + 8 }
    
    // StructFieldSize returns sizeof(StructField) for a compilation target with a given ptrSize
    func StructFieldSize(ptrSize int) int { return 3 * ptrSize }
    
    // UncommonSize returns sizeof(UncommonType).  This currently does not depend on ptrSize.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 03:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    		{
    			field: StructField{Name: "s2", Type: TypeOf(int(0)), PkgPath: "other/pkg"},
    		},
    		{
    			field: StructField{Name: "s2", Type: TypeOf(int(0)), PkgPath: "other/pkg"},
    		},
    		{
    			field:    StructField{Name: "S", Type: TypeOf(S1{})},
    			exported: true,
    		},
    		{
    			field:    StructField{Name: "S", Type: TypeOf((*S1)(nil))},
    			exported: true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/debug/dwarf/type.go

    type StructType struct {
    	CommonType
    	StructName string
    	Kind       string // "struct", "union", or "class".
    	Field      []*StructField
    	Incomplete bool // if true, struct, union, class is declared but not defined
    }
    
    // A StructField represents a field in a struct, union, or C++ class type.
    //
    // # Bit Fields
    //
    // The BitSize, BitOffset, and DataBitOffset fields describe the bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. src/encoding/json/encode.go

    }
    
    var fieldCache sync.Map // map[reflect.Type]structFields
    
    // cachedTypeFields is like typeFields but uses a cache to avoid repeated work.
    func cachedTypeFields(t reflect.Type) structFields {
    	if f, ok := fieldCache.Load(t); ok {
    		return f.(structFields)
    	}
    	f, _ := fieldCache.LoadOrStore(t, typeFields(t))
    	return f.(structFields)
    }
    
    func mayAppendQuote(b []byte, quoted bool) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/cc_op_gen_util.cc

          field_initiliazer =
              PrintAttrValue(graph_op_def.name(), api_def_attr.default_value());
        }
        strings::StrAppend(&struct_fields, "    ", attr_type_name, " ",
                           api_def_attr.rename_to(), "_ = ", field_initiliazer,
                           ";\n");
      }
    
      if (struct_fields.empty()) {
        return "";
      }
    
      string attrs_comment =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  10. src/reflect/type_test.go

    		}
    	}
    }
    
    func TestStructOfEmbeddedIfaceMethodCall(t *testing.T) {
    	type Named interface {
    		Name() string
    	}
    
    	typ := reflect.StructOf([]reflect.StructField{
    		{
    			Anonymous: true,
    			Name:      "Named",
    			Type:      reflect.TypeFor[Named](),
    		},
    	})
    
    	v := reflect.New(typ).Elem()
    	v.Field(0).Set(
    		reflect.ValueOf(reflect.TypeFor[string]()),
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top