search for: consise

Displaying 18 results from an estimated 18 matches for "consise".

Did you mean: consist
2011 Apr 18
1
core show channels consise in asterisk 1.8.3
When I do "core show channels concise" over the AMI interface how do I specify that I want to see the "actual" channel number like DAHDI/4/xxxxxxx where 4 is the actual channel. RIght now I am seeing DAHDI/i1/xxxxx where i1 is the span. Thanks, Jerry
2007 Jul 19
5
need help getting a word right
...Thing - should be something But "it do" is driving me mad :( We need a better word. Of course, ''specify'' has not been completely removed, so you can still do this: describe Thing do before(:each) { @thing = Thing.new } specify { @thing.should be_something } end Consise? Yes. But I''m not psyched about ''specify'' either. There IS a perfect word for this situation. What is it? Suggestions? Thanks, David
2008 Mar 14
2
Incremental file updates over a network, NFS?
Hi list, can anyone point me at some consise info on when rsync is capable of performing incremental updates of binary files? I need to rsync over a network, and currently I have this over an NFS share but I suppose that even if binary updates are possible there not going to do much good as reading the remote file over NFS to check what needs...
2008 Jul 21
4
how to speed up this for loop?
Could anyone tell me a better way to achieve the output of this for loop? It seems to run quite slow. I'm sure there must be a more consise way to sum from FN to LN, excluding positive values, for each row. #sum between FN and LN, excluding positive values for(i in 1:R){ for(j in FN[i]:LN[i]){ if(Temp[i,j]<0) sum[i] <- sum[i] + sum(Temp[i,j])}} Cheers, R -- View this message in context: http://www.nabble.com/how-to-speed-up-t...
2002 Nov 11
2
R 1.6.1: help with debugging error in RunGenCollect(), R_gc_internal
...x4010a657 in __libc_start_main (main=0x8118f9c <main>, argc=1, ubp_av=0xbffff4c4, init=0x805cdcc <_init>, fini=0x81a3810 <_fini>, rtld_fini=0x4000dcd4 <_dl_fini>, stack_end=0xbffff4bc) at ../sysdeps/generic/libc-start.c:129 I'm sorry that I cannot report a consise example here that reproduces the bug, but I am working on that. My question for now is there a way to find out what R command was being executed when the program errored? I tried running a recent unstable version of R (1.7.0, 2002-11-08), and this time didn't get the SIGSEGV. The only releva...
2006 Jul 28
12
MenuEngine
Hi all, MenuEngine is a small Rails engine that can generate templated drop-down DHTML menus commonly used for web site navigation. Supports creation of menus from a YAML file, from code and from pre-configured HTML. Optionally integrates with UserEngine for authorization. http://www.muermann.org/ruby/menu_engine Project page: http://rubyforge.org/projects/menuengine This is my first attempt
2000 May 22
1
character arguments with call_R (PR#552)
character arguments with call_R do not work except in the first position. (In other positions, they just yield a single blank character.) The error is at line 1858 of dotcode.c which should be changed from STRING(CAR(pcall))[i]=s; to STRING(CAR(pcall))[0]=s; Jim -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read
2005 Sep 19
0
Sortables and not-Sortables
...lar position in the cart. I don''t want to be able to sort items in the content area. That is, the target is a Sortable list, but the source is not. Problem one was that I don''t actually want to move the dragged item, I want to show a label next to the cursor instead with a more consise summary of what''s being dragged. It looks like I''ll be able to get around this by having the drag handle be the larger content item, but the draggable be a hidden div with my label info, that is shown during the startEffect step. Problem 2 remains for now: The first list (it h...
2020 Apr 14
0
[PATCH v2 2/2] crypto: Remove unnecessary memzero_explicit()
...y set keylen to 0 >> in this case unless it is specified in the API documentation. > You already freed the key by now so not touching anything is not > possible. The key is set to NULL on allocation failure so setting keylen > to 0 should be redundant. However, setting keylen to 0 is consisent with > not having a key, and it avoids the possibility of leaking the length > later should that ever cause any problem. OK, I can change it to clear the key length when the allocation failed which isn't likely. Cheers, Longman
2006 Feb 08
2
sip channel status - how?
Hello! I have an asterisk setup where several sip devices are connected to an asterisk box. I am looking for a method that lets me know whether any of the sip devices is on hook / off hook / busy etc. I have tried the AGI command CHANNEL STATUS <channel name> but it returns with a message 'There is no channel that matches <channel name>' In concrete terms, my channel is
2009 Aug 07
1
Bug in nlm, found using sem; failure in several flavors (PR#13881)
...he problem (as nlm keeps being the part that fails, though I can't replicate this with other nlm tasks). I apologize if I have put too many much information in this message; I'm not a programmer by trade so I don't really know what's going on here, which hampers my ability to write consise bug reports. Here is the code I use: library(sem) ice.S <- read.csv("iceS.csv") # attached rownames(ice.S) <- ice.S[,1] ice.S[,1] <- NULL ice.S <- as.matrix(ice.S) ice.ram <- specify.model("ice.ram") # attached ice.N <- 342 ice.sem <- sem(ram=ice.ram, S=ic...
2006 Jul 31
6
Popup Calendar and DateBoxEngine and Change Made ...
...page and I wanted an easy way to get the calendar to popup. Here is what I wanted: <%= date_box( ''model_name'', ''field_name_for_date1'' ) %> <%= date_box( ''model_name'', ''field_name_for_date2'' ) %> etc... which is consisent with other form helpers (minus the options hash). Therefore, I made a minor change to the engine code. I made this change to meet my needs and hopefully others will get some use of it too. It changes the definition and I didn''t touch every aspect of the engine - only the piece that...
2020 Apr 14
3
[PATCH v2 2/2] crypto: Remove unnecessary memzero_explicit()
Le 14/04/2020 ? 00:28, Waiman Long a ?crit?: > Since kfree_sensitive() will do an implicit memzero_explicit(), there > is no need to call memzero_explicit() before it. Eliminate those > memzero_explicit() and simplify the call sites. For better correctness, > the setting of keylen is also moved down after the key pointer check. > > Signed-off-by: Waiman Long <longman at
2020 Apr 14
3
[PATCH v2 2/2] crypto: Remove unnecessary memzero_explicit()
Le 14/04/2020 ? 00:28, Waiman Long a ?crit?: > Since kfree_sensitive() will do an implicit memzero_explicit(), there > is no need to call memzero_explicit() before it. Eliminate those > memzero_explicit() and simplify the call sites. For better correctness, > the setting of keylen is also moved down after the key pointer check. > > Signed-off-by: Waiman Long <longman at
2008 Nov 03
10
Bringing Vista's Speech Recognition Engine to Linux via Wine
I have RSI (hurty hands) and need software for recognition of continuous speech. Linux has nothing workable. Dragon was bad even on Windows. What's needed is a Linux speech engine, so that the linux crew can get making a good GUI. So I'm trying to bring over the Vista Speech Engine. Here's my (failed) attempt: http://womblezone.blogspot.com/ I'm trying to bring it over with
2009 Aug 07
0
Bug in nlm, found using sem; failure in several flavors (PR#13882)
...ng the part t= hat > fails, though I can't replicate this with other nlm tasks). =A0I apologiz= e if > I have put too many much information in this message; I'm not a programme= r > by trade so I don't really know what's going on here, which hampers my > ability to write consise bug reports. > > Here is the code I use: > > library(sem) > ice.S <- read.csv("iceS.csv") # attached > rownames(ice.S) <- ice.S[,1] > ice.S[,1] <- NULL > ice.S <- as.matrix(ice.S) > ice.ram <- specify.model("ice.ram") # attached > ice...
2009 Aug 07
1
Bug in nlm, found using sem; failure in several flavors (PR#13883)
...at >> fails, though I can't replicate this with other nlm tasks). =A0I apologi= ze if >> I have put too many much information in this message; I'm not a programm= er >> by trade so I don't really know what's going on here, which hampers my >> ability to write consise bug reports. >> >> Here is the code I use: >> >> library(sem) >> ice.S <- read.csv("iceS.csv") # attached >> rownames(ice.S) <- ice.S[,1] >> ice.S[,1] <- NULL >> ice.S <- as.matrix(ice.S) >> ice.ram <- specify.model(&quo...
2007 Aug 31
48
Deprecating the mocking framework?
I saw in one of Dave C.''s comments to a ticket that "our current plan is to deprecate the mocking framework." I hadn''t heard anything about that, but then again I haven''t paid super close attention to the list. Are we planning on dumping the mock framework in favor of using Mocha (or any other framework one might want to plug in?). Pat