Displaying 2 results from an estimated 2 matches for "sauvi".
Did you mean:
saudi
2007 Jul 13
8
More sorting problems with untokenized index
...uot;aurora denver lakewood",
"corpus christi"]
and a later batch:
>> Event.find_by_contents("marathon",:sort=>"city_for_sort",:offset => 400).map(&:city_for_sort)
=> ["ocean shores", "austin", "boca raton", "sauvie island", "crested
butte", "austin", "portland", "avery", "leadville", "houston"]
Notice that name works:
>> Event.find_by_contents("marathon",:sort=>"name_for_sort",:offset => 400).map(&:name_fo...
1999 Jul 19
1
0.65 HPUX|AIX make check
Update (for me):
* On HPUX (cc/f77/make), make check passes the Examples but fails in
arith-true.R because
is.infinite(.Machine$double.base ^ .Machine$double.max.exp)
gives FALSE.
Interestingly
> .Machine$double.base
[1] 2
> .Machine$double.max.exp
[1] 1024
> 2 ^ 1024
[1] 1.797693e+308
> 2 ^ 1025
[1] 1.797693e+308
> 2 ^ 2024
[1] 1.797693e+308
so I guess we need help here.
*