search for: destory

Displaying 20 results from an estimated 58 matches for "destory".

2019 Feb 28
0
Crash when opus encoder destory on Android platform
I integrated libopusenc(version 0.2.1) to Android platform. but I collected some crash when opus encode destory. error backstrace as following: 1 #00 pc 0006828e /system/lib/libc.so (je_huge_salloc+133) [armeabi-v7a] 2 #01 pc 0006d303 /system/lib/libc.so (ifree+274) [armeabi-v7a] 3 #02 pc 0006d65d /system/lib/libc.so (je_free+72) [armeabi-v7a] 4 #03 pc 000025ef libopusenc.so ope_encoder_destroy [armeabi-v7...
2009 Jan 25
2
Unable to destory a pool
# zpool list NAME SIZE USED AVAIL CAP HEALTH ALTROOT jira-app-zpool 272G 330K 272G 0% ONLINE - The following command hangs forever. If I reboot the box , zpool list shows online as I mentioned the output above. # zpool destroy -f jira-app-zpool How can get rid of this pool and any reference to it. bash-3.00# zpool status pool: jira-app-zpool state: UNAVAIL
2007 Feb 10
1
calling destory on HABTM clear
I know this is probably stupidly simple, but I can''t seem to figure it out. I have a many-to-many association using HABTM. Im trying to clear all the stuff in the join table and call destroy on all the joined items. For example if I have a many to many for albums and photos, def method album=Album.find(4) album.photos.clear # NOW HOW DO I DESTROY ALL THOSE PHOTOS? end The things I
2006 Apr 21
2
destory Test Case Messes up all tests
I am trying to create unit tests for my users model but when I add a test that destroys a user, that user is not available in any of the other test. If I remove the test that destroys the user all my other tests work again. All the fixtures are suppose be reloaded between tests right? Here is my testcase : require File.dirname(__FILE__) + ''/../test_helper'' class UserTest
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 < ActiveRecord::Base b...
2007 Feb 14
0
Asterisk & CME integration using h323
...68.99.254 CSeq: 103 BYE User-Agent: Asterisk PBX Max-Forwards: 70 Content-Length: 0 --- localhosExternalRTPChannel Destroyed localhosExternalRTPChannel Destroyed -- Call with Enrico [192.168.99.2] completed (22) Feb 14 11:36:41 NOTICE[31439]: chan_h323.c:1479 cleanup_connection: Avoiding H.323 destory deadlock on ip$192.168.99.2:53716/21 localhost*CLI> <-- SIP read from 192.168.99.122:5060: SIP/2.0 200 Ok Via: SIP/2.0/UDP 192.168.99.254:5060;branch=z9hG4bK1a8c7be3;rport From: "1003" <sip:1003@192.168.99.254>;tag=as769a2c55 To: <sip:2000@192.168.99.122:5060>;tag=147351...
2006 Mar 19
2
Functional Testing
...s if !answer.destroy #printf ("Answer %s on Question did not destroy!\n", answer.id.to_s) raise ActiveRecord::RecordInvalid.new(answer), "Error: Answer ID#:".concat(answer.id.to_s).concat(" on Test ID# ").concat(@exam.id.to_s).concat(" failed to destory! <br /> Contact Administrator for help! ") end end if !question.destroy #printf ("Question %s on Section did not destroy!\n", question.id.to_s) raise ActiveRecord::RecordInvalid.new(question), "Error: Question ID# ".concat(question.id.to_...
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...
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...
2011 Aug 10
9
zfs destory snapshot takes an hours.
Hi, I am facing issue with zfs destroy, this takes almost 3 Hours to delete the snapshot of size 150G. Could you please help me to resolve this issue, why zfs destroy takes this much time. While taking snapshot, it''s done within few seconds. I have tried with removing with old snapshot but still problem is same. =========================== I am using : Release : OpenSolaris
2011 Jul 28
2
rails 3 routing error
...llers/sessions_controller.rb: class SessionsController < ApplicationController def new @title = "Sign in" end end config/routes.rb: SampleApp::Application.routes.draw do #get "sessions/new" resources :users resources :sessions, :only => [:new, :create, :destory] #get "users/new" match ''/signup'', :to => ''users#new'' match ''/signin'', :to => ''sessions#new'' match ''/signout'', :to => ''sessions#destroy'' match ''/about&...
2017 Mar 17
2
Re: VIR_ERR_OPERATION_INVALID from virDomainDestroyFlags call
...rror. The same with >> repeated virDomainDestroyFlags calls. Normally, we would expect either >> success or VIR_ERR_NO_DOMAIN error. `virsh list' didn't show the VM. > > What about 'virsh list --all' - i expect you have an inactive guest > present, as calling destory on an inactive guest triggers OPERATION_INVALID I see. It's interesting, since we use transient domains. Are there known circumstances when OPERATION_INVALID could be returned for a transient domain? Can we assume that we never receive that error when trying to destroy a running domain? Th...
2006 Aug 08
3
"undo" a model
In the event that I really don''t want a certain model, can I delete it? Is there a tool that I can use besides ''rm'' to ensure I hit everything related to the model? Right now my only guess is to just remove all files that match a filemask and hope for the best.
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
2007 Dec 21
1
Continous decoding of several audio files without destroying speex_decoder
...g. 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 decoding ? Here is current pseudo code. main() { m_speex = speex_decoder_init(speex_nb_mode); speex_decoder_ctl(m_speex, SPEEX_SET_ENH, &tmp); speex_bits_init(&m_bits); while(end of files) { speex_decoder_ctl(m_speex, SPEEX_RESET_STATE, &tmp); speex_b...
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
2006 Mar 20
0
Prodding channel h323
hello, sometimes per day, below messages appears in my asterisk/messages log... any suggestion, what this mean? thx PJ Mar 20 07:57:53 WARNING[4672] channel.c: Prodding channel 'H323/ip$172.20.1.11:53473/331' failed Mar 20 07:57:53 NOTICE[14280] chan_h323.c: Avoiding H.323 destory deadlock on ip$172.20.1.11:53473/331 Mar 20 07:57:53 NOTICE[14280] chan_h323.c: Avoiding H.323 destory deadlock on ip$172.20.1.11:53473/331
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: <http://listman.redhat.com/archives/libvirt-users/attachments/20130407/cdc...
2019 Jan 18
1
stuck in pxe loop from uefi + tianocore/ovmf
...uefi working between 2 vms. However after the build is done and I reboot, I still come up to pxe b/c tianocore always starts, from what I've seen, with trying PXE first. Great for initial builds :) but I would like to it stop after. In the xml I am pointing to the disk to boot first. if I virsh destory and run qemu directly on the qcow image, the vm comes up as expected and boots into the OS I have tried removing the nvram under /var/lib/libvirt/qemu/nvram/virtmachine. But the vm boots up and starts looking for pxe again. If I let that timeout, then type exit and select continue in the tianocore...
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