Displaying 20 results from an estimated 97 matches for "nused".
Did you mean:
used
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
Parse the gpg status output directly within import_keyfile, returning
just the key fingerprint.
Just code motion, no actual behaviour changes.
---
builder/sigchecker.ml | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/builder/sigchecker.ml b/builder/sigchecker.ml
index 0c292fb..a1a4220 100644
--- a/builder/sigchecker.ml
+++ b/builder/sigchecker.ml
2015 Oct 20
1
[PATCH v3 03/13] v2v: factor out populating targets list
Besides, it doesn't need guestfs handle open so move this step earlier
in the process.
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
---
v2v/v2v.ml | 77 ++++++++++++++++++++++++++++++++------------------------------
1 file changed, 40 insertions(+), 37 deletions(-)
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
index 155eb83..4257b8d 100644
--- a/v2v/v2v.ml
+++ b/v2v/v2v.ml
@@ -58,6 +58,7
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
When importing a key, read the list of the valid subkeys of it, and use
it to check whether a signature was done by one of them.
This allows index provides to sign them using a subkey instead of the
main key.
---
builder/sigchecker.ml | 41 +++++++++++++++++++++++++++++++++++------
1 file changed, 35 insertions(+), 6 deletions(-)
diff --git a/builder/sigchecker.ml b/builder/sigchecker.ml
index
2014 Feb 21
2
Re: [PATCH 2/2] builder: use a disposable GPG keyring for every Sigchecker
On Thu, Feb 20, 2014 at 11:53:17AM +0100, Pino Toscano wrote:
> Create a temporary directory and tell gpg to use it as homedir, so
> imported keys do not get into the user's keyring. This also avoid
> importing the default key when a different one is needed to check the
> signature.
>
> The only exception is when a non-default fingerprint is used: in this
> case, that key
2016 Jan 14
2
[PATCH 1/2] builder: move os-version search in own function
Simple code motion, no behaviour changes.
---
builder/builder.ml | 46 ++++++++++++++++++++++++++--------------------
1 file changed, 26 insertions(+), 20 deletions(-)
diff --git a/builder/builder.ml b/builder/builder.ml
index 9c26573..ec9919f 100644
--- a/builder/builder.ml
+++ b/builder/builder.ml
@@ -75,6 +75,30 @@ let remove_duplicates index =
false
) index
+(* Look for the
2003 Jun 25
2
probelem of function inside function
Hi,
I encountered a problem when I am trying to write my
own function which contains another function. To
simplify a problem, I tried the following simplified
function, hope someone can idenfity the problem for
me.
I have a simple data frame called "testdata" as
following:
>
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
Create a single temporary directory for all the files created during the
virt-builder run (except big disk images, which already use the
libguestfs cache directory). A single directory means there is no need
to manually schedule all the temporary files and directories for removal
when the application quits.
---
builder/builder.ml | 12 ++++++++++--
builder/downloader.ml |
2016 Oct 25
0
[PATCH v2 2/2] builder: consolidate handling of temporary files/dirs
Create a single temporary directory for all the files created during the
virt-builder run (except big disk images, which already use the
libguestfs cache directory). A single directory means there is no need
to manually schedule all the temporary files and directories for removal
when the application quits.
---
builder/builder.ml | 12 ++++++++++--
builder/downloader.ml |
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
Commit-ID: d754d32592fa1c6359b37d101485ced1ff7cdf79
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=d754d32592fa1c6359b37d101485ced1ff7cdf79
Author: Gerrit Pape <pape at smarden.org>
AuthorDate: Fri, 7 Sep 2018 10:34:14 +0200
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: main: Print \n upon EOF
2004 Oct 29
0
Open Streaming Manuals
Hi,
r a d i o q u a l i a have just finished the first version of a streaming
manual for those wishing to learn how to stream under Linux. Its intended
as a manual to accompany a hands-on self-learning or workshop based
approach. No previous knowledge of Linux is assumed. Another manual on
'advanced topics' will be forthcoming.
Topics include:
Introduction to Streaming
Introduction to
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