Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/cgo/internal/testerrors/ptr_test.go

    	},
    	{
    		// Test that converting multiple struct field
    		// addresses to unsafe.Pointer still just checks those
    		// fields. Issue #25941.
    		name:    "structfield2",
    		c:       `void f34(void* p, int r, void* s) {}`,
    		imports: []string{"unsafe"},
    		support: `type S34 struct { a [8]byte; p *int; b int64; }`,
    		body:    `s := &S34{p: new(int)}; C.f34(unsafe.Pointer(&s.a), 32, unsafe.Pointer(&s.b))`,
    		fail:    false,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. 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)
  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/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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    	FromUnstructured(u map[string]interface{}, obj interface{}) error
    }
    
    type structField struct {
    	structType reflect.Type
    	field      int
    }
    
    type fieldInfo struct {
    	name      string
    	nameValue reflect.Value
    	omitempty bool
    }
    
    type fieldsCacheMap map[structField]*fieldInfo
    
    type fieldsCache struct {
    	sync.Mutex
    	value atomic.Value
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/abi/type.go

    	Elem *Type // pointer element (pointed at) type
    }
    
    type StructField struct {
    	Name   Name    // name is always non-empty
    	Typ    *Type   // type of field
    	Offset uintptr // byte offset of field
    }
    
    func (f *StructField) Embedded() bool {
    	return f.Name.IsEmbedded()
    }
    
    type StructType struct {
    	Type
    	PkgPath Name
    	Fields  []StructField
    }
    
    // Name is an encoded type Name with optional extra data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. api/go1.17.txt

    pkg net, method (IP) IsPrivate() bool
    pkg net/http, func AllowQuerySemicolons(Handler) Handler
    pkg net/url, method (Values) Has(string) bool
    pkg reflect, func VisibleFields(Type) []StructField
    pkg reflect, method (Method) IsExported() bool
    pkg reflect, method (StructField) IsExported() bool
    pkg reflect, method (Value) CanConvert(Type) bool
    pkg reflect, method (Value) InterfaceData //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	name         string              // JSON field name/key in variables
    	urlparam     string              // URL parameter name
    	saved        bool                // Is field saved in settings?
    	field        reflect.StructField // Field in config
    	choices      []string            // Name Of variables in group
    	defaultValue string              // Default value for this field.
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top