Displaying 20 results from an estimated 42 matches for "error1".
Did you mean:
error
2008 Apr 10
1
Stderr
Hi everyone,
I need to get an error message as an object in the std output console. I can
get it as a file with the following instructions:
# Save error mesage:
error1 <- file("error1.txt", open="wt")
sink(error1, type="message")
experiment <- function(data)
With this, the error messages get saved in the file, but i need them as
object in order to work with it in the console.
Is it possible?
Thanks
--
Patricia G...
2011 Oct 13
1
delete columns which partially match expression
...he containing columns.
So, for example in the below table, I'd like to delete all columns which
contain the expression "Error". That is, R should delete column C and E from
my data. Any ideas?
A B C D E
12 33 Error1 71 Error2
Cheers, S.B.
[[alternative HTML version deleted]]
2004 Mar 06
0
make fails dynconfig.0 error1
Hi all,
I am compiling samba 3.0.2a with openldap and kerberos
support
openldap version 2.1.25 with bdb support (ver 4.2)
kerberos version 1.3.2
./configure --prefix=/servers/sambatest/3.0.2a
--with-ldap=/servers/openldap/2.1.25/lib --with-ads --with-krb5=/servers/kerberos/1.3.2/lib
--with-ldapsam
configure suceeds
but make fails with the following error
Using FLAGS = -O
2014 Feb 13
3
Libguestfs (1.22.6) driver/changes for mingw/win32
Hi,
I attached the changes I made to a vanilla libguestfs-1.22.6 in order to
make it work in mingw/win32.
Added is also the patch required to make QEMU compatible (add a command to
QMP that lists the supported devices (the regilat way you do it print it to
stderr, which is difficult to redirect in win32)).
This is done on behalf of Intel Corp.
Thanks,
Or (oberon in irc)
2004 Aug 06
2
improved error.log output --diff
...(client);
return;
}
command_string = uri + 7;
- DEBUG1("Got command (%s)", command_string);
+ DEBUG1("Got command (%s,%s)", command_string, client->con->ip);
command = admin_get_command(command_string);
if(command < 0) {
- ERROR1("Error parsing command string or unrecognised command: %s",
- command_string);
+ ERROR1("Error parsing command string or unrecognised command: %s, %s",
+ command_string, client->con->ip);
client_send_400(client, "Unrecogni...
2015 Jun 18
1
Re: [PATCH v4 2/3] do_btrfs_subvolume_list: fix a bad return value
...trfssubvolume_list_val is already a null
pointer, which means you can just check for it as you do in (1) above,
with no need to switch from malloc to calloc.
The other alternative is to use more labels for error conditions in a
symmetric way, like:
ptr1 = malloc (...);
if (ptr1 == NULL)
goto error1;
ptr1->subptr1 = malloc (...);
if (ptr1->subptr1 == NULL)
goto error2;
ptr1->subptr2 = malloc (...);
if (ptr1->subptr2 == NULL)
goto error3;
...
error3:
free (ptr1->subptr1);
error2:
free (ptr1);
error1:
...
--
Pino Toscano
2008 Jun 15
1
multilevel basic lme question
...0)
> mydata<-data.frame(math, sex, school_A, school_B)
> mydata
School_A and school_B are two different school characteristics, math is an individual score for each subject and sex is also an individual characteristic.
Now i want to specify in R the following equations:
math=a +b *sex +error1
a= aa+ bb*school_A+ cc*school_B+ error2
b= aaa+ bbb*school_A+ ccc*school_B+ error3
but i don't know how. I searched nabble but could not find anything.
Thank you and have a great day ahead
[[alternative HTML version deleted]]
2009 Dec 25
1
checking package errors-'require' calls not declared and no visible global function definition
Hi,
I got two errors after i checking my package. The errors are as follows,
Error1:
* checking for unstated dependencies in R code ... WARNING
'library' or 'require' calls not declared from:
boot np
Error2:
* checking R code for possible problems ... NOTE
myfunction: no visible global function definition for 'npudensbw'in the np
package
In "myfu...
2005 Oct 17
1
Redhat 9 Samba + LDAP PDC ./smbldap-populate issue
...amp; ldap as far as i can tell to the
latest.
Firstly I have a smaller issue (I think) I get this error when trying to
restart ldap, as usual I have followed the samba howto; however it's not the
documentation that is the problem more so an unusal problem or missing
packages on my system.
ERROR1:
[root@Tini-Svr1 sbin]# service ldap restart
Stopping slapd: [FAILED]
Starting slapd: Unrecognized database type (bdb)
[FAILED]
ERROR2:
[root@Tini-Svr1 sbin]# ./smbldap-populate -a root -...
2003 Jul 11
0
Port-KDE3
...correct the syntax error?
fctype.c:279: syntax error before 'psfontinfo'
:738:'postinfo undeclared (first use in this function)
:738:(Each undeclared identifier is reported only once for
each function it appears in
gmake[2]:***[fcfreetype.lo]Error1
gmake[2]:Leaving
directory'/usr/ports/x11-fonts/fontconfig/work/fontconf-2.2.1
gmake[1]:***[all-recursive Error1
etc
etc
using FreeBSD-4.8
Thank you,
Doug
2013 Feb 02
0
VAR simulation help
...am trying to simulate a VAR estimation. The
problem is given above in the image. Assume that the errors are iid and
normally distributed. Here the number of observations x1=x2=64.
I've written the code below. Not sure if it is correct.
pi=matrix(c(0.9,0.1,-0.1,0.7),nrow=2,ncol=2)
# errors
error1=rnorm(64,mean=0,sd=1)
error2=rnorm(64,mean=0,sd=1)
#variables x1 and x2
x1=sample(64)
x2=sample(64)
#VAR simulation#
obs = 64
set.seed(123)
E=matrix(c(error1,error2),nrow=2,ncol=64)
pi=matrix(c(0.9,0.1,-0.1,0.7),nrow=2,ncol=2)
X=matrix(c(x1,x2),nrow=2,ncol=64)
for (i in 2:obs) {
X[,i] = pi%*...
2015 Aug 22
2
SSE return w/ elf64 ABI
...report_fatal_error("SSE
register return with SSE disabled");
lib/Target/X86/X86ISelLowering.cpp:2261: report_fatal_error("SSE
register return with SSE disabled");
test/CodeGen/X86/nosse-error2.ll:4:; NOSSE: {{SSE register return with SSE
disabled}}
test/CodeGen/X86/nosse-error1.ll:4:; NOSSE: {{SSE register return with SSE
disabled}}
Thanks for your time,
Tyler Hardin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150822/a70dc3e4/attachment.html>
2018 Apr 22
1
Race condition when setting flags (\Deleted) + expunge quickly, leaving mails not deleted
...d by sending test
> > messages with mutt 1.7.2 through Dovecot/Postfix/Amavis.
> >
> >
> >
> > **** Method 1, with IDLE:
> >
> > Setup a local account, MY-USER / MY-PASSWORD (replace below).
> >
> >> mkdir Mail
> >> cp error-box Mail/error1
> >> nc -v localhost 143
> > Paste the following 3 lines in a go:
> > a0000 LOGIN "MY-USER" "MY-PASSWORD"
> > a0010 SELECT "error1"
> > a0020 IDLE
> >
> > then wait a second.. then paste the following 3 in a go:
> > DO...
2004 Aug 06
1
Error in compiling Speexdec code (Speex-1.1.5 code) on Windows using VC++6.0
...code using Microsoft VC++ 6.0 IDE.
When I try to open the speexdec.dsw workspace, I get a dialog asking to locate the ogg_static file. I simply cancel that message, and then the project is opened in the VC++ 6.0 IDE.
Now, when I simply try to compile the program, I receive this 5 error messages.
error1. d:\speex\speex-1.1.5\libspeex\lsp.c(104) : error C2054: expected '(' to follow 'inline'
error2. d:\speex\speex-1.1.5\libspeex\lsp.c(105) : error C2085: 'spx_cos' : not in formal parameter list
error3.d:\speex\speex-1.1.5\libspeex\lsp.c(105) : error C2143: syntax error : mis...
2007 Apr 23
1
Compact Flash, EXT3, and IDE - a bad idea?
...tem (arm) with a CF card mounted as EXT3. I'll copy some system details below... Anyway, I'm getting some drive errors and I'm wondering if they're due to bad/old drivers, something with EXT3 and CF latency, or something else entirely.
These are the errors:
hda: write_intr error1: nr_sectors=1, stat=0x51
hda: write_intr: status=0x51 { DriveReady SeekComplete Error }
hda: write_intr: error=0x04 { DriveStatusError }
end_request: I/O error, dev 03:01 (hda), sector 528431
Let me know if you have any idea what I could do to fix these issues. Ideally it wouldn't involv...
2018 Mar 20
2
Race condition when setting flags (\Deleted) + expunge quickly, leaving mails not deleted
...e the problem, called
"error-box", anonymized with mbox-anonymize.pl. It was created by sending test
messages with mutt 1.7.2 through Dovecot/Postfix/Amavis.
**** Method 1, with IDLE:
Setup a local account, MY-USER / MY-PASSWORD (replace below).
> mkdir Mail
> cp error-box Mail/error1
> nc -v localhost 143
Paste the following 3 lines in a go:
a0000 LOGIN "MY-USER" "MY-PASSWORD"
a0010 SELECT "error1"
a0020 IDLE
then wait a second.. then paste the following 3 in a go:
DONE
a0030 UID STORE 1:3 +FLAGS (\Deleted)
a0040 EXPUNGE
Notice that the resul...
2018 Mar 21
0
Race condition when setting flags (\Deleted) + expunge quickly, leaving mails not deleted
..., anonymized with mbox-anonymize.pl. It was created by sending test
> messages with mutt 1.7.2 through Dovecot/Postfix/Amavis.
>
>
>
> **** Method 1, with IDLE:
>
> Setup a local account, MY-USER / MY-PASSWORD (replace below).
>
>> mkdir Mail
>> cp error-box Mail/error1
>> nc -v localhost 143
> Paste the following 3 lines in a go:
> a0000 LOGIN "MY-USER" "MY-PASSWORD"
> a0010 SELECT "error1"
> a0020 IDLE
>
> then wait a second.. then paste the following 3 in a go:
> DONE
> a0030 UID STORE 1:3 +FLAGS (\Del...
2015 Jun 17
2
Re: [PATCH v4 2/3] do_btrfs_subvolume_list: fix a bad return value
On Wednesday 17 June 2015 16:19:32 Chen Hanxiao wrote:
> don't return a value which is to be freed.
>
> v4: use strndup
> v3: v3: fix test case failure
> Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
> ---
> daemon/btrfs.c | 26 +++++++++++++++++---------
> 1 file changed, 17 insertions(+), 9 deletions(-)
>
> diff --git a/daemon/btrfs.c
2020 Apr 09
0
[PATCH nbdkit v2 3/3] tmpdisk: Implement this plugin using fileops.
...uot;);
- goto error;
+ goto error0;
}
if (mkdtemp (dir) == NULL) {
nbdkit_error ("%s: %m", dir);
- goto error;
+ goto error0;
}
if (asprintf (&disk, "%s/disk", dir) == -1) {
nbdkit_error ("asprintf: %m");
- goto error;
+ goto error1;
}
/* Now run the mkfs command. */
if (run_command (disk) == -1)
- goto error;
+ goto error2;
/* The external command must have created the disk, and then we must
* find the true size.
@@ -325,29 +273,14 @@ tmpdisk_open (int readonly)
flags = O_RDONLY | O_CLOEXEC;...
2015 Jun 10
2
[LLVMdev] Self-compiling clang on Windows
I'm trying to get clang 3.6.1 to compile itself on Windows, using this
command line:
msbuild /p:Configuration=Release /p:CLToolExe=clang-cl.exe
/p:CLToolPath=c:\llvm\build\Release\bin\ /p:TrackFileAccess=false
/p:Platform="x64" /fileLogger ALL_BUILD.vcxproj
It barfed on an occurrence of __try but that was only in a test file so I
commented it out and retried. Now it's getting