Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for fieldValue (0.14 sec)

  1. src/encoding/gob/doc.go

    InterfaceContents:
    	int(concreteTypeId) DelimitedValue
    DelimitedValue:
    	uint(length) Value
    ArrayValue:
    	uint(n) FieldValue*n [n elements]
    MapValue:
    	uint(n) (FieldValue FieldValue)*n  [n (key, value) pairs]
    SliceValue:
    	uint(n) FieldValue*n [n elements]
    StructValue:
    	(uint(fieldDelta) FieldValue)*
    */
    
    /*
    For implementers and the curious, here is an encoded example. Given
    	type Point struct {X, Y int}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. statement.go

    	changed := func(field *schema.Field) bool {
    		fieldValue, _ := field.ValueOf(stmt.Context, modelValue)
    		if v, ok := selectColumns[field.DBName]; (ok && v) || (!ok && !restricted) {
    			if mv, mok := stmt.Dest.(map[string]interface{}); mok {
    				if fv, ok := mv[field.Name]; ok {
    					return !utils.AssertEqual(fv, fieldValue)
    				} else if fv, ok := mv[field.DBName]; ok {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. pkg/credentialprovider/config.go

    		return
    	}
    
    	username = parts[0]
    	password = parts[1]
    
    	return
    }
    
    func encodeDockerConfigFieldAuth(username, password string) string {
    	fieldValue := username + ":" + password
    
    	return base64.StdEncoding.EncodeToString([]byte(fieldValue))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/construct.go

    				}
    			}
    			if dataInt == 0 {
    				// fall back to the length of dataString as a backup
    				dataInt = -len(dataString)
    			}
    
    			fieldType := field.Type
    			fieldValue := v.Field(i)
    
    			fill(dataString, dataInt, reflect.PointerTo(fieldType), fieldValue.Addr(), fillFuncs, filledTypes)
    		}
    
    	case reflect.Pointer:
    		fill(dataString, dataInt, t.Elem(), v.Elem(), fillFuncs, filledTypes)
    
    	case reflect.String:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. schema/schema.go

    					return schema, schema.err
    				} else {
    					schema.FieldsByName[field.Name] = field
    					schema.FieldsByBindName[field.BindName()] = field
    				}
    			}
    
    			fieldValue := reflect.New(field.IndirectFieldType)
    			fieldInterface := fieldValue.Interface()
    			if fc, ok := fieldInterface.(CreateClausesInterface); ok {
    				field.Schema.CreateClauses = append(field.Schema.CreateClauses, fc.CreateClauses(field)...)
    			}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. migrator/migrator.go

    		return err
    	}
    
    	return fc(stmt)
    }
    
    // DataTypeOf return field's db data type
    func (m Migrator) DataTypeOf(field *schema.Field) string {
    	fieldValue := reflect.New(field.IndirectFieldType)
    	if dataTyper, ok := fieldValue.Interface().(GormDataTypeInterface); ok {
    		if dataType := dataTyper.GormDBDataType(m.DB, field); dataType != "" {
    			return dataType
    		}
    	}
    
    	return m.Dialector.DataTypeOf(field)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. schema/relationship.go

    type Reference struct {
    	PrimaryKey    *Field
    	PrimaryValue  string
    	ForeignKey    *Field
    	OwnPrimaryKey bool
    }
    
    func (schema *Schema) parseRelation(field *Field) *Relationship {
    	var (
    		err        error
    		fieldValue = reflect.New(field.IndirectFieldType).Interface()
    		relation   = &Relationship{
    			Name:        field.Name,
    			Field:       field,
    			Schema:      schema,
    			foreignKeys: toColumns(field.TagSettings["FOREIGNKEY"]),
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/go/ast/print.go

    // to that file set. Otherwise positions are printed as integer
    // values (file set specific offsets).
    //
    // A non-nil [FieldFilter] f may be provided to control the output:
    // struct fields for which f(fieldname, fieldvalue) is true are
    // printed; all others are filtered from the output. Unexported
    // struct fields are never printed.
    func Fprint(w io.Writer, fset *token.FileSet, x any, f FieldFilter) error {
    	return fprint(w, fset, x, f)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate.go

    			fieldName := vv.Type().Field(i).Name
    			fieldValue := vv.Field(i)
    			scope.Debugf("Checking field %s", fieldName)
    			if a, ok := vv.Type().Field(i).Tag.Lookup("json"); ok && a == "-" {
    				continue
    			}
    			if !fieldValue.CanInterface() {
    				continue
    			}
    			errs = util.AppendErrs(errs, t.ProtoToHelmValues(fieldValue.Interface(), root, append(path, fieldName)))
    		}
    	case reflect.Map:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. schema/utils.go

    			}
    			loaded[elemKey] = true
    
    			fieldValues := make([]interface{}, len(fields))
    			notZero = false
    			for idx, field := range fields {
    				fieldValues[idx], zero = field.ValueOf(ctx, elem)
    				notZero = notZero || !zero
    			}
    
    			if notZero {
    				dataKey := utils.ToStringKey(fieldValues...)
    				if _, ok := dataResults[dataKey]; !ok {
    					results = append(results, fieldValues)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Aug 19 13:35:14 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top