search for: likethis

Displaying 6 results from an estimated 6 matches for "likethis".

Did you mean: like_this
2006 Mar 27
1
rescue value
Do you know if exist a method to rescue the variable value pass to a page .rhtml? Something sucj as "_GET" in PHP? -- Posted via http://www.ruby-forum.com/.
2006 Mar 14
4
has_one
I''ve got an order model that stores order data. One piece of data is a credit card type, which is a digit 1,2 or 3. I have a cardType model that has an id, shortName and LongName for the credit card merchant (visa, mastercard, amex). I want to be able to say: order.cardType.shortName, but can''t seem to get has_one working. It works with has_many and a finder_sql statement on
1999 Oct 22
0
2.0.5 smbmount chokes on chars needing shell-escape
...aracters in share names like " " and ")" (space, close paren) that need to be escaped when passed to the shell. However, it seems like the 2.0.5 smbmount calls smbmnt via the shell, and so if you try to do something like: smbmount "//smbserver/sharename with funny chars(likethis)" mountpoint you get an error from the shell pointing out that it doesn't like the invalid characters. Double escaping those characters also doesn't work, smbmount doesn't like things like smbmount "//server/share\ name". So my question: under Linux is it possible to...
2009 Nov 28
2
Error: Invalid TID with samba 3.4
...(samba 3.2.3). Since the upgrade I've had issues with a device not finding any wokrgroups/domains when doing an nmb lookup. The device is a wireless music player that can make an SMB connection and has worked fine until the upgrade. When sniffing the network, I get a log (trimmed) that looks likethis: NBNS Name query response NB 192.168.1.3 NBNS Name query response NBSTAT BROWSER Get Backup List Response NBNS Name query response NB 192.168.1.3 TCP netbios-ssn > ddrepl [SYN, ACK] Seq=0 Ack=0 Win=5840 Len=0 MSS=1460 TCP netbios-ssn > ddrepl [ACK] Seq=1 Ack=72 Win=5840 Len=0 NBSS Positive s...
2006 Dec 20
0
[LLVMdev] Soft-float
...t; > Yes, this should be fine. > > > >> This question is more about a theoretical possibility. At the > >> moment my embedded target supports i32 registers. But some >> embedded systems are still only 16bit, which means that they would >> need something likethis. > >> I'm wondering, how easy or difficult would it be to support such > a mapping to any integer type? > > > > It should be transparently handled by the framework. Basically, > you'd > > get: > > > > f32 -> f64 -> i64 -> 2x i32 -&gt...
2006 Dec 20
2
[LLVMdev] Soft-float
> >> d) Would it be possible with current implementation of soft-float >> support to map f32/f64 to integer types smaller than i32, e.g. to >> i16? >> I have the impression that it is not necessarily the case, since it >> would require that f64 is split into 4 parts. > > Yes, this should be fine. > >> This question is more about a theoretical