Displaying 20 results from an estimated 97 matches for "nusing".
Did you mean:
using
2007 Jun 08
1
Question about Running C code from R
...********************
#include <stdio.h>
#include <Rinternals.h>
#include <R_ext/Rdynload.h>
int Rc(int a) {
return (a+3);
}
SEXP Rc2(SEXP a) {
return(18); //LINE A
// return(ScalarReal(REAL(a)[0]+12)); //LINE B
}
int main()
{
int i,j;
SEXP m,n;
i=4;j=Rc(i);
printf("\nUsing Rc: %i+3=%i - OK so far.\n",i,j);
m=6;n=Rc2(m);
printf("\nUsing Rc2: %i+12=%i - Doing well.\n",m,n);
printf("\nPress <ENTER> ...\n");
getchar();
return 0;
}
***********************************************************************************************
and I...
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
...t; 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
> xlink:href=https://www.ncei.noaa.gov/cdo-web/>test</a> ", line=-1.5,
> adj=1)
> > dev.off()
>
> The goal is to create a hyperlink of the word "test" in the above
> example. What is the correct syntax, please?
>
> [[alter...
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
...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
xlink:href=https://www.ncei.noaa.gov/cdo-web/>test</a>? ", line=-1.5, adj=1)
> dev.off()
The goal is to create a hyperlink of the word "test" in the above
example. What is the correct syntax, please?
[[alternative HTML version deleted]]
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
...> 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
>> ?>> xlink:href=https://www.ncei.noaa.gov/cdo-web/
>> <https://www.ncei.noaa.gov/cdo-web>>test</a> ", line=-1.5,
>> ?>> adj=1)
>> ?>>> dev.off()
>> ?>>
>> ?>> The goal is to create a hyperlin...
2023 Mar 07
1
insert hyperlink into svg graphic
...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
>> xlink:href=https://www.ncei.noaa.gov/cdo-web/>test</a> ", line=-1.5,
>> adj=1)
>>> dev.off()
>>
>> The goal is to create a hyperlink of the word "test" in the above
>> example. What is the correct syntax, please?
&g...
2023 Mar 08
1
insert hyperlink into svg graphic
...gt; ?>> 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
>>> ?>> xlink:href=https://www.ncei.noaa.gov/cdo-web/
>>> <https://www.ncei.noaa.gov/cdo-web>>test</a> ", line=-1.5,
>>> ?>> adj=1)
>>> ?>>> dev.off()
>>> ?>>
>>> ?>> The goal...
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