search for: weiss

Displaying 20 results from an estimated 345 matches for "weiss".

2013 Apr 11
2
[LLVMdev] Migration from JIT to MCJIT
...sed external function '_external' which could not be resolved! Note that using JIT the code works fine, in case it might help. Eran. From: "Kaylor, Andrew" <andrew.kaylor at intel.com<mailto:andrew.kaylor at intel.com>> Date: Wed, 10 Apr 2013 20:50:14 -0400 To: Eran Weiss <eran.weiss at emc.com<mailto:eran.weiss at emc.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>>, Jim Grosbach <grosbach at apple.com<mailto:grosbach at apple.com>>, Jiong Wa...
2013 Apr 11
0
[LLVMdev] Migration from JIT to MCJIT
Thanks, Eran. I’m not sure how soon I’ll have a solution for you, but it’s on my to-do list now. I’ll also create a bugzilla record for this problem. -Andy From: Weiss, Eran [mailto:Eran.Weiss at emc.com] Sent: Thursday, April 11, 2013 12:40 AM To: Kaylor, Andrew Cc: llvmdev at cs.uiuc.edu; Jim Grosbach; Jiong Wang Subject: Re: [LLVMdev] Migration from JIT to MCJIT Andrew, I've attached a small reproduction of the issue. Reproduce by: $ /usr/bin/g++ `llvm-c...
2013 Apr 10
2
[LLVMdev] Migration from JIT to MCJIT
...d with 0xffffffffL. (RuntimeDyldMachO.cpp:214) Maybe this mask should be different? Anyway, it seems like this relocation isn't implemented. (RuntimeDyldMachO.cpp:104) From: Jiong Wang <jiwang at tilera.com<mailto:jiwang at tilera.com>> Date: Tue, 9 Apr 2013 09:42:03 -0400 To: Eran Weiss <eran.weiss at emc.com<mailto:eran.weiss at emc.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] Migration from JIT to MCJIT 于 2013/4/9 21:08, Weiss, Eran 写道: Hi,...
2006 Apr 12
3
Apache 1.3 + remote FastCGI balancing
...s like 43people or BaseCamp run on it. Every example I find only talks about lokal FastCGI processes and not about remote ones and explains how the requests are balanced. Are there any good examples out there and can Apache1.3/mod_fastcgi load balance requests? Thanks, Jonathan -- Jonathan Weiss http://blog.innerewut.de
2006 Apr 17
7
Serve static XML files how?
...put the actual XML file, and I also tried to make the file a rails template (tried both .rhtml and .rxml) and access it via a controller action. None of these ways worked. Does the lighttpd server know how to serve XML files, or do I need to configure it first? Or, is there a good workaround? Ingo Weiss
2013 Apr 10
2
[LLVMdev] Migration from JIT to MCJIT
...now, with only the relocation types we were actually seeing being implemented. Unfortunately, I don’t know enough about MachO to help with this one. Maybe Jim Grosbach can help? > > -Andy > > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Weiss, Eran > Sent: Tuesday, April 09, 2013 11:51 PM > To: Jiong Wang > Cc: llvmdev at cs.uiuc.edu > Subject: Re: [LLVMdev] Migration from JIT to MCJIT > > Thank you for the help. > > The relocation type value is anded with 0xffffffffL. (RuntimeDyldMachO.cpp:214) > Maybe th...
2013 Apr 11
0
[LLVMdev] Migration from JIT to MCJIT
...ll reproducer? I’ve got a mid-to-long-term goal of getting rid of the ugliness in LLDB that Jim mentioned, and fixing your problem would be a good first step. Thanks, Andy From: Jim Grosbach [mailto:grosbach at apple.com] Sent: Wednesday, April 10, 2013 4:19 PM To: Kaylor, Andrew; Jiong Wang Cc: Weiss, Eran; llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Migration from JIT to MCJIT Existing clients (LLDB) deal with externals by resolving them to constant function pointers that are referenced in the IR. That’s obviously ugly as hell, but it gets things done. The old JIT was able to simplify thin...
2006 Jan 13
4
Flash not cleared with ActiveRecord session store
...display my flash messages like this: <% for name in [:notice, :warning, :message] %> <% if flash[name] %> <%= "<div id=\"flash\" class=\"flash\" >#{flash[name]}</div>" %> <% end %> <% end %> Jonathan -- Jonathan Weiss http://blog.innerewut.de
2013 Apr 11
2
[LLVMdev] Migration from JIT to MCJIT
Submitted to bugzilla as PR 15729 From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Kaylor, Andrew Sent: Thursday, April 11, 2013 1:13 PM To: Weiss, Eran Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Migration from JIT to MCJIT Thanks, Eran. I’m not sure how soon I’ll have a solution for you, but it’s on my to-do list now. I’ll also create a bugzilla record for this problem. -Andy From: Weiss, Eran [mailto:Eran.Weiss at emc.com] Sent:...
2013 Apr 10
0
[LLVMdev] Migration from JIT to MCJIT
...as-needed basis up to now, with only the relocation types we were actually seeing being implemented. Unfortunately, I don’t know enough about MachO to help with this one. Maybe Jim Grosbach can help? -Andy From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Weiss, Eran Sent: Tuesday, April 09, 2013 11:51 PM To: Jiong Wang Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Migration from JIT to MCJIT Thank you for the help. The relocation type value is anded with 0xffffffffL. (RuntimeDyldMachO.cpp:214) Maybe this mask should be different? Anyway, it seems l...
2006 Apr 20
12
memcache, sessions, fragments, oh my!
Hi all - I am trying to get rails to use memcache for sessions and fragment caching. I''d also like to use the same connection for general caching of this and that. I''m following the instructions here: http://wiki.rubyonrails.com/rails/pages/HowtoChangeSessionStore and hitting a brick wall. I''m using the new memcache-client since from what I''ve read
2013 Apr 09
0
[LLVMdev] Migration from JIT to MCJIT
? 2013/4/9 21:08, Weiss, Eran ??: > Hi, > > I'm migrating my code (running on mac) from using JIT to MCJIT. My > code generates in memory, mostly using the llvm-c api, and then runs > the generated code. > When I try to use MCJIT I encounter a problem with relocations of > external symbols -- f...
2006 May 28
10
Drag''n''Drop out of overflow:auto containers
...rie to drag them outside of the div, the div starts to scroll. Is there a way to stop this behaviour for drag and drop? I thought of maybe using callback to disable the overflow and restoring it againg after the drop. Did someone implemented something like this? Thanks, Jonathan -- Jonathan Weiss http://blog.innerewut.de
2013 Apr 09
2
[LLVMdev] Migration from JIT to MCJIT
...ates in memory, mostly using the llvm-c api, and then runs the generated code. When I try to use MCJIT I encounter a problem with relocations of external symbols – functions compiled statically beforehand with gcc. I get the following error: Invalid relocation type! UNREACHABLE executed at /Users/weisse4/dev/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp:89 While debugging, I see that the relocation type read in RuntimeDyldImpl::loadObject is 218103811, which seems corrupt to me. Did someone encounter a similar error? Or can direct me to changes that I need to do while migrating...
2006 Apr 21
4
Scaling Rails with Apache 2.2, mod_proxy_balancer and Mongrel
...Apache 2.2, mod_proxy_balancer and Mongrel. This way you do not need another proxy server or load balancer for Mongrel. Just use Apache 2.2 and mod_proxy balancer. http://blog.innerewut.de/articles/2006/04/21/scaling-rails-with-apache-2-2-mod_proxy_balancer-and-mongrel Jonathan -- Jonathan Weiss http://blog.innerewut.de
2001 May 15
3
box around a barplot
...) barplot(pc,ylim=c(0,30),yaxs="r",xaxs="r",ylab="Anzahl" ,names.arg=c("Mac","286er","386er","486er","Pentium I") ,axisnames=T,col="gray") ---------- Thanks in advance Bernd -- Bernd Wei? (bernd.weiss at epost.de) PGP Key ID: 0x4117206F PGP FP: 08B2 09CD 7192 526D 93FD 2070 53DB 7C4F 4117 206F www.pgpi.org -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help&q...
2018 May 04
4
Is a password required for the Linux account?
On 04/05/2018 15:46, Chris Weiss wrote: > technically it does not need a passwd, and you don't need to do > password sync.  i should work just fine. Thanks. If the matching Unix account has no password, how come it doesn't trigger an error when Samba accesses the underlying Unix filesystem? Doesn't Linux prom...
2011 Jul 17
3
?Accuracy of prop.test
...se excuse any etiquette breaches as I do not yet have a feel for how the list operates. I am in the process of teaching myself statistics using R as my utility as my ultimate goals cannot be satisfied by Excel or any of the plug-ins I could afford. I am currently looking at chap12 page 552 of Weiss's Introductory Statistics 9th edition. Example 12.5 demonstrates using "Technology" to obtain a One-Proportion z-Interval. n=202 x=1010 confidence interval = .95. Answer given by Minitab 0.175331, .224669 Answer given by TI-83/84 .17533, .22467 Answer given by Weiss's Excel P...
2012 Sep 12
2
[LLVMdev] code generation problem
...er to the called function, this crashes with SIGBUS. These instructions don't make sense in the context of the code, which is why I'm suspecting a code generation error. I'd appreciate any any suggestions regarding what could cause this behavior or where to look for clues. Thanks, Eran Weiss. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120912/eb87d5e9/attachment.html>
2006 Apr 07
2
Prototype 1.5.0_rc0 breaks my Form.serialize
...option> </option value="1">Nr. 1</option> </option value="1">Nr. 1</option> </select> Now I get foo=''Please select a value'' against foo='''' with prototype 1.4. This breaks my code. Jonathan -- Jonathan Weiss http://blog.innerewut.de