search for: rez

Displaying 20 results from an estimated 335 matches for "rez".

Did you mean: ret
2009 Aug 13
1
SystemShock2+Wine: mon. rez out of range/loss of keyboard
...shot. I intalled it from cd using the guidelines given in the AppDB, ie: i used the -ltngforce method of install, I installed the SS2Tool patch, and disabled cutscenes. Each time I run it fullscreen, the main menu is always set to 640x480, and that causes my monitor to bug out, saying that the rez is out of range. After tinkering with winecfg for a bit, I realized I could get a 1024x768 window for the game itself (but not the main menu) by just switching the game rez to 1024. Problem with that was that the window borders cut off the heads up display on the bottom of the screen. So, I tr...
2011 Jan 25
0
Francisco Pérez invited you to Dropbox
Francisco P?rez wants you to use Dropbox to sync and share files online and across computers. Get started here: http://www.dropbox.com/link/20.lES1DC1WLp/NjYyMTI3NTcxNw?src=referrals_bulk6 - The Dropbox Team ____________________________________________________ To stop receiving invites from Dropbox, please go...
2005 Sep 20
4
Proper way to boot memtest86
...oppy I was not using this memory to be tested. May be is not the way, but on my old disks memtest was using just a label and kernel otion for te binary image, and I just replace the old memtest with the new one to use the image on pxeboot and my rescue CDs. Any try? :) -- Gustavo Guillermo P?rez Compunauta uLinux www.compunauta.com
2007 Sep 12
1
Integrate() error message, I am at a loss
.../(2*n*b0^2) pdf <- normconst*dnorm(w)/u nz <- (abs(t1*b0)>=1e-10) iz <- (abs(t1*b0)<=1e-10) if(any(nz)){ d <- numeric() d[nz] <- 1/(t1[nz]*b0[nz]) cdf[nz] <- pnorm(w[nz])+dnorm(w[nz])*(1/w[nz]-d[nz]/u[nz]) } if(any(iz)){ n <- sum(iz==1) rez <- nctspa(c(a[iz]-1e-4, a[iz]+1e-4),n,mu,theta,0,rec+1) if(rec>5){ cdf[iz] <- 0.5 warning('Too many recursions') } else { cdf[iz] <- 0.5*(rez$CDF[1:n]+rez$CDF[(n+1):length(rez$CDF)]) } } list(PDF=pdf, CDF=cdf) } #========================...
2006 Jul 31
2
two printers with same name problem
...hat i see the properties of. so i cant fix my mistake. has anybody the same problem ? how should i fix that ? thanks ELH -- ?ric LE H?NAFF ?cole normale sup?rieure - Centre de ressources informatiques Informaticien, Ing?nieur d?veloppements et syst?mes aupr?s des biblioth?ques de l'ENS Pr?f?rez firefox! http://www.mozilla-europe.org/fr/ SVP, ?vitez de m'envoyer des attachements au format Word, Excel ou PowerPoint. Pr?f?rez les formats rtf, csv, html ou pdf au lieu des formats word et excel. Voir http://www.gnu.org/philosophy/no-word-attachments.fr.html pour plus d'explications.
2007 Aug 07
2
"badly formed JSON" exception
I tried to implement the "Rendering JSON in actions" example from http://wiki.rubyonrails.com/rails/pages/HowtoGenerateJSON : @headers["Content-Type"] = "text/plain; charset=utf-8" data = { :foo => ''bar'', :etc => ''rez'' } render :text => data.to_json When I try to decode this in javascript with transport.responseText.evalJSON(true); I get this error: SyntaxError: Badly formed JSON string: ''{foo: "bar2", etc: "rez"}'' javascript seems to expect double quote aro...
2006 May 27
5
ActiveSupport JSON working?
Hi, I am trying to convert a hash to JSON using ActiveSupports built in .to_json. I am doing similar to the example below but are there certain strings that could go in place of ''bar'' or ''rez'' that will break the to_json method? I am using a very long string from rjs output in place of ''bar''. Perhaps .to_json is not ready yet? Thanks, Peter def MyController < ApplicationController def give_me_json # make sure not to send html but text/plain @h...
2017 Sep 05
4
Interesting behavior of lm() with small, problematic data sets
...ion of the expected 0.0, but the p-value of that slope estimate is a surprising value. A reproducible example is included below, along with the output of the summary of results ######### example code x <- c(1,2,3) y <- c(1,1,1) #above results in{ (1,1) (2,1) (3,1)} data set to regress new.rez <- lm (y ~ x) # regress constant y on changing x) summary(new.rez) # display results of regression ######## end of example code Results: Call: lm(formula = y ~ x) Residuals: 1 2 3 5.906e-17 -1.181e-16 5.906e-17 Coefficients: Estimate Std. Error...
2009 Nov 10
1
when vectorising does not work: silent function fail?
...m for me, but *predicting* which markers will fail can be hugely problematic. I then though of creating some fucntion to catch the error messages that would otherwise scr*w things over: my.lrm = function(x){ pol = NULL pol = lrm( cpstc.f ~ x + time.cpstc + age + sex + mri) if(length(pol) > 0) rez = anova(pol)[1,3] if(length(pol) == 0) rez = 1 rez} my.results = apply(chr, 2, my.lrm) Still no joy, even adding try() in the evaluation and options(show.error.messages = F) I am at loss on how to get the darn function to bail out *silently* if needs be so I can just smack a replacement value...
2006 Jul 24
5
USRMGR and 3.0.23a
...ind the groups. is it solved by samba 3.0.23a ? does anybody report enhancement after upgrading to 3.0.23a ? Regards ELH -- ?ric LE H?NAFF ?cole normale sup?rieure - Centre de ressources informatiques Informaticien, Ing?nieur d?veloppements et syst?mes aupr?s des biblioth?ques de l'ENS Pr?f?rez firefox! http://www.mozilla-europe.org/fr/ SVP, ?vitez de m'envoyer des attachements au format Word, Excel ou PowerPoint. Pr?f?rez les formats rtf, csv, html ou pdf au lieu des formats word et excel. Voir http://www.gnu.org/philosophy/no-word-attachments.fr.html pour plus d'explications.
2012 Nov 16
2
R-Square in WLS
...ghts*(Er)^2) # log SSE lgSSR <- sum(Weights*(Re)^2) # log SSR lgR-sq <- lgSSR/lgSST ############################### Z Scale ###################################### Z <- exp(Y) muZ <- mean(Z) Zhat <- exp(Yhat+0.5*Sigma2) ToZ <- Z-muZ ErZ <- Z - Zhat ReZ <- Zhat - muZ SST <- sum(Weights*(ToZ)^2) # SST SSE <- sum(Weights*(ErZ)^2) # SSE SSR <- sum(Weights*(ReZ)^2) # SSR Rsq <- SSR/SST I don't understand what is wrong with the code. The sum square regression plus the sum square error do not add up to th...
2007 Sep 12
0
Problem with integrate()
...+4*theta*nu^3)+4*n^2*b0^2)/(2*n*b0^2) pdf <- normconst*dnorm(w)/u nz <- (abs(t1*b0)>=1e-10) iz <- (abs(t1*b0)<=1e-10) if(any(nz)){ d <- numeric() d[nz] <- 1/(t1[nz]*b0[nz]) cdf[nz] <- pnorm(w[nz])+dnorm(w[nz])*(1/w[nz]-d[nz]/u[nz]) } if(any(iz)){ n <- sum(iz==1) rez <- nctspa(c(a[iz]-1e-4, a[iz]+1e-4),n,mu,theta,0,rec+1) if(rec>5){ cdf[iz] <- 0.5 warning('Too many recursions') } else { cdf[iz] <- 0.5*(rez$CDF[1:n]+rez$CDF[(n+1):length(rez$CDF)]) } } list(PDF=pdf, CDF=cdf) } #=====================================...
2009 May 19
4
Bad Disk Performance of domU
Hi list. Im Running xen on a brand new dell PE 1950 with 146 GB SAS Disk on raid1. The performance on the I/O on the domU is really poor, but in dom0 the performance is great. Any ideas? Regards Francisco. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-virt/attachments/20090519/7a9dc81d/attachment-0006.html>
2023 Jul 04
1
[PATCH] mlx5_vdpa: offer VHOST_BACKEND_F_ENABLE_AFTER_DRIVER_OK
On 7/3/2023 8:46 AM, Michael S. Tsirkin wrote: > On Mon, Jul 03, 2023 at 04:25:14PM +0200, Eugenio P?rez wrote: >> Offer this backend feature as mlx5 is compatible with it. It allows it >> to do live migration with CVQ, dynamically switching between passthrough >> and shadow virtqueue. >> >> Signed-off-by: Eugenio P?rez <eperezma at redhat.com> > Same comment. to...
2011 Apr 21
7
repeater
...nt to another server. I mean, my server is streaming at /radio1.mp3 mount point. We can listen it at http://myserver:8000/radio1.mp3; so, i want to know if is there any way to "clone" that strem and send it to another server, such as http://giss.tv:8000/radio1.mp3 Thanks. -- Facundo Suarez Neuquen - Capital suarezjf -> twitter ()? ascii ribbon campaign - contra el coreo html /\? www.asciiribbon.org?? - contra adjuntos propietarios
2006 Aug 16
3
Gigabyte recent bios & syslinux extlinux trow USB-IDE bridges or pendrives
...nux y usb-hdd mode. Then I need to know if someone else are having same problem, and can send me the Mother Board versions and bios versions to report as a bios bug. this is from the support, I'm awaiting for answer. ------------------------------------------- >From : Gustavo Guillermo P?rez [ madgus at gmail.com ] Sent : 2006/8/17 03:09 Question : Dear Gigabyte Stuff, I was considering your test, and borrow from some firends many diferent usb-ide bridges to try, and I have two of your list, and on my other models of Gigabytes (recent ones) [K8VM800M-R2] got the same problem. On t...
2010 Mar 12
2
how quotas works with postfix and dovecot
...left /var/mail 16911 10240 20480 NOT STARTED 49 1000 1500 dovecot or postfix (i don't know who really should sendme the messsage) never sendme an quota warning someone knows what happen ? -- -------------------------------------------------------- LCC Wilberth de Jes?s P?rez Segura CCSA- Administraci?n de Servicios y Seguridad de las TI Correo:wilberth.perez at uady.mx Universidad Aut?noma de Yucat?n Secretar?a General Coordinaci?n Administrativa de Tecnolog?as de Informaci?n RIUADY C-59 x Av. Itz?es (999)923-74-28 Ext. 1117 M?rida, Yucat?n, M?xico 2010 ---------------...
2009 Dec 28
2
How to get parameters to controller from view using <input tag?
Hello! I''m everywhere searching the answer for my question. How to get parameters to controller from view using <input tag. But I want to do this without db. I have the code: class TranslateController < ApplicationController def start @time = Time.now end def result @rez = params[:name] end end <html> <head> <title> Translate numbers from 10 to 16 system </title> </head> <h1> Type your number and press link </h1> <p> Time is <%= @time %> </p> <form action="result" name="post&...
2016 May 26
2
Error en subset selection
Hola a todas, Quiero realizar un subset selection usando el paquete leaps, entre mis variables explicativas tengo rezagos de las mismas, por tanto tienen datos NA. sin embargo, al tratar de realizar cross validation me pide que los datos esten en formato data.frame con lo que me arroja un error al ejecutar el algoritmo. Mi pregunta es cómo puedo forzar en un data.frame en que tengo variables rezagadas que las tom...
2023 Aug 02
3
[PATCH 0/2] vdpa/mlx5: Fixes for ASID handling
...ed on Eugenio's fix for handling CVQs in a different ASID [0]. The first patch is the actual fix. The next 2 patches are fixing a possible issue that I found while implementing patch 1. The patches are ordered like this for clarity. [0] https://lore.kernel.org/lkml/20230112142218.725622-1-eperezma at redhat.com/ Dragos Tatulea (1): vdpa/mlx5: Fix mr->initialized semantics Eugenio P?rez (1): vdpa/mlx5: Delete control vq iotlb in destroy_mr only when necessary drivers/vdpa/mlx5/core/mlx5_vdpa.h | 2 + drivers/vdpa/mlx5/core/mr.c | 97 +++++++++++++++++++++--------- drivers...