search for: patter

Displaying 20 results from an estimated 81 matches for "patter".

Did you mean: matter
2007 Dec 03
3
strsplit on comma, with a trailing comma in input
...am using strsplit to extract the data from this file, and it seems great except in cases with trailing comma characters. The example below illustrates. What I'd like is to get a fourth element in the answer, being an empty string just like the second element. Is there a way I can express my patter (or perhaps specify perl or extended) to get that? > strsplit("a,,b,", ",")[[1]] [1] "a" "" "b" -- View this message in context: http://www.nabble.com/strsplit-on-comma%2C-with-a-trailing-comma-in-input-tf4940023.html#a14141151 Sent from t...
2012 Jul 12
1
How to find frequent sequences.
...equences for example as follows : Independent event sequence 1 : A , B , C , D Independent event sequence 2 : A, C , B Independent event sequence 3 :D, A, B, X,Y, Z Independent event sequence 4 :C,A,A,B Independent event sequence 5 :B,A,D I want to able to find that most common sequence patters as {A, B } = > 3 from lines 1,3,5. Pls note that A,C,B must not be considered because C comes in between and line 5 also must not be considered because order of A,B is reversed. In simple words I am looking for "most frequent independent event sequent" for any length. I tried SPA...
2019 Apr 15
3
Interprocedural DSE for -ftrivial-auto-var-init
...ut it's not visible on benchmarks. * Cross-block + Interprocedural analysis to annotate each function argument with: - can read before write - will always write This annotations gets me 20% stores deleted additional to the current DSE. This is on LLVM codebase with -ftrivial-auto-var-init=patter. As-is it's less than I expected, so I would like to find good benchmark to decide if we should work to make production code from my experiment. So now I am also planing to try to extend that to whole program analysis. I will cleanup my code and upload this during this weak, if anyone wants t...
2005 Jan 07
2
[LLVMdev] Primer with LLVM
...lacks of LLVM, I can convert my own code - which build the Module - into a critical section so I think it is enough; but I need to know if several independent Modules can live in the same address space running at same time (I agree). Would be great if we append into the documentation several "patters" to show how perform with LLVM. It would accelerate the learn curve for beginners like me, avoiding basic errors and mistakes. If I reach a good level with LLVM I can make these. Have you a sample to generate code into memory? To move LLVM into a reentrant library we could move all global s...
2004 Sep 20
5
iax2_read: I should never be called
Skipped content of type multipart/mixed-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 252 bytes Desc: OpenPGP digital signature Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20040920/0629df7b/signature-0001.pgp
2015 Nov 20
2
exclude being ignored
On Wed, Nov 18, 2015 at 07:22:12PM -0500, Kevin Korb wrote: > Note the lack of a space here: --exclude '/tmp'--exclude > > Also, just use / for the source instead of /. > > Also, don't use -z on a local copy. Many thanks for the reply/solution. I've looked at the command 10-12 times and missed the omission of the space. I had been dinking around with it and
2004 Dec 01
1
SPA-3000 and distinctive ring
...el1 caller command from the pdf guide) and if so... b) direct individual distinctive rings to a different Asterisk exten (looks like cfw sel1 dest command to me). ... and if so, does this work reliably enough to be a viable production solution? I presume this means that I can have it ignore other patters I don't want it to pick up at this time (spouse factor) by only specifying certain ring patterns to have a "select" setting. Thanks! -- David Cook
2011 Dec 12
1
Question about fitting seasonal ARIMA in R?
Hi all, I just couldn't find a R function which can fit multiple seasonal patters... i.e. in the following code: *arima(x = data, order = c(p, d, q), seasonal = list(order = c(P, D, Q), period = S), ... *** * there can be only one "period", am I right? What if the data seem to have three different seasonality cycles, 5, 12, 21? Thanks a lot! * [[alternative HTML...
2005 Jan 07
0
[LLVMdev] Primer with LLVM
On Fri, Jan 07, 2005 at 12:04:04PM +0100, Francisco Puentes wrote: > Would be great if we append into the documentation several "patters" > to show how perform with LLVM. It would accelerate the learn curve for > beginners like me, avoiding basic errors and mistakes. If I reach a > good level with LLVM I can make these. I'm not sure if I understand what you mean. Are you looking for an "LLVM programmer'...
2007 Jul 13
3
Macro: s-NOANSWER, _s-.
Hi List; I have this example for Macro and I am not able to understand some line, if any one can help me plz :)- [macro-voicemail] exten => s,1,Dial(${ARG1},20) exten => s,2,Goto(s-${DIALSTATUS},1) exten => s-NOANSWER,1,Voicemail(u${MACRO_EXTEN}) exten => s-NOANSWER,2,Goto(incoming,s,1) exten => s-BUSY,1,Voicemail(b${MACRO_EXTEN}) exten => s-BUSY,2,Goto(incoming,s,1) exten
2005 Jan 08
2
[LLVMdev] Primer with LLVM
> > Would be great if we append into the documentation several "patters" > > to show how perform with LLVM. It would accelerate the learn curve for > > beginners like me, avoiding basic errors and mistakes. If I reach a > > good level with LLVM I can make these. > > I'm not sure if I understand what you mean. Are you looking for an &...
2012 May 29
2
interesting stats pattern
...with dovecot stats service, and graphing the result. My initial results are kind of interesting. Check out this graph showing connected sessions and users: http://grab.by/dReu At first I thought maybe one of our 35 imap servers was having issues sending data, but all individual servers show this patters. Here is a bunch of individual servers: http://grab.by/dReC Anyone have any idea what could cause such a pattern? Maybe dovecot does some cleaning up of idle sessions at specific intervals? Or maybe our loadbalancers do, or the imapdirectors. regards, Cor
2005 Sep 01
1
Strange build message: request help w/resolving
...isodic model requiring detailed meteorological and emissions inputs. Because of the extensive inputs and the time required to run CMAQ, it would be cost-prohibitive to simulate an entire year to estimate annual quantities. Aggregation formulas group events into clusters with similar 850-mb windflow patters to create annual estimates. Maintainer: Nathan Shackles <nshackles@constellagroup.com> Depends: Models3 License: GPL version 2 or newer Any help that can be provided is appreciated. Thank you, John Zajd [[alternative HTML version deleted]]
2019 Apr 16
2
Interprocedural DSE for -ftrivial-auto-var-init
...ough already, but speeding up the long tail is also important. Also, at least the repro in https://bugs.llvm.org/show_bug.cgi?id=40527 has been extracted from a real kernel benchmark (hackbench), where this extra store costed us 0.45% > > This is on LLVM codebase with -ftrivial-auto-var-init=patter. > > > > As-is it's less than I expected, so I would like to find good benchmark to decide if we should work to make production code from my experiment. > > > > So now I am also planing to try to extend that to whole program analysis. > > I will cleanup my code and...
2006 Oct 16
4
Singleton Pattern in RoR
Hi all how can I implement the singleton patter in RoR? thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3Mb...
2004 Feb 19
1
read codebook function
Anexed is my function for reading codebooks and the Vq Table. My problem is: I read a codeBook number of 41, so i called this function above 41 times. The firtst time, the sync patterns (BCV) is alligned correctly, so it reads correctly. the sencond time it is executed, the patter is not there anymore and there are only 8 BCV in my file. function fReadBits1 is the same as the ogg's read bit function. orry for the long function and to bother Adriano <p> -----------...
2010 Sep 07
1
Help with repeating values in a column of dataframe in R on a random pattern- reg
...n a R dataframe containing say 99 rows, where for every 3 row one row (randomly determined) of the column should take the value 1 and the other 2 row of that column should take the value 0. I used the command dataframe$new<-rep(sample(c(0,1,0),3,replace=FALSE),99) This command repeats the same patter of response across the entire column.. I would rather want the response be randomly populated in every set of 3 rows.. Eg. if the first row of that column has 0 and the second row of that column takes a value of 1 and third row of that column takes 0 again, for the next 3 rows of that column i w...
2012 Jul 13
1
R combining many vectors of predictable name into one date frame
...e a many vectors, called: ib1 ib2 ib3 ... ib100 and I would like them in one data frame (df) such that: > df ib1 ib2 ib3 ib4 ..... ib100 x x x x x x x x x x x x x x x I have attempted: hold.list <- list(objects(pattern="ib")) df <- data.frame(hold.list) but that didn't work also: do.call(rbind, (objects(pattern="ib"))) and that also didn't work. I tried a whole pile of other things, where I also failed. The number of vectors might differ each time I want to make the data frame...
2005 Sep 19
1
Complete NPA-NXX list for USA/Canada npanxx,
...st" for the > > caller-ID name in the event that none was provided. > > Interesting code. What sort of memory does * take up when you load up > all those CLID values? > > Nathan > I am a little late to this thread, but the answer is WAY TO MUCH. With 150,000 "pattern" match extensions * takes a very long time to reload, during which time calls do not proceed. If you use Realtime MySQL it pulls in ALL patter match extensions in the context on every call (150,000 rows per query). There are two ways to fix this; The one we did, use the application command...
2010 Aug 06
0
Re: PATCH 3/6 - direct-io: do not merge logically non-contiguous requests
...d unlocking properly, so putting them in the same BIO doesn''t >> > work. So add another check where we submit the current BIO if the physical >> > blocks are not contigous OR the logical blocks are not contiguous. >> >> This gets us slightly less optimal I/O patters for other filesystems in >> this case. But it''s probably corner case enough to not care and make it >> the default. >> >> But please make the comment in the comment as verbose as the commit >> message so that people understand why we''re doing this...