search for: not_really

Displaying 4 results from an estimated 4 matches for "not_really".

2013 Mar 02
4
Bug#702046: xen-utils-4.0: PyGrub VM Boot fails after xen-utils 4.0.1-5.6 -> 4.0.1-5.7 Update
...9;> to parse /boot/grub/grub.cfg WARNING:root:Unknown directive load_video WARNING:root:Unknown directive terminal_output WARNING:root:Unknown directive source Traceback (most recent call last): File "/usr/lib/xen-default/bin/pygrub", line 705, in <module> output_directory, not_really) NameError: name 'output_directory' is not defined After replacing the new pygrub file with the one from the previous package everything works as expected. I looked in the upstream source and this suggests that there should be a: output_directory = "/var/run/xend/boot" n...
2012 Aug 22
1
Reshaping dataframes
Hi, I have a data set with variables that are _not_ missing at random. Now I use a package for learning a Bayesian Network which won't accept NA as a value. From a database I query data.frames with k,k+n,k+2n, ... variables (there are always at least k variables as leftmost columns). Using rbind.fill from the reshape package on two data frames I would get a data frame like trg_type
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
...ind us a kernel? + if not fs: + raise RuntimeError, "Unable to find partition containing kernel" + + bootcfg["kernel"] = copy_from_image(fs, chosencfg["kernel"], "kernel", + output_directory, not_really) + if chosencfg["ramdisk"]: - print " initrd: %s" % chosencfg["ramdisk"] - print " args: %s" % chosencfg["args"] - sys.exit(0) + try: + bootcfg["ramdisk"] = copy_from_image(fs,...
2012 Oct 19
3
[PATCH] pygrub: Add option to list grub entries
...eractive] [-l|--list-entries] [-n|--not-really] [--output=] [--kernel=] [--ramdisk=] [--args=] [--entry=] [--output-directory=] [--output-format=sxp|simple|simple0] <image>" %(sys.argv[0],) def copy_from_image(fs, file_to_read, file_type, output_directory, not_really): @@ -736,8 +746,8 @@ if __name__ == "__main__": dataoff += len(data) try: - opts, args = getopt.gnu_getopt(sys.argv[1:], ''qinh::'', - ["quiet", "interactive", "not-really", "h...