Displaying 20 results from an estimated 100 matches similar to: "CESA-2016:0513 Critical CentOS 7 java-1.8.0-openjdk Security Update"
2016 Mar 25
0
CentOS-announce Digest, Vol 133, Issue 12
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2016 Mar 25
0
CESA-2016:0514 Important CentOS 6 java-1.8.0-openjdk Security Update
CentOS Errata and Security Advisory 2016:0514 Important
Upstream details at : https://rhn.redhat.com/errata/RHSA-2016-0514.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
6b59479e59db490421e0b789d3285564138cd5ab70d1bb35e3a4b6238b8b8eab java-1.8.0-openjdk-1.8.0.77-0.b03.el6_7.i686.rpm
2017 Oct 19
0
vfs_fruit and extended attributes
It seems not many folks have much to say about this.
Here?s an update for anyone in a similar situation:
We narrowed down the issue to being with dispersed volumes. When we created a replicated volume, vfs_fruit worked without issue.
Ultimately, what we were seeking was performance. Even for our Windows and Linux users, things could be slow. The good news is that we discovered an SMB config
2003 Jun 09
0
Samba 3.0.0beta1, NT4 Joining a Domain Problems
Hi,
I'm trying to test Samba 3.0.0 beta 1, and so far, one problem I have
spent the last couple hours trying to solve, is a problem I am having
joining the domain with an NT4 workstation.
The samba server is a PDC, and when I try to join the workstation to the
samba controlled domain using the root account (which worked on Samba
2.2.8 just fine), I get a message on the NT workstation that it
2017 Sep 22
1
vfs_fruit and extended attributes
Hello Anoop. Thanks for helping with this!
> On Sep 22, 2017, at 00:11, Anoop C S <anoopcs at autistici.org> wrote:
>
> On Thu, 2017-09-21 at 10:35 -0600, Terry McGuire wrote:
>> Hello list. I?m attempting to improve how Samba shares directories on our Gluster volume to Mac
>> users by using the vfs_fruit module.
>
> What versions of GlusterFS and Samba have
2017 Dec 14
1
match and new columns
Hi Bill,
I put stringsAsFactors = FALSE
still did not work.
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE ,stringsAsFactors = FALSE)
tdat$D <- 0
tdat$E <- 0
tdat$D <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0))
tdat$E <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0))
2006 Oct 11
5
Where is djvmti Agent?
What am I missing?
[Download dvm.zip from https://solaris10-dtrace-vm-agents.dev.java.net/]
[root at load0 /]$ mkdir /opt/dvm;cd /opt/dvm
root at load0 dvm]$ unzip /home/jbuckley/dvm.zip
[jbuckley at load0 ~]$ more /etc/release
Solaris Nevada snv_45 SPARC
Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
Use is subject to
2007 Apr 01
0
How to Install and Configure Ant for Centos 4.4 ?
I need to install Ant for my Centos 4.4. First, I have followed this post to
install Java Jdk:
http://www.centos.org/modules/newbb/viewtopic.php?topic_id=2475
<http://www.centos.org/modules/newbb/viewtopic.php?topic_id=2475&forum=28>
&forum=28 and it worked.
[root at server ~]# java -version
java version "1.5.0_09"
Java(TM) 2 Runtime Environment, Standard Edition (build
2017 Dec 14
0
match and new columns
Use the stringsAsFactors=FALSE argument to read.table when
making your data.frame - factors are getting in your way here.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Wed, Dec 13, 2017 at 3:02 PM, Val <valkremk at gmail.com> wrote:
> Thank you Rui,
> I did not get the desired result. Here is the output from your script
>
> A B C Y D E
> 1 A12 B03 C04 0.70 0 0
2009 Jun 23
2
Long to wide format without time variable
Hi all,
I am trying to convert a data set of physician death codings (each individual's cause of death is coded by multiple physicians) from long to wide format, but the "reshape" function doesn't seem to work because it requires a "time" variable to identify the sequence among the repeated observations within individuals. My data set has no order, and different
2018 Sep 10
2
Byte-wide stores aren't coalesced if interspersed with other stores
Hi,
I have, in postres, a piece of IR that, after inlining and constant
propagation boils (when cooked on really high heat) down to (also
attached for your convenience):
source_filename = "pg"
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
define void @evalexpr_0_0(i8* align 8 noalias, i32* align 8 noalias) {
2017 Dec 13
0
match and new columns
Hello,
Here is one way.
tdat$D <- ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0)
tdat$E <- ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0)
Hope this helps,
Rui Barradas
On 12/13/2017 9:36 PM, Val wrote:
> Hi all,
>
> I have a data frame
> tdat <- read.table(textConnection("A B C Y
> A12 B03 C04 0.70
> A23 B05 C06 0.05
> A14 B06 C07 1.20
> A25 A23 A12 3.51
2017 Dec 13
2
match and new columns
Thank you Rui,
I did not get the desired result. Here is the output from your script
A B C Y D E
1 A12 B03 C04 0.70 0 0
2 A23 B05 C06 0.05 0 0
3 A14 B06 C07 1.20 0 0
4 A25 A23 A12 3.51 1 1
5 A16 A25 A14 2,16 4 4
On Wed, Dec 13, 2017 at 4:36 PM, Rui Barradas <ruipbarradas at sapo.pt> wrote:
> Hello,
>
> Here is one way.
>
> tdat$D <- ifelse(tdat$B %in% tdat$A,
2007 Jan 30
3
Java headaches
I lost my harddrive, and have had to reinstall. This time, I am being a
bit smarter on imaging, but still got to get things installed...
Installing Freemind. It needs Java JRE.
So after lots of pain, and reading past messages, I got
jre-1_5_0_09-linux-i586.rpm from sun and installed it.
Then I tried to follow Jim Perrin's recommendation to install from
jpackage.org the
2013 May 24
0
Problem After adding Bricks
Hello, I have run into some performance issues after adding bricks to
a 3.3.1 volume. Basically I am seeing very high CPU usage and
extremely degraded performance. I started a re-balance but stopped it
after a couple days. The logs have a lot of entries for split-brain as
well as "Non Blocking entrylks failed for". For some of the
directories on the client doing an ls will show multiple
2017 Dec 13
3
match and new columns
Hi all,
I have a data frame
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE)
I want match tdat$B with tdat$A and populate the column values of tdat$A
( col A and Col B) in the newly created columns (col D and col E). please
find my attempt and the desired output below
Desired output
2018 Sep 11
2
Byte-wide stores aren't coalesced if interspersed with other stores
Hmm. This looks like the backend conservatively giving up early on merging.
It looks like you're running clang 5.02. There have been some improvements
to the backend's memory aliasing and store merging that have landed since.
Can you check if this is fixed in a newer version?
-Nirav
On Tue, Sep 11, 2018 at 2:21 PM, Andres Freund <andres at anarazel.de> wrote:
> Hi,
>
>
2011 Oct 18
0
[Driver San Francisco]Install crash, Java runtime error
Hi,
I try actually to install Driver San Francisco but the crash install in the beginning because there is a fatal error detected by Java.
This is the error message in the console when i launch the installation :
Code:
berillions at Debian64:~$ WINEPREFIX=/home/berillions/Prefix/DSF wine /mnt/iso/setup.exe
berillions at Debian64:~$ cwd: C:\users\berillions\Temp\I1318932439\Windows
cmd:
2012 Apr 09
4
Installing Gray Matter , need assistance please (Specs)
System Version: Mac OS X 10.5.8 (9L31a)
Kernel Version: Darwin 9.8.0
Boot Volume: Untitled
Boot Mode: Normal
Computer Name: gazelle?s MacBook (4)
User Name: Brian (gazelle)
Time since boot: 6:58
Model Name: MacBook
Model Identifier: MacBook5,1
Processor Name: Intel Core 2 Duo
Processor Speed: 2.4 GHz
Number Of Processors: 1
Total Number Of Cores: 2
L2 Cache: 3 MB
2011 Aug 03
3
R.app installer probs on Snow Leopard
Have tried to install R.app several times (6, in fact: versions 2.12, 13 & 14, both 32 and 64 bit versions), using packages freshly downloaded from the official project page, and failed every time, given exception reports such as the following (appended below, the 2 reports arising out of my 1st & 6th attempts).
Machine & software version specifics are all contained therein.
What