search for: edim

Displaying 3 results from an estimated 3 matches for "edim".

Did you mean: edi
2005 Apr 01
1
dovecot don't start
hi...I've a problem with dovecot 0.99.13-3 for fedora core 3. When I start dovecot with "service dovecot start" it seems to start succesful but it is a false message. It don't start and in /var/log/maillog I've this errors: Apr 1 15:37:00 edim dovecot: Dovecot starting up Apr 1 15:37:03 edim dovecot: Auth process died too early - shutting down Apr 1 15:37:03 edim dovecot: child 9593 (auth) returned error 127 Apr 1 15:37:03 edim pop3-login: fd_send(-1) failed: Broken pipe my configuration is : protocols = imap imaps pop3 pop3s imap_l...
2008 Dec 23
1
Approximate Entropy?
Dear guRus, is there a package that calculates the Approximate Entropy (ApEn) of a time series? RSiteSearch only gave me a similar question in 2004, which appears not to have been answered: http://finzi.psych.upenn.edu/R/Rhelp02a/archive/28830.html RSeek.org didn't yield any results at all. Happy holidays (where appropriate), Stephan
2007 Oct 08
7
belongs_to association doesn't work with _id set
Hello there, I''m developing an application which has models like this: class Vehicle < ActiveRecord::Base belongs_to :internal_dim, :class_name => "Dimension" def before_create() idim = Dimension.create self.internal_dim_id = idim.id #self.create_internal_dim # Doesn''t work end end class Dimension < ActiveRecord::Base