Displaying 20 results from an estimated 207 matches for "tinge".
Did you mean:
dinge
2005 Mar 02
1
404 and NameError
Hi guys,
I was wondering if anyone knew a fix for this problem I have. I''ve
ported one of the apps I work with to Rails 0.10.0 to use Routes.
Everything works great, except for 404 pages.
The thing is that if I give a non existent path, I get the correct 404
error page back. However if I request a non existent file such as
test.php (in fact anything non existent that isn''t a
2006 Jun 12
0
RE: Error: Not an HVM capable platform, we stop crea ting!
I cant see that all in my bios
-----Original Message-----
From: Jose Betancourt [mailto:jbetancourt@novell.com]
Sent: 11 June 2006 17:10
To: jroberts@rias.co.uk
Cc: Xen-users@lists.xensource.com
Subject: [Xen-users] Error: Not an HVM capable platform, we stop creating!
Check that the processor on your machine is actually capable of
supporting Hardware Virtualization.
A list of Intel and AMD
2002 Jun 23
0
Why does the Win2K print monitor say Paused when prin ting?
If you're using LPRng, add :done_jobs=0
to either the .common section or
each printer's entry. This will remove
the (retained) last job printed, and you won't
see it displayed as Paused anymore.
It seems that if Samba sees a job in the
lpd queue dir that has been printed, but not
removed, it shows that job with a status of
Paused.
LPRng after 3.8.10 defaults to :done_jobs=1,
and
2005 Mar 02
2
wilcox.test statistics
Hi,
Could anyone provide the formula of the statistics which the wilcox.test
used for the two-sample rank-sum test? I got some statistics of 0 values,
but it is impossible to have 0 "rank-sum". Does the function use the
Mann-Whitney U test statistics? Thanks.
Ting-Yuan Liu
2006 Mar 28
4
1.1 won''t install!
I get this result in Terminal (10.4.latest)
pb12-olivier:~ ambush$ gem install rails --include-dependencies
Attempting local installation of ''rails''
Local gem file not found: rails*.gem
Attempting remote installation of ''rails''
ERROR: While executing gem ... (Errno::EACCES)
Permission denied -
/usr/local/lib/ruby/gems/1.8/cache/activesupport-1.3.0.gem
2006 Mar 24
3
generating a controller that inherits from a base controller
how can I generate a new controller that inherites from another bas
controller?
using: ruby/script generate myNewController command?
--
Posted via http://www.ruby-forum.com/.
2006 Feb 24
6
Changes to Class File Not Being Recognized by Webrick
Newbie, having good luck with Dave Thomas'' book ''Depot'' application
until I discovered that changes to one of my .rb class files are not
being recognized until I bounce the webrick server.
Any ideas on this? Thanks.
--
Posted via http://www.ruby-forum.com/.
2006 Apr 11
4
find(params[:id]) question
Admin Controller -
def show
@wizard = Wizard.find(params[:id])
end
View -
<td><%= link_to ''Show'', :action => ''show'', :id => wizard %></td>
URL -
http://localhost:3000/admin/show/1
I want user_name (one of the columns in the database) instead of the id
to show
For example:
2008 Aug 05
0
[PATCH] collect memory location of each domain
This patch will collect memory location (the domain has how many pages
in different node) of each domain and display if you input debug key.
Signed-off-by: Zhou Ting <ting.g.zhou@intel.com>
Thanks,
Zhou, Ting
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2008 Aug 21
0
[PATCH]fix a little problem in formats file of xentrace
This patch (attached) fixes a small problem in xentrace_format.
Signed-off-by: Yang Xiaowei <xiaowei.yang@intel.com>
Zhou Ting <ting.g.zhou@intel.com>
---
diff -r 0df3bf8aac1e tools/xentrace/formats
--- a/tools/xentrace/formats Mon Jun 16 16:35:17 2008 +0100
+++ b/tools/xentrace/formats Thu Aug 21 17:36:03 2008 +0800
@@ -23,8 +23,8 @@ 0x00081001 CPU%(cpu)d
2014 Jun 20
3
[Bug 963] New: nfq_udp_get_payload and nfq_udp_get_payload_len return wrong results
https://bugzilla.netfilter.org/show_bug.cgi?id=963
Summary: nfq_udp_get_payload and nfq_udp_get_payload_len return
wrong results
Product: libnetfilter_queue
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P5
Component: libnetfilter_queue
2004 Jun 14
3
How to 'stamp' a plot with meta-data?
Dear R users,
Sometimes, for tracking purposes, I am interested to add to a
plot some metadata such as
* the date it was produced
* filename that stores the plot
* perhaps data sources, author, etc
Ideally, I would like to be able to do this for any kind of plot,
plot(), barplot(), hist(), etc.; and, to be able to produce
plots with or without the metadata by a simple toggle mechanism.
2006 Jun 24
4
blog generator?
Hi Guys,
I''ve been out of the rails loop for a couple of months.
Now Im about to deploy another new app. But I need to add a simple
weblog to the application...
has anyone done a weblog generator or do yoyu know of any weblogs thats
easy to integrate in a current app??
thanks in advance!
Mikkel Bruun
www.strongside.dk - Football Portal(DK)
ting.minline.dk - Buy Old
2010 Nov 10
2
Performing a geometric seqeunce using iterators?
I want to make a function for geometric seqeunce
since
testing=function(x){i=1;ans=1;while(true){ans=ans+(1/x)^i ; i=i+1}
;return(ans)}
doesn't work... the program is freeze... from my research, i know i should
use iterators.
I read iterators.pdf at
http://cran.r-project.org/web/packages/iterators/iterators.pdf and didnt
find it helps solving my problem at all...
Is there any sources I
2006 Feb 07
3
Creating a new object with a passed in parent?
I have a simple object, Article, which has_one :parent of the same time.
On my Show page for a given article there will be a "new child" button
which will pass the current :id (or the current Article itself) to the
new form. What is the proper way to hide a reference to this parent in
the form so that when it is submitted back, the create method knows what
to do with it?
2006 Mar 14
5
GROUP BY and SUM
I have orders, order_items, and products.
I want to collate several orders so that I can get a SUM of quantities
ordered for each product etc.
Can I say something like (the below gives an error on :sum, and ignores
:group)
OrderItem.find(:all, :sum => ''quantity'', :group => ''product_id'',
:include => [:order, :product])
I want to get back a
2006 Feb 11
16
Why does''nt rails pick up more metadata from a mysql schema?
Hi,
when I define a db column to be non-nullable or of length 20 or as
numeric, I would expect rails to validate that, but that doesn''t seem
to be the case.
Any idea why that is? The metadata is accessible, at least in the mysql case.
I am using rails 1.0 with mysql 5.
Cheers,
Mariano
2003 Dec 05
2
attempting login with hostname not username
Hi. I'm running a RH 9 machine with Samba 3.0.0 as a domain member of a
Win2003 ADS domain. I've setup samba w/ winbind and added a test share on
the Linux box.
I can see and access Windows shares from my Linux box, but I cannot access
the Linux share from a Win2k machine. I can see the Linux machine and the
just fine when browsing the network, but when I attempt to access the share
I
2010 Oct 06
2
Multicast over Tinc
Would it be extremely difficult to do multicast over tinc?
How about reliable multicast over tinc?
This would be more traffic than multicast dns, but not _necessarily_
a great deal more.
It would be for syncing some information among freeipa domain controllers.
Would the tinc nodes need to be in all in switch or maybe even hub mode?
EthernetOverIP over tinc?
2008 Dec 01
0
[LLVMdev] Disable optimization
Daniel M Gessel dixit:
>Wouldn't Clang be a good option to generating unoptimized LLVM IR?
More like broken ;-) sometimes at least.
>On Nov 28, 2008, at 6:13 AM, Duncan Sands wrote:
>> They are not really done by LLVM, because no optimizations are done
>> on the
>> LLVM IR. They are done by llvm-gcc, a front-end to LLVM:
llvm-pcc, anyone? :รพ
//mirabilos
--