search for: typeo

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

Did you mean: type
2009 Jul 09
1
bug in seq_along
...ov = IRanges(1:3, 4:6) length(ov) # 3 seq(along = ov) # 1 2 3 as wanted seq_along(ov) # 1! I had expected that the last line would yield 1:3. My guess is that somehow seq_along don't utilize that ov is an S4 class with a length method. The last line of the *Details* section of ?seq has a typeo. Currently it is 'seq.int', 'seq_along' and 'seq.int' are primitive: the latter two ignore any argument name. I would guess it ought to be 'seq.int', 'seq_along' and 'seq_len' are primitive: the latter two ignore any argument...
2015 Nov 19
0
PATCH: Sense if git should be used (for tarball) and if typeof needs to be __typeof__
...ure could try to see if it's really in a git repository else use ChangeLog to determine the driver date to use. NB 'git log' should probably already be 'git log -1' 2. When using strict ISO C compilers, such as if using -std=c99 instead of for example -std=gnu99, typeof is not a valid keyword and __typeof__ should be used. Use AC_C_TYPEOF to automatically define a macro if necessary. cheers -- Richard PALO -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Sense-if-git-should-be-used-for-tarball-and-if-typeo.patch Type...
2015 Nov 19
0
PATCH: Sense if git should be used (for tarball) and if typeof needs, to be __typeof__
...ure could try to see if it's really in a git repository else use ChangeLog to determine the driver date to use. NB 'git log' should probably already be 'git log -1' 2. When using strict ISO C compilers, such as if using -std=c99 instead of for example -std=gnu99, typeof is not a valid keyword and __typeof__ should be used. Use AC_C_TYPEOF to automatically define a macro if necessary. cheers -- Richard PALO -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Sense-if-git-should-be-used-for-tarball-and-if-typeo.patch Type...
2015 Nov 19
0
PATCH: Sense if git should be used (for tarball) and if typeof needs to be __typeof__
...ure could try to see if it's really in a git repository else use ChangeLog to determine the driver date to use. NB 'git log' should probably already be 'git log -1' 2. When using strict ISO C compilers, such as if using -std=c99 instead of for example -std=gnu99, typeof is not a valid keyword and __typeof__ should be used. Use AC_C_TYPEOF to automatically define a macro if necessary. cheers -- Richard PALO -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Sense-if-git-should-be-used-for-tarball-and-if-typeo.patch Typ...
2005 Mar 08
2
GotoIf with Authenticate
Quick question...Im authenticate all exten except this one(2006). If I call from ext 2006 I still have to authenticate. If I call form any other ext I have to authenticate. Any suggestions? Thanks extex => s,1,GotoIf($[${EXTEN} = "2006"]?3) exten => s,2,Authenticate(731) exten => s,3,GotoIf($[foo${ECID${CALLERIDNUM}} = foo]?4) exten =>
2005 May 13
0
[LLVMdev] Scheme + LLVM JIT
...= sub int %AnArg, 1" > " %fibx1 = call tail int %fib (int %sub1) " > " %sub2 = sub int %AnArg, 2" > " %fibx2 = call tail int %fib (int %sub2) " > " %result = add int %fibx1, %fibx2" > " ret int %result" > "}"; Some typeos (branch -> br, 'call tail' -> 'tail call', etc) but general idea makes sense. > void * M = llvm_make_module_from_text (program, "test") ; One of these should be fib_function right? What is the 'test' string? > // now we want to run some optimizati...
2023 Dec 06
2
Provisioning new AD Domain Controller
On Wed, 06 Dec 2023 09:45:13 -0500 Mark Foley via samba <samba at lists.samba.org> wrote: > I have provisioned a new DC with Samba 4.18.5. This DC is intended to > replace an older one in my AD domain. > > The old/current DC has a number of Group Policies set. Can I "rsync" > /var/lib/samba/sysvol/hprs.local/policies/ to my new >
2002 Sep 17
3
[LLVMdev] questions
Sorry I got really overwhelmed by so many classes and member functions in LLVM. So would you please clarify some problems I have? 1. If I see this instruction in the function. %S.i = alloca %struct.SimpleStruct Suppose SimpleStruct is as following: struct.SimpleStruct = type { int, double } When I read the instruction, how can I know the type of simplstruct, should I use 'getType'
2005 May 12
2
[LLVMdev] Scheme + LLVM JIT
> llvm_function_new/llvm_value_set_name/llvm_executionengine_run_function, > etc. > > If kept simple, standardized, and generic, I think it would be very useful > to people (even if incomplete). This would allow others to build on it, > and we could 'ship' it as a standard llvm library. It looks like my interface will look vaguely like this. Functions like
2006 Apr 25
16
case statements in views...strange error on OSX
I have a simple case statement in one of my views. This works fine on my windows machine. Move to the mac and I get: "parse error, unexpected tIDENTIFIER, expecting kWHEN". I have not changed anything but cannot resolve the issue. my view has this in it (simplified for test) <% case controller.controller_name -%> <% when "accounts" -%> <h3>worked