search for: _1_

Displaying 10 results from an estimated 10 matches for "_1_".

Did you mean: 1_
2011 Dec 07
4
bug in rank(), order(), is.unsorted() on character vector
Hi, This looks OK: > x <- c("_1_", "1_9", "2_9") > rank(x) [1] 1 2 3 But this does not: > xa <- paste(x, "a", sep="") > xa [1] "_1_a" "1_9a" "2_9a" > rank(xa) [1] 2 1 3 Cheers, H. > sessionInfo() R version 2.14.0 (2011-10-31) Plat...
2002 Nov 10
2
[LLVMdev] Find mallocs from a DSNode
Chris Lattner wrote: > > Is there some efficient way to find the malloc instructions which point > > to the memory represented by a DSNode? Right now the only way I see is > > by iterating through the value map in the DSGraph object and finding > > every value that points to my DSNode. > > You're right, you have to iterate over the program, looking to see what
2009 Jul 09
0
Sampling a dataframe based on the length of a subset of observations within
...vent = 0 as event = 1 for each unique id. I can reshape or tapply my.df to group id and determine what sample size I need. my.df.cast= library(reshape) my.df.melt<-melt(my.df, id="id") my.df.cast<-cast(my.df.melt, id~value, length, fill=0) my.df.cast Event _id_ _0_ _1_ A 2 *1* B 1 *1* C 3 *2* Given the above dataframe I need to randomly select (sample) from my.df *one* observation from my.df[my.df$id==A & my.df$event==0], *one* from my.df[my.df$id==B & my.df$event==0], and* two* from my.df[my.df$id==C & my.df$event==0] and...
2002 Nov 10
0
[LLVMdev] Find mallocs from a DSNode
...objects dynamically, and we can obviously only represent a finite number of them. Looping through the program to see how many scalars are pointing to the same node seems like a reasonable way to get the information you need, but remember you also have this case: for (...) X = malloc ... where _1_ call site can create an unbounded number of objects, all of which may be potentially merged together... -Chris -- http://llvm.cs.uiuc.edu/ http://www.nondot.org/~sabre/Projects/
2008 Jan 25
1
Need sample configuration files for sipura/linksys ata
Hi all, i need sample xml configuration files for linksys pap2, linksys pap-2t, sipura 2100, sipura 2102, 1001, 3000 and 3102. All of these are linksys/sipura products. So if anyone has these sample files then plz share. -- Best Regards Rizwan Hisham Software Engineer Axvoice Inc. www.axvoice.com -------------- next part -------------- An HTML attachment was scrubbed... URL:
2003 Jun 18
3
ext3 2.4.21 htree tests
Hi, Just thought I'd share some test results of mine in case anyone is interested. Basically the tests are siumulating what our product does with files - although the tests do it a lot quicker (not as many files though). The test is to create 1 million files (each containing the text of the file number) spread over a number of directories. The files are then removed in the same manner as
2003 Apr 20
1
Macros not working as expected with extension "h" in some circumstances
I have a question on how to handle the "h" routines. I have noticed that if the call is hung up by the side that originated the call, the "h" routine is not extendable via a macro, or at least I have been unable to do it. My tests have included only SIP->SIP calls. If the originating side hangs up first: The macro is called from "exten =>
1997 Feb 05
0
bliss version 0.4.0
...1]#20R8W%"W"?%4NU4&C!5%8GJ5+CZ''^P4YXAZ@*PZ?^ ZCAR98"6L=\?+P7"VW^&RH\I"615Q$*J&4TX0HK5XH5E8Z2V=Z\$ZN=)DM^''% Z*^MLRJMN)@3H;UN78>\E%2>+"3`=6(/FAH*S!QYC6ZGCB6]WA%(J#Q:VS0NM Z!@0K2(HC-:OVK8@S$IVCPCHA!*Y&P@EGXQH@%]=!_R>:^(OY0LX78QC=%_1_ Z(NB7_%K"-$1WL2RHW:=>UH[W.PXP,X/M3&9P6\HY/'':0)P9&N6))@7''''N_,( Z/UH7D]V>%*30V2MZ<GS*!::?VG&G@MQP#/<9]4,Z5;AG:SSCN.S$4\H0J-BS Z_0/@`SKFM.F]4.,M(Q<I8OZP[DONY5P/2:7V6NHM$:FZ`+_AO!G>O;(Y<R7! ZS@MO(+NHD''Y^W8E-(V)>FJ_Z=:H@_#ZV2VG...
2013 Jul 18
105
[Bug 67051] New: No nouveau HDMI sound on NVIDIA GT430
https://bugs.freedesktop.org/show_bug.cgi?id=67051 Priority: medium Bug ID: 67051 Assignee: nouveau at lists.freedesktop.org Summary: No nouveau HDMI sound on NVIDIA GT430 Severity: normal Classification: Unclassified OS: Linux (All) Reporter: alupu01 at gmail.com Hardware: x86 (IA32) Status:
2009 Jul 09
2
How to Populate List
...vent = 0 as event = 1 for each unique id. I can reshape or tapply my.df to group id and determine what sample size I need.  my.df.cast= library(reshape) my.df.melt<-melt(my.df, id="id") my.df.cast<-cast(my.df.melt, id~value, length, fill=0) my.df.cast        Event _id_      _0_   _1_ A     2     *1* B     1     *1* C     3     *2* Given the above dataframe I need to randomly select (sample) from my.df *one* observation from my.df[my.df$id==A & my.df$event==0],  *one* from my.df[my.df$id==B & my.df$event==0], and* two* from my.df[my.df$id==C & my.df$event==0] and...