Displaying 17 results from an estimated 17 matches for "_image".
Did you mean:
image
2018 Sep 20
0
[PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
..._port
+
+class Cluster(object):
+ def __init__(self, name):
+ pass
+
+class Configuration(object):
+ def __init__(self, type=None, data=None):
+ pass
+class ConfigurationType(Enum):
+ OVA = 'ova'
+ OVF = 'ovf'
+
+ def __init__(self, image):
+ self._image = image
+
+ def __str__(self):
+ return self._image
+
+class DiskFormat(Enum):
+ COW = "cow"
+ RAW = "raw"
+
+ def __init__(self, image):
+ self._image = image
+
+ def __str__(self):
+ return self._image
+
+class DiskStatus(Enum):
+ ILLEGAL...
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.
...name):
> + pass
> +
> +class Configuration(object):
> + def __init__(self, type=None, data=None):
> + pass
> +class ConfigurationType(Enum):
> + OVA = 'ova'
> + OVF = 'ovf'
> +
> + def __init__(self, image):
> + self._image = image
> +
> + def __str__(self):
> + return self._image
> +
> +class DiskFormat(Enum):
> + COW = "cow"
> + RAW = "raw"
> +
> + def __init__(self, image):
> + self._image = image
> +
> + def __str__(self):
> +...
2009 Jul 30
4
attachment_fu + :path_prefix
Hello friends,
I have a query like I am using a attchment_fu to store images.
But the i don''t want to store to the default path let say :path_prefix =>
''public/uploads'' i want a dyname path for e.g :path_prefix => ''public/#{
current_user.id}'', So just wanted to know how can i say images to the
dynamic location.
Regards
Abhishek Shukla
2009 Sep 22
1
[PATCH] edit-livecd in python
...compress the image."""
+
+ self.skip_minimize = False
+ """Controls whether an image minimizing snapshot should be created."""
+
+ self._isofstype = "iso9660"
+ self.__isodir = None
+
+ self._ImageCreator__builddir = None
+ """working directory"""
+
+ self._ImageCreator_instroot = None
+ """where the extfs.img is mounted for modification"""
+
+ self._ImageCreator_outdir = None
+...
2013 Oct 15
2
[LLVMdev] MCJIT and DWARF debugging info and lldb
...ib 0x000000010364758c _Z47proto_invokePossibleMultipleValueSymbolFunctionPN3mem9smart_ptrIN4core8Symbol_OEEEPNS0_INS1_17ActivationFrame_OEEE + 1196
Backtrace: 27 libllvmo_opt.dylib 0x000000010363ffa7 mv_invokePossibleMultipleValueSymbolFunction + 23
Backtrace: 28 _image.bundle 0x000000010b5771c8 REP + 1816
Backtrace: 29 ??? 0x000000010d71dd50 0x0 + 4520533328
2006 Jan 11
8
[scriptaculous] Intermitently Disabling Clicks
I have button that slides down a menu using Effect.BlindDown, but the
function that slides it down also makes it so that the opening link
now slides the menu back in.
If the user double clicks the link (thuse opening & closing
immediatley) the slide animation breaks, then will not extend
correctly (but no JS errors). How would you go about stopping this
happening?
Also, is it just me or is
2013 Oct 15
0
[LLVMdev] MCJIT and DWARF debugging info and lldb
...ib 0x000000010364758c _Z47proto_invokePossibleMultipleValueSymbolFunctionPN3mem9smart_ptrIN4core8Symbol_OEEEPNS0_INS1_17ActivationFrame_OEEE + 1196
Backtrace: 27 libllvmo_opt.dylib 0x000000010363ffa7 mv_invokePossibleMultipleValueSymbolFunction + 23
Backtrace: 28 _image.bundle 0x000000010b5771c8 REP + 1816
Backtrace: 29 ??? 0x000000010d71dd50 0x0 + 4520533328
_______________________________________________
LLVM Developers mailing list
LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
http://lists.cs.uiu...
2006 Aug 09
8
AJAX image manipulation
I have this code in a controller that returns images to my browser...with
ROR.
def index
@products = Product.find_all_ pictures
end
....this is the .rhtml..
<% for photo in @pic -%>
<div class="entry">
<img src="<%= photo.image_url %>"/>
<h3><%= h(photo.title) %></h3>
<%= photo.description %>
2020 Jan 10
7
[v2v PATCH 0/6] Various Python pycodestyle fixes
Fixes the majority of the pycodestyle issues in the Python scripts, and
fix the existing test-v2v-python-syntax.sh to use pycodestyle to
actually perform style checks.
Pino Toscano (6):
PEP 8: adapt whitespaces in lines
PEP 8: move imports at the top
PEP 8: adapt empty lines
tests: find all the Python scripts for syntax checks
-o rhv-upload: remove unused Python imports
Revamp check
2010 May 03
7
rendering images dynamically
...lay all the images once I get them
all, but that causes an unacceptable delay for my user.
One approach I am trying is, from my controller, set an @image
variable, and then pass in a block to the model that retrieves the
image urls. In the block, I call
In the controller, I have:
@query.load_images! do |image|
@image = image
render :update do |page|
page.insert_html :bottom, ''images-div'', :partial => ''images''
end
end
In my query model, I have:
def load_images! &block
for(some_loop_that_gets_one_image_at_a_time) do...
2013 Jul 15
6
[PATCH 0 of 6 RESEND v2] blktap3/sring: shared ring between tapdisk and the front-end
This patch series introduces the shared ring used by the front-end to pass
request descriptors to tapdisk, as well as responses from tapdisk to the
front-end. Requests from this ring end up in tapdisk''s standard request queue.
When the tapback daemon detects that the front-end tries to connect to the
back-end, it spawns a tapdisk and tells it to connect to the shared ring. The
shared
2014 May 15
2
Re: guestfsd crashes when the handle is closed
...lenbuf = "\365\365", <incomplete sequence \365>
xdr = {x_op = XDR_ENCODE, x_ops = 0xb753db00 <xdrmem_ops>,
x_public = 0xb76acc46 <_dl_lookup_symbol_x+214> "\203",
<incomplete sequence \370>,
x_private = 0xbfedcd80 "_IMAGE=/vmlinuz-3.11.10-301.fc20.i686
root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/swap
vconsole.font=latarcyrheb-sun16 rd.lvm.lv=fedora/root rhgb quiet
LANG=fr_FR.UTF-8\n",
x_base = 0xbfedcd7c
"\365\365_\365_IMAGE=/vmlinuz-3.11.10-301.fc20.i686
root=/dev/mapper/fedora-root ro rd.l...
2014 May 15
2
Re: guestfsd crashes when the handle is closed
Hello,
So in ubuntu1204 guest This is what i got :
*(gdb)* bt full
* #0* 0x005a9fc0 in exit () from /lib/i386-linux-gnu/libc.so.6
No symbol table info available.
* #1* 0x0805f7dd in ?? ()
No symbol table info available.
* #2* 0x0804aedf in ?? ()
No symbol table info available.
*#3* 0x005904d3 in __libc_start_main () from
/lib/i386-linux-gnu/libc.so.6
No symbol
2011 Mar 27
3
PowerDVD 10 under Wine
...ferred osd_mlang
PE 380000- 38c000 Deferred pwrdvdrc
PE 3d0000- 3d6000 Deferred lcid_res
PE 3e0000- 3e8000 Deferred ros
PE 400000- 750000 Deferred powerdvd10
PE d70000- f99000 Deferred res_image
PE fa0000- 1117000 Deferred bdrom_x.imp
PE 1120000- 13d5000 Deferred cldshowx
PE 13e0000- 1405000 Deferred rfcom
PE 1740000- 187e000 Deferred dvd_aud_x.imp
PE 1880000- 197f000 Deferred vcd20_x.imp
PE...
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with
updates coming from blktap2.5.
Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>