search for: protoype

Displaying 20 results from an estimated 45 matches for "protoype".

Did you mean: prototype
2007 Jul 24
1
PATCH : Fix missing protoypes
Josh Coalson wrote: > --- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote: > > > Hi all, > > > > I added -Wmissing-prototypes -Wstrict-prototypes to the CFLAGS and > > found that there were a number warnings generated. > > > > The patch below fixes those warnings and adds the two -W flags to > > configure.in. > > I checked most
2006 Jan 20
1
[protoype] Problem with Effects on draggable element if revert is true
hi, I have a draggable element (cart-item) in a shopping cart <%= draggable_element "item_#{product}_#{i}", :revert => true %> When this element is dragged outside the cart into the "main_div", I want to show a puff effect and remove the element. When it is dragged within the cart, it should revert. So i wrote this code for drop_receiving _element <%=
2005 Oct 27
3
String.protoype.toQueryParams
Hi, I am trying to play with all the methods in the Array Object. Just wanted to check with you guys if this is the correct explanation of toQueryParams(). If yes, then I''ll add it to the documentation as well. Works for me (but I am not sure if it''s the correct way to use it). /* String.prototype.toQueryParams takes a query string, i.e, string with name value pairs
2006 Jan 06
3
Protoype problem
Hey everybody, I encountered an interesting problem today. Here is what I have: I used the prototype function "Position.clone(src, target)" which actually copies the top, left, offsetWidth and offsetHeight from the src to the target. interestingly, my src-object had a css-styled border of 1px, and a total offsetWidth of 320px. my target-object had the same properties, but once I
2008 Nov 07
2
SPEEX on iPhone ?
hello, i 've already used SPEEX in a protoype of voip application (on VC 6) and i must says that it works well, the sound is good, and the object works well with multi-instances. But now i'm wondering if it's possible to port the SPEEX encoder (and decoder process) on iPhone ? Does someone tried to do that ? Do you think it is possibl...
2013 Jan 09
2
[LLVMdev] mips16 hard float puzzle
...f16_2.s -O3 -mips16-hard-float -soft-float > Try something like the following: > > float f; > double test(void* fptr) { > f = ((float(*)(float,float))fptr)(1.0, 1.0); > } > > -Eli It seems that in SelectionDAGBuilder::visitCall, that I.getCalledFunction() has the correct protoype, even for this case you give. (This case you give is not constructable as you pointed out simply using the DAG in Mips lower call). So it seems possible to add an additional parameter to LowerCallTo and pass it down the chain until Mips lower call is invoked. Is this more or less what you had i...
2006 Apr 05
6
Help with new EventSelectors in prototype
Hello, I can''t seem get to work the newly inctroduced EventSelectors of protoype. I downloaded the latest release via SVN. And included both prototype and scriptaculous. This is a short extract of my test: <body> <div id="footer">This is a footer</div> <script type="text/javascript"> var Rules = { ''#footer:loaded'&...
2006 Feb 08
3
OpenRico LiveGrid or similar
...g the conventional techniques such as paginated browsing is out of the question in the app I''m going to develop. If not, would anyone be interested in getting this (and some other stuff such as the accordion from OpenRico) as a plug-in or added to Rails itself in a way similar as to Protoype and script.alico.us are transparently merged into form_remote and RJS? Best regards Peter De Berdt
2007 Jul 14
2
PATCH : Fix missing protoypes
Hi all, I added -Wmissing-prototypes -Wstrict-prototypes to the CFLAGS and found that there were a number warnings generated. The patch below fixes those warnings and adds the two -W flags to configure.in. Cheers, Erik ----------------------8<----------------------8<---------------------- --- src/metaflac/operations_shorthand.h 1970-01-01 00:00:00 +0000 +++
2013 Jan 09
0
[LLVMdev] mips16 hard float puzzle
...;> Try something like the following: >> >> float f; >> double test(void* fptr) { >> f = ((float(*)(float,float))fptr)(1.0, 1.0); >> } >> >> -Eli > > It seems that in SelectionDAGBuilder::visitCall, that I.getCalledFunction() > has the correct protoype, > even for this case you give. (This case you give is not constructable as you > pointed out simply using the DAG in Mips lower call). > > So it seems possible to add an additional parameter to LowerCallTo and pass > it down the chain > until Mips lower call is invoked. > >...
2008 Jan 16
1
IE5.5
...andards forward, but unfortunately there''s simply stil too many IE5.5 users to ignore. The incorrect box model would take a significant amount of work, but it''s very doable. Love prototype, but I think we may not be able to use it becuase of this one issue. Is there any way that Protoype as a Base Framework could add this support? Thanks, Mark --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh...
2007 Jan 22
1
Prototype.js object.constructor exception
...ar fakeHashMap = new Object(); fakeHashMap[''newmyobject''] = new myObject(foo, bar, baz); try { var liStuff = fakeHashMap[''newmyobject''].createSomething(); } catch (error) { // do nothing } ----------- When I make the createSomething call, I get an error from protoype.js (1.5) from Enumerable with something like uncaught exception: Permission denied to get property Object.constructor. Am I not using constructors properly? One other thing. In IE 6, the try catch seems to work and continues on like no exception was ever thrown (everything works as expected), but...
2004 Apr 21
1
fix for a minor build error in R-1.9.0 with XFree86 4.4.0 (PR#6805)
...b.h:1477: parse error before "char" /usr/X11R6/include/X11/Xlib.h:1505: parse error before "_Xconst" ... many messages omitted The build is successful and the x11() device works fine if R-1.9.0/src/modules/X11/dataentry.c:30 is commented, in order to re-require function protoypes: #include <stdlib.h> /* don't use X11 function prototypes (which tend to ...): */ /* #define NeedFunctionPrototypes 0 */ #include <X11/X.h> Here are my gcc and XFree86 versions: 947$ gcc -v Reading specs from /usr/lib/gcc-lib/ppc-yellowdog-linux/3.2.2/specs C...
2008 Nov 10
3
SPEEX on iPhone ?
...s are not necessary given > iphone's fast cpu. > just add all the speex sources to xcode's project pane and compile it. > - farhan > > On 11/7/08, Vincent Burel <vincent.burel at vb-audio.com> wrote: > > hello, > > > > i 've already used SPEEX in a protoype of voip application (on VC 6) and i > > must says that it works well, the sound is good, and the object works well > > with multi-instances. > > > > But now i'm wondering if it's possible to port the SPEEX encoder (and > > decoder process) on iPhone ? Does some...
2012 Jan 17
1
[CentOS] VirtIO disk 'leakage' across guests?
...ons. > > Regards, > Dennis Prototype dumpxml virsh # dumpxml vm-centos-6 <domain type='kvm' id='34'> <name>vm-centos-6</name> <uuid>77692b36-d424-175f-b991-abc58fa0359b</uuid> <description>vm clone prototype root user password: protoype</description> <memory>2097152</memory> <currentMemory>2097152</currentMemory> <vcpu>1</vcpu> <os> <type arch='x86_64' machine='rhel6.0.0'>hvm</type> <boot dev='hd'/> </os> <feature...
2012 Aug 31
0
[LLVMdev] Announcement: Version 2012.2 of LLBMC available
...MTLIB (versions 1 and 2) - Support for many GCC/LLVM built-in functions (e.g., __builtin_parity()) - Improved counterexample traces - LLBMC is now based on LLVM 3.1 - New version of STP (revision 1666) - Support for backend solver "MiniSat and propagators" in STP - Option --friendly-protoypes renamed to --ignore-missing-function-bodies - General stability and performance improvements -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4880 bytes Desc: not available URL: <http://lists.llvm.org/pipermai...
2013 Jan 08
0
[LLVMdev] mips16 hard float puzzle
On Mon, Jan 7, 2013 at 6:07 PM, reed kotler <rkotler at mips.com> wrote: > > For example: > > /home/rkotler/llvm/install/bin/llc -mcpu=mips16 hf16_2.ll -march=mipsel > -relocation-model=pic -o hf16_2.s -O3 -mips16-hard-float -soft-float Try something like the following: float f; double test(void* fptr) { f = ((float(*)(float,float))fptr)(1.0, 1.0); } -Eli
2008 Nov 08
0
SPEEX on iPhone ?
...problems. the arm specific optimizations are not necessary given iphone's fast cpu. just add all the speex sources to xcode's project pane and compile it. - farhan On 11/7/08, Vincent Burel <vincent.burel at vb-audio.com> wrote: > hello, > > i 've already used SPEEX in a protoype of voip application (on VC 6) and i > must says that it works well, the sound is good, and the object works well > with multi-instances. > > But now i'm wondering if it's possible to port the SPEEX encoder (and > decoder process) on iPhone ? Does someone tried to do that ? &g...
2008 Nov 12
0
SPEEX on iPhone ?
...t; iphone's fast cpu. >> just add all the speex sources to xcode's project pane and compile it. >> - farhan >> >> On 11/7/08, Vincent Burel <vincent.burel at vb-audio.com> wrote: >> > hello, >> > >> > i 've already used SPEEX in a protoype of voip application (on VC 6) and > i >> > must says that it works well, the sound is good, and the object works > well >> > with multi-instances. >> > >> > But now i'm wondering if it's possible to port the SPEEX encoder (and >> > decoder...
2006 Jun 14
0
Browser/Feature Detection for Rails/AJAX apps
With the Protoype library supporting only specific browers (i.e. not IE 5.x), I wondering if anyone can shed light on how they are doing detection for compatiable browsers in their Rails applications? Cheers, Nicholas