Displaying 20 results from an estimated 700 matches similar to: ""undo" a model"
2006 Aug 07
28
Dr Nic’s Magic Models
Welcome! Welcome! Welcome! Ladies and Gentlemen, today you shall be
thrilled and dazzled by wonders of magical mystery.
Dr Nic?s Magic Models will now be unveiled to all. Mystery and magic
that you will be able to perform at home.
Within your ActiveRecord models, never again will you need to write:
* validates_presence_of validations
* has_many and belongs_to statements
* has_many
2003 Nov 02
2
dies on start-up: Auth process
I was digging through some of the archives and ran into someone who was
having the same problem, but for completely different reasons....i think.
dovecot: Nov 02 07:58:51 Info: Dovecot starting up
dovecot: Nov 02 07:58:52 Error: Auth process died too early - shutting down
dovecot: Nov 02 07:58:52 Error: child 27673 (login) killed with signal 11
dovecot: Nov 02 07:58:52 Error: child 27672 (login)
2004 Jul 21
2
imap support question
OK, I'm actually trying to write something which interacts with IMAP.
I'm trying to run the FETCH command and it goes OK, but I'm wondering
how I might be able to call both RFC822.SIZE and BODY[HEADERS.FIELDS(..)
in the same call. Right now I'm only able to get this to work with two
calls to the server. I was hoping to avoid making two calls.
Any suggestions?
(I realize it
2007 Apr 19
4
Save sessions on file system instead of database table?
Hi
Is there a way to save session data on the file system (like in Rails)
instead of a database table?
The reason I''m asking is, that I''m writing a Camping application without
using ActiveRecord (mostly for learning purposes) and I don''t want to
use ActiveRecord just for sessions.
Thanks,
Thomas
-------------- next part --------------
A non-text attachment was
2007 Jul 04
0
[1098] trunk/wxruby2: Test return value from XmlResource#load and raise an exception on failure
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding:
2006 Aug 02
4
RadRails and EdgeRails
Anyone know how to setup EdgeRails with RadRails ?
Stuart
2011 Nov 28
5
window manager interface commands for linux
How can i replicate this in Linux:
source(file.choose())
I've tried source(tkgetOpenFile()) but with no luck
2007 Apr 26
2
How to close Frame?
When I call frame.destory on Windows XP, I am told that
CodeLineStatistics/init.rb:5: [BUG] Segmentation fault
ruby 1.8.6 (2007-03-13) [i386-mswin32]
This application has requested the Runtime to terminate it in an unusual
way.
Please contact the application''s support team for more information.
What''s the correct way to close the frame?
--
flyerhzm@hotmail.com
2007 Jan 19
2
[Xen-ia64-devel][PATCH] Fix Xen crash when creating VTI in some machines.
Xend will do a hypercall to destory domain when creating VTI guest fail.
If "is_vti"
not be set at this point, HV will call relinquish_vcpu_resource() which
belong
to domU. It may try to free a NULL pointer, so dom0 crash.
This patch fix it.
Signed-off-by, Zhang Xin < xing.z.zhang@intel.com >
Good good study,day day up ! ^_^
-Wing(zhang xin)
OTC,Intel Corporation
2006 Aug 12
5
Administrative Console Screencast
The first administrative console screencast is now available at:
http://screencasts.visualjquery.com/demo1/
I''ve posted a bunch about the Admin Console, but it''s essentially an
automated scaffold that works as an engine.
The screencast is a quick overview of the minor things you''ll need to do
in models, environment.rb, and others, as well as ::drumroll:: a demo of
2006 Mar 19
2
Functional Testing
Hey all,
I have a many-to-many relationship (Questions
has_and_belongs_to_many Answers), and when I destroy
the Question (the one) I also destroy all the Answers
(the many).
Since the following doesn''t seem to work for
has_and_belongs_to_many:
class Question < AR::Base...
has_and_belongs_to_many :answers, :dependent =>
:destroy
end
I have this embedded in a transaction block
2011 Jul 28
2
rails 3 routing error
Here''s the error:
1) SessionsController GET ''new'' should be successful
Failure/Error: get :new
ActionController::RoutingError:
No route matches {:controller=>"sessions", :action=>"new"}
# ./spec/controllers/sessions_controller_spec.rb:8:in `block (3
levels) in <top (required)>''
2) SessionsController GET
2017 Mar 17
2
Re: VIR_ERR_OPERATION_INVALID from virDomainDestroyFlags call
"Daniel P. Berrange" <berrange@redhat.com> writes:
> On Fri, Mar 17, 2017 at 11:55:13AM +0100, Milan Zamazal wrote:
>> Hi, we experienced a strange, non-reproducible error after a successful
>> migration to another host. When we called virDomainDestroyFlags with
>> VIR_DOMAIN_DESTROY_GRACEFUL flag after the migration on the source host,
>> we got
2004 Jan 27
2
[Bug 797] ignores setting of CONSOLE var in /etc/default/login
http://bugzilla.mindrot.org/show_bug.cgi?id=797
Summary: ignores setting of CONSOLE var in /etc/default/login
Product: Portable OpenSSH
Version: 3.7.1p2
Platform: UltraSparc
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: openssh-bugs at mindrot.org
2017 Mar 17
2
VIR_ERR_OPERATION_INVALID from virDomainDestroyFlags call
Hi, we experienced a strange, non-reproducible error after a successful
migration to another host. When we called virDomainDestroyFlags with
VIR_DOMAIN_DESTROY_GRACEFUL flag after the migration on the source host,
we got VIR_ERR_OPERATION_INVALID (code 55) error. The same with
repeated virDomainDestroyFlags calls. Normally, we would expect either
success or VIR_ERR_NO_DOMAIN error. `virsh
2006 Jun 22
1
Active Record question, orphaned children
I have a Deck object and a Card object with their corresponding tables. (You
know a deck of cards.) When I destory a Deck it leaves orphaned cards in
the database. Is there a way to set up the objects with ActiveRecord so that
when a parent object is destoryed the child objects are destroyed as well?
My code below.
class Deck < ActiveRecord::Base
has_many :cards
end
class Card <
2006 Jul 24
9
Mongrel: auto-reload plugins?
When developing applications, Webrick will automatically reload
controllers, models, etc. if the source changes. For obvious reasons, it
doesn''t do this for plugins, which makes it a pain to develop said plugins.
I was hoping Mongrel might have some facility to say "watch this directory
too and reload any changes". Obviously, re-init''ing all plugins would be
2013 Apr 07
1
reset = destroy start
what is different between destroy -> start and reset in virsh?
i meet this position , when i reset a domain, it cannot start , it stoped at initialize initd.but when i destory it ,and start it , it can run normally.
i am very confuse about them.
who can tell me the difference....
thanks a lots.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Dec 21
1
Continous decoding of several audio files without destroying speex_decoder
Hi All,
We are using speex decoder only for narrow band decoding.
Quite often, even though source frame is not silence, decoded audio is
silence.
I wonder there is a problem in the way we uses speex decoder API.
Basically, we initialize speex decoder only once and just reset the decoder
before we decoding another file.
Do we need to intialize speex decoder and destory decoder for each audio
file
2006 Aug 03
3
RE: [Patch][RFC] Support "xm dump" (is Re: Re: [Patch]Enable "sysrq c" handler for domU coredump)
Two things:
1. I''m not convinced ''xm crash'' is needed - ''xm destroy'' will do this
(and if you want
a dump, do ''xm dump'' followed by ''xm destroy'')
2. I don''t see the point of the --noreboot option on ''xm dump'' -- I
think this command
should simply live-dump the specified domain - as