Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for mapValue (0.43 sec)

  1. staging/src/k8s.io/api/policy/v1/generated.pb.go

    					if postmsgIndex < 0 {
    						return ErrInvalidLengthGenerated
    					}
    					if postmsgIndex > l {
    						return io.ErrUnexpectedEOF
    					}
    					mapvalue = &v1.Time{}
    					if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil {
    						return err
    					}
    					iNdEx = postmsgIndex
    				} else {
    					iNdEx = entryPreIndex
    					skippy, err := skipGenerated(dAtA[iNdEx:])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1beta1/generated.pb.go

    					if postmsgIndex < 0 {
    						return ErrInvalidLengthGenerated
    					}
    					if postmsgIndex > l {
    						return io.ErrUnexpectedEOF
    					}
    					mapvalue = &v1.Time{}
    					if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil {
    						return err
    					}
    					iNdEx = postmsgIndex
    				} else {
    					iNdEx = entryPreIndex
    					skippy, err := skipGenerated(dAtA[iNdEx:])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1beta1/generated.pb.go

    					if postmsgIndex < 0 {
    						return ErrInvalidLengthGenerated
    					}
    					if postmsgIndex > l {
    						return io.ErrUnexpectedEOF
    					}
    					mapvalue = &ExtraValue{}
    					if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil {
    						return err
    					}
    					iNdEx = postmsgIndex
    				} else {
    					iNdEx = entryPreIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. src/encoding/gob/doc.go

    TypedValue:
    	int(typeId) Value
    TypeDefinition:
    	int(-typeId) encodingOfWireType
    Value:
    	SingletonValue | StructValue
    SingletonValue:
    	uint(0) FieldValue
    FieldValue:
    	builtinValue | ArrayValue | MapValue | SliceValue | StructValue | InterfaceValue
    InterfaceValue:
    	NilInterfaceValue | NonNilInterfaceValue
    NilInterfaceValue:
    	uint(0)
    NonNilInterfaceValue:
    	ConcreteTypeName TypeSequence InterfaceContents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1beta1/generated.pb.go

    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.AuditAnnotations == nil {
    				m.AuditAnnotations = make(map[string]string)
    			}
    			var mapkey string
    			var mapvalue string
    			for iNdEx < postIndex {
    				entryPreIndex := iNdEx
    				var wire uint64
    				for shift := uint(0); ; shift += 7 {
    					if shift >= 64 {
    						return ErrIntOverflowGenerated
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admission/v1/generated.pb.go

    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.AuditAnnotations == nil {
    				m.AuditAnnotations = make(map[string]string)
    			}
    			var mapkey string
    			var mapvalue string
    			for iNdEx < postIndex {
    				entryPreIndex := iNdEx
    				var wire uint64
    				for shift := uint(0); ; shift += 7 {
    					if shift >= 64 {
    						return ErrIntOverflowGenerated
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46K bytes
    - Viewed (0)
  7. tests/create_test.go

    	}
    
    	// case 1: one record, create from map[string]interface{}
    	mapValue1 := map[string]interface{}{"name": "create_from_map_with_schema1", "age": 1}
    	if err := DB.Model(&User{}).Create(mapValue1).Error; err != nil {
    		t.Fatalf("failed to create data from map, got error: %v", err)
    	}
    
    	if _, ok := mapValue1["id"]; !ok {
    		t.Fatal("failed to create data from map with table, returning map has no primary key")
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/DiscreteDomain.java

     * instances. A discrete domain is one that supports the three basic operations: {@link #next},
     * {@link #previous} and {@link #distance}, according to their specifications. The methods {@link
     * #minValue} and {@link #maxValue} should also be overridden for bounded types.
     *
     * <p>A discrete domain always represents the <i>entire</i> set of values of its type; it cannot
     * represent partial domains such as "prime integers" or "strings of length 5."
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/DiscreteDomain.java

     * instances. A discrete domain is one that supports the three basic operations: {@link #next},
     * {@link #previous} and {@link #distance}, according to their specifications. The methods {@link
     * #minValue} and {@link #maxValue} should also be overridden for bounded types.
     *
     * <p>A discrete domain always represents the <i>entire</i> set of values of its type; it cannot
     * represent partial domains such as "prime integers" or "strings of length 5."
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

                    is FunctionSemantics.Pure -> ObjectReflection.PureFunctionInvocation(
                        type,
                        objectOrigin,
                        objectOrigin.parameterBindings.bindingMap.mapValues { reflect(it.value, context) }
                    )
    
                    is FunctionSemantics.AccessAndConfigure -> {
                        when (objectOrigin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top