Displaying 3 results from an estimated 3 matches for "node16".
Did you mean:
node1
2018 Apr 10
0
glusterfs disperse volume input output error
...icks: 1 x (13 + 2) = 15
Transport-type: tcp
Bricks:
Brick1: glfs-node11.local:/data1/bricks/brick1
Brick2: glfs-node12.local:/data1/bricks/brick1
Brick3: glfs-node13.local:/data1/bricks/brick1
Brick4: glfs-node14.local:/data1/bricks/brick1
Brick5: glfs-node15.local:/data1/bricks/brick1
Brick6: glfs-node16.local:/data1/bricks/brick1
Brick7: glfs-node17.local:/data1/bricks/brick1
Brick8: glfs-node18.local:/data1/bricks/brick1
Brick9: glfs-node19.local:/data1/bricks/brick1
Brick10: glfs-node20.local:/data1/bricks/brick1
Brick11: glfs-node21.local:/data1/bricks/brick1
Brick12: glfs-node22.local:/data1/b...
2012 Jul 19
1
duplicate domain ids!?
...running
11 node10 running
12 node11 running
13 node12 running
14 node13 running
15 node14 running
15 node14 running
16 node16 running
node15 is up and running, can ssh into it.
virt manager only lists 15 guests (ie, doesn't show the duplicate domid)
# virsh domid node14
15
# virsh domid node15
15
Doesn't *seem* to be causing a problem (other than above
virsh/virt-manager issues), but...
2007 Jan 26
2
strange behaviour with equality after simple subtraction
hello,
today while trying to extract data from a list for subsequent analysis, i
stumbled upon this funny behavior on my system:
> x<-c(0.1,0.9)
> 1-x[2]
[1] 0.1
> x[1]
[1] 0.1
> x[1]==1-x[2]
[1] FALSE
> x[1]>1-x[2]
[1] TRUE
> x<-c(0.3,0.7)
> x[1]
[1] 0.3
> x[2]
[1] 0.7
> 1-x[2]
[1] 0.3
> x[1]==1-x[2]
[1] FALSE
but:
>