Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for fieldValue (0.19 sec)

  1. callbacks/preload.go

    			return err
    		}
    
    		// convert join identity map to relation identity map
    		fieldValues := make([]interface{}, len(joinForeignFields))
    		joinFieldValues := make([]interface{}, len(joinRelForeignFields))
    		for i := 0; i < joinResults.Len(); i++ {
    			joinIndexValue := joinResults.Index(i)
    			for idx, field := range joinForeignFields {
    				fieldValues[idx], _ = field.ValueOf(tx.Statement.Context, joinIndexValue)
    			}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/fields/fields.go

    type Fields interface {
    	// Has returns whether the provided field exists.
    	Has(field string) (exists bool)
    
    	// Get returns the value for the provided field.
    	Get(field string) (value string)
    }
    
    // Set is a map of field:value. It implements Fields.
    type Set map[string]string
    
    // String returns all fields listed as a human readable string.
    // Conveniently, exactly the format that ParseSelector takes.
    func (ls Set) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 19 14:50:16 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const scope=fieldValue.scope||tr.model.OBJECT_DEFAULT_SCOPE;const idRef=fieldValue.id_ref||fieldValue.idRef;const scopedId=new tr.model.ScopedId(scope,idRef);const pidRef=fieldValue.pid_ref||fieldValue.pidRef||pid;const ts=item[itemTimestampField];patchupsToApply.push({item,object,field:fieldName,pidRef,scopedId,ts});}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  4. src/go/types/expr.go

    				// all elements must have keys
    				visited := make([]bool, len(fields))
    				for _, e := range e.Elts {
    					kv, _ := e.(*ast.KeyValueExpr)
    					if kv == nil {
    						check.error(e, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					key, _ := kv.Key.(*ast.Ident)
    					// do all possible checks early (before exiting due to errors)
    					// so we don't drop information on the floor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/expr.go

    			for i, n := range ls {
    				ir.SetPos(n)
    
    				sk, ok := n.(*ir.StructKeyExpr)
    				if !ok {
    					kv, ok := n.(*ir.KeyExpr)
    					if !ok {
    						if !errored {
    							base.Errorf("mixture of field:value and value initializers")
    							errored = true
    						}
    						ls[i] = Expr(n)
    						continue
    					}
    
    					sk = tcStructLitKey(t, kv)
    					if sk == nil {
    						continue
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    				visited := make([]bool, len(fields))
    				for _, e := range e.ElemList {
    					kv, _ := e.(*syntax.KeyValueExpr)
    					if kv == nil {
    						check.error(e, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					key, _ := kv.Key.(*syntax.Name)
    					// do all possible checks early (before exiting due to errors)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top