(k string, v int)
| 2100 | } |
| 2101 | |
| 2102 | func intKV(k string, v int) *v1_common.KeyValue { |
| 2103 | return &v1_common.KeyValue{ |
| 2104 | Key: k, |
| 2105 | Value: &v1_common.AnyValue{Value: &v1_common.AnyValue_IntValue{IntValue: int64(v)}}, |
| 2106 | } |
| 2107 | } |
| 2108 | |
| 2109 | func boolKV(k string) *v1_common.KeyValue { |
| 2110 | return &v1_common.KeyValue{ |