search for: stest

Displaying 20 results from an estimated 22 matches for "stest".

Did you mean: test
2003 Feb 06
1
Call C routine problem
When I call C function from Splus, I often meet this problem: "Problem: Couldn't find a function definition for "Stest" " My c function is saved as 'test.c' (the function is also named as 'test' My splus function is saved as 'Stest', such as Stest <- function(d,f) { .C("test", as.integer(d), as.single(f)) } Assume my files (test.c and Stest) have been stored in the...
2019 Feb 07
2
lib-master test failure i686
...-cache test-event-stats; do \ ????????? if !? ./$bin; then exit 1; fi; \ ??????? done 0 / 0 tests failed no merging parent is NULL ............................................ : ok test-event-stats.c:365: Assert failed: compare_test_stats_to( "EVENT??? %lu???? 1?????? 0?????? 0" " stest-event-stats.c???? %d" "?? l0????? 0?????? ctest2\n", id, l) no merging parent sent to stats ...................................... : FAILED test-event-stats.c:394: Assert failed: compare_test_stats_to( "BEGIN??? %lu???? 0?????? 1?????? 0 0" "??? stest-event-stats.c?...
2019 Feb 08
2
lib-master test failure i686
...g parent is NULL ............................................ </div> <div> : ok </div> <div> test-event-stats.c:365: Assert failed: compare_test_stats_to( </div> <div> "EVENT %lu 1 0 0" " stest-event-stats.c %d" </div> <div> " l0 0 ctest2\n", id, l) </div> <div> no merging parent sent to stats ...................................... </div> <div> : FAILED </div> <div>...
2011 Feb 10
2
Rioja package, creating transfer function, WA, "Error in FUN"
...uot; " 5" "94.14427" "3.697213" " 48.56375" 5 "N1_5" "30" "90.04269" "3.745020" "108.57278" .... 90 "GAL_15" "70" "94.07849" "3.777932" " 66.77673" > STEST=odbcConnectExcel(file.choose()) > sqlTables(STEST) (STEST is the > species abundance file) > Spe=sqlFetch(STEST, "Sheet8") > odbcClose(STEST) > Spe (The species data contains the abundance of 32 species over 90 sites, set out like this)...
2019 Feb 08
0
lib-master test failure i686
...??????? if !? ./$bin; then exit 1; fi; \ > ??????? done > 0 / 0 tests failed > no merging parent is NULL ............................................ > : ok > test-event-stats.c:365: Assert failed: compare_test_stats_to( > "EVENT??? %lu???? 1?????? 0?????? 0" "??? stest-event-stats.c???? %d" > "?? l0????? 0 ctest2\n", id, l) > no merging parent sent to stats ...................................... > : FAILED > test-event-stats.c:394: Assert failed: compare_test_stats_to( > "BEGIN??? %lu???? 0?????? 1 0?????? 0" "??? s...
2012 Jun 19
1
ANOVA help
...000       val       val     val      val     val The result is from the same organism in four different experiments.  Also, there are 4 replicates of each experiment. My aim was to find genes that are statistically significant across the four experiments. I carried out one-way anova as follows: sTest<-read.table("myData.dat",header = T, row.names = 1) group <- gl(4,4,16, label=c("Glucose","Citrate", "Tide","Dawn")) gm1 <- (x~group, data=sTest) I received error messages that "x" is unknown, and did not know how to go further...
2011 Mar 09
2
Anomaly with unique and match
...known-linux-gnu (64-bit) # Lines of code from survival/tests/singtest.R > library(survival) Loading required package: splines > test1 <- data.frame(time= c(4, 3,1,1,2,2,3), + status=c(1,NA,1,0,1,1,0), + x= c(0, 2,1,1,1,0,0)) > > temp <- rep(0:3, rep(7,4)) > > stest <- data.frame(start = 10*temp, + stop = 10*temp + test1$time, + status = rep(test1$status,4), + x = c(test1$x+ 1:7, rep(test1$x,3)), + epoch = rep(1:4, rep(7,4))) > > fit1 <- coxph(Surv(start, stop, status) ~ x * factor(epoch), stest) ## New lines > temp1 &...
2015 Mar 07
2
[LLVMdev] cannot understand global c++API code
Hi all, translating the following c code to llvm c++Api code, I can not understand the result. Perhaps someone could explain it to me. c code --------------------------------- struct stest { int age; float weight; } foo={44,67.2}; int main() { foo.weight=68.2; ... ---------------------------------------- API code // this is clear ConstantFP* const_float_102 = ConstantFP::get(mod->getContext(), APFloat(6.820000e+01f)); ConstantInt* const_int32_9...
2018 Feb 21
2
Fwd: Migrating server
Hi Andrew, I've setup a new Samba 4 box (sam4dc) on Ubuntu 14.04 with Samba 4.3.11. I have the following Just to clarify, sam3DC is the current DC with samba 3.6.3 smb.conf [global] workgroup = STEST netbios name = Sam4DC password server = Sam3DC (This is the current DC) security = user resolv.conf nameserver = 192.168.10.1 (IP of Sam3DC) I can ping the sam3dc from the sam4dc box using fqdn. When I try to join sam4dc into stest domain I get: net rpc join -U dadmin cannot join as...
2000 Sep 11
0
SAMPLS R implementation : pbm with algorithm application
...test and ytestsampls the variables for 1 sample x2<-scale(xe,scale=FALSE) y2<-scale(ye,scale=FALSE) lv<-1 xtest<-as.matrix(x2[1,]) t<-matrix(0,nrow(ye),1) c<-xe%*%t(xe) yh<-y2 ytestsampls<-0 ctest<-xe%*%xtest for (h in 1:lv) { s<-c%*%yh s<-scale(s,scale=FALSE) stest<-t(ctest)%*%yh ##what follows works only for h=1 and 2, i know if (h>1) { s<-s- ( as.numeric( (t(t)%*%s) / (t(t)%*%t) ) *t ) stest<-stest-( as.numeric( (t(t)%*%s) / (t(t)%*%t) ) *ttest ) } ttest<-stest t<-s t2<-t(t)%*%t beta<-t(t)%*%yh beta<-as.numeric(beta/t...
2015 Mar 16
4
[LLVMdev] size of const_ptr for array index
...t_ptr_183_indices; const_ptr_183_indices.push_back(const_int32_172); const_ptr_183_indices.push_back(const_int32_184); const_ptr_183_indices.push_back(const_int64_175); Constant* const_ptr_183 = ConstantExpr::getGetElementPtr(gvar_struct_foo, const_ptr_183_indices); the struct could be struct stest { double age; double darray[3]; } The indices for accessing 'age' would be 0 (32bit) 0 (32bit). For an element of the darray, one however needs 0 (32bit) 1 (32bit) 0-2 (64bit) The same for indices of vectors. The question: Can I at runtime determine (how?) which size I have...
2008 Jul 10
2
[PATCH] tripplite driver updates
...uot;, x_value, sizeof x_value) < 1) + sleep(1); dstate_setinfo("ups.mfr", "%s", "Tripp Lite"); @@ -365,57 +352,111 @@ void upsdrv_shutdown(void) void upsdrv_updateinfo(void) { char buf[256]; - int bp; - float bv; + int bp, volt, temp, load, vmax, vmin, stest, len; + int bcond, lstate, tstate, mode; + float bv, freq; + + len = send_cmd(":D\r", buf, sizeof buf); + if (len != 21) { + ser_comm_fail("Data command failed: [%d] bytes != 21 bytes.", len); + dstate_datastale(); + return; + } + + volt = hex2d(buf + 2, 2); + temp = (int)(h...
2010 Jun 23
2
possibility to determine whether a script is "sourced"?
Dear R community, I am running some rather large scripts either by executing single blocks of them separately or by executing them at once via source('script.R') Now there is a lot of code in those scripts that I only want to run when I run them manually, so I wonder whether there is any way to automatically find out whether the script is run manually stepwise or whether it is run via
2015 Mar 10
3
[LLVMdev] Chatty C++API code generation
Hi all, when I have c code like --- c code ------------- struct stest { /* deklariert den Strukturtyp person */ int age; float weight; } foo={44,67.2}; /* deklariert Variable des Typs person */ int main() { callAFunction(foo.weight); ------------------------ The generated c++API code to me seems to be too chatty in the sense tha...
2018 Feb 21
0
Fwd: Migrating server
...2018-02-21 at 15:06 +1000, Rob Thoman wrote: > Hi Andrew, > > I've setup a new Samba 4 box (sam4dc) on Ubuntu 14.04 with Samba 4.3.11. I have the following > > Just to clarify, sam3DC is the current DC with samba 3.6.3 > > smb.conf > > [global] > workgroup = STEST > netbios name = Sam4DC > password server = Sam3DC (This is the current DC) > security = user > > resolv.conf > nameserver = 192.168.10.1 (IP of Sam3DC) > > I can ping the sam3dc from the sam4dc box using fqdn. > > When I try to join sam4dc into stest d...
2006 Jul 13
2
Q: mount -t smbfs: "cli_negprot: SMB signing is mandatory and we have disabled it."
Hi, I was trying smbmount (SuSE's samba-client-3.0.20b-3.4). The mount command replied: cli_negprot: SMB signing is mandatory and we have disabled it. 9451: protocol negotiation failed SMB connection failed No I'd suggest to change the message at least: It's unclear who "we" is: The Samba Team, the client, or the server The server is a "Windows 2003 server",
2004 Jan 02
3
* Stresstool Help required
...s). * records the voicemail (i am sending the contents of a .wav file to asterisk) . Here is the screen capture: *CLI> -- Registered SIP 'gopi' at 192.168.68.15 port 5061 expires 120 == Setting SIPDOMAIN to : 192.168.68.6 -- Executing Dial("SIP/gopi-bddf", "SIP/stest|10|tr") in new stack == Everyone is busy at this time -- Executing Ringing("SIP/gopi-bddf", "") in new stack -- Executing Answer("SIP/gopi-bddf", "") in new stack -- Executing VoiceMail2("SIP/gopi-bddf", "u7777") in new...
2018 Feb 21
2
Fwd: Migrating server
...gt; Hi Andrew, > > > > I've setup a new Samba 4 box (sam4dc) on Ubuntu 14.04 with Samba 4.3.11. > I have the following > > > > Just to clarify, sam3DC is the current DC with samba 3.6.3 > > > > smb.conf > > > > [global] > > workgroup = STEST > > netbios name = Sam4DC > > password server = Sam3DC (This is the current DC) > > security = user > > > > resolv.conf > > nameserver = 192.168.10.1 (IP of Sam3DC) > > > > I can ping the sam3dc from the sam4dc box using fqdn. > > &g...
2018 Feb 20
3
Fwd: Migrating server
On Tue, 2018-02-20 at 18:11 +1000, Rob Thoman via samba wrote: > Hi Guys, > Have not had any feedback on this. I found the following article but not > sure if it is valid > > Here is what we are planning, high level > Phase1: > > - Add a new Samba 4 server (VM in a new hardware). Join it to the existing > domain > - Promote this server as DC in the Samba 3
2006 Jun 01
4
about WildQuery !
when i use WildQuery ,i was so slowly!! the query string like this : ''name|title:*test*'' i search field ''name'' and ''title'' what include string ''test'' it worked ,but too slow but when i use query string like this : ''name|title:test*'' or ''name|title:*test'' it worked fast my english is