search for: mb1

Displaying 17 results from an estimated 17 matches for "mb1".

Did you mean: mb
2011 Jan 04
4
[LLVMdev] Bug in MachineInstr::isIdenticalTo
...ve mem operands, make sure that the sizes of the memoperands for each + // MI are the same. The values can be different, so lets only check the sizes. + // If the sizes between one of the memoperands differ, then the instructions are + // not identical. + for (MachineInstr::mmo_iterator mb1 = memoperands_begin(), mb2 = Other->memoperands_begin() + me = memoperands_end(); mb1 != me; ++mb1, ++mb2) { + if (mb1->getSize() != mb2->getSize() || + mb1->getFlags() != mb2->getFlags() || + mb1->getOffset() != mb2->getOffset()) { + retu...
2011 Jan 04
0
[LLVMdev] Bug in MachineInstr::isIdenticalTo
...e sure that the sizes of the memoperands for each > + // MI are the same. The values can be different, so lets only check the sizes. > + // If the sizes between one of the memoperands differ, then the instructions are > + // not identical. > + for (MachineInstr::mmo_iterator mb1 = memoperands_begin(), mb2 = Other->memoperands_begin() > + me = memoperands_end(); mb1 != me; ++mb1, ++mb2) { > + if (mb1->getSize() != mb2->getSize() || > + mb1->getFlags() != mb2->getFlags() || > + mb1->getOffset() != mb2->getOffse...
2013 Jan 04
1
Predicting New Data -
I am having trouble predicting new data with a model created from package mboost: > mb1<-glmboost(as.formula(formula1),data=data_train,control=boost_control(mstop=400,nu=.1)) > f.predict<-predict(mb1,newdata=data_train) Error in scale.default(X, center = cm, scale = FALSE) : length of 'center' must equal the number of columns of 'x' Ultimately I want to...
2003 Jun 26
3
degrees of freedom in a LME model
Dear All, I am analysing some data for a colleague (not my data, gotta be published so I cannot divulge). My response variable is the number of matings observed per day for some fruitlies. My factors are: Day: the observations were taken on 9 days Regime: 3 selection regimes Line: 3 replicates per selection regime. I have 81 observations in total The lines are coded A to I, so I do not need
2010 Oct 13
1
(no subject)
...mresultb[,i] <- bid mresultx[,i] <- mx qf <- rq(formula = mresultb[,i] ~ mresultx[,i], tau= 480:520/1000) # Storing result and does not overwrite prior values M[i, ] <- coef(qf) QI <- (1-0.5)/(I-1) M50b0 <- M[,41] M50b1 <- M[,42] Mb0 <- matrix(M[,aodd1], nrow=nsim, ncol=20) Mb1 <- matrix(M[,aeven1], nrow=nsim, ncol=20) for (t in aeven2){ Mhb0[,t] <- M[,(41+t)]-M[,(41-t)] Mhb1[,t] <- M[,(42+t)]-M[,(42-t)] } } The problem is in the part: for (t in aeven2){ Mhb0[,t] <- M[,(41+t)]-M[,(41-t)] Mhb1[,t] <- M[,(42+t)]-M[,(42-t)] } Since I want the so...
2012 Sep 17
2
"eval" inside a function call in connection with updating the data slot in the call of lmer
...1|block:harvest), data=beets, REML=F) foo <- function(){ ## 1) beets2 <- transform(beets, yy = sugpct * yield) ma1 <- lmer(yy~block+sow+harvest+(1|block:harvest), data=beets2, REML=F) ma0 <- update(ma1, yy~.) ## 2) cl <- getCall(lgs) cl[["data"]] <- beets2 mb1 <- eval(cl) mb0 <- update(mb1, yy~.) mb0 ## 3) cl <- getCall(lgs) cl[["data"]] <- as.name("beets2") mc1 <- eval(cl) mc0 <- update(mc1, yy~.) mc0 } foo()
2007 May 10
3
printf type functionality from kernel sdt probes
Is there any way to get printf type functionality inside the kernel from dtrace probes. Basically I want to dump progress through flow in my device driver. Something like: DTRACE_PRINTF("Inside chip reset, mailboxes %x %x %x %x %x %x %x %x", mb1, mb2, .....); ... ... DTRACE_PRINTF("reset failed: reason %s", failure_reasons[err]); I may have several such probes and they may change very frequently during the development. The dtrace script to enable these probes and dump values can be very simple and will just enable all the prob...
2013 Sep 03
1
Dovecot is not creating directories properly for new accounts
...egid=503(imapd) missing +w perm: /home/user/apps/var/mail, we're not in group 502(dovecot), dir owned by 502:502 mode=0775) Sep 03 14:33:38 imap(test2): Error: Invalid user settings. Refer to server log for more information. imapd is in the dovecot group and here are the permissions [user at MB1 logs]$ ll /home/user/apps/var/ total 4 drwxrwxr-x 4 dovecot dovecot 4096 Sep 3 14:35 mail [user at MB1 logs]$ id imapd uid=503(imapd) gid=503(imapd) groups=503(imapd),500(user),502(dovecot) if I su - imapd and then run mkdir -p /home/user/apps/var/mail/imap/test2/mailboxes everything starts wo...
2011 May 21
1
Behavior difference in mbox versus Maildir listing
...the namespaces "#mbox." and "#maildir." and have "." as separator. Assume I have the following folder hierarchy: $namespace $namespace folder $namespace folder folder1a $namespace folder folder1b $namespace folder folder1c The resulting IMAPv4 session is: mb1 LIST "" "#mbox.%" * LIST (\Noselect \HasChildren) "." "#mbox.folder" mb1 OK List completed. mb2 LIST "" "#mbox.folder.%" * LIST (\Noselect \HasChildren) "." "#mbox.folder." * LIST (\NoInferiors \UnMarked) &quo...
2013 Sep 04
1
login_log_format_elements does not appear to be changing log format 2.2.5
Hi, login_log_format_elements does not seem to change the login logs. I have it set to the below setting and the word "home" does not even appear. Is there something I have to do to for this? Also I use ldap for authentication. [user at MB1 logs]$ doveconf -n | grep -i log debug_log_path = /home/user/apps/logs/dovecot_debug.log info_log_path = /home/user/apps/logs/dovecot_info.log log_path = /home/user/apps/logs/dovecot.log login_log_format_elements = user=<%u> method=%m rip=%r lip=%l mpid=%e %c home=%h service imap-login {...
2014 Aug 05
1
replicator only starts for users who log in at least once
Hi! I recently setup a second with replication to the other. Both machines run ubuntu 12.04 with dovecot 2.2.13 (6bb26098a45c). All users mail accounts are currently synced manually to the first (mb1) using a dsync script, they are synchronised from a cyrus imap server. Users are still logging into the cyrus server. It appears that the only accounts that are replicated are ones who have logged into either of the dovecot servers at least once, is this how it is supposed to work? I was hoping...
2010 Oct 13
4
loop
...mresultb[,i] <- bid mresultx[,i] <- mx qf <- rq(formula = mresultb[,i] ~ mresultx[,i], tau= 480:520/1000) # Storing result and does not overwrite prior values M[i, ] <- coef(qf) QI <- (1-0.5)/(I-1) M50b0 <- M[,41] M50b1 <- M[,42] Mb0 <- matrix(M[,codd], nrow=nsim, ncol=20) Mb1 <- matrix(M[,ceven], nrow=nsim, ncol=20) for (t in cevenl){ Mhb0[ ,t] <- M[,(41+t)]-M[,(41-t)] Mhb1[ ,t] <- M[,(42+t)]-M[,(42-t)] } } Problem: the problem is in the red part of the loop. I want that the software takes the column (41+t) from the matrix called M and subtract from it the...
2016 Jan 26
2
system refuses to install monit.
...ached hostfile * base: mirror-centos.hostingswift.com * epel: reflector.westga.edu * extras: mirrors.usinternet.com * updates: mirrors.usinternet.com No package monit available. Error: Nothing to do If I download the rpm manually and try to localinstall it, it will not install.. [root at mb1 ~]# cat /etc/centos-release CentOS release 6.7 (Final) [root at lb1 ~]# rpm -qa | grep monit [root at lb1 ~]# uname -m x86_64 [root at lb1 ~]# ls -al monit-5.14-1.el6.x86_64.rpm -rw-r--r-- 1 root root 267556 Sep 13 13:45 monit-5.14-1.el6.x86_64.rpm [root at lb1 ~]# yum -v localinstall monit-5.14-1...
2020 May 11
0
[PATCH for QEMU v2] hw/vfio: Add VMD Passthrough Quirk
..._quirk_ssatgt(const char *name, uint64_t tgt, uint64_t size) "%s tgt=0x%"PRIx64" size=0x%"PRIx64 > vfio_pci_nvlink2_setup_quirk_lnkspd(const char *name, uint32_t link_speed) "%s link_speed=0x%x" > > +vfio_pci_vmd_quirk_shadow_regs(const char *name, uint64_t mb1, uint64_t mb2) "%s membar1_phys=0x%"PRIx64" membar2_phys=0x%"PRIx64 > +vfio_pci_vmd_quirk_vmlock(const char *name, uint8_t vmlock) "%s vmlock=0x%x" > + > # common.c > vfio_region_write(const char *name, int index, uint64_t addr, uint64_t data, unsigned si...
2020 May 13
0
[PATCH for QEMU v2] hw/vfio: Add VMD Passthrough Quirk
..., uint64_t tgt, uint64_t size) "%s tgt=0x%"PRIx64" size=0x%"PRIx64 > > > vfio_pci_nvlink2_setup_quirk_lnkspd(const char *name, uint32_t link_speed) "%s link_speed=0x%x" > > > > > > +vfio_pci_vmd_quirk_shadow_regs(const char *name, uint64_t mb1, uint64_t mb2) "%s membar1_phys=0x%"PRIx64" membar2_phys=0x%"PRIx64 > > > +vfio_pci_vmd_quirk_vmlock(const char *name, uint8_t vmlock) "%s vmlock=0x%x" > > > + > > > # common.c > > > vfio_region_write(const char *name, int index, u...
2010 Oct 15
0
nomianl response model
...mresultb[,i] <- bid mresultx[,i] <- mx qf <- rq(formula = mresultb[,i] ~ mresultx[,i], tau= 480:520/1000) # Storing result and does not overwrite prior values M[i, ] <- coef(qf) QI <- (1-0.5)/(I-1) M50b0 <- M[,41] M50b1 <- M[,42] Mb0 <- matrix(M[,codd], nrow=nsim, ncol=20) Mb1 <- matrix(M[,ceven], nrow=nsim, ncol=20) for (t in cevenl){ Mhb0[ ,t] <- M[,(41+t)]-M[,(41-t)] Mhb1[ ,t] <- M[,(42+t)]-M[,(42-t)] } } Problem: the problem is in the red part of the loop. I want that the software takes the column (41+t) from the matrix called M and subtract from it the c...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...)~*W0Co- z(Xmap7U4Z&qm1V2l>2O*a-YyC_i=pFm4q4z7FtN!K=N#Z8mgjal^UvbPc+AB)liB8 zQ)*}jJ$I<~)b_IG%Bb}uqXud;m}y~ey_$%vr-pvT!$=XvAP*x2j1*xE_Aqu3#;YF2 z4q)scj3JsT*_#WuY0)#B{+{JIm_<O-Ja0U+*=SF1Df?}^&|5;=RcnK4UNEAYjc%;a zzr~Pa+lkm~nheo(Q+ at qmgG%~CqqP2zbQOos(~84Tjl_~|7DJ2me{4wRm%QoKG;29G zs|mB1?uw=T(y)o8@@mjdfCr?1T~oNKVf-b at 2K!oF=Gb6gtHK5YUNXGd2yLMX-lC?& zD)*;q;8Ssy=?zUr;u4I%&5)CuRVjW=#?kq&X)`n31C_E#FTad5RZX%!$u~99q<-q? z&Gx;xsE>qq=}1f3n3w|d;uv6YpvsUUYGH98VaVc=kv-!0<uFaLCAgJP6U8V2DK?@J zbL=n>C?+S=TVCK^?gftUQXk-M>X9Defi&XV9^!5f at f{CwcN+0s4{^VTILbrZpGJ...