Displaying 6 results from an estimated 6 matches for "type_mismatch_string".
2018 Aug 20
0
[PATCH 4/4] mltools: JSON: unify JSON_parser type with JSON.json_t.
..."bool"
+let string_of_json_t = function
+ | JSON.String _ -> "string"
+ | JSON.Int _ -> "int"
+ | JSON.Float _ -> "float"
+ | JSON.Dict _ -> "dict"
+ | JSON.List _ -> "list"
+ | JSON.Bool _ -> "bool"
let type_mismatch_string exp value =
- Printf.sprintf "value is not %s but %s" exp (string_of_json_parser_val_type value)
+ Printf.sprintf "value is not %s but %s" exp (string_of_json_t value)
let assert_raises_invalid_argument str =
(* Replace the Invalid_argument string with a fixed one, just...
2018 Aug 22
3
[PATCH v2 0/2] mltools: JSON: unify JSON & JSON parser.
v2:
- Added back the null value.
- Reran the tests.
Rich.
2018 Aug 20
6
[PATCH 0/4] mltools: JSON unification
An evolution of:
https://www.redhat.com/archives/libguestfs/2018-August/msg00155.html
2018 Aug 17
0
[PATCH v3 1/4] mltools: Rename Yajl module as JSON_parser and move to common/mltools.
...JSON_parser_string _ -> "string"
+ | JSON_parser_number _ -> "number"
+ | JSON_parser_double _ -> "float"
+ | JSON_parser_object _ -> "object"
+ | JSON_parser_array _ -> "array"
+ | JSON_parser_bool _ -> "bool"
let type_mismatch_string exp value =
- Printf.sprintf "value is not %s but %s" exp (string_of_yajl_val_type value)
+ Printf.sprintf "value is not %s but %s" exp (string_of_json_parser_val_type value)
let assert_raises_invalid_argument str =
(* Replace the Invalid_argument string with a fixed one...
2018 Aug 17
8
[PATCH v3 4/4] v2v: Add --print-estimate option to print copy size
I rethought this again, as I think that it's a dangerous assumption to
bake qemu-img measure output into our API.
This patch series runs qemu-img measure behind the scenes, but then
parses the output and sums it to a single number which we print.
Doing that required a bit of reworking, moving the Jansson [JSON
parser] bindings from virt-builder into the common directory and
a couple of other
2015 Sep 07
5
[PATCH 0/4 v3] builder: support for Simple Streams metadata
Hi,
this series adds a basic support for Simple Streams v1.0 metadata
files. This makes it possible to create a repository .conf files with
[cirros]
uri=http://download.cirros-cloud.net
format=simplestreams
to read the latest version of each CirrOS image.
Thanks,
Pino Toscano (4):
builder: add non-int revisions
builder: add simple libyajl binding
build: expose HAVE_YAJL to automake