Displaying 3 results from an estimated 3 matches for "saved_overlays".
2019 Oct 09
3
[PATCH] v2v: Output saved overlays in a machine-readable fashion
...+ | None ->
+ List.iter (
+ fun filename ->
+ info (f_"Overlay saved as %s [--debug-overlays]") filename
+ ) filenames
+ | Some {pr} ->
+ let json = [
+ "type", JSON.String "data";
+ "data", JSON.Dict [
+ "saved_overlays",
+ JSON.List (List.map (fun s -> JSON.String s) filenames);
+ ]
+ ] in
+ pr "%s\n" (JSON.string_of_doc json)
(* Request guest caps based on source configuration. *)
and rcaps_from_source source =
--
2.23.0
2019 Oct 10
0
Re: [PATCH] v2v: Output saved overlays in a machine-readable fashion
...fun filename ->
> + info (f_"Overlay saved as %s [--debug-overlays]") filename
> + ) filenames
> + | Some {pr} ->
> + let json = [
> + "type", JSON.String "data";
> + "data", JSON.Dict [
> + "saved_overlays",
> + JSON.List (List.map (fun s -> JSON.String s) filenames);
> + ]
> + ] in
> + pr "%s\n" (JSON.string_of_doc json)
>
> (* Request guest caps based on source configuration. *)
> and rcaps_from_source source =
> --
> 2.23.0
--
R...
2019 Oct 11
6
Re: [PATCH] v2v: Output saved overlays in a machine-readable fashion
...> + info (f_"Overlay saved as %s [--debug-overlays]") filename
>> + ) filenames
>> + | Some {pr} ->
>> + let json = [
>> + "type", JSON.String "data";
>> + "data", JSON.Dict [
>> + "saved_overlays",
>> + JSON.List (List.map (fun s -> JSON.String s) filenames);
>> + ]
>> + ] in
>> + pr "%s\n" (JSON.string_of_doc json)
>>
>> (* Request guest caps based on source configuration. *)
>> and rcaps_from_source source =
&...