Displaying 20 results from an estimated 20000 matches similar to: "Rails Error when searching this mailing list"
2006 Feb 24
4
Rails Newbie Forum?
Hi all.
I''m a new convert (or at least I want to be a convert) to Rails. I''ve
got the book, have read it, done bits and pieces of the demo, and tried
to apply it to a rather complicated DB I''ve got here. I''ve got a ton of
questions, and before I bore everyone here, is there a dedicated forum
for Rails newbies to get help?
Yak
--
Posted via
2006 Feb 27
5
Localization: word wrap in tables?
I am a Rails noob, working on bringing a legacy db system into the 21st
century. I want to localize the UI for two languages (EN/JA). Since I
am already using the salted user system, I have been playing around with
T. Fuchs'' localization module. Nice and simple, already up and working.
But here''s the problem: Japanese text is wrapping weirdly in table
cells. I could set
2006 Feb 25
7
Help with DRY: too much code in my view
I''m a newbie to rails, and really to the whole DRY and MVC thing as
well, except where I accidentally fell into things doing it my own way
in the past.
I''ve got a fairly complex DB structure I want to create an interface for
using Rails. Getting simple tables to display, edit, save, not too much
problem there. But where I''m having trouble is figuring out where to
2007 Nov 28
0
[LLVMdev] Error while linking Tablegen
Hi there,
I've been trying to build llvm2.1 this week. I remembered succeeding in
doing that a month ago or so. I am kind of puzzled, what I'm doing wrong
this time. I'm working on a x86/linux system. I've tried several
gcc-versions (3.3, 3.4, 4.1, 4.2).
make stops with the following error message:
collect2: ld returned 1 exit status
make[2]: ***
2006 Feb 28
2
AJAX: do render but show element in same click?
I''m a rails newbie.
I''ve got a link_to_remote that puts a partial render into a div
("note1", "note2", etc.). As part of the display that comes up, I put
in a hide note link (element.toggle). Click that, the div goes away,
everything''s great... except now I can''t get it back.
How can I call the remote AND make the div show at the same
2018 Jan 26
1
exited on signal 6 (core dumped) when searching folder
Hey,
I'm getting messages exited on signal 6 (core dumped) when doing imap
command "a UID SORT (DATE) UTF-8 BODY someword"
message log file
Jan 26 13:57:20 mail dovecot: imap(kristjan.eentsalu at yyy.yy): Panic: file
charset-iconv.c: line 87 (charset_to_utf8_try): assertion failed: (srcleft
<= CHARSET_MAX_PENDING_BUF_SIZE)
Jan 26 13:57:20 mail dovecot: imap(kristjan.eentsalu at
2012 Jul 26
0
[LLVMdev] RFC: CondCodeActions refactor (was RE: Why is this assertion here?)
Yeah just the ordering are the real difference. Also, I use shifts and masks instead of conditionals and modules. My patch is attached. For me either patch is fine, but what LLVM has now is broken.
Either patch is fine, just need approval from someone to submit.
Micah
> -----Original Message-----
> From: Hal Finkel [mailto:hfinkel at anl.gov]
> Sent: Thursday, July 26, 2012 2:39 PM
2006 Feb 28
4
No action from AJAX link_to_remote...
AJAX & Ruby & Rails newbie here.
I''ve got a link to remote that I believe should be working, but doesn''t
seem in fact to do *anything*. I''m looking at the webrick log, since
the Book says I should be seeing some hot POST action in there, but
there''s literally no change when I click on the JS link. From looking at
the source that''s
2005 Jul 13
0
Search with specified charset
I've seen a problem with searching in the Prayer webmail client that
turns out to be caused by Prayer insisting on a charset called
"ISO-8859-1" and Dovecot, using Solaris iconv, not recognising it (all
the Solaris 8 iconv modules appear to be "ISO8859-1" etc. or just "8859-1").
This isn't a problem in Linux:
% iconv --list | grep 8859.1/
8859_1//
2012 Jul 26
2
[LLVMdev] RFC: CondCodeActions refactor (was RE: Why is this assertion here?)
On Thu, 26 Jul 2012 21:15:35 +0000
"Villmow, Micah" <Micah.Villmow at amd.com> wrote:
> Well, I found out the reason why this assert is here, and this is
> problematic.
>
> CondCodeActions only supports up to 32 different value types. Since
> we are past 32, what LLVM has is broken.
>
> Currently the 4 different Legalize states are stored in successive
>
2012 Jul 26
0
[LLVMdev] RFC: CondCodeActions refactor (was RE: Why is this assertion here?)
Well, I found out the reason why this assert is here, and this is problematic.
CondCodeActions only supports up to 32 different value types. Since we are past 32, what LLVM has is broken.
Currently the 4 different Legalize states are stored in successive bits and packed into a uin64_t, see TargetLowering.h.
/// CondCodeActions - For each condition code (ISD::CondCode) keep a
/// LegalizeAction
2015 Oct 12
2
ssh-keyscan non-standard port broken
Hello,
If one passes the -p option for a non-standard port to ssh-keyscan when
using the -f option to pull hosts from a file, it results in a
known_hosts entry that is incorrect:
micah at muck$ cat /tmp/try
199.254.238.47 micah.riseup.net,199.254.238.47
ssh-keyscan -t rsa -p 4422 -f /tmp/try > /tmp/known
micah at muck$ cat /tmp/known
[micah.riseup.net,199.254.238.47]:4422 ssh-rsa
2012 Sep 12
0
[LLVMdev] [cfe-dev] SPIR Portability Discussion
On Wed, Sep 12, 2012 at 4:02 PM, Villmow, Micah <Micah.Villmow at amd.com> wrote:
>
>
>> -----Original Message-----
>> From: Eli Friedman [mailto:eli.friedman at gmail.com]
>> Sent: Wednesday, September 12, 2012 3:50 PM
>> To: Villmow, Micah
>> Cc: Richard Smith; cfe-dev at cs.uiuc.edu; llvmdev at cs.uiuc.edu
>> Subject: Re: [cfe-dev] [LLVMdev] SPIR
2012 Sep 21
0
[LLVMdev] Proposal: New IR instruction for casting between address spaces
On Fri, 21 Sep 2012 20:01:39 +0000
"Villmow, Micah" <Micah.Villmow at amd.com> wrote:
> Here is an updated patch which moves TargetData out of Target and
> into Support/VMCore so that there is no circular dependencies.
Please split out the TargetData move into a separate patch.
Thanks again,
Hal
>
> > -----Original Message-----
> > From: Hal Finkel
2012 Aug 27
0
[LLVMdev] FW: RFC: Supporting different sized address space arithmetic
On Mon, 27 Aug 2012 15:25:50 +0000
"Villmow, Micah" <Micah.Villmow at amd.com> wrote:
> Most likely this code was added before getSExtOrTruncate was added,
> but not 100% sure. It seems to assume that no pointer can be more
> than 64bits in size.
Does LLVM generally support pointers of greater than 64 bits?
-Hal
>
> > -----Original Message-----
> >
2012 Sep 12
0
[LLVMdev] [cfe-dev] SPIR Portability Discussion
On Wed, Sep 12, 2012 at 3:40 PM, Villmow, Micah <Micah.Villmow at amd.com>wrote:
> ** **
>
> ** **
>
> *From:* metafoo at gmail.com [mailto:metafoo at gmail.com] *On Behalf Of *Richard
> Smith
> *Sent:* Wednesday, September 12, 2012 3:30 PM
> *To:* Villmow, Micah
> *Cc:* Eli Friedman; cfe-dev at cs.uiuc.edu; llvmdev at cs.uiuc.edu
>
> *Subject:* Re:
2012 Sep 12
0
[LLVMdev] [cfe-dev] SPIR Portability Discussion
On Wed, Sep 12, 2012 at 3:40 PM, Villmow, Micah <Micah.Villmow at amd.com> wrote:
>
>
>
>
> From: metafoo at gmail.com [mailto:metafoo at gmail.com] On Behalf Of Richard
> Smith
> Sent: Wednesday, September 12, 2012 3:30 PM
> To: Villmow, Micah
> Cc: Eli Friedman; cfe-dev at cs.uiuc.edu; llvmdev at cs.uiuc.edu
>
>
> Subject: Re: [cfe-dev] [LLVMdev] SPIR
2012 Aug 30
0
[LLVMdev] FW: RFC: Supporting different sized address space arithmetic
On Thu, Aug 30, 2012 at 3:51 PM, Villmow, Micah <Micah.Villmow at amd.com> wrote:
>
>
>> -----Original Message-----
>> From: Eli Friedman [mailto:eli.friedman at gmail.com]
>> Sent: Thursday, August 30, 2012 3:43 PM
>> To: Villmow, Micah
>> Cc: LLVM Developers Mail
>> Subject: Re: [LLVMdev] FW: RFC: Supporting different sized address space
>>
2017 Jun 28
0
Windows iconv() "failure" in certain locales
On 27.06.2017 17:36, Martin Maechler wrote:
> This is a continuation of the R-devel thread with subject
> "suggestion to fix packageDescription() for Windows users" :
>
> As I said there, a patch should rather address the underlying
> problem in packageDescription rather than a kludgy workaround
> patch for citation().
> (For that same reason, Ben Marwick
2012 Sep 12
2
[LLVMdev] [cfe-dev] SPIR Portability Discussion
> -----Original Message-----
> From: Eli Friedman [mailto:eli.friedman at gmail.com]
> Sent: Wednesday, September 12, 2012 3:50 PM
> To: Villmow, Micah
> Cc: Richard Smith; cfe-dev at cs.uiuc.edu; llvmdev at cs.uiuc.edu
> Subject: Re: [cfe-dev] [LLVMdev] SPIR Portability Discussion
>
> On Wed, Sep 12, 2012 at 3:40 PM, Villmow, Micah <Micah.Villmow at amd.com>
>