search for: sca

Displaying 20 results from an estimated 135 matches for "sca".

Did you mean: mca
2006 Jun 16
1
Problem with default_mail_env in beta9
Hallo, I am playing arround with dovecot I hat version 1.0.beta7 running fine. After installing beta9 there is a problem with default_mail_env setting. I have all users in ldap. there is an attribute "mailMessageStore" which contains a relative path to users maildir mailMessageStore: sca/ my mailer completes this relative pathinformation to /var/mail/sca/ therefor I setup default_mail_env to "maildir:/var/mail/%h" dovecot-ldap.conf includes "user_attrs = mailMessageStore=home,uidNumber=uid,gidNumber=gid" all fine in beta7 in beta9 I got this in my log: dovec...
2006 Mar 04
2
rsync backup not working
I'm using rsync 2.63 on a NetWare 6.5 server backing up various volumes to a SLES 9 server. My script that I'm using on the NW server is: # Rsync synchronisation of APPS rsync -rRutzvP --volume=apps: ./ 192.168.1.252::SCA/apps # Rsync synchronisation of DATA rsync -rRutzvP --volume=Data: ./ 192.168.1.252::SCA/Data # Rsync synchronisation ofGWMAIL rsync -rRutzvP --volume=GWMAIL: ./ 192.168.1.252::SCA/GWMAIL # Rsync synchronisation of HSOFT rsync -rRutzvP --volume=HSvol: ./ 192.168.1.252::SCA/HSvol # Rsync synchro...
2009 Dec 27
3
Scaling error
Hi useRs, I ran into an inconsistent output problem again. Here is the simplify illustration I've got a matrix as follows > x V1 V2 V3 [1,] 1 2 3 [2,] 4 5 6 [3,] 7 8 9 Associated with the matrix is a scaling factor, sca, derived from, say the mean of the respective columns, V1-V3; > sca V1 V2 V3 2.5 1.7 3.6 The idea is that the scaling factor gets applied to each element in the column matrix. So > out <- x / sca would give me V1 V2 V...
2013 May 10
0
[LLVMdev] Help on making doxygen document
Dear Sir or Ms: My OS is ubuntu 12.04(AMD64). I have installed TexLive 2012, Graphviz 2.26.3, doxygen 1.7.6.1 without the dependence doxygen-latex.The version of LLVM I am working on is 3.2. My configure script is the following: ../llvm-3.2/configure --prefix=/home/me/mywork/sca/llvm/llvm-install2 --enable-targets=host-only --enable-debug-runtime --enable-assertions --enable-doxygen --disable-optimized --with-llvmsrc=/home/me/mywork/sca/llvm/llvm-3.2 --with-llvmobj=/home/me/mywork/sca/llvm/llvm-build2 >configure.log 2>configure.errors There is no reporting error...
2004 Feb 05
1
Multilevel in R
...o deal with multilevel model. My dataset is composed of 10910 observations, 1237 plants nested within 17 stations. The data set is not balanced. Response variable is binary and repeated. I tried to fit this model model<- glmmPQL( y ~ z1.lon*lun + z2.lat*lun + z1.lon*lar + z2.lat*lar + z1.lon*sca + z2.lat*sca +z1.lon*eta + z2.lat*eta, random = ~ lun + lar + sca + eta | sta/piante, family=binomial, data=variabili) where y is presence (1) or absence (0) of a flowering lun, lar, sca, eta are level 1 variables z1.lon, z2.lat are level 2 variables. but during third iteration it stop becaus...
2005 Dec 15
3
Name conflict between Epi and ROC packages
The name conflicts in Epi and ROC packages (2 'ROC' functions are the problem) cause the following code to work once, but not twice: library(MASS); data(cats); x = cats[,2] y = ifelse(cats[,1]=='F',0,1) library(Epi); ROC(x,y,grid=0)$AUC library(ROC); AUC(rocdemo.sca(y, x, dxrule.sca)) What is the standard way of resolving name conflicts? Ask maintainers to resolve it or rename the younger function, use namespaces somehow, or something else? My machine is WinXP, R-2.2.0, ROC and Epi packages are the latest versions. Jarek Tuszynski [[alternative HTML v...
2010 Feb 01
1
LMTP-Server: missing headers
...mtp protocol = lmtp unix_listener /var/spool/postfix/lmtp-server { group = postfix mode = 0660 user = postfix } } Mail gets delivered to ~user/Maildir/ Feb 1 06:57:39 testhost dovecot: lmtp(8238): Connect from local Feb 1 06:57:39 testhost postfix/lmtp[8237]: 07108A3608: to=<sca at testhost.example.org>, orig_to=<root>, relay=testhost.example.org[lmtp-server], delay=0.67, delays=0.22/0.03/0.22/0.2, dsn=2.0.0, status=sent (250 2.0.0 <sca at testhost.example.org> lwjfEVNtZksuIAAA4eG3hw Saved) Feb 1 06:57:39 testhost dovecot: lmtp(8238, sca at testhost.example...
2005 Mar 29
8
Dell 1750 & TDM400P - Power
Has anyone come up with a way to get power to a TDM400P card installed in a Dell PowerEdge 1750? Thanks, Adam The contents of this email message and any attachments are confidential and are intended solely for addressee. The information may also be legally privileged. This transmission is sent in trust, for the sole purpose of delivery to the intended recipient. If you have received this
2007 Dec 07
1
Wine Problem
...chasing 70 XP licences I installed a software that talks with the informix client 2.7.0 everything was running fine, the instalation went with minor problems. Until now when i stated a connection to the informix server wine simply stops the comand WINEDEBUG=+winsock,err+all,warn+all,fixme=all wine sca.exe the trace fixme:x11drv:X11DRV_GetDeviceCaps (0x314): CAPS1 is unimplemented, will return 0 warn:file:CreateFileW Unable to create file L"C:\\airc\\sca\\" (status c00000ba) warn:module:alloc_module disabling no-exec because of L"pbIN9105.dll" warn:module:alloc_module disabli...
2005 Sep 28
1
Fast AUC computation
I am doing a simulation with a relatively large data set (20,000 observations) for which I want to calculate the area under the Receiver Operator Curve (AUC) for many parameter combinations. I am using the ROC library and the following commands to generate each AUC: rocobj=rocdemo.sca(truth = ymis, data = model$fitted.values, rule = dxrule.sca) #generation of observed ROC object aucobj=AUC(rocobj) #pulling out just the observed AUC - trapezoidal not integrated but they are pretty slow. Does anyone know of a faster way to get the AUC? Thanks, Nina [[alternative H...
2005 Dec 23
2
convolution of the double exponential distribution
Is there any R function that computes the convolution of the double exponential distribution? If not, is there a good way to integrate ((q+x)^n)*exp(-2x) over x from 0 to Inf for any value of q and for any positive integer n? I need to perform the integration within a function with q and n as arguments. The function integrate() is giving me this message: "evaluation of function gave a
2004 Feb 06
1
nnet problem
...r e-mail en retour, detruire le message et vous abstenir de toute reference aux informations qui y figurent afin d'eviter les sanctions attachees a la divulgation et a l'utilisation d'informations confidentielles. Les messages electroniques sont susceptibles d'alteration. Lagardere SCA et ses filiales declinent toute responsabilite en cas d'alteration ou de falsification du present message. Warning : this e-mail and any files attached (the "e-mail") are confidential and intended solely to the named addressee(s). Any unauthorised dissemination or use is strictly p...
2010 Mar 03
2
R beginner
hello, i'am is new in R software.i have try to make a function but it can't give what it should.i dunno what have to do next. Can somebody help me to solve it.i'll very appreciate... ##GEV simulation(Non-stationary) dsim<-function(n, alpha, beta,sca,sha){ t <- 1:n location <- alpha + beta*t inv.df<-function(x) location + -(sca/sha)+(sca/sha)*(-log(x))^(-sha) u<-runif(n) y<-inv.df(u) return(y) } xdat<-c(3.4,7.8,10.1,11.7,13.9,14.1,14.2,14.6,14.6,14.6,15,15,16.1,18) ##GEV function(Non-stationary) GEV.lik<-function(a,x)#a=(...
2007 Dec 10
0
Fwd: Wine Problem SOLVED
...chasing 70 XP licences I installed a software that talks with the informix client 2.7.0 everything was running fine, the instalation went with minor problems. Until now when i stated a connection to the informix server wine simply stops the comand WINEDEBUG=+winsock,err+all,warn+all,fixme=all wine sca.exe the trace fixme:x11drv:X11DRV_GetDeviceCaps (0x314): CAPS1 is unimplemented, will return 0 warn:file:CreateFileW Unable to create file L"C:\\airc\\sca\\" (status c00000ba) warn:module:alloc_module disabling no-exec because of L"pbIN9105.dll" warn:module:alloc_module disabli...
2010 Apr 11
4
Virusscanning
Hello list, I use currently a non-dovecot pop3 proxy which has the ability to scan all passing mails for viruses. And I like dovecot. I have to combine both. One (and the only) idea is to call a virusscanner a shellscript, installed as PostLoginScript. But I see multiple disadvantages: 1. it's a shellscript which tents to be slow. 2. it's called *on* the mailbox-host,...
2008 Mar 20
1
[RFC/PATCH 05/15] kvm-s390: s390 arch backend for the kvm kernel module
...-EINVAL; + } + + return r; +} + +struct kvm *kvm_arch_create_vm(void) +{ + struct kvm *kvm; + int rc; + char debug_name[16]; + + + rc = s390_enable_sie(); + if (rc) + goto out_nokvm; + + rc = -ENOMEM; + kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL); + if (!kvm) + goto out_nokvm; + + kvm->arch.sca = (struct sca_block *) get_zeroed_page(GFP_KERNEL); + if (!kvm->arch.sca) + goto out_nosca; + + sprintf(debug_name, "kvm-%u", current->pid); + + kvm->arch.dbf = debug_register(debug_name, 8, 2, 8 * sizeof(long)); + if (!kvm->arch.dbf) + goto out_nodbf; + + debug_register_vie...
2008 Mar 20
1
[RFC/PATCH 05/15] kvm-s390: s390 arch backend for the kvm kernel module
...-EINVAL; + } + + return r; +} + +struct kvm *kvm_arch_create_vm(void) +{ + struct kvm *kvm; + int rc; + char debug_name[16]; + + + rc = s390_enable_sie(); + if (rc) + goto out_nokvm; + + rc = -ENOMEM; + kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL); + if (!kvm) + goto out_nokvm; + + kvm->arch.sca = (struct sca_block *) get_zeroed_page(GFP_KERNEL); + if (!kvm->arch.sca) + goto out_nosca; + + sprintf(debug_name, "kvm-%u", current->pid); + + kvm->arch.dbf = debug_register(debug_name, 8, 2, 8 * sizeof(long)); + if (!kvm->arch.dbf) + goto out_nodbf; + + debug_register_vie...
2018 Nov 14
0
different TLS protocols on different ports
...e html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> <br> </div> <blockquote type="cite"> <div> On 14 November 2018 at 21:19 "A. Schulze" < <a href="mailto:sca@andreasschulze.de">sca@andreasschulze.de</a>> wrote: </div> <div> <br> </div> <div> <br> </div> <div> Hello, </div> <div> <br> </div> <div> I'm provid...
2009 Jan 21
2
win7 in xVM
Hi, Did anyone try to install Windows 7 beta within xVM? I tried that on SXCE105 but the Windows installer says me "STOP: 0x0000007E". -- Regards, Piotr Jasiukajtis | estibi | SCA OS0072 http://estseg.blogspot.com
2003 May 28
0
plot() error-msg: "need finite xlim values"
...(xlim, ylim, log, asp, ...) : need finite xlim values" --- > set.seed(123) > state <- c(0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, + 1, 1, 1) > markers <- c(1, 2, 1, 1, 2, 3, 3, 4, 2, 1, 1, 3, 2, 3, 2, 4, + 5, 2, 3, 4) + runif(20, -1, 1) > roc1 <- rocdemo.sca(truth = state, data = markers, rule = dxrule.sca, seqlen = 5) > plot(roc1) Error in plot.window(xlim, ylim, log, asp, ...) : need finite xlim values In addition: Warning messages: 1: no finite arguments to min; returning Inf 2: no finite arguments to max; returning -Inf 3: no finite argu...