search for: __dict__

Displaying 13 results from an estimated 13 matches for "__dict__".

2007 Nov 28
0
[Xen-ia64-devel] [PATCH] Add guest_os_type domain config option
...#39;, ''pci'' ] + ''acpi'', ''apic'', ''usb'', ''usbdevice'', ''keymap'', ''pci'', + ''guest_os_type''] + for a in args: if a in vals.__dict__ and vals.__dict__[a] is not None: config_image.append([a, vals.__dict__[a]]) diff -r c555a5f97982 xen/include/public/hvm/params.h --- a/xen/include/public/hvm/params.h Wed Nov 28 13:36:56 2007 +0000 +++ b/xen/include/public/hvm/params.h Wed Nov 28 09:48:59 2007 -0700 @@ -75,6 +75,8 @@...
2010 Jul 26
1
Help on Samba 4
...we are getting the following error: /root/Samba/source4/wscript: error: Traceback (most recent call last): File "/root/Samba/buildtools/bin/.waf-1.5.17-164170d221747ffbb50f4a8b9ccc2b2a/waf admin/Utils.py", line 198, in load_module exec(compile(code,file_path,'exec'),module.__dict__) File "/root/Samba/source4/wscript", line 11, in ? import wafsamba, Options, samba_dist, Scripting File "../buildtools/wafsamba/wafsamba.py", line 53 @conf ^ SyntaxError: invalid syntax Can anybody kindly help us? Regards Amitava CAhkraborty
2007 Apr 07
1
Web Site Trak errors and Python tracebacks
...pr_pool_t, name, value) File "/var/lib/python-support/python2.4/libsvn/core.py", line 22, in _swig_setattr return _swig_setattr_nondynamic(self,class_type,name,value,0) File "/var/lib/python-support/python2.4/libsvn/core.py", line 17, in _swig_setattr_nondynamic self.__dict__[name] = value RuntimeError: instance.__dict__ not accessible in restricted mode Rgds Scott
2007 Apr 11
1
problem with wiki - Trac internal error
...t, name, value) File "/var/lib/python-support/python2.4/libsvn/core.py", line 22, in _swig_setattr return _swig_setattr_nondynamic(self,class_type,name,value,0) File "/var/lib/python-support/python2.4/libsvn/core.py", line 17, in _swig_setattr_nondynamic self.__dict__[name] = value RuntimeError: instance.__dict__ not accessible in restricted mode Jesse Reynolds Virtual Artists Pty Ltd - http://www.va.com.au/ Phone: 08 8223 2288 Mobile: 0414 669 790 _______________________________________________ Puppet-users mailing list Puppet-users@madstop.c...
2011 Oct 20
2
[PATCH] pygrub: do not overload RuntimeError for "no menu.lst found"
...s/pygrub/src/pygrub @@ -29,6 +29,9 @@ import grub.ExtLinuxConf PYGRUB_VER = 0.6 +class NotFoundError(RuntimeError): + pass + def enable_cursor(ison): if ison: val = 2 @@ -412,7 +412,7 @@ class Grub: self.cf.filename = f break if self.__dict__.get(''cf'', None) is None: - raise RuntimeError, "couldn''t find bootloader config file in the image provided." + raise NotFoundError, "couldn''t find bootloader config file in the image provided." f = fs.open_file(s...
2006 Jul 13
3
[PATCH] Update new qemu-dm to spawn vncviewer
...''vncviewer'', ''sdl'', ''display'', ''ne2000'', + ''acpi'', ''apic'', ''xauthority'', ''usb'', ''usbdevice'' ] for a in args: if (vals.__dict__[a]): config_image.append([a, vals.__dict__[a]]) @@ -847,17 +853,20 @@ """If vnc was specified, spawn a vncviewer in listen mode and pass its address to the domain on the kernel command line. """ - if not (vals.vnc and vals.vncviewer) or v...
2019 Jan 22
0
Re: libvirt 5.0.0 - LXC container still in "virsh list" output after shutdown
...test python script for such stucked container we get error on call domain.info(): (Pdb) self.state_id, self.maxmem, self.mem, self.cpus, self.cput = self.domain.info() *** libvirtError: operation failed: Cannot read cputime for domain where self.domain is correct domain pointer: (Pdb) self.domain.__dict__ {'_conn': <libvirt.virConnect object at 0x7ff95f881550>, '_o': <capsule object "virDomainPtr" at 0x7ff95f8cca80>} Compare with case just after libvirtd restart and domain stopped: (Pdb) self.domain.info() [5, 2097152L, 2097152L, 2, 0L] Problem reproduced on 2...
2008 Aug 16
1
python how do i stem words in python?
...hello world code in python that i can use? thanks a lot! >>> stemmer = xapian.Stem('english') >>> stemmer. stemmer.__call__ stemmer.__reduce_ex__ stemmer.__class__ stemmer.__repr__ stemmer.__delattr__ stemmer.__setattr__ stemmer.__dict__ stemmer.__str__ stemmer.__doc__ stemmer.__swig_destroy__ stemmer.__getattribute__ stemmer.__weakref__ stemmer.__hash__ stemmer.get_available_languages stemmer.__init__ stemmer.get_description stemmer.__module__ s...
2019 Jan 21
2
libvirt 5.0.0 - LXC container still in "virsh list" output after shutdown
Hello. Centos 7.6 with libvirt build from base "virt" repository: libvirt-daemon-driver-lxc-5.0.0-1.el7.x86_64 libvirt-client-5.0.0-1.el7.x86_64 libvirt-daemon-5.0.0-1.el7.x86_64 libvirt-daemon-driver-network-5.0.0-1.el7.x86_64 libvirt-libs-5.0.0-1.el7.x86_64 + systemd-219-62.el7_6.2.x86_64 Now lxc containers with type='direct' can be started, but can't be stopped :)
2006 Sep 26
15
RE: Individual passwords for guest VNC servers ?
> Thanks all point about security, I''ll do as follows. > I thought that the point was the following two. > > > 1. Storage place of encrypted password > Should I store it in /etc/xen/passwd ? > Or, should I wait for DB of Xen that will be released in > the future? The xend life cycle management patches were posted by Alistair a couple of months back.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2007 Mar 28
2
[PATCH 2/3] User-space grant table device - main driver
A character device for accessing (in user-space) pages that have been granted by other domains. Signed-off-by: Derek Murray <Derek.Murray@cl.cam.ac.uk> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2013 Jul 31
29
[PATCH 0/9] tools: remove or disable old/useless/unused/unmainted stuff
depends on "autoconf: regenerate configure scripts with 4.4 version" This series removes some of the really old deadwood from the tools build and makes some other things which are on their way out configurable at build time with a default depending on how far down the slope I judge them to be. * nuke in tree copy of libaio * nuke obsolete tools: xsview, miniterm, lomount & sv *