search for: nuse

Displaying 20 results from an estimated 97 matches for "nuse".

Did you mean: nuke
2007 Jun 08
1
Question about Running C code from R
Dear R-devel, Apologies for sending what is probably a very simple question to R-devel: I am definitely missing something very simple and can't work out what it is. I've been trying to find the problem here for about a month and need some help! I am trying to work out how to run a C program from an R script. Rather than try the C program directly, I'm trying to get a much simpler
2010 Dec 09
3
How many files & directories in a ZFS filesystem?
Looking for a little help, please. A contact from Oracle (Sun) suggested I pose the question to this email. We''re using ZFS on Solaris 10 in an application where there are so many directory-subdirectory layers, and a lot of small files (~1-2Kb) that we ran out of inodes (over 30 million!). So, the zfs question is, how can we see how many files & directories have been created in
2023 Mar 07
2
insert hyperlink into svg graphic
Perhaps this thread on stackoverflow (from a search on "include hyperlink in svg graphic") may be of use: https://stackoverflow.com/questions/41970535/a-hyperlink-in-svg-use Cheers, Bert On Tue, Mar 7, 2023 at 12:34?AM Rusty Travis <rusytravis19 at gmail.com> wrote: > Greetings, > > I am creating plots of weather data and wish to include a link to the > data source
2014 Feb 20
4
[PATCH 1/2] mllib: add an hook to cleanup directories on exit
Much similar to unlink_on_exit, but recursively cleaning directories. --- mllib/common_utils.ml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml index 3943417..f49ede6 100644 --- a/mllib/common_utils.ml +++ b/mllib/common_utils.ml @@ -386,6 +386,35 @@ let unlink_on_exit = registered_handlers := true )
2015 May 11
3
[PATCH 1/3] builder: move gpg status parsing within import_keyfile
...er/sigchecker.ml b/builder/sigchecker.ml index 0c292fb..a1a4220 100644 --- a/builder/sigchecker.ml +++ b/builder/sigchecker.ml @@ -43,7 +43,17 @@ let import_keyfile ~gpg ~gpghome ~verbose keyfile = let r = Sys.command cmd in if r <> 0 then error (f_"could not import public key\nUse the '-v' option and look for earlier error messages."); - status_file + let status = read_whole_file status_file in + let status = string_nsplit "\n" status in + let fingerprint = ref "" in + List.iter ( + fun line -> + let line = string_nsplit &quot...
2015 Oct 20
1
[PATCH v3 03/13] v2v: factor out populating targets list
...- * created by qemu-img really work. In any case, fail here, - * early, not below, later. - *) - if format <> "raw" && format <> "qcow2" then - error (f_"output format should be 'raw' or 'qcow2'.\n\nUse the '-of <format>' option to select a different output format for the converted guest.\n\nOther output formats are not supported at the moment, although might be considered in future."); - - (* output#prepare_targets will fill in the target_file field. - * estimate...
2023 Mar 07
1
insert hyperlink into svg graphic
Greetings, I am creating plots of weather data and wish to include a link to the data source into a title() object in the plot. My syntax must be wrong though, as the hyperlink doesn't display, just the text and tags. > svg("/tmp/temps.svg", width=9, height=6) > #plot created here > title(sub="produced by Rusty Travis? \nusing data from <a
2015 Jul 28
0
[PATCH 05/10] builder: allow signatures from subkeys
...pg : string; fingerprint : string; + subkeys_fingerprints : string list; check_signature : bool; gpghome : string; } @@ -63,7 +64,34 @@ let import_keyfile ~gpg ~gpghome ?(trust = true) keyfile = if r <> 0 then error (f_"GPG failure: could not trust the imported key\nUse the '-v' option and look for earlier error messages."); ); - !fingerprint + let subkeys = + (* --with-fingerprint is specified twice so gpg outputs the full + * fingerprint of the subkeys. *) + let cmd = sprintf "%s --homedir %s --with-colons --with-fingerprint --wi...
2014 Feb 21
2
Re: [PATCH 2/2] builder: use a disposable GPG keyring for every Sigchecker
...pg tmpdir (if debug then "" else " >/dev/null 2>&1") in > + if debug then eprintf "%s\n%!" cmd; > + let r = Sys.command cmd in > + if r <> 0 then ( > + eprintf (f_"virt-builder: error: GPG failure: could not run GPG the first time\nUse the '-v' option and look for earlier error messages.\n"); > + exit 1 > + ); > { > debug = debug; > gpg = gpg; > fingerprint = fingerprint; > check_signature = check_signature; > + gpghome = tmpdir; > + key_imported = false; &g...
2016 Jan 14
2
[PATCH 1/2] builder: move os-version search in own function
...t_found -> cmdline.arg in + let item = + try List.find ( + fun (name, { Index.arch = a }) -> + name = arg && cmdline.arch = normalize_arch a + ) index + with Not_found -> + error (f_"cannot find os-version '%s' with architecture '%s'.\nUse --list to list available guest types.") + arg cmdline.arch in + item + let main () = (* Command line argument parsing - see cmdline.ml. *) let cmdline = parse_cmdline () in @@ -229,26 +253,8 @@ let main () = | (`Install|`Notes) as mode -> mode in (* Which os-version...
2003 Jun 25
2
probelem of function inside function
...plicated. so when I execute the following command, I got an error message: > f.fun(var='x',fdata=testdata) Problem in eval(oc, list()): Object "fdata" not found Use traceback() to see the call stack [1] "Problem in eval(oc, list()): Object \"fdata\" not found \nUse traceback() to see the call stack" attr(, "class"): [1] "Error" I guess the reason is that within the inside function "f.addterm", the dataset "fdata" can't be seen, but I don't know why because I think I have passed the dataset into the inside...
2023 Mar 08
1
insert hyperlink into svg graphic
On 3/7/23 13:12, Paul Murrell wrote: > Hi > > I think the main issue here is that you are *drawing* text on the > graphics device, so I would only expect to see literal XML text output > in the result. > ''' > > Hope that helps Thank you for your consideration of the matter, but that seems extraordinarily overly-complicated for the results of
2023 Mar 07
1
insert hyperlink into svg graphic
This was actually the first thing that ChatGPT debugged for me. The issue was that I was able to click on the link when I displayed the raw SVG in the browser (you can use that to test whether the syntax is even correct), but not when the svg displays inside a html page with the <img ...> tag. ChatGPT correctly identified the issue and suggested a solution using <object ...> tags
2023 Mar 08
1
insert hyperlink into svg graphic
Hi On 8/03/23 15:27, Rusty Travis wrote: > On 3/7/23 13:12, Paul Murrell wrote: >> Hi >> >> I think the main issue here is that you are *drawing* text on the >> graphics device, so I would only expect to see literal XML text output >> in the result. >> ''' >> >> Hope that helps > > Thank you for your consideration of the
2016 Oct 24
0
[PATCH 2/2] builder: consolidate handling of temporary files/dirs
..."" else " >/dev/null 2>&1") in + gpg gpgtmpdir (if verbose () then "" else " >/dev/null 2>&1") in let r = shell_command cmd in if r <> 0 then error (f_"GPG failure: could not run GPG the first time\nUse the '-v' option and look for earlier error messages."); @@ -111,17 +110,16 @@ let rec create ~gpg ~gpgkey ~check_signature = | No_Key -> assert false | KeyFile kf -> - import_keyfile gpg tmpdir kf + import_keyfile gpg gpgtmpdir tmpdir kf...
2016 Oct 25
0
[PATCH v2 2/2] builder: consolidate handling of temporary files/dirs
..."" else " >/dev/null 2>&1") in + gpg gpgtmpdir (if verbose () then "" else " >/dev/null 2>&1") in let r = shell_command cmd in if r <> 0 then error (f_"GPG failure: could not run GPG the first time\nUse the '-v' option and look for earlier error messages."); @@ -111,17 +110,16 @@ let rec create ~gpg ~gpgkey ~check_signature = | No_Key -> assert false | KeyFile kf -> - import_keyfile gpg tmpdir kf + import_keyfile gpg gpgtmpdir tmpdir kf...
2016 Oct 25
2
[PATCH v2 1/2] mllib: curl: add optional tmpdir parameter
Add a new optional parameter for the Curl ADT, so temporary files can be created in a specified directory (which is supposed to be temporary, and disposed only when the application quits). --- mllib/curl.ml | 10 ++++++---- mllib/curl.mli | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/mllib/curl.ml b/mllib/curl.ml index 376406e..baa75ec 100644 --- a/mllib/curl.ml +++
2020 Mar 28
0
[klibc:update-dash] dash: main: Print \n upon EOF (CTRL-D) when run interactively
...dash/main.c @@ -221,8 +221,15 @@ cmdloop(int top) if (!top || numeof >= 50) break; if (!stoppedjobs()) { - if (!Iflag) + if (!Iflag) { + if (iflag) { + out2c('\n'); +#ifdef FLUSHERR + flushout(out2); +#endif + } break; + } out2str("\nUse \"exit\" to leave shell.\n"); } numeof++;
2004 Oct 29
0
Open Streaming Manuals
...Streaming with MuSE Creating Playlist Files Linking with HTML MIME types The Politics of Streaming (rant) Streaming with playlists from MuSE Setting up Icecast2 Using Icecast2 Other Tools The manual is released under Creatice Commonds Attributive ShareAlike NonCommercial License 2.0. Feel free to nuse, ammend, distribute. It is available as a PDF from: http://www.radioqualia.net/streaming_manual If you spot any errors or ways to improve the manual please let me know! adam Adam Hyde ~/.fi r a d i o q u a l i a http://www.radioqualia.net Free as in 'media' contact: email : adam@xs4al...
2010 May 15
1
XML-Created domain vanishes after shutdown
Hi, im migrating existing kvm-images into libvirt domains, by creating a domain in virsh from a xml file. The domain starts, is working fine, but after shutdown it is lost, and I have to recreate it. BTW, can I reset the domain count somewhere? Any ideas? thx and kind regards Alexander virsh # version Compiled against library: libvir 0.4.6 Using library: libvir 0.4.6 Using API: QEMU 0.4.6