Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for StructValue (0.15 sec)

  1. pilot/pkg/xds/testdata/none_lds_http.json

                                {
                                  "Kind": {
                                    "StructValue": {
                                      "fields": {
                                        "config": {
                                          "Kind": {
                                            "StructValue": {
                                              "fields": {
                                                "path": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/none_lds_tcp.json

                                {
                                  "Kind": {
                                    "StructValue": {
                                      "fields": {
                                        "config": {
                                          "Kind": {
                                            "StructValue": {
                                              "fields": {
                                                "path": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/value.go

    	Value string
    	Raw   string
    }
    
    func newStructValue() *structValue {
    	return &structValue{
    		Fields:   []*Field{},
    		fieldMap: map[string]*Field{},
    	}
    }
    
    type structValue struct {
    	Fields   []*Field
    	fieldMap map[string]*Field
    }
    
    // AddField appends a MapField to the MapValue and indexes the field by name.
    func (sv *structValue) AddField(field *Field) {
    	sv.Fields = append(sv.Fields, field)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  4. src/encoding/gob/debug.go

    	deb.delta(0) // end wireType
    	// Remember we've seen this type.
    	deb.wireType[id] = wire
    }
    
    // Value:
    //
    //	SingletonValue | StructValue
    func (deb *debugger) value(indent tab, id typeId) {
    	wire, ok := deb.wireType[id]
    	if ok && wire.StructT != nil {
    		deb.structValue(indent, id)
    	} else {
    		deb.singletonValue(indent, id)
    	}
    }
    
    // SingletonValue:
    //
    //	uint(0) FieldValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. pkg/config/validation/envoyfilter/envoyfilter_test.go

    						Operation: networking.EnvoyFilter_Patch_INSERT_BEFORE,
    						Value: &structpb.Struct{
    							Fields: map[string]*structpb.Value{
    								"typed_config": {
    									Kind: &structpb.Value_StructValue{StructValue: &structpb.Struct{
    										Fields: map[string]*structpb.Value{
    											"@type": {
    												Kind: &structpb.Value_StringValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. 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:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    								Kind: &structpb.Value_ListValue{
    									ListValue: &structpb.ListValue{
    										Values: []*structpb.Value{
    											{
    												Kind: &structpb.Value_StructValue{
    													StructValue: &structpb.Struct{
    														Fields: map[string]*structpb.Value{
    															"host": {
    																Kind: &structpb.Value_StringValue{
    																	StringValue: "a.default",
    																},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/unsafe/unsafe.go

    // or struct type with elements of variable size).
    func Sizeof(x ArbitraryType) uintptr
    
    // Offsetof returns the offset within the struct of the field represented by x,
    // which must be of the form structValue.field. In other words, it returns the
    // number of bytes between the start of the struct and the start of the field.
    // The return value of Offsetof is a Go constant if the type of the argument x
    // does not have variable size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    // Build a struct which contains service metadata and will be added into cluster label.
    func buildServiceMetadata(svc *model.Service) *structpb.Value {
    	return &structpb.Value{
    		Kind: &structpb.Value_StructValue{
    			StructValue: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    					// service fqdn
    					"host": {
    						Kind: &structpb.Value_StringValue{
    							StringValue: string(svc.Hostname),
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder_test.go

    							Fields: map[string]*structpb.Value{
    								"services": {Kind: &structpb.Value_ListValue{ListValue: &structpb.ListValue{Values: []*structpb.Value{
    									{Kind: &structpb.Value_StructValue{StructValue: &structpb.Struct{Fields: map[string]*structpb.Value{
    										"host": {
    											Kind: &structpb.Value_StringValue{
    												StringValue: "host",
    											},
    										},
    										"name": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top