search for: hoo

Displaying 20 results from an estimated 266 matches for "hoo".

Did you mean: hook
2017 Jul 17
2
A bug related with undef value when bootstrap MemorySSA.cpp
...patch failure before then you can try it again. I compiled your code (1.c) with LLVM r308173 with the 5 patches applied, and it generated assembly like this. Now it contains store to c(%rip). It tries to store a(%rip) + b(%rip) to c(%rip). I wish this translation is now correct. ``` 73 .globl hoo # -- Begin function hoo 74 .p2align 4, 0x90 75 .type hoo, at function 76 hoo: # @hoo 77 .cfi_startproc 78 # BB#0: 79 movq a(%rip), %rax 80 movq cnt(%rip), %rcx 81 cmpq $0, i_hasval(%rip) 82 sete %sil 83 xorl %edx, %edx 84...
2017 Jul 17
3
A bug related with undef value when bootstrap MemorySSA.cpp
...ompiled your code (1.c) with LLVM r308173 with the 5 patches applied, >> and it generated assembly like this. Now it contains store to c(%rip). >> It tries to store a(%rip) + b(%rip) to c(%rip). I wish this translation is >> now correct. >> >> ``` >> 73 .globl hoo # -- Begin function hoo >> 74 .p2align 4, 0x90 >> 75 .type hoo, at function >> 76 hoo: # @hoo >> 77 .cfi_startproc >> 78 # BB#0: >> 79 movq a(%rip), %rax >> 80 movq cnt(%rip), %rcx >>...
2007 Feb 13
2
Matrix manipulation
Hi, let's say I have this A = matrix(c(1, 2, 4), nrow=1) colnames(A)=c("YOO1", "YOO2", "YOO3") # ie # YOO1 YOO2 YOO3 #[1,] 1 2 4 HELLO <- NULL HELLO$YOO1="BOO" HELLO$YOO2="BOO" HELLO$YOO3="HOO" and I want a matrix that will sum my categorization.. how can I do it efficiently without any loop? #ie BOO HOO #[1,] 3 4 Thanks a lot! -- View this message in context: http://www.nabble.com/Matrix-manipulation-tf3223616.html#a8953806 Sent from the R help mailing list archive...
2017 Jul 17
3
A bug related with undef value when bootstrap MemorySSA.cpp
...t;> >> and it generated assembly like this. Now it contains store to c(%rip). >> >> It tries to store a(%rip) + b(%rip) to c(%rip). I wish this translation >> >> is >> >> now correct. >> >> >> >> ``` >> >> 73 .globl hoo # -- Begin function hoo >> >> 74 .p2align 4, 0x90 >> >> 75 .type hoo, at function >> >> 76 hoo: # @hoo >> >> 77 .cfi_startproc >> >> 78 # BB#0: >> >> 79 movq a(%r...
2006 Aug 03
6
create or update -
Hi everyone, I''m looking for a shortcut to finding and updating or creating record depending on the results of the find. So, is there a shorter way to do it than this? @stuff = Stuff.find_by_foo_and_bar("yay","hooray") if @stuff: Stuff.update(@stuff.id, {:foo => "boo", :bar => "hoo"}) else Stuff.create({:foo => "boo", :bar => "hoo"}) end By the way, I can''t believe that I want to do this in less than 3.1 lines of code. Rails is mak...
2017 Jul 18
4
A bug related with undef value when bootstrap MemorySSA.cpp
...his. Now it contains store to c(%rip). >>>> >> It tries to store a(%rip) + b(%rip) to c(%rip). I wish this translation >>>> >> is >>>> >> now correct. >>>> >> >>>> >> ``` >>>> >> 73 .globl hoo # -- Begin function hoo >>>> >> 74 .p2align 4, 0x90 >>>> >> 75 .type hoo, at function >>>> >> 76 hoo: # @hoo >>>> >> 77 .cfi_startproc >>>> >> 78 #...
2017 Jul 16
2
A bug related with undef value when bootstrap MemorySSA.cpp
...s.llvm.org/show_bug.cgi?id=33652 and https://bugs.llvm.org/show_bug.cgi?id=33626. Here is the testcase 1.c. The original code is at MemorySSA.cpp:586 for rL307764. ------------------------- 1.c --------------------------- long a, c, d, e, f, m, cnt, i_hasval; volatile long b; void goo(long); void hoo(); long ioo(); void foo(long hasval) { long i, k; if (hasval) { i = b; } k = 0; do { if (i_hasval != hasval) return; if (i_hasval) { m = m + 1; if (a == i) { c = a + d + e + f; return; } } c = a + b; i_hasval = 3; k++;...
2005 Mar 04
3
Whoo Hoo... We''re on the Slashdot front page!
Part 2 of my Rails article on ONLamp.com just made the slashdot front page! The entry, itself, is here: http://developers.slashdot.org/article.pl?sid=05/03/04/1319242&tid=156 Curt
2011 Dec 08
2
[LLVMdev] Implementing devirtualization
We've got the following test case: class A { public: int x; A(int x) : x(x) {} int hoo() {return 4;} virtual int foo() {return x;} virtual int goo() {return foo()+10;} virtual int operator+(A &a) { return x + a.x; } }; class B : public A { public: B(int x) : A(x) {} int hoo() {return 2;} virtual int foo() {return A::foo()*2;} }; int main() { A* a = new A(1);...
2017 Jul 18
2
A bug related with undef value when bootstrap MemorySSA.cpp
...; >> It tries to store a(%rip) + b(%rip) to c(%rip). I wish > this translation > >>>> >> is > >>>> >> now correct. > >>>> >> > >>>> >> ``` > >>>> >> 73 .globl hoo # -- Begin function hoo > >>>> >> 74 .p2align 4, 0x90 > >>>> >> 75 .type hoo, at function > >>>> >> 76 hoo: # @hoo > >>>> >> 77 .cfi_startproc > >>>> >...
2011 Dec 09
0
[LLVMdev] Implementing devirtualization
On Thu, Dec 8, 2011 at 2:11 PM, Vitor Luis Menezes <vitor at utexas.edu> wrote: > We've got the following test case: > > > class A { > public: >   int x; >   A(int x) : x(x) {} >   int hoo() {return 4;} >   virtual int foo() {return x;} >   virtual int goo() {return foo()+10;} >   virtual int operator+(A &a) { >     return x + a.x; >   } > }; > > class B : public A { > public: >   B(int x) : A(x) {} >   int hoo() {return 2;} >   virtual int foo...
2003 Dec 31
3
Whoo Hoo! I got a working Windows Build of wxRuby
I finally got a working native windows build of wxRuby (using a static build of wxWindows so everything is in a single dll -- wxruby.so)! Two things contributed to my success: 1) building wxWindows with the vc++ makefiles (instead of the vc++ projects), and 2) very careful attention to compiler/linker flags specified in extconf.rb. Kevin, I had to modify app.cpp, depend, extconf.rb, and wx.h. I
2017 Jul 17
3
A bug related with undef value when bootstrap MemorySSA.cpp
On Mon, Jul 17, 2017 at 11:18 AM, Sanjoy Das via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi, > > On Mon, Jul 17, 2017 at 10:32 AM, Xinliang David Li <davidxl at google.com> > wrote: > > The issue blocks another optimization patch and Wei has spent huge > amount of > > effort isolating the the bootstrap failure to this same problem. I agree > >
2006 Mar 16
4
New one on me: How to UN-transfer
I'm using a Snom 320 in a CAP position and the receptionist wants to do blind transfers. OK, no problem so far. Now she has asked me how to UN-transfer a call, as in, she transfers a call and wants to hook the call back before it connects (she wanted to tell the caller additional information for example) I don't think that this is possible as once my dialplan starts using Dial() there's no way to interrupt it. But: [internal-transfer] exten => _5XXXX,1,SetVar(CALLED=${EXTEN:1:4}) exten...
2006 Aug 02
4
College course on Ruby on Rails
...skills. I think that it is a sign of Rails'' growing maturity that I was able to propose this and work it through the college process. I''m very excited by what we will be able to accomplish during a full semester course. No more spend a month just getting everything installed! Woo Hoo! Here are some links that point to more details. The College: http://matcmadison.edu The LAMP Certificate: http://matcmadison.edu/matc/ASP/showprogram.asp?ID=3268 The Rails course: http://matcmadison.edu/matc/asp/showschedule.asp?CourseNum=10-152-157 -Eric -- Eric Knapp Lead Java Instructor I...
2018 Sep 12
2
eventlog functionality
...gt; > and > > https://docs.microsoft.com/en-us/windows/desktop/api/lmshare/ns-lmshare-_session_info_10 > > and > > init_srv_sess_info_1 > > > I copied, pasted and edited myself a init_srv_sess_info_1 and case to go > with it. It seems to have compiled... Woo hoo ! Please post as a patch for review :-).
2007 Apr 28
2
Tables & Databinding
...e: http://www.icommunicate.co.uk/articles/all/who_needs_databinding_9/ And a [slightly] more usable demo here: http://www.icommunicate.co.uk/tables/ ... if anyones interested in using it, helping me move forward with it or recommending a which OS license I could/should release it under then woo hoo! :-) ATB, Jim --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscrib...
2011 Dec 08
0
[LLVMdev] Implementing devirtualization
On Thu, Dec 8, 2011 at 9:56 AM, Vitor Luis Menezes <vitor at utexas.edu> wrote: > Hello all, > > Our compilers class has been using LLVM, and a partner and I decided to > implement devirtualization of virtual C++ calls in LLVM as a class project. > We quickly realized that existing debug metadata generated by Clang didn't > give us enough info to (precisely) implement
2011 Dec 09
1
[LLVMdev] Implementing devirtualization
...an <eli.friedman at gmail.com> wrote: > On Thu, Dec 8, 2011 at 2:11 PM, Vitor Luis Menezes <vitor at utexas.edu> wrote: >> We've got the following test case: >> >> >> class A { >> public: >>   int x; >>   A(int x) : x(x) {} >>   int hoo() {return 4;} >>   virtual int foo() {return x;} >>   virtual int goo() {return foo()+10;} >>   virtual int operator+(A &a) { >>     return x + a.x; >>   } >> }; >> >> class B : public A { >> public: >>   B(int x) : A(x) {} >>  ...
2006 Feb 23
9
Linksys WIP300 WiFi Phone
Whoo hoo! I just received my WIP300 from voipsupply. I have to let it charge before I can play with it. A few quick comments: - I started a Wiki page at voip-info to post issues, firmware news, etc. I really like the wealth of info on the GXP-2000 page, so I wanted to start something similar fo...