Displaying 20 results from an estimated 1000 matches similar to: "''xm save X" after doing "xm pause X" (CHEKCPOINTING)"
2007 Jun 17
3
xm save -checkpoint supported?
Hi,
I emailed about a week ago but did not get any response back This my
second attempt.
I understood that xm save -c (checkpointing feature) was included in Xen
3.1, but after
taking days to have Xen running it seems that Xen 3.1 does not support VM
(PVM or HVM)
checkpointing. Is there any pseudo-stable version of Xen that supports
checkpointing?
cc
2013 Jul 02
0
[LLVMdev] SCEV update problem
Hi,
We come across a ScalarEvolution (SE) problem the other day. It seems to
be a fundamental design problem. I don't think I have a clean and cheap
fix to
this problem. I talked with Andy in the phone yesterday, he told me it is a
known fundamental problem. But I don't see any discussion on this
problem on the
list, so I post the problem here, soliciting your insightful comment.
2006 Jul 26
4
yhtml plugin
I have released a yhtml plugin, which is available at
http://http://svn.visualjquery.com/admin_console/trunk/admin_console/vendor/plugins/yhtml
You can also get my other plugins, specificlly: the pre-alpha
administrative console (AJAX-based scaffolding engine),
acts_as_automatic, which allows you to define associations in a single
yaml file, and not need to define has_many, has_one,
2006 Jul 09
0
[PATCH] Fix error message of xm pause/unpause command
Hi,
When I tested the xm pause/unpause command, I found poor error messages.
The following is the error messages.
# xm list
Name ID Mem(MiB) VCPUs State Time(s)
Domain-0 0 492 1 r----- 394.6
vm1 1 512 1 r----- 3.0
# xm pause 0
Error: (22, ''Invalid argument'')
# xm pause
2009 Oct 15
0
LondonR Meeting - Free event
Hi all,
The LondonR meeting is finally approaching and I am pleased to say that
the venue and agenda have been finalised.
Thank you to everyone who has already confirmed their places, and a
little reminder to those who have yet to do so.
I really hope you can all make it, and I look forwards to seeing you
there.
Please don't hesitate to contact me if you have any queries.
2013 Apr 26
1
Bug#706233: Incorrect information about xm dump-core and pausing or not pausing in xm man page
Package: xen-utils-common
Version: 4.1.4-2
Severity: normal
Hi,
During some research I encountered incorrect information in the man page
of xm, about the dump-core functionality:
The man page says: "Defaults to dumping the core without pausing the
domain if no I<OPTIONS> are specified."
When taking a look at the source code of this process, the default
behaviour is to actually
2007 Feb 28
4
[PATCH] [Xm-Test] A test case doing local migration 3 times in a loop
The following test case does local migration 3 times in a loop. I
currently see the following error output on x86-64 (only!) inside the
guest (change debugMe in line 68 of xm-test/lib/XmTestLib/Console.py to
True):
@%@%> XENBUS error -12 while reading message
XENBUS error -12 while reading message
XENBUS unexpected type [1325400064], expected [4]
XENBUS error -12 while reading message
XENBUS
2006 Jul 07
4
VM boots BUT keep throwing: "INIT: Id "X" respawning too fast: disabled for 5 minutes"
Hi,
This is my setting:
I have a Logical Volume /dev/VG/suse with Suse installed. I have added
it to the grub and I can boot it and works perfectly fine.
Now I am running /dev/VG/root which is running Xen0. I have created a
Xen config file to boot a VM with disk: /dev/VG/suse. In other words I
want to boot
/dev/VG/suse as a virtual machine.
Below is what I am getting at boot time :
2013 Jul 08
1
Segmentar archivos en R (Antonio José Sáez Castillo)
Habría que buscar la vuelta, yo no lo se, pero posiblemente lo siguiente da una pista.
Nota: al mismo código le sume una línea al final
datos<-c(2,3,4,5,6,7,8)
quantile(datos)
quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95))
as.matrix(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95)))
as.data.frame(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95)))
# ¿ y si solo solicita
2013 Jul 08
2
Segmentar archivos en R (Antonio José Sáez Castillo)
Estimado Mauricio Monsalvo
Le paso una idea, no es un código muy lindo que digamos, pero al correrlo
seguramente se dará cuenta de mi sugerencia.
datos<-c(2,3,4,5,6,7,8)
quantile(datos)
quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95))
as.matrix(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95)))
as.data.frame(quantile(datos,probs = c(0.25, 0.75, 0.85, 0.90, 0.95)))
# ¿ y si solo
2013 Jul 08
0
Segmentar archivos en R (Antonio José Sáez Castillo)
Gracias, Javier. Es lo que hice, en efecto, para salir del paso. Requerir
de a uno por vez. El problema es que no entiendo por qué debo hacerlo así
si quantile es una función más, como cualquier otra, que podría utilizar en
un tapply (porque necesito los datos según provincia, que obviamente es un
factor)
El 8 de julio de 2013 17:25, Marcuzzi, Javier Rubén <
2013 Jul 08
0
Segmentar archivos en R (Antonio José Sáez Castillo)
Hola.
Tengo un problema sencillo que no logro desentrañar:
Tengo estos tres objetos:
a <- as.matrix(with(ProduccionAC, tapply(Costo, Provincia, mean)))
b <- as.matrix(with(ProduccionAC, tapply(Costo, Provincia, median)))
c <- as.matrix(with(ProduccionAC, tapply(Costo, Provincia, quantile, probs
= c(0.25, 0.75, 0.85, 0.90, 0.95))))
Pero resulta que
cbind(a,b,c)
devuelve este resultado:
2011 Nov 30
3
Segmentar archivos en R (Antonio José Sáez Castillo)
Hola Leonardo. Creo que te refieres a analizar alguna variable por
grupos. Eso te lo pueden hacer las funciones tipo tapply().
Por ejemplo,
tapply(datos,factor,mean, na.rm=TRUE)
tapply(datos,factor,sd, na.rm=TRUE)
tapply(datos,factor,quantile,probs=c(0.05,0.95),na.rm=TRUE)
En cuanto a RCommander, que lo preguntabas después, algunas opciones del
menú tienen la opción "Analizar por
2011 Nov 22
13
Problema con la ayuda HTML
Hola:
Desde hace varias versiones no puedo utilizar la ayuda HTML de R.
Cuando, por ejemplo, lanzo ?nlm me abre el navegador con
ERROR
The requested URL could not be retrieved
While trying to retrieve the URL:
http://127.0.0.1:28683/library/stats/html/nlm.html
The following error was encountered:
Connection to 127.0.0.1 Failed
The system returned:
(111) Connection refused
The remote host
2007 Feb 13
1
RE2: Suddenly "Subscript out of bounds"
If you tell me how to update R itself automatically, I will go for your
advice.
I am not aware of any method to do it...
Bye
Rick
"ONKELINX,
Thierry"
2002 Dec 13
3
Problem authenticating with Samba (security=domain) + Windows 2000 PDC
Hi all!!
I'd set up my samba 2.2.7 to auth with "security=domain" mode, but my
clients cannot auth successfully never because the samba server cannot
"talk" correctly with my PDC(w2k adv. Server).
In the computer manager event, I see authentication request but with
empty usernames......so the PDC reject the authentication request.
Is this a know
2002 Oct 18
5
Printing with wine
Ooops, I guess a suject will get some of you to read this, hey?
Hi All,
Wondering if there is a document that tells how to get wine printing through
a cups printer working? Yes I know the wine docs say it's all magic and if
you're using cups your printing will magically work, but for some reason, it
doesn't, my wine session crashes and burns when I try to print from the
built in
2004 Feb 06
1
Service pause and resume
I committed a new version of service.c and daemon_test.rb.
Now you can pause and resume a Ruby service module.
Regards,
Park Heesob
--MIME Multi-part separator--
2004 Feb 09
1
Curious pause/resume behavior
Hi all,
While testing the pause/resume functionality with the daemon_test.rb
script, I noticed this odd bit of behavior. It appears that sometimes,
the pause command seems to actually stop the service. It doesn''t happen
every time - just sometimes. Here is a bit of command line history to
demonstrate:
C:\eclipse\workspace\win32-service-0.4.0\test>ruby daemon_test.rb start
VERSION:
2004 Nov 27
1
how to pause between plots running scripts?
I used pause() from library(DAAG) to pasue between plots. This works
when I source a script, but seems don't work when I run (ctrl + R) the
script in R.
Did I do something wrong? Thanks.