search for: tsts

Displaying 15 results from an estimated 15 matches for "tsts".

Did you mean: tss
2013 Nov 29
0
rsync dir-merge filter rule leaking outside its directory
...find any indication that this has been noted in the bug reports or the update to 3.1.0. The following reproduced the issue with version 3.0.9 (I don't have easy access to version 3.1.0, I am doing this on a 'debian wheezy' system.) <pre> # Prepare test source directories: mkdir tsts; mkdir tsts/a; mkdir tsts/a/b; touch tsts/a/b/z mkdir tsts/s; touch tsts/s/z; echo "- *" > tsts/a/_filter_ # Prepare test target directory: mkdir tstt # Dry-run rsyncs: rsync -n -ivv -r --filter='dir-merge _filter_' --delete-after -R \ tsts/./a/b tsts/./s tstt # This '...
2010 Apr 14
4
Error: could not find function "tsts" tradesys package
Hi, I am pretty new to R and would like to follow the code in the paper below, tradesys package. but I am stuck at the 2nd page where x<-tsts(spx) is written. Could anyopne help me why I am getting an Error :"could not find function "tsts" ". I guess I need function call "tsts". where can I find that function ? I installed tradesys, zoo, RUnit packages but I don't know why it gives me error. Thanks http...
2013 May 02
4
[LLVMdev] int to StringRed conversion
Hello everyone, I have an integer and I want to convert it to StringRef in order to set metadata. setMetadata->(StringRef, MDNode*); It is there a native LLVM way to do it? 1. In the llvm::APSInt Class is toString() method, which seems it is not for this purpose 2. itoa and string are not part of LLVM 3. stringstream is not part of LLVM 4. to_string is not part of LLVM 5. any casting method?
2013 May 02
2
[LLVMdev] int to StringRed conversion
...p:147: unsigned int >>> llvm::LLVMContext::getMDKindID(llvm::StringRef) const: Assertion >>> `isValidName(Name) && "Invalid MDNode name"' failed. >>> >>> This is due because when I setMetadata() it failes. >>> >>> StringRef tsts = llvm::Twine(srsr).str(); >>> .... >>> LLVMContext& C = is->getContext(); >>> MDNode* N = MDNode::get(C, MDString::get(C, "path")); >>> is->setMetadata(tsts, N); >>> >>> >>> If I put >>> is->setMetadata(...
2011 Feb 25
1
speed up process
...;alsen")),] mydata3 <- mydata1[!(mydata1$species %in% c("thgel","alsen","poabe")),] mydata_list <- list(mydata1=mydata1, mydata2=mydata2, mydata3=mydata3) #function for regression library(WRS) foo_reg <- function(dat, xvar, yvar, mycol, pos, name.dat){ tsts <- tstsreg(dat[[xvar]], dat[[yvar]]) tsts_inter <- signif(tsts$coef[1], digits=3) tsts_slope <- signif(tsts$coef[2], digits=3) abline(tsts$coef, lty=1, col=mycol) legend(x=pos, legend=c(paste("TSTS ",name.dat,": Y=",tsts_inter,"+",tsts_slope,"X&q...
2013 May 02
0
[LLVMdev] int to StringRed conversion
...> opt: LLVMContext.cpp:147: unsigned int >> llvm::LLVMContext::getMDKindID(llvm::StringRef) const: Assertion >> `isValidName(Name) && "Invalid MDNode name"' failed. >> >> This is due because when I setMetadata() it failes. >> >> StringRef tsts = llvm::Twine(srsr).str(); >> .... >> LLVMContext& C = is->getContext(); >> MDNode* N = MDNode::get(C, MDString::get(C, "path")); >> is->setMetadata(tsts, N); >> >> >> If I put >> is->setMetadata("marked", N);, it goes...
2013 May 02
0
[LLVMdev] int to StringRed conversion
...>>> llvm::LLVMContext::getMDKindID(llvm::StringRef) const: Assertion >>>> `isValidName(Name) && "Invalid MDNode name"' failed. >>>> >>>> This is due because when I setMetadata() it failes. >>>> >>>> StringRef tsts = llvm::Twine(srsr).str(); >>>> .... >>>> LLVMContext& C = is->getContext(); >>>> MDNode* N = MDNode::get(C, MDString::get(C, "path")); >>>> is->setMetadata(tsts, N); >>>> >>>> >>>> If I put >...
2011 Feb 28
0
Fwd: Re: speed up process
...n% c("thgel","alsen")),] mydata3<- mydata1[!(mydata1$species %in% c("thgel","alsen","poabe")),] mydata_list<- list(mydata1=mydata1, mydata2=mydata2, mydata3=mydata3) library(WRS) foo_reg<- function(dat, xvar, yvar, mycol, pos, name.dat){ tsts<- tstsreg(dat[[xvar]], dat[[yvar]]) tsts_inter<- signif(tsts$coef[1], digits=3) tsts_slope<- signif(tsts$coef[2], digits=3) abline(tsts$coef, lty=1, col=mycol) legend(x=pos, legend=c(paste("TSTS ",name.dat,": Y=",tsts_inter,"+",tsts_slope,"X&quot...
2006 Jul 06
6
Functional tsts
Hi all, I have created projects module in my application using scaffold, and it created me everything, and all the modules are working except the functional test. This is the error 1) Failure: test_create(ProjectsControllerTest) [test/functional/projects_controller_test.rb :55]: Expected response to be a <:redirect>, but was <200> 8 tests, 25 assertions, 1 failures, 0
2013 May 02
0
[LLVMdev] int to StringRed conversion
Hi, I think you may try to use llvm::Twine(int). For example, to convert 30 to string, you can use: Twine(30).str() To convert the string back to integer, you can try the StringRef::getAsInteger(unsigned, APInt &). For example: APInt i; str.getAsInteger(/*radix=*/ 10, /*output=*/ i); Sincerely, Logan On Thu, May 2, 2013 at 9:53 PM, Alexandru Ionut Diaconescu <
2013 May 03
2
[LLVMdev] set of integers to metadata
...ConstantInt::getSigned(Type::getInt64Ty(C),*2*), ConstantInt::getSigned(Type::getInt64Ty(C),*3*) }; but I want to add metadata using the array[] elements with integers. *3.* also, not so appropriate, I tried to convert the concatenated array elements into a StringRef tsts = llvm::Twine(srsr).str();, but I have segfault errors. In addition, this method is not exactly what I need. How should I add all the array elements to metadata one by one, like I am trying to do using values[] ? Thank you much ! -------------- next part -------------- An HTML attachment was scru...
2013 May 03
0
[LLVMdev] set of integers to metadata
...ype::getInt64Ty(C),*2*), > ConstantInt::getSigned(Type::getInt64Ty(C),*3*) > }; > but I want to add metadata using the array[] elements with integers. > > *3.* also, not so appropriate, I tried to convert the concatenated array > elements into a StringRef tsts = llvm::Twine(srsr).str();, but I have > segfault errors. In addition, this method is not exactly what I need. > > How should I add all the array elements to metadata one by one, like I am > trying to do using values[] ? > > Thank you much ! > -- Best regards, Alexandru Ion...
2010 May 17
2
dovecot2beta5 lmtp
Hello, recently I inspected the sourcecode of the lmtp server. I searched for changes that would add return-path header. ( http://www.dovecot.org/list/dovecot/2010-February/046401.html ) But I found, that all mails are spooled via files in /tmp. ( dovecot2/srv/lmtp/commands.c ~line 695 ) has somebody experiences while delivering huge ammount of mail via dovecot2 lmtp service? - is it
2010 Apr 27
0
Icecast Server doesnt work.
...list, so that I will first say hello to everybody. At least you don't ask if everyone is a bot on this mailing-list and come right to the point. Thanks for that. > I been this morning on the IRC and some guy there explained me that if > I want real help I must pay him 60 euros pe hour. tsts, you misrepresent the situation. Or just misunderstood me. Let me give you and the fine concerned audience tonight my view of what happened. You came onto the IRC channel, ignored the topic and just asked a meta question and if everybody is a bot. Topic for #icecast: Current release: 2.3.2 || Pl...
2010 Apr 27
4
Icecast Server doesnt work.
I am very new on this list, so that I will first say hello to everybody. I been this morning on the IRC and some guy there explained me that if I want real help I must pay him 60 euros pe hour. I hope you dont charge me 60 euros for readiung this email and giving a hint. I have tryed to install icecast2 and ices2 on my dedicated server and followed allthe steps described on your site. in the end