search for: ap1

Displaying 20 results from an estimated 23 matches for "ap1".

Did you mean: ap
2017 Nov 01
2
R-3.4.2: make check stops at line 698 of tests/reg-tests-1d.R
...opensuse leap 42.3, make check failed. Until > > R-3.4.1 I never had a problem with these tests. No, the programm stops > > at the following line of tests/reg-tests-1d.R: > > > >> ## available.packages() (not) caching in case of errors > >> tools::assertWarning(ap1 <- available.packages(repos = "http://foo.bar")) > >> tools::assertWarning(ap2 <- available.packages(repos = "http://foo.bar")) > > error in assertCondition(expr, "warning", > > .exprString = d.expr) : Got simpleError evaluating of...
2017 Nov 01
2
R-3.4.2: make check stops at line 698 of tests/reg-tests-1d.R
Hi all, after compiling R-3.4.2 on opensuse leap 42.3, make check failed. Until R-3.4.1 I never had a problem with these tests. No, the programm stops at the following line of tests/reg-tests-1d.R: > ## available.packages() (not) caching in case of errors > tools::assertWarning(ap1 <- available.packages(repos = "http://foo.bar")) > tools::assertWarning(ap2 <- available.packages(repos = "http://foo.bar")) error in assertCondition(expr, "warning", .exprString = d.expr) : Got simpleError evaluating of ap2 <- available.package...
2017 Nov 01
0
R-3.4.2: make check stops at line 698 of tests/reg-tests-1d.R
...42.3, make check failed. Until >>> R-3.4.1 I never had a problem with these tests. No, the programm stops >>> at the following line of tests/reg-tests-1d.R: >>> >>>> ## available.packages() (not) caching in case of errors >>>> tools::assertWarning(ap1 <- available.packages(repos = "http://foo.bar")) >>>> tools::assertWarning(ap2 <- available.packages(repos = "http://foo.bar")) >>> error in assertCondition(expr, "warning", >>> .exprString = d.expr) : Got simpleError eva...
2004 Oct 22
1
[PATCH] off-by-one in asprintf/vasprintf
...ating '\0'. diff -u klibc-0.188/klibc/asprintf.c udev/klibc-0.188/klibc/asprintf.c --- klibc-0.188/klibc/asprintf.c 2004-10-22 12:07:22.678906352 -0600 +++ udev/klibc-0.188/klibc/asprintf.c 2004-10-22 12:08:03.859645928 -0600 @@ -16,10 +16,10 @@ va_start(ap, format); va_copy(ap1, ap); - bytes = vsnprintf(NULL, 0, format, ap1); + bytes = vsnprintf(NULL, 0, format, ap1) + 1; va_end(ap1); - *bufp = p = malloc(bytes+1); + *bufp = p = malloc(bytes); if ( !p ) return -1; diff -u klibc-0.188/klibc/vasprintf.c udev/klibc-0.188/klibc/vasprintf.c --- klibc-0.188/kl...
2017 Nov 01
0
R-3.4.2: make check stops at line 698 of tests/reg-tests-1d.R
...fter compiling R-3.4.2 on opensuse leap 42.3, make check failed. Until > R-3.4.1 I never had a problem with these tests. No, the programm stops > at the following line of tests/reg-tests-1d.R: > >> ## available.packages() (not) caching in case of errors >> tools::assertWarning(ap1 <- available.packages(repos = "http://foo.bar")) >> tools::assertWarning(ap2 <- available.packages(repos = "http://foo.bar")) > error in assertCondition(expr, "warning", > .exprString = d.expr) : Got simpleError evaluating of ap2 <- >...
2017 Nov 01
2
R-3.4.2: make check stops at line 698 of tests/reg-tests-1d.R
...Until > >>> R-3.4.1 I never had a problem with these tests. No, the programm stops > >>> at the following line of tests/reg-tests-1d.R: > >>> > >>>> ## available.packages() (not) caching in case of errors > >>>> tools::assertWarning(ap1 <- available.packages(repos = "http://foo.bar")) > >>>> tools::assertWarning(ap2 <- available.packages(repos = "http://foo.bar")) > >>> error in assertCondition(expr, "warning", > >>> .exprString = d.expr) : Got...
2004 Jan 22
2
MGCP Problem.
Hi. I'm new in Asterisk with MGCP. I set up a MGCP user agent and start asterisk with the next configuration files. '--------------- extensions.conf ---------------------------------------------------- [general] static=yes writeprotect=yes [globals] ap1 => mgcp/aaln/ap200@64.76.148.186 [macro-apl1] exten => s,1,Dial(${ARG1},30,Ttmr) ;exten => s,2,Voicemail(u${MACRO_EXTEN}) ;exten => s,3,Hangup ;exten => s,102,Voicemail(b${MACRO_EXTEN}) ;exten => s,103,Hangup [SIP] include => ent [ent] exten => 112,1,VoiceMail(b112) exten...
2012 Feb 09
2
nmbd process and winbindd process can't start in multi network interface environement
...is below warning info in log.nmbd and log.winbindd. Please give your suggestions and thx. pekwj42a-> # cat /usr/lib/smb.conf # Samba config file created using SWAT # from UNKNOWN (140.231.210.142) # Date: 2012/02/09 12:45:34 [global] interfaces = eth6 [sap_capps] comment = sap AP1 interface path = /export/capps/AP1 valid users = cn1wj026 read only = No [sap_interface] comment = sap AP1 interface path = /export/capps/AP1/Interface read only = No [sap_edi] comment = sap AP1 edi path = /export/capps/AP1/edi...
2017 Nov 01
0
R-3.4.2: make check stops at line 698 of tests/reg-tests-1d.R
...>>> R-3.4.1 I never had a problem with these tests. No, the programm stops >>>>> at the following line of tests/reg-tests-1d.R: >>>>> >>>>>> ## available.packages() (not) caching in case of errors >>>>>> tools::assertWarning(ap1 <- available.packages(repos = "http://foo.bar")) >>>>>> tools::assertWarning(ap2 <- available.packages(repos = "http://foo.bar")) >>>>> error in assertCondition(expr, "warning", >>>>> .exprString = d.ex...
2016 Feb 01
0
[klibc:master] Make asprintf() a simple wrapper around vasprintf()
...| 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/usr/klibc/asprintf.c b/usr/klibc/asprintf.c index a3f5f00..ce3aa76 100644 --- a/usr/klibc/asprintf.c +++ b/usr/klibc/asprintf.c @@ -8,22 +8,13 @@ int asprintf(char **bufp, const char *format, ...) { - va_list ap, ap1; + va_list ap; int rv; int bytes; char *p; va_start(ap, format); - va_copy(ap1, ap); - - bytes = vsnprintf(NULL, 0, format, ap1) + 1; - va_end(ap1); - - *bufp = p = malloc(bytes); - if (!p) - return -1; - - rv = vsnprintf(p, bytes, format, ap); + rv = vasprintf(bufp, format, ap); va_en...
2017 Nov 01
1
R-3.4.2: make check stops at line 698 of tests/reg-tests-1d.R
...I never had a problem with these tests. No, the programm stops > >>>>> at the following line of tests/reg-tests-1d.R: > >>>>> > >>>>>> ## available.packages() (not) caching in case of errors > >>>>>> tools::assertWarning(ap1 <- available.packages(repos = "http://foo.bar")) > >>>>>> tools::assertWarning(ap2 <- available.packages(repos = "http://foo.bar")) > >>>>> error in assertCondition(expr, "warning", > >>>>> .ex...
2012 Sep 05
5
Puppet smoking crack?
Couple of questions. Firstly, what''s the plugin error about? puppet agent --onetime --test --verbose info: Retrieving plugin err: /File[/var/lib/puppet/lib]: Could not evaluate: Could not retrieve information from source(s) puppet://puppet/plugins info: Caching catalog for mon01.ap1.xxx.com info: Applying configuration version ''1346878830'' err: /Stage[main]/Xxx::Nagios::Server/File[/var/lib/nagios3]: Failed to generate additional resources using ''eval_generate'': Cannot manage files of type fifo notice: Finished catalog run in 3.63 seconds S...
2005 Nov 11
0
building icecast under Windows
...pthreads-win32. It's in the pthreads.# (I've been using pthreads.1) Don't use the Pre-build.# directory, except to link the libraries. Use the pthreads.# as the include directory. move the following from sock.c to os.h #define vsnprintf _vsnprintf #ifndef __MINGW32__ #define va_copy(ap1, ap2) memcpy(&ap1, &ap2, sizeof(va_list)) #endif Should solve the problem with ezstream too ;) Also, I had to add this to os.h too between the #ifdef WIN32: #define inline __inline typedef unsigned int size_t; You could also just change inline to __inline.. The only other problem I had...
1997 Oct 06
0
KSR[T] Advisory #3: updatedb / crontabs
...------ This problem was fixed in Redhat 4.2. S.u.S.E ------- Fixes for S.u.S.E. Linux 5.0: ----------------------------- ftp://ftp.suse.com/pub/suse_update/S.u.S.E.-5.0/a1/aaa_base.rpm md5: 1ea3b7c6760b6e8db98b49897ba47ad1 aaa_base.rpm ftp://ftp.suse.com/pub/suse_update/S.u.S.E.-5.0/ap1/makewhat.rpm md5: e22df292fe878397cbe800ff796c3a0b makewhat.rpm Fixes for S.u.S.E. Linux 4.4.1 (should work for older versions too): -------------------------------------------------------------------- ftp://ftp.suse.com/pub/suse_update/S.u.S.E.-4.4.1/a1/aaa_base.tgz md5: 4c0bff940210b83c...
2010 Sep 18
1
Drawing Heatmap using gplots
...some other way, which make some sense out of data. 3. I have some color issues as the number of genes increases the green and black colors are not as much as prominent as red? Thank you so much for your help in advance. Thank you Khushwant -------------- next part -------------- CAF CAS INF INS AP1 AP3 AGM SAP S04 S52 LEF LES ROF ROS GSE SIF SIS At1g01940 107 111 20 27 40 52 27 8 6 24 40 18 67 85 35 56 118 At1g26940 35 27 30 28 15 41 12 73 6 15 21 11 60 35 6 24 77 At1g53720 34 35 16 52 15 27 24 13 3 12 35 6 43 51 1 21 25 At1g53780 2 6 2 11 6 9 7 0 0 0 6 10 5 19 0 0 0 At1g74070 0 16 18 41 18 2...
2016 Apr 19
0
Indicator Species analysis; trouble with multipatt
Hi Ansely, As Jim points out we really need some sample data to go with the code. Have a look at ?dput which is the best way to supply sample data here or have a look at http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example and/or http://adv-r.had.co.nz/Reproducibility.html for some general suggestions on asking questions here---including discussions of using
2016 Apr 18
3
Indicator Species analysis; trouble with multipatt
Hello, *Error in tx %*% comb : non-conformable arguments* Suggestions greatly appreciated. I am a beginner and this is my first time posting. I would like to get the summary for indicator species analysis, using package indicspecies with multipatt. I am getting errors, I believe, do to my data organization. After reorganizing and reorganizing, nothing has helped. > data<-
2002 Nov 22
0
RIF: Routing problem
...lartc@mailman.ds9a.nl Cc: Oggetto: Re: [LARTC] Routing problem On Wednesday, 20 November 2002, at 18:31:42 +0100, Mauro Cerboni wrote: > I have 3 routers (Linux boxes with Red Hat 8.0 server), with iproute2 and ip_forward activated; they are linked together in this way: > > AP1------Router1---------Router2----------Router3---------AP2 > > The routing tables seem correct. > But the symptoms you describe seem to tell the opposite :-( > Router1 and Router3 can ping each other, > Router1 and Router2 share a network segment, as well as Router2 and Rout...
2011 Sep 03
2
problem in applying function in data subset (with a level) - using plyr or other alternative are also welcome
...perts. I might be missing something obvious. I have been trying to fix this problem for some weeks. Please help. #data ped <- c(rep(1, 4), rep(2, 3), rep(3, 3)) y <- rnorm(10, 8, 2) # variable set 1 M1a <- sample (c(1, 2,3), 10, replace= T) M1b <- sample (c(1, 2,3), 10, replace= T) M1aP1 <- sample (c(1, 2,3), 10, replace= T) M1bP2 <- sample (c(1, 2,3), 10, replace= T) # variable set 2 M2a <- sample (c(1, 2,3), 10, replace= T) M2b <- sample (c(1, 2,3), 10, replace= T) M2aP1 <- sample (c(1, 2,3), 10, replace= T) M2bP2 <- sample (c(1, 2,3), 10, replace= T) # variab...
2005 Dec 19
0
new(er) SEC driver.
..._SEC_H_ #define _SEC_H_ #define SEC_MSG_STARTCHAR '^' #define SEC_POLLCMD 'P' #define SEC_SETCMD 'S' #define SEC_DATAMSG 'D' #define SEC_UPSMSG '*' #define SEC_ACK '1' #define SEC_NAK '0' /* commands */ #define SEC_CMD_AVAILP1 "AP1" /* Part1 of available variables */ #define SEC_CMD_AVAILP2 "AP2" /* Part1 of available variables */ #define SEC_CMD_AUTORESTART "ATR" /* Enable/disable auto restart */ #define SEC_CMD_MFR "MAN" /* UPS Manufacturer */ #define SEC_CMD_MOD "MOD" /*...