search for: seee

Displaying 9 results from an estimated 9 matches for "seee".

Did you mean: see
2011 Aug 10
1
Floats in Microsoft Basic format
.../* s = sign bit */ /* b = bit */ sign = msbin[2] & 0x80; /* 1000|0000b */ /* IEEE Single Precision Float Format */ /* m3 m2 m1 exponent */ /* mmmm|mmmm mmmm|mmmm emmm|mmmm seee|eeee */ /* s = sign bit */ /* e = exponent bit */ /* m = mantissa bit */ for (i=0; i<4; i++) ieee[i] = 0; /* any msbin w/ exponent of zero = zero */ if (msbin[3] == 0) return 0; iee...
2016 Jul 05
2
Virtual machine in state "in shutdown"
Hello, We are currently facing a strange situation. One of our VM is shown by 'virsh list' as in state "in shutdown" but there is no more a qemu-kvm process linked to it. So we have a few questions: 1. What does means the state in shutdown (I have not found much information about it)? 2. How to cleanly "shutdown" the vm, or more correctly, clean the status in
2016 Jul 05
0
Re: Virtual machine in state "in shutdown"
...gt; So we have a few questions: > > 1. What does means the state in shutdown (I have not found much information > about it)? 'in shutdown' means QEMU has gone away, and libvirt is cleaning up any state it has left over. There's little info on it, since you should almost never seee it - a VM is only in that state for a tiny fraction of a second normally. > 2. How to cleanly "shutdown" the vm, or more correctly, clean the status in > virsh/libvirt? If you have a "in shutdown" state that persists, it is probably a sign of a bug in libvirt. You could...
2006 Oct 05
0
TDDMate website has gone missing
I wish to install TDDMate but the command... sudo gem install --source http://dist.oaklandcutlery.com tddmate ...fails, and I seee that the domain name has been parked for weeks. Is there a new location for this plugin for TextMate? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: T...
2010 May 12
1
R 2.11.0 on RHEL5 / RODBC
I am compiling R 2.11.0 on a RHEL5.3 box using the following settings ./configure --with-readline=yes --enable-R-shlib=yes --with-x=yes --with-blas="-llibptf77blas -lpthread -llibatlas" --prefix=/usr/local/R-2.11.0 JAVA_HOME=$JAVA_HOME CPPFLAGS="-I/usr/local/unixODBC-2.3.0/include" I have compiled and installed unixODBC-2.3.0 (64-bit) in /usr/local and can connect to and
2011 Jun 12
1
snow package
Hi I try parallelising some code using the snow package and the following lines: cl <- makeSOCKcluster(8) pfunc <- function (x) (if(x <= (-th)) 1 else 0) ###correlation coefficient clusterExport(cl,c("pfunc","th")) cor.c.f <- parApply(cl,tms,c(1,2),FUN=pfunc) The parApply results in the error message: > cor.c.f <- parApply(cl,tms,c(1,2),FUN=pfunc) Error
2007 Apr 26
5
class parameters
Hello there, Just wanted to know if class will be able to have parameters ? Right now i use: define resolver( $options =''rotate'', $nameserver, $search='''',$domain='''',$sortlist=''''){ file{ ''/etc/resolv.conf'': content =>
2016 Jul 05
2
Re: Virtual machine in state "in shutdown"
...gt; > > 1. What does means the state in shutdown (I have not found much > information > > about it)? > > 'in shutdown' means QEMU has gone away, and libvirt is cleaning up > any state it has left over. There's little info on it, since you > should almost never seee it - a VM is only in that state for a tiny > fraction of a second normally. > > > 2. How to cleanly "shutdown" the vm, or more correctly, clean the status > in > > virsh/libvirt? > > If you have a "in shutdown" state that persists, it is probably a sig...
2007 Oct 09
2
R dynamic memory management
I have a loop that processes all the raw data files in agiven directory. It should allocate only the memory to accomodate the filenames list. Each file is loaded into RAM one at a time and saved to another directory after processing. The R script runs fine but it had some memory problems so it was terminated before getting to the end of the list. This is a Windows XP desktop with ~ 1GB RAM In the