Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for fieldValue (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.json

            "group": "groupValue",
            "kind": "kindValue",
            "uid": "uidValue",
            "causes": [
              {
                "reason": "reasonValue",
                "message": "messageValue",
                "field": "fieldValue"
              }
            ],
            "retryAfterSeconds": 5
          },
          "code": 6
        },
        "patch": "BA==",
        "patchType": "patchTypeValue",
        "auditAnnotations": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/admission.k8s.io.v1.AdmissionReview.yaml

    response:
      allowed: true
      auditAnnotations:
        auditAnnotationsKey: auditAnnotationsValue
      patch: BA==
      patchType: patchTypeValue
      status:
        code: 6
        details:
          causes:
          - field: fieldValue
            message: messageValue
            reason: reasonValue
          group: groupValue
          kind: kindValue
          name: nameValue
          retryAfterSeconds: 5
          uid: uidValue
        message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/admission.k8s.io.v1beta1.AdmissionReview.yaml

    response:
      allowed: true
      auditAnnotations:
        auditAnnotationsKey: auditAnnotationsValue
      patch: BA==
      patchType: patchTypeValue
      status:
        code: 6
        details:
          causes:
          - field: fieldValue
            message: messageValue
            reason: reasonValue
          group: groupValue
          kind: kindValue
          name: nameValue
          retryAfterSeconds: 5
          uid: uidValue
        message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.yaml

    response:
      allowed: true
      auditAnnotations:
        auditAnnotationsKey: auditAnnotationsValue
      patch: BA==
      patchType: patchTypeValue
      status:
        code: 6
        details:
          causes:
          - field: fieldValue
            message: messageValue
            reason: reasonValue
          group: groupValue
          kind: kindValue
          name: nameValue
          retryAfterSeconds: 5
          uid: uidValue
        message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top