search for: greater

Displaying 20 results from an estimated 4919 matches for "greater".

2016 Oct 10
4
Pacaging/build issues with AIX and vac (dovecot-2.2.25)
..._challenge_test* const" and "char*" is not allowed. "test-http-auth.c", line 28.33: 1506-022 (S) "data" is not a member of "const struct http_auth_challenges_test". "test-http-auth.c", line 28.41: 1506-026 (S) Number of initializers cannot be greater than the number of aggregate members. "test-http-auth.c", line 29.33: 1506-022 (S) "params" is not a member of "const struct http_auth_challenges_test". "test-http-auth.c", line 30.43: 1506-026 (S) Number of initializers cannot be greater than the number of...
2016 Oct 10
4
Pacaging/build issues with AIX and vac (dovecot-2.2.25)
On 09-Oct-16 22:51, Aki Tuomi wrote: >> >> Michael > > Does the compiler support C99 standard? > > Aki Yes. Plus extended features. Key difference with GCC, e.g., are the flags to the compiler, but autotools general manages those well. Key difference with platform (well, of of) is that it is not GNU, and how shared libraries are built. Again, libtool in particular,
2007 Apr 03
11
monit vs mongrel cluster
Is there anything mongrel cluster gives you that monit doesn''t? I''ll be using monit to monitor a number of other services anyways, so it seems logical to just use it for everything including mongrel. Chris
2011 Nov 10
3
counting columns that match criteria
Hi, I am a little new in R but I'm finding it extremely useful :) Here's my tiny question: I've got a table with a lot of columns. What I am interested now is to evaluate how many of 4 columns have a value greater than 1. I think it can be done with subset() but it will take a very long condition and become unfeasible if I want to compare more than 4 columns. I put here a small example Col1 Col2 Col3 Col 4 1 1 1 1 <-0 columns greater than 1 2 1 1 1...
2007 Mar 26
4
Monit + Mongrel woes
...roduction -p 8000 -a 127.0.0.1 -c /home/admin/webapps/gohuman/current -P log/mongrel.8000.pid''" stop program = "/usr/bin/su admin -c ''/usr/local/bin/mongrel_rails stop -c /home/admin/webapps/gohuman/current -P log/mongrel.8000.pid''" if totalmem is greater than 80.0 MB for 5 cycles then alert # eating up memory? if cpu is greater than 50% for 2 cycles then alert # send an email to admin if cpu is greater than 80% for 3 cycles then restart # hung process? if loadavg(5min) greater than 10 for 8 cycles then restart # bad, bad, bad if...
2016 Oct 09
6
Pacaging/build issues with AIX and vac (dovecot-2.2.25)
...struct http_auth_challenge_test* const" and "char*" "test-http-auth.c", line 28.33: 1506-022 (S) "data" is not a member of "const struct http_auth_challenges_test". "test-http-auth.c", line 28.41: 1506-026 (S) Number of initializers cannot be greater than the number of aggregate members. "test-http-auth.c", line 29.33: 1506-022 (S) "params" is not a member of "const struct http_auth_challenges_test". "test-http-auth.c", line 30.43: 1506-026 (S) Number of initializers cannot be greater than the number of...
2007 May 18
3
{10,20,30}>={25,30,15}
Hi There, Using t.test to test hypothesis about which one is greater, A or B? where A={10,20,30},B={25,30,15}. My question is which of the following conclusions is right? #################hypothesis testing 1 h0: A greater than or equal to B h1: A less than B below is splus code A=c(10,20,30) B=c(25,30,15) t.test(c(10,20,30),c(25,30,15),alternative="less&qu...
2012 Jul 12
1
permutation test on paired samples
...run a permutation test on paired samples. First I tried the package "exactRankTests": require("exactRankTests") x <- c(1.83,0.50,1.62,2.48,1.68,1.88,1.55,3.06,1.30) y <- c(0.878,0.647,0.598,2.05,1.06,1.29,1.06,3.14,1.29) wilcox.test(x,y,paired = TRUE,alternative = "greater") perm.test(y,x,paired = TRUE,exact = TRUE,alternative = "greater") Then I wanted to use the package 'coin': require("coin") x <- c(1.83,0.50,1.62,2.48,1.68,1.88,1.55,3.06,1.30) y <- c(0.878,0.647,0.598,2.05,1.06,1.29,1.06,3.14,1.29) xydat <- data.frame(y...
2016 Jul 01
3
Path condition propagation
Hi all, Consider this C code: #include <stdbool.h> bool func(int n1, int n2, bool b) { bool greater = n1 > n2; if (greater && b) { if (n1 == n2) { return false; // unreachable } } return true; } The line marked unreachable cannot be reached, however currently LLVM does not optimize it out. I believe this is because LLVM does not recognize that m...
2016 Jul 01
3
Path condition propagation
...> > > On Thu, Jun 30, 2016 at 6:09 PM, Carlos Liam via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hi all, >> >> Consider this C code: >> >> #include <stdbool.h> >> >> bool func(int n1, int n2, bool b) { >> bool greater = n1 > n2; >> if (greater && b) { >> if (n1 == n2) { >> return false; // unreachable >> } >> } >> return true; >> } >> >> The line marked unreachable cannot be reached, however currently LLVM &g...
2006 Dec 15
2
ks.test "greater" and "less"
Hello r-group I have a question to the ks.test. I would expect different values for less and greater between data1 and data2. Does anybody could explain my point of misunderstanding the function? data1<-c(8,12,43,70) data2<- c(70,43,12,8) ks.test(data1,"pnorm") ks.test(data1,"pnorm",alternative ="less") #expected < 0.001 ks.test(data1,"pnorm"...
2010 Feb 12
2
[LLVMdev] [PATCH] Fix off-by-one errors in the doxygen documentation
...overlapping between the classes. enum Predicate { - // Opcode U L G E Intuitive operation - FCMP_FALSE = 0, /// 0 0 0 0 Always false (always folded) - FCMP_OEQ = 1, /// 0 0 0 1 True if ordered and equal - FCMP_OGT = 2, /// 0 0 1 0 True if ordered and greater than - FCMP_OGE = 3, /// 0 0 1 1 True if ordered and greater than or equal - FCMP_OLT = 4, /// 0 1 0 0 True if ordered and less than - FCMP_OLE = 5, /// 0 1 0 1 True if ordered and less than or equal - FCMP_ONE = 6, /// 0 1 1 0 True if ordered and operands ar...
2016 Jul 01
0
Path condition propagation
On Thu, Jun 30, 2016 at 6:09 PM, Carlos Liam via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi all, > > Consider this C code: > > #include <stdbool.h> > > bool func(int n1, int n2, bool b) { > bool greater = n1 > n2; > if (greater && b) { > if (n1 == n2) { > return false; // unreachable > } > } > return true; > } > > The line marked unreachable cannot be reached, however currently LLVM does > not optimize it out ????? Y...
2010 Jun 25
5
Yum archive for PHP greater than 5.2.1 for CentOS 5.4?
Whether I like it or not I need to get a version of PHP that is greater than 5.2.1 as the latest SugarCRM version require this and as I am a module developer I need to have one of the later versions of PHP on my machines. Does anyone know of a reliable and good archive for PHP that provides higher versions than the ones supplied by the upstream provider? Thanks Jobs...
2011 Sep 05
1
p values greater than 1 from lme4
...y(rInLn)$coefficients, "rInLnPlots.csv") write.table(summary(rInLn)$r.squared, append=T, "rInLnPlots.csv") write.table(summary(rInLn)$df, append=T, "rInLnPlots.csv") The script seems to be working for most of the species, but for some it is returning a p value of greater than 1 (e.g. 20). I thought this might be for the few cases where the independent variable remained constant, but found other species where this was not the case and the p value was still much greater than 1. Any help would be appreciated -RTS -- View this message in context: http://r.789695.n4.n...
2008 Sep 21
1
How to plot "greater than" symbol on the x-axis
Hello everyone, I want to plot a "greater than" symbol (the "_" under ">") on the x-axis in the labels. Is it possible to do it? Thanks. Bingshan [[alternative HTML version deleted]]
2012 Feb 28
1
issue with greater than operator in rhtml
hi all, i have one issue with the greater than operator ,how should i use greater than operator ? i have condition <%if @c_page > 5%> it giving error ''undefined method `>'' for nil:NilClass'' thanks in advanced Regards Sachin -- -- You received this message because you are subscribed to the Googl...
2012 Feb 08
1
Fitting polynomial (power greater than 2)
Hey all, first time poster here. I'm new to R and working on my first real programming and forecasting asignment. I'm using unemployment data from 1948-2012. I successfully completed part a and the linear fit for part b, but i am really struggling fitting a polynomial with a power greater than 2 to my forecast. I'll upload my R code at the bottom. Any help is very much appreciated! Thank You! (a) Produce a time-series plot of your data. (b) Fit linear, polynomial (use a power greater than 2), and R?s best fit models to your series. rm(list=ls(all=TRUE)) z=read.table("lon...
2003 Aug 30
3
fisher.test() gives wrong confidence interval (PR#4019)
...fact that both upper bounds of the two 95% confidence intervals are Inf, I would have expected that the two lower bounds be equal, but they aren't. x <- matrix(c(9,4,0,2),2,2) x # [,1] [,2] #[1,] 9 0 #[2,] 4 2 rbind("two.sided.95CI"=fisher.test(x)$conf.int, "greater.95CI"=fisher.test(x,alt="greater")$conf.int) # [,1] [,2] #two.sided.95CI 0.2985103 Inf #greater.95CI 0.4625314 Inf Using the noncentral hypergeometric distribution, we can calculate the probability mass of each possible table with same marginals as x. Ref.: A...
2016 Jul 03
2
Path condition propagation
...t;>> llvm-dev at lists.llvm.org> wrote: >>> >>>> Hi all, >>>> >>>> Consider this C code: >>>> >>>> #include <stdbool.h> >>>> >>>> bool func(int n1, int n2, bool b) { >>>> bool greater = n1 > n2; >>>> if (greater && b) { >>>> if (n1 == n2) { >>>> return false; // unreachable >>>> } >>>> } >>>> return true; >>>> } >>>> >>>>...