search for: msd

Displaying 20 results from an estimated 292 matches for "msd".

Did you mean: bsd
2010 May 23
1
Problems with W2K8R2 <-> S4 replication
Hello! I'm trying to get Samba4 working as an additional AD DC. bin/net vampire reports no errors, but when I start sbin/samba I got the following in my var/samba.log: -------------------- [Sun May 23 03:58:08 2010 MSD, 0 ../smbd/server.c:373:binary_smbd_main()] samba version 4.0.0alpha12-GIT-UNKNOWN started. Copyright Andrew Tridgell and the Samba Team 1992-2010 [Sun May 23 03:58:08 2010 MSD, 0 ../smbd/server.c:463:binary_smbd_main()] samba: using 'standard' process model [Sun May 23 03:58:08 2010 M...
2013 Feb 07
1
It's a BUG or a Feature? Generating seq break comparing operators
Hello everybody: I get a strange behavior with seq, take a look at this: > msd <- seq(0.05,0.3, 0.01) > msd[13] [1] 0.17 > class(msd) [1] "numeric" > class(msd[13]) [1] "numeric" > typeof(msd[13]) [1] "double" now the problem: > msd[13] == 0.17 [1] FALSE It is strange only to me? Consider that: > 0.17 == 0.17 [1] TRUE a...
2016 Jun 29
2
size-related rsync bugs?
...ctory from a remote daemon. This has worked well for years but has recently started to give problems. The rsync transfer is run by a program called dirvish that is run as a cron job. The log looks like this: ACTION: rsync -vrltH --delete --stats -D --numeric-ids --exclude-from=/nfs/scop5/data/msd/sifts-mirror/2016-06-28/exclude --link-dest=/nfs/scop5/data/msd/sifts-mirror/2016-06-07/tree rsync.ebi.ac.uk::pub/databases/msd/sifts/ /nfs/scop5/data/msd/sifts-mirror/2016-06-28/tree receiving incremental file list csv/pdb_chain_cath_uniprot.csv csv/pdb_chain_enzyme.csv csv/pdb_chain_go.csv br...
2007 Aug 22
1
"subscript out of bounds" Error in predict.naivebayes
...out of bounds # Here's what traceback() returns 10: FUN(1:9319[[4L]], ...) 9: lapply(X, FUN, ...) 8: sapply(1:nattribs, function(v) { nd <- ndata[v] if (is.na(nd)) rep(1, length(object$apriori)) else { prob <- if (isnumeric[v]) { msd <- object$tables[[v]] dnorm(nd, msd[, 1], msd[, 2]) } else object$tables[[v]][, nd] prob[prob == 0] <- threshold prob } }) 7: log(sapply(1:nattribs, function(v) { nd <- ndata[v] if (is.na(nd)) rep...
2005 Mar 28
2
problem with 1 dialing (recording says must dial 1 when I thought I did)
TRUNKMSD1=1 ; MSD digits to strip (usually 1 or 0) TRUNKMSD2=2 ; MSD digits to strip (usually 1 or 0) ; logn distance calls exten => _91NXXNXXXXXX,1,NoOp("Dialing: "${TRUNK}/${EXTEN:${TRUNKMSD1}}) exten => _91NXXNXXXXXX...
2008 Oct 23
3
Fuctions help!
...nction(alfa,m1,m2,s1,s2,n1,n2){....return(powe)} I want to use "Gmean" and "Gsd" which are the returned values from "Sampling" function, in "Power" function. i.e. when I call "power" I want to be able to have something like: Power(.05,Mmean,Gmean,Msd,Gsd,992,100) Ps: Mmean and Gmean are the same size. Msd and Gsd are the size. Thanks -- View this message in context: http://www.nabble.com/Fuctions-help%21-tp20130620p20130620.html Sent from the R help mailing list archive at Nabble.com.
2017 Mar 03
4
imaging a drive with dd
On 3/3/2017 5:34 AM, Robert Moskowitz wrote: > Well, I only wanted to copy the used part of the drive which I try to > keep small so I can still copy the image to an mSD card if I wish. So > I have to supply the amount of the drive to copy. The bs=512 went > fast enough, but then I was only copying 3.2GB. > > thanks for the help. personally, I would use 'dump' for ext? file systems, and xfsdump for XFS. this *just* backs up the inodes a...
2007 May 08
0
The match of "ave()" for "FUN=SD"
...in computing huge records. Thank's a lot. Felix R-CODE: ------- MEAN <- ave(INPUT[,3], INPUT[,1], INPUT[,2], FUN = mean) mMEAN <- matrix( c(INPUT[,1], INPUT[,2], MEAN), ncol=3, byrow=FALSE) SD <- na.omit( aggregate(INPUT[,3], by=list(INPUT[,2],INPUT[,1] ), FUN=sd ) ) mSD <- matrix( c( SD[,2], SD[,1], SD[,3]), ncol=3, byrow=FALSE) mSD[,1] <- (mSD[,1] - 1 ) #eleminate the converting-fault list-> matrix mSD[,2] <- (mSD[,2] - 1 ) / 10 #eleminate the converting-fault list-> matrix the arithmetical errors: ----------...
2004 Sep 11
2
Leading '0's and what do 'pri_dialplan', 'pridialplan' and 'prilocaldialplan' in zapata.conf do?
...from getting a big headache, that is). I've searched the Wiki and Googled the hours away, but I still can't find supportive documentation. I've just replaced my ISDN Fritz!/chan_capi setup with a HFC/Zap configuration and had the following problems: 1 - Outbound dialed numbers had the MSD stripped off So, I issue the command 'Dial(Zap/g1/0123456) and Zap tries to dial '123456'. It took a bit of digging to actually work out what the problem was in the first place, but I managed to resolve this by setting 'pridialplan=unknown' in zapata.conf. 2 - Inbound CallerIDs...
2007 Mar 12
0
[PATCH] fix usb hid and mass-storage protocol revision
...t qemu_mouse_dev_descriptor[] = { 0x12, /* u8 bLength; */ 0x01, /* u8 bDescriptorType; Device */ - 0x10, 0x00, /* u16 bcdUSB; v1.0 */ + 0x00, 0x01, /* u16 bcdUSB; v1.0 */ 0x00, /* u8 bDeviceClass; */ 0x00, /* u8 bDeviceSubClass; */ diff -ru /tmp/qemu-cvs/hw/usb-msd.c qemu-cvs/hw/usb-msd.c --- /tmp/qemu-cvs/hw/usb-msd.c 2006-08-29 20:11:47.000000000 +0200 +++ qemu-cvs/hw/usb-msd.c 2007-01-28 12:58:06.636790927 +0100 @@ -66,7 +66,7 @@ static const uint8_t qemu_msd_dev_descriptor[] = { 0x12, /* u8 bLength; */ 0x01, /* u8 bDescriptorType; Devic...
2008 Aug 05
1
Strange time in rsyncd logfile
Hello. What can it be, the rsyncd shows the wrong date or something is wrong with my setings? rsyncd server: # date Tue Aug 5 14:14:12 MSD 2008 rsync client: # date Tue Aug 5 14:14:45 MSD 2008 Log from a server: 2008/08/05 14:00:13 [22351] rsync on common/ from rsync_common@hostname (13.18.17.08) 2008/08/05 10:00:13 [22351] building file list 2008/08/05 10:00:14 [22351] sent 32852 bytes received 90 bytes total size 8307319 -- B...
2011 Jul 21
2
Latex Table Help on R
...justed? library(xtable) dataset1 = matrix( c(1,2,3,4, 5, 6 ), 2 , 3) dataset2 = matrix( c(4,3,5,10, 1, 0), 2, 3) dataset <- rbind(dataset1,dataset2) #combine dataset means <- apply(dataset,1,mean) #calculate row means sds <- apply(dataset,1,sd) #calculate row standard deviation msd <- paste(round(means,2)," (",round(sds,2),")",sep="") #mean and standard deviation rn <- c("Var1","Var2") #rownames cn <- c("Dataset1","Dataset2") #column names tab <- matrix(msd,2,2,dimnames=list(rn,cn)) tab D...
2007 Oct 24
1
user == Administrator doesn't work
...Logon Script: Profile Path: \\domain\poweruser\profile Domain: DOMAIN Account desc: Workstations: Munged dial: Logon time: 0 Logoff time: never Kickoff time: never Password last set: Wed, 24 Oct 2007 15:44:59 MSD Password can change: Wed, 24 Oct 2007 15:44:59 MSD Password must change: never Last bad password : 0 Bad password count : 0 Logon hours : FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF shell> adduser plainuser shell> pdbedit -a -u plainuser shell> pdbedit -nL plainuser [skip] Us...
2003 Aug 15
6
plot.lm mislabels points with na.exclude (PR#3750)
...----------------------------------------- Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (Whitehouse Station, New Jersey, USA), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD) that may be confidential, proprietary copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please immediately return this by e-mail and then dele...
2009 Apr 08
2
Strange behavior of header_filter_callback
...r 08 13:53:51 Info: example: func example_header_filter_callback is called deliver(pitman at virtualworld.com): Apr 08 13:53:51 Info: #Received: by bsdman.virtualworld.com (Postfix) with ESMTP id 3B3E11FE for <pitman at virtualworld.com>; Wed, 8 Apr 2009 13:53:51 +0400 (MSD) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 2009-04-08T13:53:51.199182+1 From: pupkin at virtualworld.com Reply-to: Konstantin at bsdman.virtualworld.com, Lepa at bsdman.virtualworld.com To: pitman at virtualworld.com M...
2006 Jul 17
6
Rails+Mongrel+Lighthttpd: Ruby-Sendfile Problem
Hello, I have a working mongrel cluster and want to use Lighty as the frontend webserver. I want ligthttpd to deliver the static content. So I did gem install sendfile --remote Everything installed. But if I run the tests like gem check sendfile --test --debug i get the following error message: Exception `Errno::ENOSYS'' at ./test/test_sendfile.rb:75 - Function not implemented -
2010 Aug 04
1
Blktap-control under 2.6.32.16-1.2.108.xendom0.fc13.x86_64
1. Attempt to load Nexenta under 2.6.32.16-1.2.108.xendom0.fc13.x86_64 Xen 4.0.1-rc6-pre & 2.6.32.16-1.2.108.xendom0.fc13.x86_64 on top F13 [root@fedora13 NexentaStor-Community-3.0.2]# uname -a Linux fedora13 2.6.32.16-1.2.108.xendom0.fc13.x86_64 #1 SMP Fri Jul 23 17:09:30 MSD 2010 x86_64 x86_64 x86_64 GNU/Linux [root@fedora13 NexentaStor-Community-3.0.2]# xm create -c nexentastor-community-3.0.2-xen.cfg Using config file "./nexentastor-community-3.0.2-xen.cfg". Error: Failed to create device.     stdout: didn''t find blktap-control in /proc/misc     st...
2004 Jan 15
1
Winbind + Acl problem
...------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, New Jersey, USA 08889), and/or its affiliates (which may be known outside the United States as Merck Frosst, Merck Sharp & Dohme or MSD) that may be confidential, proprietary copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please immediately return this by e-mail and then delet...
2011 Oct 19
3
[Bug 1944] New: Wrong "Date flow start" and "Duration Proto" in version 9 with nfcapd
...critical Priority: P2 Component: softflowd AssignedTo: djm at mindrot.org ReportedBy: 8509985 at gmail.com Hello, i'm from Russia, so sorry my english please. We have: 1. Sensor: # uname -a FreeBSD HOST 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Sat Oct 8 16:37:12 MSD 2011 root at HOST:/usr/obj/usr/src/sys/MYKERNEL amd64 # date Wed Oct 19 09:50:03 MSD 2011 # pkg_info | grep softflowd softflowd-0.9.8_2 Softflowd is flow-based network traffic analyser with expor Start softflowd daemon like: /usr/local/sbin/softflowd -v 9 -i lan -n COLLECTOR:9998 -p /var/...
2008 Oct 03
0
Error in R/parallel
Dear all: I try a package called "rparallel", and it can make your multiple cores desktop PC have parallel computation. The following are my code: ######################## library(rparallel) msd <- function(x)c(mean(x),sd(x)) m <- matrix(rnorm(100000*100),ncol=100) st <- Sys.time() M <- NULL if( "rparallel" %in% names( getLoadedDLLs()) ) { runParallel( resultVar="M", resultOp="rbind",nWorkers=2) }else { for(i in 1:100000){ M <...