Displaying 4 results from an estimated 4 matches for "paused_us".
Did you mean:
paused_user
2018 Sep 20
0
[PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
...FINALIZING_FAILURE = 'finalizing_failure'
+ FINALIZING_SUCCESS = 'finalizing_success'
+ FINISHED_FAILURE = 'finished_failure'
+ FINISHED_SUCCESS = 'finished_success'
+ INITIALIZING = 'initializing'
+ PAUSED_SYSTEM = 'paused_system'
+ PAUSED_USER = 'paused_user'
+ RESUMING = 'resuming'
+ TRANSFERRING = 'transferring'
+ UNKNOWN = 'unknown'
+
+ def __init__(self, image):
+ self._image = image
+
+ def __str__(self):
+ return self._image
+
+class ImageTransfer(object):
+ def __in...
2018 Sep 20
7
[PATCH v2 0/3] v2v: -o rhv-upload: Add a test.
v1 was here:
https://www.redhat.com/archives/libguestfs/2018-September/msg00121.html
v2:
- Rewrote patch 2 from scratch so it incorporates Nir's suggestions.
- Add fake module to EXTRA_DIST.
- Retested.
Unfortunately I am no longer able to test the ordinary conversion path
because ovirtsdk4 is incompatible with Fedora 29 / Python 3.7:
2018 Sep 19
4
[PATCH 0/3] v2v: -o rhv-upload: Add a test.
This adds a test of -o rhv-upload.
Obviously for an upstream test we cannot require a working oVirt
server. This test works by faking the ovirtsdk4 Python module,
setting PYTHONPATH so that the fake module is picked up instead of the
real module (if installed).
However it's more complex than that because the nbdkit plugin also
expects to talk to a working imageio HTTPS server. Therefore
2018 Oct 09
2
Re: [PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
...lizing_failure'
> + FINALIZING_SUCCESS = 'finalizing_success'
> + FINISHED_FAILURE = 'finished_failure'
> + FINISHED_SUCCESS = 'finished_success'
> + INITIALIZING = 'initializing'
> + PAUSED_SYSTEM = 'paused_system'
> + PAUSED_USER = 'paused_user'
> + RESUMING = 'resuming'
> + TRANSFERRING = 'transferring'
> + UNKNOWN = 'unknown'
> +
> + def __init__(self, image):
> + self._image = image
> +
> + def __str__(self):
> + return self._image...