search for: ramdonly

Displaying 8 results from an estimated 8 matches for "ramdonly".

2008 May 28
2
rmeta package: metaplot or forestplot of meta-analysis under DSL (ramdon) model
Dear all, I could not draw a forest plot for meta-analysis under ramdon models using the rmeta package. The rmeta has a default function for MH (fixed-effect) model. Has the rmeta package been updated for such a function? Or someone revised it and kept a private code? I would appreciate it if you could provide some information on this question. Thanks, Andrew This email is intended
2020 Jan 01
2
KVM Random Reboots AMD EPYC Server
our new Server with AMD EPYC and super micro board reboots ramdonly. There is no error message before the reboot in /var/log/messages. we are running 2 Server with VMWare workstation without any problem. The new server should run KVM. older servers with AMD (before EPYC) running KVM without any problem. any idea or recommendation? -- Viele Gr??e Helmut Drodof...
2020 Jan 01
0
KVM Random Reboots AMD EPYC Server
> our new Server with AMD EPYC and super micro board reboots ramdonly. > There is no error message before the reboot in /var/log/messages. Anything in the hardware logs of the server like memory error or so? Any watchdog on the servers acting bad? We run CentOS 7 and KVM on AMD Opteron and AMD EPYC servers without issues. Regards, Simon > > we are running...
2006 Jan 11
0
Permutation columns or boostrapping
...tated columns. Is it possible to control the number of columns permutated. Let's say I only want to permute two columns. Can i do that with the sample method or should i any bootstrapping method ?? I'm not sure this is the best statisticaly way of doing it...?? So the idea behind is to ramdonly generate 1000 permutated matrices from the original data matrix and estimated the significance of each of the values. Any help would be extremely apreciated.. Here is the code i have so far... that works x <- matrix(1:10,nr=5,nc=6) >x [,1] [,2] [,3] [,4] [,5] [,6] [1,] 1 6 1...
2009 Apr 24
1
[Bug 591] New: NAT REDIRECT target does not always work
...Dropado IN=eth0 OUT=eth1 SRC=10.183.4.37 DST=200.181.75.130 LEN=40 TOS=0x00 PREC=0x00 TTL=63 ID=53281 DF PROTO=TCP SPT=49771 DPT=80 WINDOW=65535 RES=0x00 ACK RST URGP=0 This should not happen. The package should have been redirect to port 3128 by the the nat rules. The problem is that this happens ramdonly. Most of time the redirection is handled correctly, but rarely some packets are not redirect. That is why it is difficult to debug what is happening. What can I do? My kernel version is 2.6.28.3 compiled from v2.6.28 git tag with patch applied to 2.6.28.3. It also happened with debian kernel packa...
2017 Oct 09
4
samba getting stuck, highwatermark replication issue?
Hi all, We would appreciate some input here. Not sure where to look... We have three AD DCs, all running samba 4.5.10, and since a few days, the samba DCs are getting stuck regularly, at ramdon times. Happens to all three of them, randomly, and currently it is happening up to a few times per day..! Must be some common cause. For the rest, the systems appear fine, enough diskspace, nothing
2017 Oct 09
0
samba getting stuck, highwatermark replication issue?
On 10/9/2017 1:28 PM, mj via samba wrote: > Hi all, > > We would appreciate some input here. Not sure where to look... > > We have three AD DCs, all running samba 4.5.10, and since a few days, > the samba DCs are getting stuck regularly, at ramdon times. Happens to > all three of them, randomly, and currently it is happening up to a few > times per day..! Must be some
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.