Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CONF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UvA
CONF
Commits
c04ca632
Commit
c04ca632
authored
Jun 19, 2019
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add exogeni support
parent
57a8fd69
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
1095 additions
and
5 deletions
+1095
-5
Dockerfile
Dockerfiles/planner/Dockerfile
+1
-1
exogeni-level-0.yml
docs/plans/exogeni-level-0.yml
+13
-0
exogeni-level-1.yml
docs/plans/exogeni-level-1.yml
+13
-0
PlannerService.java
...main/java/nl/uva/sne/drip/api/service/PlannerService.java
+2
-0
pom.xml
drip-planner2provisioner/pom.xml
+6
-1
P2PConverter.java
...ain/java/nl/uva/sne/drip/drip/converter/P2PConverter.java
+23
-0
ExoGeniSubTopology.java
...ovisionerIn/provisionerIn/ExoGeni/ExoGeniSubTopology.java
+11
-0
ExoGeniVM.java
...verter/provisionerIn/provisionerIn/ExoGeni/ExoGeniVM.java
+10
-0
hs_err_pid5352.log
drip-provisioner/hs_err_pid5352.log
+994
-0
MessageParsing.java
...l/uva/sne/drip/drip/provisioner/utils/MessageParsing.java
+17
-2
Consumer.java
...in/java/nl/uva/sne/drip/drip/provisioner/v1/Consumer.java
+4
-0
project.properties
drip_planner2/nbproject/project.properties
+1
-1
__init__.pyc
drip_planner2/src/drip_logging/__init__.pyc
+0
-0
drip_logging_handler.pyc
drip_planner2/src/drip_logging/drip_logging_handler.pyc
+0
-0
winery_planner.cpython-36.pyc
...er2/src/planner/__pycache__/winery_planner.cpython-36.pyc
+0
-0
No files found.
Dockerfiles/planner/Dockerfile
View file @
c04ca632
...
...
@@ -18,7 +18,7 @@ RUN pip install numpy
RUN
pip
install
networkx
==
1.10
RUN
pip
install
flask
RUN
pip
install
tosca-parser
RUN
pip
install
pika
RUN
pip
install
pika
==
0.11.2
RUN
export
LC_ALL
=
"en_US.UTF-8"
RUN
pip
install
paramiko
...
...
docs/plans/exogeni-level-0.yml
0 → 100644
View file @
c04ca632
---
publicKeyPath
:
"
name@id_rsa.pub"
userName
:
"
vm_user"
topologies
:
-
topology
:
"
exogeni-level-1"
cloudProvider
:
"
ExoGENI"
domain
:
"
RENCI
(Chapel
Hill,
NC
USA)
XO
Rack"
status
:
"
fresh"
tag
:
"
fixed"
statusInfo
:
null
copyOf
:
null
sshKeyPairId
:
null
connections
:
null
docs/plans/exogeni-level-1.yml
0 → 100644
View file @
c04ca632
---
subnets
:
null
components
:
-
name
:
"
nodeA"
type
:
"
switch/compute"
nodeType
:
"
XOMedium"
OStype
:
"
Ubuntu
14.04"
script
:
null
role
:
null
dockers
:
null
publicAddress
:
null
ethernetPort
:
null
VMResourceID
:
null
drip-api/src/main/java/nl/uva/sne/drip/api/service/PlannerService.java
View file @
c04ca632
...
...
@@ -295,6 +295,8 @@ public class PlannerService {
return
"Frankfurt"
;
case
"egi"
:
return
"CESNET"
;
case
"exogeni"
:
return
"RENCI (Chapel Hill, NC USA) XO Rack"
;
}
return
null
;
}
...
...
drip-planner2provisioner/pom.xml
View file @
c04ca632
...
...
@@ -36,7 +36,12 @@
<artifactId>
drip-commons
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
nl.uva.sne.drip
</groupId>
<artifactId>
drip-provisioning-agent
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<type>
jar
</type>
</dependency>
</dependencies>
<build>
...
...
drip-planner2provisioner/src/main/java/nl/uva/sne/drip/drip/converter/P2PConverter.java
View file @
c04ca632
...
...
@@ -18,6 +18,9 @@ import nl.uva.sne.drip.commons.utils.Converter;
import
nl.uva.sne.drip.drip.converter.provisionerIn.*
;
import
nl.uva.sne.drip.drip.converter.provisionerIn.EC2.*
;
import
nl.uva.sne.drip.drip.converter.provisionerIn.provisionerIn.EGI.*
;
import
nl.uva.sne.drip.drip.converter.provisionerIn.provisionerIn.ExoGeni.ExoGeniSubTopology
;
import
nl.uva.sne.drip.drip.converter.provisionerIn.provisionerIn.ExoGeni.ExoGeniVM
;
import
org.json.JSONException
;
public
class
P2PConverter
{
...
...
@@ -163,6 +166,16 @@ public class P2PConverter {
if
(
size
>
5
&&
size
<=
10
)
{
return
"mammoth"
;
}
case
"exogeni"
:
if
(
size
<=
1
)
{
return
"XOSmall"
;
}
if
(
size
>
1
&&
size
<=
5
)
{
return
"XOMedium"
;
}
if
(
size
>
5
&&
size
<=
10
)
{
return
"XOLarge"
;
}
default
:
Logger
.
getLogger
(
P2PConverter
.
class
.
getName
()).
log
(
Level
.
WARNING
,
"The {0} is not supported yet!"
,
cloudProvider
);
return
null
;
...
...
@@ -179,6 +192,9 @@ public class P2PConverter {
case
"egi"
:
curVM
=
new
EGIVM
();
break
;
case
"exogeni"
:
curVM
=
new
ExoGeniVM
();
break
;
default
:
Logger
.
getLogger
(
P2PConverter
.
class
.
getName
()).
log
(
Level
.
WARNING
,
"The {0} is not supported yet!"
,
cloudProvider
);
return
null
;
...
...
@@ -227,6 +243,10 @@ public class P2PConverter {
subTopology
=
new
EGISubTopology
();
((
EGISubTopology
)
subTopology
).
components
=
new
ArrayList
<>();
break
;
case
"exogeni"
:
subTopology
=
new
ExoGeniSubTopology
();
((
ExoGeniSubTopology
)
subTopology
).
components
=
new
ArrayList
<>();
break
;
default
:
Logger
.
getLogger
(
P2PConverter
.
class
.
getName
()).
log
(
Level
.
WARNING
,
"The {0} is not supported yet!"
,
cloudProvider
);
return
null
;
...
...
@@ -242,6 +262,9 @@ public class P2PConverter {
case
"egi"
:
((
EGISubTopology
)
subTopology
).
components
.
add
((
EGIVM
)
vm
);
break
;
case
"exogeni"
:
((
ExoGeniSubTopology
)
subTopology
).
components
.
add
((
ExoGeniVM
)
vm
);
break
;
default
:
Logger
.
getLogger
(
P2PConverter
.
class
.
getName
()).
log
(
Level
.
WARNING
,
"The {0} is not supported yet!"
,
cloudProvider
);
// return null;
...
...
drip-planner2provisioner/src/main/java/nl/uva/sne/drip/drip/converter/provisionerIn/provisionerIn/ExoGeni/ExoGeniSubTopology.java
0 → 100644
View file @
c04ca632
package
nl
.
uva
.
sne
.
drip
.
drip
.
converter
.
provisionerIn
.
provisionerIn
.
ExoGeni
;
import
java.util.ArrayList
;
import
nl.uva.sne.drip.drip.converter.provisionerIn.SubTopology
;
public
class
ExoGeniSubTopology
extends
SubTopology
{
//Indicate different VMs.
public
ArrayList
<
ExoGeniVM
>
components
;
}
drip-planner2provisioner/src/main/java/nl/uva/sne/drip/drip/converter/provisionerIn/provisionerIn/ExoGeni/ExoGeniVM.java
0 → 100644
View file @
c04ca632
package
nl
.
uva
.
sne
.
drip
.
drip
.
converter
.
provisionerIn
.
provisionerIn
.
ExoGeni
;
import
nl.uva.sne.drip.drip.converter.provisionerIn.VM
;
public
class
ExoGeniVM
extends
VM
{
public
String
OSurl
;
public
String
OSguid
;
}
drip-provisioner/hs_err_pid5352.log
0 → 100644
View file @
c04ca632
#
#
There
is
insufficient
memory
for
the
Java
Runtime
Environment
to
continue
.
#
Native
memory
allocation
(
mmap
)
failed
to
map
95420416
bytes
for
committing
reserved
memory
.
#
Possible
reasons
:
#
The
system
is
out
of
physical
RAM
or
swap
space
#
The
process
is
running
with
CompressedOops
enabled
,
and
the
Java
Heap
may
be
blocking
the
growth
of
the
native
heap
#
Possible
solutions
:
#
Reduce
memory
load
on
the
system
#
Increase
physical
memory
or
swap
space
#
Check
if
swap
backing
store
is
full
#
Decrease
Java
heap
size
(-
Xmx
/-
Xms
)
#
Decrease
number
of
Java
threads
#
Decrease
Java
thread
stack
sizes
(-
Xss
)
#
Set
larger
code
cache
with
-
XX
:
ReservedCodeCacheSize
=
#
JVM
is
running
with
Unscaled
Compressed
Oops
mode
in
which
the
Java
heap
is
#
placed
in
the
first
4
GB
address
space
.
The
Java
Heap
base
address
is
the
#
maximum
limit
for
the
native
heap
growth
.
Please
use
-
XX
:
HeapBaseMinAddress
#
to
set
the
Java
Heap
base
and
to
place
the
Java
Heap
above
4
GB
virtual
address
.
#
This
output
file
may
be
truncated
or
incomplete
.
#
#
Out
of
Memory
Error
(
os_linux
.
cpp
:
2749
),
pid
=
5352
,
tid
=
0x00007fafc29a7700
#
#
JRE
version
:
Java
(
TM
)
SE
Runtime
Environment
(
8.0
_201
-
b09
)
(
build
1.8.0
_201
-
b09
)
#
Java
VM
:
Java
HotSpot
(
TM
)
64
-
Bit
Server
VM
(
25.201
-
b09
mixed
mode
linux
-
amd64
compressed
oops
)
#
Failed
to
write
core
dump
.
Core
dumps
have
been
disabled
.
To
enable
core
dumping
,
try
"ulimit -c unlimited"
before
starting
Java
again
#
---------------
T
H
R
E
A
D
---------------
Current
thread
(
0x00007faff8082000
):
VMThread
[
stack
:
0x00007fafc28a8000
,
0x00007fafc29a8000
]
[
id
=
5378
]
Stack
:
[
0x00007fafc28a8000
,
0x00007fafc29a8000
],
sp
=
0x00007fafc29a63d0
,
free
space
=
1016
k
Native
frames
:
(
J
=
compiled
Java
code
,
j
=
interpreted
,
Vv
=
VM
code
,
C
=
native
code
)
V
[
libjvm
.
so
+
0xad3525
]
VMError
::
report_and_die
()+
0x2e5
V
[
libjvm
.
so
+
0x4e0457
]
report_vm_out_of_memory
(
char
const
*,
int
,
unsigned
long
,
VMErrorType
,
char
const
*)+
0x67
V
[
libjvm
.
so
+
0x9102f0
]
os
::
pd_commit_memory
(
char
*,
unsigned
long
,
unsigned
long
,
bool
)+
0x100
V
[
libjvm
.
so
+
0x90791f
]
os
::
commit_memory
(
char
*,
unsigned
long
,
unsigned
long
,
bool
)+
0x1f
V
[
libjvm
.
so
+
0x98c806
]
PSVirtualSpace
::
expand_by
(
unsigned
long
)+
0x56
V
[
libjvm
.
so
+
0x97badb
]
PSOldGen
::
expand_by
(
unsigned
long
)
[
clone
.
part
.28
]+
0x1b
V
[
libjvm
.
so
+
0x97bc98
]
PSOldGen
::
expand
(
unsigned
long
)
[
clone
.
part
.29
]+
0xa8
V
[
libjvm
.
so
+
0x97c841
]
PSOldGen
::
resize
(
unsigned
long
)+
0xe1
V
[
libjvm
.
so
+
0x98297c
]
PSParallelCompact
::
invoke_no_policy
(
bool
)
[
clone
.
part
.118
]+
0xa2c
V
[
libjvm
.
so
+
0x98a795
]
PSScavenge
::
invoke
()+
0x215
V
[
libjvm
.
so
+
0x93a318
]
ParallelScavengeHeap
::
failed_mem_allocate
(
unsigned
long
)+
0x68
V
[
libjvm
.
so
+
0xad5073
]
VM_ParallelGCFailedAllocation
::
doit
()+
0x93
V
[
libjvm
.
so
+
0xada296
]
VM_Operation
::
evaluate
()+
0x46
V
[
libjvm
.
so
+
0xad85cd
]
VMThread
::
evaluate_operation
(
VM_Operation
*)
[
clone
.
constprop
.44
]+
0xcd
V
[
libjvm
.
so
+
0xad8bb3
]
VMThread
::
loop
()+
0x3a3
V
[
libjvm
.
so
+
0xad8f88
]
VMThread
::
run
()+
0x78
V
[
libjvm
.
so
+
0x90d922
]
java_start
(
Thread
*)+
0x102
VM_Operation
(
0x00007fb00003c0d0
):
ParallelGCFailedAllocation
,
mode
:
safepoint
,
requested
by
thread
0x00007faff800b800
---------------
P
R
O
C
E
S
S
---------------
Java
Threads
:
(
=>
current
thread
)
0x00007faff821c800
JavaThread
"resolver-5"
daemon
[
_thread_blocked
,
id
=
5404
,
stack
(
0x00007faf98cfc000
,
0x00007faf98dfd000
)]
0x00007faff821c000
JavaThread
"resolver-4"
daemon
[
_thread_blocked
,
id
=
5403
,
stack
(
0x00007faf98dfd000
,
0x00007faf98efe000
)]
0x00007faff8fb6000
JavaThread
"resolver-3"
daemon
[
_thread_blocked
,
id
=
5402
,
stack
(
0x00007faf98efe000
,
0x00007faf98fff000
)]
0x00007faff8fb5800
JavaThread
"resolver-2"
daemon
[
_thread_blocked
,
id
=
5401
,
stack
(
0x00007fafc002c000
,
0x00007fafc012d000
)]
0x00007faff8fb1800
JavaThread
"resolver-1"
daemon
[
_thread_blocked
,
id
=
5400
,
stack
(
0x00007fafc012d000
,
0x00007fafc022e000
)]
0x00007faff8fa1000
JavaThread
"process reaper"
daemon
[
_thread_blocked
,
id
=
5398
,
stack
(
0x00007fafc042e000
,
0x00007fafc0467000
)]
0x00007faff80cd800
JavaThread
"Service Thread"
daemon
[
_thread_blocked
,
id
=
5386
,
stack
(
0x00007fafc16cd000
,
0x00007fafc17ce000
)]
0x00007faff80ca800
JavaThread
"C1 CompilerThread3"
daemon
[
_thread_blocked
,
id
=
5385
,
stack
(
0x00007fafc17cf000
,
0x00007fafc18cf000
)]
0x00007faff80c8800
JavaThread
"C2 CompilerThread2"
daemon
[
_thread_blocked
,
id
=
5384
,
stack
(
0x00007fafc18d0000
,
0x00007fafc19d0000
)]
0x00007faff80c6800
JavaThread
"C2 CompilerThread1"
daemon
[
_thread_blocked
,
id
=
5383
,
stack
(
0x00007fafc19d1000
,
0x00007fafc1ad1000
)]
0x00007faff80c3800
JavaThread
"C2 CompilerThread0"
daemon
[
_thread_blocked
,
id
=
5382
,
stack
(
0x00007fafc1ad2000
,
0x00007fafc1bd2000
)]
0x00007faff80c2000
JavaThread
"Signal Dispatcher"
daemon
[
_thread_blocked
,
id
=
5381
,
stack
(
0x00007fafc1bd2000
,
0x00007fafc1cd3000
)]
0x00007faff808e000
JavaThread
"Finalizer"
daemon
[
_thread_blocked
,
id
=
5380
,
stack
(
0x00007fafc26a5000
,
0x00007fafc27a6000
)]
0x00007faff808b800
JavaThread
"Reference Handler"
daemon
[
_thread_blocked
,
id
=
5379
,
stack
(
0x00007fafc27a6000
,
0x00007fafc28a7000
)]
0x00007faff800b800
JavaThread
"main"
[
_thread_blocked
,
id
=
5369
,
stack
(
0x00007faffff3f000
,
0x00007fb00003f000
)]
Other
Threads
:
=>
0x00007faff8082000
VMThread
[
stack
:
0x00007fafc28a8000
,
0x00007fafc29a8000
]
[
id
=
5378
]
0x00007faff80d0000
WatcherThread
[
stack
:
0x00007fafc15cd000
,
0x00007fafc16cd000
]
[
id
=
5387
]
VM
state
:
at
safepoint
(
normal
execution
)
VM
Mutex
/
Monitor
currently
owned
by
a
thread
:
([
mutex
/
lock_event
])
[
0x00007faff8007880
]
ExpandHeap_lock
-
owner
thread
:
0x00007faff8082000
[
0x00007faff8007f00
]
Threads_lock
-
owner
thread
:
0x00007faff8082000
[
0x00007faff8008400
]
Heap_lock
-
owner
thread
:
0x00007faff800b800
heap
address
:
0x000000008c000000
,
size
:
1856
MB
,
Compressed
Oops
mode
:
32
-
bit
Narrow
klass
base
:
0x0000000000000000
,
Narrow
klass
shift
:
3
Compressed
class
space
size
:
1073741824
Address
:
0x0000000100000000
Heap
:
PSYoungGen
total
520192
K
,
used
0
K
[
0x00000000d9580000
,
0x0000000100000000
,
0x0000000100000000
)
eden
space
496640
K
,
0
%
used
[
0x00000000d9580000
,
0x00000000d9580000
,
0x00000000f7a80000
)
from
space
23552
K
,
0
%
used
[
0x00000000f7a80000
,
0x00000000f7a80000
,
0x00000000f9180000
)
to
space
33280
K
,
0
%
used
[
0x00000000fdf80000
,
0x00000000fdf80000
,
0x0000000100000000
)
ParOldGen
total
66048
K
,
used
59516
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
90
%
used
[
0x000000008c000000
,
0x000000008fa1f310
,
0x0000000090080000
)
Metaspace
used
24081
K
,
capacity
25082
K
,
committed
25264
K
,
reserved
1071104
K
class
space
used
2743
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
Card
table
byte_map
:
[
0x00007faffc89d000
,
0x00007faffcc3e000
]
byte_map_base
:
0x00007faffc43d000
Marking
Bits
:
(
ParMarkBitMap
*)
0x00007fafff40bd80
Begin
Bits
:
[
0x00007fafc8600000
,
0x00007fafca300000
)
End
Bits
:
[
0x00007fafca300000
,
0x00007fafcc000000
)
Polling
page
:
0x00007fb000079000
CodeCache
:
size
=
245760
Kb
used
=
18543
Kb
max_used
=
19008
Kb
free
=
227216
Kb
bounds
[
0x00007fafe9000000
,
0x00007fafea2b0000
,
0x00007faff8000000
]
total_blobs
=
5178
nmethods
=
4809
adapters
=
281
compilation
:
enabled
Compilation
events
(
10
events
):
Event
:
7
,
322
Thread
0x00007faff80ca800
5728
3
org
.
fusesource
.
jansi
.
Ansi
::
toString
(
12
bytes
)
Event
:
7
,
322
Thread
0x00007faff80ca800
nmethod
5728
0x00007fafe9926e10
code
[
0x00007fafe9926fa0
,
0x00007fafe99272b8
]
Event
:
7
,
322
Thread
0x00007faff80ca800
5726
3
org
.
apache
.
maven
.
shared
.
utils
.
logging
.
AnsiMessageBuilder
::
info
(
21
bytes
)
Event
:
7
,
322
Thread
0x00007faff80ca800
nmethod
5726
0x00007fafe91d9c50
code
[
0x00007fafe91d9e40
,
0x00007fafe91da5f8
]
Event
:
7
,
322
Thread
0x00007faff80ca800
5727
3
org
.
fusesource
.
jansi
.
Ansi
::
a
(
15
bytes
)
Event
:
7
,
322
Thread
0x00007faff80ca800
nmethod
5727
0x00007fafe94e6a90
code
[
0x00007fafe94e6c20
,
0x00007fafe94e6ed8
]
Event
:
7
,
846
Thread
0x00007faff80c8800
5729
4
org
.
codehaus
.
plexus
.
archiver
.
zip
.
AbstractZipArchiver
::
addParentDirs
(
210
bytes
)
Event
:
7
,
876
Thread
0x00007faff80c8800
nmethod
5729
0x00007fafe97715d0
code
[
0x00007fafe97718a0
,
0x00007fafe9773188
]
Event
:
7
,
948
Thread
0x00007faff80c6800
5730
4
java
.
net
.
URI
$
Parser
::
scan
(
73
bytes
)
Event
:
7
,
952
Thread
0x00007faff80c6800
nmethod
5730
0x00007fafea075010
code
[
0x00007fafea075180
,
0x00007fafea0755b8
]
GC
Heap
History
(
10
events
):
Event
:
5
,
140
GC
heap
after
Heap
after
GC
invocations
=
14
(
full
1
):
PSYoungGen
total
294912
K
,
used
12064
K
[
0x00000000d9580000
,
0x00000000f2480000
,
0x0000000100000000
)
eden
space
282624
K
,
0
%
used
[
0x00000000d9580000
,
0x00000000d9580000
,
0x00000000ea980000
)
from
space
12288
K
,
98
%
used
[
0x00000000ea980000
,
0x00000000eb548010
,
0x00000000eb580000
)
to
space
13312
K
,
0
%
used
[
0x00000000f1780000
,
0x00000000f1780000
,
0x00000000f2480000
)
ParOldGen
total
66048
K
,
used
14772
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
22
%
used
[
0x000000008c000000
,
0x000000008ce6d2a8
,
0x0000000090080000
)
Metaspace
used
23777
K
,
capacity
24762
K
,
committed
25008
K
,
reserved
1071104
K
class
space
used
2733
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
}
Event
:
5
,
310
GC
heap
before
{
Heap
before
GC
invocations
=
15
(
full
1
):
PSYoungGen
total
294912
K
,
used
294688
K
[
0x00000000d9580000
,
0x00000000f2480000
,
0x0000000100000000
)
eden
space
282624
K
,
100
%
used
[
0x00000000d9580000
,
0x00000000ea980000
,
0x00000000ea980000
)
from
space
12288
K
,
98
%
used
[
0x00000000ea980000
,
0x00000000eb548010
,
0x00000000eb580000
)
to
space
13312
K
,
0
%
used
[
0x00000000f1780000
,
0x00000000f1780000
,
0x00000000f2480000
)
ParOldGen
total
66048
K
,
used
14772
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
22
%
used
[
0x000000008c000000
,
0x000000008ce6d2a8
,
0x0000000090080000
)
Metaspace
used
23777
K
,
capacity
24762
K
,
committed
25008
K
,
reserved
1071104
K
class
space
used
2733
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
Event
:
5
,
315
GC
heap
after
Heap
after
GC
invocations
=
15
(
full
1
):
PSYoungGen
total
392704
K
,
used
13280
K
[
0x00000000d9580000
,
0x00000000f2500000
,
0x0000000100000000
)
eden
space
379392
K
,
0
%
used
[
0x00000000d9580000
,
0x00000000d9580000
,
0x00000000f0800000
)
from
space
13312
K
,
99
%
used
[
0x00000000f1780000
,
0x00000000f2478010
,
0x00000000f2480000
)
to
space
14848
K
,
0
%
used
[
0x00000000f0800000
,
0x00000000f0800000
,
0x00000000f1680000
)
ParOldGen
total
66048
K
,
used
14844
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
22
%
used
[
0x000000008c000000
,
0x000000008ce7f2a8
,
0x0000000090080000
)
Metaspace
used
23777
K
,
capacity
24762
K
,
committed
25008
K
,
reserved
1071104
K
class
space
used
2733
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
}
Event
:
5
,
615
GC
heap
before
{
Heap
before
GC
invocations
=
16
(
full
1
):
PSYoungGen
total
392704
K
,
used
392672
K
[
0x00000000d9580000
,
0x00000000f2500000
,
0x0000000100000000
)
eden
space
379392
K
,
100
%
used
[
0x00000000d9580000
,
0x00000000f0800000
,
0x00000000f0800000
)
from
space
13312
K
,
99
%
used
[
0x00000000f1780000
,
0x00000000f2478010
,
0x00000000f2480000
)
to
space
14848
K
,
0
%
used
[
0x00000000f0800000
,
0x00000000f0800000
,
0x00000000f1680000
)
ParOldGen
total
66048
K
,
used
14844
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
22
%
used
[
0x000000008c000000
,
0x000000008ce7f2a8
,
0x0000000090080000
)
Metaspace
used
23898
K
,
capacity
24954
K
,
committed
25008
K
,
reserved
1071104
K
class
space
used
2738
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
Event
:
5
,
623
GC
heap
after
Heap
after
GC
invocations
=
16
(
full
1
):
PSYoungGen
total
394240
K
,
used
11744
K
[
0x00000000d9580000
,
0x00000000fa080000
,
0x0000000100000000
)
eden
space
379392
K
,
0
%
used
[
0x00000000d9580000
,
0x00000000d9580000
,
0x00000000f0800000
)
from
space
14848
K
,
79
%
used
[
0x00000000f0800000
,
0x00000000f1378010
,
0x00000000f1680000
)
to
space
15360
K
,
0
%
used
[
0x00000000f9180000
,
0x00000000f9180000
,
0x00000000fa080000
)
ParOldGen
total
66048
K
,
used
18592
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
28
%
used
[
0x000000008c000000
,
0x000000008d2282b8
,
0x0000000090080000
)
Metaspace
used
23898
K
,
capacity
24954
K
,
committed
25008
K
,
reserved
1071104
K
class
space
used
2738
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
}
Event
:
6
,
972
GC
heap
before
{
Heap
before
GC
invocations
=
17
(
full
1
):
PSYoungGen
total
394240
K
,
used
391136
K
[
0x00000000d9580000
,
0x00000000fa080000
,
0x0000000100000000
)
eden
space
379392
K
,
100
%
used
[
0x00000000d9580000
,
0x00000000f0800000
,
0x00000000f0800000
)
from
space
14848
K
,
79
%
used
[
0x00000000f0800000
,
0x00000000f1378010
,
0x00000000f1680000
)
to
space
15360
K
,
0
%
used
[
0x00000000f9180000
,
0x00000000f9180000
,
0x00000000fa080000
)
ParOldGen
total
66048
K
,
used
18592
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
28
%
used
[
0x000000008c000000
,
0x000000008d2282b8
,
0x0000000090080000
)
Metaspace
used
24081
K
,
capacity
25082
K
,
committed
25264
K
,
reserved
1071104
K
class
space
used
2743
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
Event
:
7
,
011
GC
heap
after
Heap
after
GC
invocations
=
17
(
full
1
):
PSYoungGen
total
512000
K
,
used
15339
K
[
0x00000000d9580000
,
0x00000000fae80000
,
0x0000000100000000
)
eden
space
496640
K
,
0
%
used
[
0x00000000d9580000
,
0x00000000d9580000
,
0x00000000f7a80000
)
from
space
15360
K
,
99
%
used
[
0x00000000f9180000
,
0x00000000fa07aca0
,
0x00000000fa080000
)
to
space
23552
K
,
0
%
used
[
0x00000000f7a80000
,
0x00000000f7a80000
,
0x00000000f9180000
)
ParOldGen
total
66048
K
,
used
35796
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
54
%
used
[
0x000000008c000000
,
0x000000008e2f5338
,
0x0000000090080000
)
Metaspace
used
24081
K
,
capacity
25082
K
,
committed
25264
K
,
reserved
1071104
K
class
space
used
2743
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
}
Event
:
8
,
697
GC
heap
before
{
Heap
before
GC
invocations
=
18
(
full
1
):
PSYoungGen
total
512000
K
,
used
511979
K
[
0x00000000d9580000
,
0x00000000fae80000
,
0x0000000100000000
)
eden
space
496640
K
,
100
%
used
[
0x00000000d9580000
,
0x00000000f7a80000
,
0x00000000f7a80000
)
from
space
15360
K
,
99
%
used
[
0x00000000f9180000
,
0x00000000fa07aca0
,
0x00000000fa080000
)
to
space
23552
K
,
0
%
used
[
0x00000000f7a80000
,
0x00000000f7a80000
,
0x00000000f9180000
)
ParOldGen
total
66048
K
,
used
35796
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
54
%
used
[
0x000000008c000000
,
0x000000008e2f5338
,
0x0000000090080000
)
Metaspace
used
24081
K
,
capacity
25082
K
,
committed
25264
K
,
reserved
1071104
K
class
space
used
2743
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
Event
:
8
,
999
GC
heap
after
Heap
after
GC
invocations
=
18
(
full
1
):
PSYoungGen
total
520192
K
,
used
23545
K
[
0x00000000d9580000
,
0x0000000100000000
,
0x0000000100000000
)
eden
space
496640
K
,
0
%
used
[
0x00000000d9580000
,
0x00000000d9580000
,
0x00000000f7a80000
)
from
space
23552
K
,
99
%
used
[
0x00000000f7a80000
,
0x00000000f917e510
,
0x00000000f9180000
)
to
space
33280
K
,
0
%
used
[
0x00000000fdf80000
,
0x00000000fdf80000
,
0x0000000100000000
)
ParOldGen
total
66048
K
,
used
52956
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
80
%
used
[
0x000000008c000000
,
0x000000008f3b7038
,
0x0000000090080000
)
Metaspace
used
24081
K
,
capacity
25082
K
,
committed
25264
K
,
reserved
1071104
K
class
space
used
2743
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
}
Event
:
9
,
102
GC
heap
before
{
Heap
before
GC
invocations
=
19
(
full
2
):
PSYoungGen
total
520192
K
,
used
23545
K
[
0x00000000d9580000
,
0x0000000100000000
,
0x0000000100000000
)
eden
space
496640
K
,
0
%
used
[
0x00000000d9580000
,
0x00000000d9580000
,
0x00000000f7a80000
)
from
space
23552
K
,
99
%
used
[
0x00000000f7a80000
,
0x00000000f917e510
,
0x00000000f9180000
)
to
space
33280
K
,
0
%
used
[
0x00000000fdf80000
,
0x00000000fdf80000
,
0x0000000100000000
)
ParOldGen
total
66048
K
,
used
52956
K
[
0x000000008c000000
,
0x0000000090080000
,
0x00000000d9580000
)
object
space
66048
K
,
80
%
used
[
0x000000008c000000
,
0x000000008f3b7038
,
0x0000000090080000
)
Metaspace
used
24081
K
,
capacity
25082
K
,
committed
25264
K
,
reserved
1071104
K
class
space
used
2743
K
,
capacity
2988
K
,
committed
2992
K
,
reserved
1048576
K
Deoptimization
events
(
10
events
):
Event
:
5
,
665
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
class_check
action
=
maybe_recompile
pc
=
0x00007fafe9643854
method
=
org
.
codehaus
.
plexus
.
archiver
.
filters
.
JarSecurityFileSelector
.
isSelected
(
Lorg
/
codehaus
/
plexus
/
components
/
io
/
fileselectors
/
FileInfo
;)
Z
@
1
Event
:
5
,
665
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
class_check
action
=
maybe_recompile
pc
=
0x00007fafe9643854
method
=
org
.
codehaus
.
plexus
.
archiver
.
filters
.
JarSecurityFileSelector
.
isSelected
(
Lorg
/
codehaus
/
plexus
/
components
/
io
/
fileselectors
/
FileInfo
;)
Z
@
1
Event
:
5
,
668
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe9a2a4f4
method
=
java
.
util
.
Vector
.
indexOf
(
Ljava
/
lang
/
Object
;
I
)
I
@
54
Event
:
5
,
668
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe9fc596c
method
=
java
.
util
.
Vector
.
removeElementAt
(
I
)
V
@
75
Event
:
5
,
671
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe96b6bf4
method
=
sun
.
util
.
calendar
.
BaseCalendar
$
Date
.
hit
(
J
)
Z
@
15
Event
:
5
,
671
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe9ddd9d4
method
=
sun
.
util
.
calendar
.
BaseCalendar
.
getFixedDate
(
IIILsun
/
util
/
calendar
/
BaseCalendar
$
Date
;)
J
@
19
Event
:
5
,
671
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe9ce190c
method
=
sun
.
util
.
calendar
.
CalendarDate
.
setMillis
(
I
)
Lsun
/
util
/
calendar
/
CalendarDate
;
@
5
Event
:
5
,
671
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe961f104
method
=
sun
.
util
.
calendar
.
BaseCalendar
$
Date
.
hit
(
J
)
Z
@
15
Event
:
5
,
671
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe945af80
method
=
sun
.
util
.
calendar
.
CalendarDate
.
setMillis
(
I
)
Lsun
/
util
/
calendar
/
CalendarDate
;
@
5
Event
:
6
,
889
Thread
0x00007faff800b800
Uncommon
trap
:
reason
=
unstable_if
action
=
reinterpret
pc
=
0x00007fafe93524c8
method
=
java
.
util
.
Hashtable
.
contains
(
Ljava
/
lang
/
Object
;)
Z
@
24
Classes
redefined
(
0
events
):
No
events
Internal
exceptions
(
10
events
):
Event
:
2
,
323
Thread
0x00007faff800b800
Implicit
null
exception
at
0x00007fafe9b6d676
to
0x00007fafe9b6fb51
Event
:
2
,
325
Thread
0x00007faff800b800
Implicit
null
exception
at
0x00007fafe9ba33cd
to
0x00007fafe9ba52a9
Event
:
3
,
001
Thread
0x00007faff800b800
Exception
<
a
'java/lang/NoSuchFieldError'
:
method
resolution
failed
>
(
0x00000000da6a2be0
)
thrown
at
[/
HUDSON
/
workspace
/
8
-
2
-
build
-
linux
-
amd64
/
jdk8u201
/
12317
/
hotspot
/
src
/
share
/
vm
/
prims
/
methodHandles
.
cpp
,
line
1167
]
Event
:
3
,
002
Thread
0x00007faff800b800
Exception
<
a
'java/lang/NoSuchFieldError'
:
method
resolution
failed
>
(
0x00000000da6b02a0
)
thrown
at
[/
HUDSON
/
workspace
/
8
-
2
-
build
-
linux
-
amd64
/
jdk8u201
/
12317
/
hotspot
/
src
/
share
/
vm
/
prims
/
methodHandles
.
cpp
,
line
1167
]
Event
:
3
,
045
Thread
0x00007faff800b800
Implicit
null
exception
at
0x00007fafe9c1c82f
to
0x00007fafe9c1cd81
Event
:
3
,
100
Thread
0x00007faff800b800
Implicit
null
exception
at
0x00007fafe9eb299b
to
0x00007fafe9eb32f5
Event
:
3
,
929
Thread
0x00007faff800b800
Implicit
null
exception
at
0x00007fafe9133c7a
to
0x00007fafe9134629
Event
:
4
,
107
Thread
0x00007faff8fb5800
Implicit
null
exception
at
0x00007fafea07cac0
to
0x00007fafea07d2fd
Event
:
4
,
107
Thread
0x00007faff8fb1800
Implicit
null
exception
at
0x00007fafea07cac0
to
0x00007fafea07d2fd
Event
:
5
,
671
Thread
0x00007faff800b800
Implicit
null
exception
at
0x00007fafe9ddd678
to
0x00007fafe9ddd9b1
Events
(
10
events
):
Event
:
5
,
961
Thread
0x00007faff800b800
DEOPT
PACKING
pc
=
0x00007fafe97e1cc0
sp
=
0x00007fb00003c360
Event
:
5
,
961
Thread
0x00007faff800b800
DEOPT
UNPACKING
pc
=
0x00007fafe9047784
sp
=
0x00007fb00003c0a8
mode
0
Event
:
6
,
163
loading
class
java
/
net
/
Proxy
Event
:
6
,
164
loading
class
java
/
net
/
Proxy
done
Event
:
6
,
889
Thread
0x00007faff800b800
Uncommon
trap
:
trap_request
=
0xffffff65
fr
.
pc
=
0x00007fafe93524c8
Event
:
6
,
889
Thread
0x00007faff800b800
DEOPT
PACKING
pc
=
0x00007fafe93524c8
sp
=
0x00007fb00003c4d0
Event
:
6
,
889
Thread
0x00007faff800b800
DEOPT
UNPACKING
pc
=
0x00007fafe904573a
sp
=
0x00007fb00003c458
mode
2
Event
:
6
,
972
Executing
VM
operation
:
ParallelGCFailedAllocation
Event
:
7
,
011
Executing
VM
operation
:
ParallelGCFailedAllocation
done
Event
:
8
,
695
Executing
VM
operation
:
ParallelGCFailedAllocation
Dynamic
libraries
:
00400000
-
00401000
r
-
xp
00000000
fd
:
01
803156
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
bin
/
java
00600000
-
00601000
r
--
p
00000000
fd
:
01
803156
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
bin
/
java
00601000
-
00602000
rw
-
p
00001000
fd
:
01
803156
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
bin
/
java
01391000
-
013
b2000
rw
-
p
00000000
00
:
00
0
[
heap
]
8
c000000
-
90080000
rw
-
p
00000000
00
:
00
0
95
b80000
-
d9580000
---
p
00000000
00
:
00
0
d9580000
-
100000000
rw
-
p
00000000
00
:
00
0
100000000
-
1002
ec000
rw
-
p
00000000
00
:
00
0
1002
ec000
-
140000000
---
p
00000000
00
:
00
0
7f
af70000000
-
7f
af70021000
rw
-
p
00000000
00
:
00
0
7f
af70021000
-
7f
af74000000
---
p
00000000
00
:
00
0
7f
af78000000
-
7f
af78021000
rw
-
p
00000000
00
:
00
0
7f
af78021000
-
7f
af7c000000
---
p
00000000
00
:
00
0
7f
af7c000000
-
7f
af7c021000
rw
-
p
00000000
00
:
00
0
7f
af7c021000
-
7f
af80000000
---
p
00000000
00
:
00
0
7f
af80000000
-
7f
af80021000
rw
-
p
00000000
00
:
00
0
7f
af80021000
-
7f
af84000000
---
p
00000000
00
:
00
0
7f
af84000000
-
7f
af84021000
rw
-
p
00000000
00
:
00
0
7f
af84021000
-
7f
af88000000
---
p
00000000
00
:
00
0
7f
af88000000
-
7f
af88021000
rw
-
p
00000000
00
:
00
0
7f
af88021000
-
7f
af8c000000
---
p
00000000
00
:
00
0
7f
af8c000000
-
7f
af8c021000
rw
-
p
00000000
00
:
00
0
7f
af8c021000
-
7f
af90000000
---
p
00000000
00
:
00
0
7f
af90000000
-
7f
af90021000
rw
-
p
00000000
00
:
00
0
7f
af90021000
-
7f
af94000000
---
p
00000000
00
:
00
0
7f
af94000000
-
7f
af94021000
rw
-
p
00000000
00
:
00
0
7f
af94021000
-
7f
af98000000
---
p
00000000
00
:
00
0
7f
af98939000
-
7f
af98944000
r
--
s
00069000
fd
:
01
2229803
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
elasticache
/
1.10.39
/
aws
-
java
-
sdk
-
elasticache
-
1.10.39
.
jar
7f
af98944000
-
7f
af9894d000
r
--
s
0007e000
fd
:
01
2229802
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
emr
/
1.10.39
/
aws
-
java
-
sdk
-
emr
-
1.10.39
.
jar
7f
af9894d000
-
7f
af98957000
r
--
s
00050000
fd
:
01
2229800
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
elasticloadbalancing
/
1.10.39
/
aws
-
java
-
sdk
-
elasticloadbalancing
-
1.10.39
.
jar
7f
af98957000
-
7f
af9895d000
r
--
s
00047000
fd
:
01
2229799
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
datapipeline
/
1.10.39
/
aws
-
java
-
sdk
-
datapipeline
-
1.10.39
.
jar
7f
af9895d000
-
7f
af98975000
r
--
s
000
db000
fd
:
01
2229795
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
iam
/
1.10.39
/
aws
-
java
-
sdk
-
iam
-
1.10.39
.
jar
7f
af98975000
-
7f
af9897b000
r
--
s
00032000
fd
:
01
2229809
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
sns
/
1.10.39
/
aws
-
java
-
sdk
-
sns
-
1.10.39
.
jar
7f
af9897b000
-
7f
af98983000
r
--
s
00052000
fd
:
01
2229794
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
glacier
/
1.10.39
/
aws
-
java
-
sdk
-
glacier
-
1.10.39
.
jar
7f
af98983000
-
7f
af9898c000
r
--
s
0008
b000
fd
:
01
2229792
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
elasticbeanstalk
/
1.10.39
/
aws
-
java
-
sdk
-
elasticbeanstalk
-
1.10.39
.
jar
7f
af9898c000
-
7f
af9899e000
r
--
s
0009
d000
fd
:
01
2229788
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
redshift
/
1.10.39
/
aws
-
java
-
sdk
-
redshift
-
1.10.39
.
jar
7f
af9899e000
-
7f
af989b1000
r
--
s
000
cd000
fd
:
01
2229789
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
rds
/
1.10.39
/
aws
-
java
-
sdk
-
rds
-
1.10.39
.
jar
7f
af989b1000
-
7f
af989b7000
r
--
s
00037000
fd
:
01
2229787
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
sqs
/
1.10.39
/
aws
-
java
-
sdk
-
sqs
-
1.10.39
.
jar
7f
af989b7000
-
7f
af989bb000
r
--
s
00014000
fd
:
01
2229786
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
sts
/
1.10.39
/
aws
-
java
-
sdk
-
sts
-
1.10.39
.
jar
7f
af989bb000
-
7f
af989be000
r
--
s
0001
c000
fd
:
01
2229781
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
importexport
/
1.10.39
/
aws
-
java
-
sdk
-
importexport
-
1.10.39
.
jar
7f
af989be000
-
7f
af989c3000
r
--
s
00051000
fd
:
01
2229848
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
kms
/
1.10.39
/
aws
-
java
-
sdk
-
kms
-
1.10.39
.
jar
7f
af989c3000
-
7f
af989d0000
r
--
s
00087000
fd
:
01
2229779
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
s3
/
1.10.39
/
aws
-
java
-
sdk
-
s3
-
1.10.39
.
jar
7f
af989d0000
-
7f
af989e2000
r
--
s
000
d1000
fd
:
01
2229777
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
route53
/
1.10.39
/
aws
-
java
-
sdk
-
route53
-
1.10.39
.
jar
7f
af989e2000
-
7f
af989ee000
r
--
s
00097000
fd
:
01
2229776
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
storagegateway
/
1.10.39
/
aws
-
java
-
sdk
-
storagegateway
-
1.10.39
.
jar
7f
af989ee000
-
7f
af989fb000
r
--
s
0008
c000
fd
:
01
2229773
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
simpleworkflow
/
1.10.39
/
aws
-
java
-
sdk
-
simpleworkflow
-
1.10.39
.
jar
7f
af989fb000
-
7f
af98a0b000
r
--
s
00088000
fd
:
01
13108980
/
home
/
alogo
/.
m2
/
repository
/
joda
-
time
/
joda
-
time
/
2.8.1
/
joda
-
time
-
2.8.1
.
jar
7f
af98a0b000
-
7f
af98a12000
r
--
s
0003f000
fd
:
01
12323467
/
home
/
alogo
/.
m2
/
repository
/
commons
-
codec
/
commons
-
codec
/
1.10
/
commons
-
codec
-
1.10
.
jar
7f
af98a12000
-
7f
af98a15000
r
--
s
0000
c000
fd
:
01
13107927
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
io
/
2.0.10
/
plexus
-
io
-
2.0.10
.
jar
7f
af98a16000
-
7f
af98a1a000
r
--
s
0001
c000
fd
:
01
2229772
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
simpledb
/
1.10.39
/
aws
-
java
-
sdk
-
simpledb
-
1.10.39
.
jar
7f
af98a1a000
-
7f
af98a21000
r
--
s
0003f000
fd
:
01
2359965
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
httpcomponents
/
httpcore
/
4.3.3
/
httpcore
-
4.3.3
.
jar
7f
af98a21000
-
7f
af98a2d000
r
--
s
00085000
fd
:
01
2359966
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
httpcomponents
/
httpclient
/
4.3.6
/
httpclient
-
4.3.6
.
jar
7f
af98a2d000
-
7f
af98a32000
r
--
s
00024000
fd
:
01
13107930
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
archiver
/
2.4.4
/
plexus
-
archiver
-
2.4.4
.
jar
7f
af98a33000
-
7f
af98a3f000
r
--
s
0007
d000
fd
:
01
2229883
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
core
/
1.10.39
/
aws
-
java
-
sdk
-
core
-
1.10.39
.
jar
7f
af98a3f000
-
7f
af98a45000
r
--
s
00040000
fd
:
01
2229774
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
-
support
/
1.10.39
/
aws
-
java
-
sdk
-
support
-
1.10.39
.
jar
7f
af98a45000
-
7f
af98a46000
r
--
s
00000000
fd
:
01
2229771
/
home
/
alogo
/.
m2
/
repository
/
com
/
amazonaws
/
aws
-
java
-
sdk
/
1.10.39
/
aws
-
java
-
sdk
-
1.10.39
.
jar
7f
af98a46000
-
7f
af98a49000
r
--
s
00030000
fd
:
01
13504768
/
home
/
alogo
/.
m2
/
repository
/
nl
/
uva
/
sne
/
drip
/
drip
-
provisioning
-
agent
/
1.0
-
SNAPSHOT
/
drip
-
provisioning
-
agent
-
1.0
-
SNAPSHOT
.
jar
7f
af98a49000
-
7f
af98a54000
r
--
s
0006
b000
fd
:
01
13504194
/
home
/
alogo
/.
m2
/
repository
/
com
/
rabbitmq
/
amqp
-
client
/
4.0.2
/
amqp
-
client
-
4.0.2
.
jar
7f
af98a54000
-
7f
af98a56000
r
--
s
00003000
fd
:
01
2234794
/
home
/
alogo
/.
m2
/
repository
/
com
/
webcohesion
/
enunciate
/
enunciate
-
core
-
annotations
/
2.9.1
/
enunciate
-
core
-
annotations
-
2.9.1
.
jar
7f
af98a56000
-
7f
af98a58000
r
--
s
00000000
fd
:
01
12588746
/
home
/
alogo
/.
m2
/
repository
/
aopalliance
/
aopalliance
/
1.0
/
aopalliance
-
1.0
.
jar
7f
af98a58000
-
7f
af98a64000
r
--
s
00055000
fd
:
01
13108955
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
security
/
spring
-
security
-
core
/
4.2.1
.
RELEASE
/
spring
-
security
-
core
-
4.2.1
.
RELEASE
.
jar
7f
af98a64000
-
7f
af98a6a000
r
--
s
0003
d000
fd
:
01
12323357
/
home
/
alogo
/.
m2
/
repository
/
org
/
yaml
/
snakeyaml
/
1.17
/
snakeyaml
-
1.17
.
jar
7f
af98a6a000
-
7f
af98a6c000
r
--
s
0000
a000
fd
:
01
2359904
/
home
/
alogo
/.
m2
/
repository
/
org
/
json
/
json
/
20090211
/
json
-
20090211.
jar
7f
af98a6c000
-
7f
af98a6e000
r
--
s
00002000
fd
:
01
2359902
/
home
/
alogo
/.
m2
/
repository
/
org
/
atteo
/
evo
-
inflector
/
1.2.1
/
evo
-
inflector
-
1.2.1
.
jar
7f
af98a6e000
-
7f
af98a7e000
r
--
s
000
b0000
fd
:
01
12456794
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
webmvc
/
4.1.7
.
RELEASE
/
spring
-
webmvc
-
4.1.7
.
RELEASE
.
jar
7f
af98a7e000
-
7f
af98a8e000
r
--
s
000
a1000
fd
:
01
12456792
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
web
/
4.1.7
.
RELEASE
/
spring
-
web
-
4.1.7
.
RELEASE
.
jar
7f
af98a8e000
-
7f
af98a93000
r
--
s
0002
a000
fd
:
01
2359963
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
hateoas
/
spring
-
hateoas
/
0.20.0
.
RELEASE
/
spring
-
hateoas
-
0.20.0
.
RELEASE
.
jar
7f
af98a93000
-
7f
af98a98000
r
--
s
0001
b000
fd
:
01
2359886
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
data
/
spring
-
data
-
rest
-
core
/
2.5.6
.
RELEASE
/
spring
-
data
-
rest
-
core
-
2.5.6
.
RELEASE
.
jar
7f
af98a98000
-
7f
af98a9c000
r
--
s
0002
a000
fd
:
01
12330096
/
home
/
alogo
/.
m2
/
repository
/
commons
-
io
/
commons
-
io
/
2.4
/
commons
-
io
-
2.4
.
jar
7f
af98a9c000
-
7f
af98a9f000
r
--
s
0000f000
fd
:
01
13503991
/
home
/
alogo
/.
m2
/
repository
/
commons
-
fileupload
/
commons
-
fileupload
/
1.3.2
/
commons
-
fileupload
-
1.3.2
.
jar
7f
af98a9f000
-
7f
af98aaa000
r
--
s
00089000
fd
:
01
2359920
/
home
/
alogo
/.
m2
/
repository
/
org
/
mongodb
/
mongo
-
java
-
driver
/
2.13.0
/
mongo
-
java
-
driver
-
2.13.0
.
jar
7f
af98aaa000
-
7f
af98aac000
r
--
s
00003000
fd
:
01
12456790
/
home
/
alogo
/.
m2
/
repository
/
org
/
slf4j
/
jcl
-
over
-
slf4j
/
1.7.12
/
jcl
-
over
-
slf4j
-
1.7.12
.
jar
7f
af98aac000
-
7f
af98aae000
r
--
s
00009000
fd
:
01
12457133
/
home
/
alogo
/.
m2
/
repository
/
org
/
slf4j
/
slf4j
-
api
/
1.7.21
/
slf4j
-
api
-
1.7.21
.
jar
7f
af98aae000
-
7f
af98abe000
r
--
s
0008
c000
fd
:
01
2359917
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
data
/
spring
-
data
-
commons
/
1.11.0
.
RELEASE
/
spring
-
data
-
commons
-
1.11.0
.
RELEASE
.
jar
7f
af98abe000
-
7f
af98ac3000
r
--
s
0003
b000
fd
:
01
12456787
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
expression
/
4.1.7
.
RELEASE
/
spring
-
expression
-
4.1.7
.
RELEASE
.
jar
7f
af98ac3000
-
7f
af98acc000
r
--
s
00054000
fd
:
01
12456796
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
aop
/
4.3.5
.
RELEASE
/
spring
-
aop
-
4.3.5
.
RELEASE
.
jar
7f
af98acc000
-
7f
af98add000
r
--
s
00093000
fd
:
01
2360816
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
context
/
3.0.7
.
RELEASE
/
spring
-
context
-
3.0.7
.
RELEASE
.
jar
7f
af98add000
-
7f
af98adf000
r
--
s
0000e000
fd
:
01
2229889
/
home
/
alogo
/.
m2
/
repository
/
commons
-
logging
/
commons
-
logging
/
1.1.3
/
commons
-
logging
-
1.1.3
.
jar
7f
af98adf000
-
7f
af98ae8000
r
--
s
00055000
fd
:
01
1710906
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
core
/
3.0.7
.
RELEASE
/
spring
-
core
-
3.0.7
.
RELEASE
.
jar
7f
af98ae8000
-
7f
af98af3000
r
--
s
0007
d000
fd
:
01
12981781
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
beans
/
3.0.7
.
RELEASE
/
spring
-
beans
-
3.0.7
.
RELEASE
.
jar
7f
af98af3000
-
7f
af98afa000
r
--
s
00037000
fd
:
01
12456779
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
tx
/
4.1.7
.
RELEASE
/
spring
-
tx
-
4.1.7
.
RELEASE
.
jar
7f
af98afa000
-
7f
af98afd000
---
p
00000000
00
:
00
0
7f
af98afd000
-
7f
af98bfb000
rw
-
p
00000000
00
:
00
0
7f
af98bfb000
-
7f
af98bfe000
---
p
00000000
00
:
00
0
7f
af98bfe000
-
7f
af98cfc000
rw
-
p
00000000
00
:
00
0
7f
af98cfc000
-
7f
af98cff000
---
p
00000000
00
:
00
0
7f
af98cff000
-
7f
af98dfd000
rw
-
p
00000000
00
:
00
0
7f
af98dfd000
-
7f
af98e00000
---
p
00000000
00
:
00
0
7f
af98e00000
-
7f
af98efe000
rw
-
p
00000000
00
:
00
0
7f
af98efe000
-
7f
af98f01000
---
p
00000000
00
:
00
0
7f
af98f01000
-
7f
af9c000000
rw
-
p
00000000
00
:
00
0
7f
af9c000000
-
7f
af9d0d9000
rw
-
p
00000000
00
:
00
0
7f
af9d0d9000
-
7f
afa0000000
---
p
00000000
00
:
00
0
7f
afa0000000
-
7f
afa0021000
rw
-
p
00000000
00
:
00
0
7f
afa0021000
-
7f
afa4000000
---
p
00000000
00
:
00
0
7f
afa4000000
-
7f
afa5e5e000
rw
-
p
00000000
00
:
00
0
7f
afa5e5e000
-
7f
afa8000000
---
p
00000000
00
:
00
0
7f
afa8000000
-
7f
afa9f18000
rw
-
p
00000000
00
:
00
0
7f
afa9f18000
-
7f
afac000000
---
p
00000000
00
:
00
0
7f
afac000000
-
7f
afac021000
rw
-
p
00000000
00
:
00
0
7f
afac021000
-
7f
afb0000000
---
p
00000000
00
:
00
0
7f
afb0000000
-
7f
afb19c4000
rw
-
p
00000000
00
:
00
0
7f
afb19c4000
-
7f
afb4000000
---
p
00000000
00
:
00
0
7f
afb4000000
-
7f
afb4021000
rw
-
p
00000000
00
:
00
0
7f
afb4021000
-
7f
afb8000000
---
p
00000000
00
:
00
0
7f
afb8000000
-
7f
afb8021000
rw
-
p
00000000
00
:
00
0
7f
afb8021000
-
7f
afbc000000
---
p
00000000
00
:
00
0
7f
afbc000000
-
7f
afbc29e000
rw
-
p
00000000
00
:
00
0
7f
afbc29e000
-
7f
afc0000000
---
p
00000000
00
:
00
0
7f
afc0000000
-
7f
afc0001000
r
--
s
00004000
fd
:
01
2359900
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
plugin
/
spring
-
plugin
-
core
/
1.2.0
.
RELEASE
/
spring
-
plugin
-
core
-
1.2.0
.
RELEASE
.
jar
7f
afc0001000
-
7f
afc0002000
r
--
s
0000
c000
fd
:
01
2360821
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
spring
-
asm
/
3.0.7
.
RELEASE
/
spring
-
asm
-
3.0.7
.
RELEASE
.
jar
7f
afc0002000
-
7f
afc0011000
r
--
s
00091000
fd
:
01
2359880
/
home
/
alogo
/.
m2
/
repository
/
org
/
springframework
/
data
/
spring
-
data
-
mongodb
/
1.8.0
.
RELEASE
/
spring
-
data
-
mongodb
-
1.8.0
.
RELEASE
.
jar
7f
afc0011000
-
7f
afc0015000
r
--
s
00041000
fd
:
01
2500953
/
home
/
alogo
/.
m2
/
repository
/
com
/
fasterxml
/
jackson
/
core
/
jackson
-
core
/
2.8.6
/
jackson
-
core
-
2.8.6
.
jar
7f
afc0015000
-
7f
afc0018000
r
--
s
0000
b000
fd
:
01
2364600
/
home
/
alogo
/.
m2
/
repository
/
com
/
fasterxml
/
jackson
/
core
/
jackson
-
annotations
/
2.8.0
/
jackson
-
annotations
-
2.8.0
.
jar
7f
afc0018000
-
7f
afc0029000
r
--
s
0011
d000
fd
:
01
2359879
/
home
/
alogo
/.
m2
/
repository
/
com
/
fasterxml
/
jackson
/
core
/
jackson
-
databind
/
2.8.6
/
jackson
-
databind
-
2.8.6
.
jar
7f
afc0029000
-
7f
afc002c000
r
--
s
0000
c000
fd
:
01
13504716
/
home
/
alogo
/.
m2
/
repository
/
nl
/
uva
/
sne
/
drip
/
drip
-
commons
/
1.0
-
SNAPSHOT
/
drip
-
commons
-
1.0
-
SNAPSHOT
.
jar
7f
afc002c000
-
7f
afc002f000
---
p
00000000
00
:
00
0
7f
afc002f000
-
7f
afc012d000
rw
-
p
00000000
00
:
00
0
7f
afc012d000
-
7f
afc0130000
---
p
00000000
00
:
00
0
7f
afc0130000
-
7f
afc03ee000
rw
-
p
00000000
00
:
00
0
7f
afc03ee000
-
7f
afc042e000
---
p
00000000
00
:
00
0
7f
afc042e000
-
7f
afc0431000
---
p
00000000
00
:
00
0
7f
afc0431000
-
7f
afc0467000
rw
-
p
00000000
00
:
00
0
7f
afc0467000
-
7f
afc0468000
r
--
p
00000000
00
:
00
0
7f
afc0468000
-
7f
afc0469000
r
--
s
00005000
fd
:
01
13109254
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
repository
-
builder
/
1.0
-
alpha
-
2
/
maven
-
repository
-
builder
-
1.0
-
alpha
-
2.
jar
7f
afc0469000
-
7f
afc046d000
r
--
s
00033000
fd
:
01
530510
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
utils
/
2.0.1
/
plexus
-
utils
-
2.0.1
.
jar
7f
afc046d000
-
7f
afc046e000
r
--
s
00004000
fd
:
01
530501
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
maven
-
archiver
/
2.4
/
maven
-
archiver
-
2.4
.
jar
7f
afc046e000
-
7f
afc0470000
r
--
s
0000
a000
fd
:
01
530497
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
io
/
1.0
-
alpha
-
4
/
plexus
-
io
-
1.0
-
alpha
-
4.
jar
7f
afc0470000
-
7f
afc0472000
r
--
s
00004000
fd
:
01
530495
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
active
-
collections
/
1.0
-
beta
-
2
/
plexus
-
active
-
collections
-
1.0
-
beta
-
2.
jar
7f
afc0472000
-
7f
afc0474000
r
--
s
00007000
fd
:
01
12980068
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
filtering
/
1.0
-
beta
-
2
/
maven
-
filtering
-
1.0
-
beta
-
2.
jar
7f
afc0474000
-
7f
afc0476000
r
--
s
00008000
fd
:
01
12979550
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
shared
-
io
/
1.1
/
maven
-
shared
-
io
-
1.1
.
jar
7f
afc0476000
-
7f
afc0478000
r
--
s
00006000
fd
:
01
12981681
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
file
-
management
/
1.1
/
file
-
management
-
1.1
.
jar
7f
afc0478000
-
7f
afc047c000
r
--
s
00028000
fd
:
01
530493
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
archiver
/
1.0
-
alpha
-
12
/
plexus
-
archiver
-
1.0
-
alpha
-
12.
jar
7f
afc047c000
-
7f
afc047e000
r
--
s
0000
b000
fd
:
01
530491
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
interpolation
/
1.7
/
plexus
-
interpolation
-
1.7
.
jar
7f
afc047e000
-
7f
afc047f000
r
--
s
00007000
fd
:
01
530489
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
plugin
-
testing
-
harness
/
1.1
/
maven
-
plugin
-
testing
-
harness
-
1.1
.
jar
7f
afc047f000
-
7f
afc0481000
r
--
s
00006000
fd
:
01
530487
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
common
-
artifact
-
filters
/
1.1
/
maven
-
common
-
artifact
-
filters
-
1.1
.
jar
7f
afc0481000
-
7f
afc0485000
r
--
s
0002f000
fd
:
01
11936626
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
plugins
/
maven
-
assembly
-
plugin
/
2.2
-
beta
-
5
/
maven
-
assembly
-
plugin
-
2.2
-
beta
-
5.
jar
7f
afc0485000
-
7f
afc0685000
rw
-
p
00000000
00
:
00
0
7f
afc0685000
-
7f
afc0689000
r
--
s
00034000
fd
:
01
12981694
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
utils
/
3.0
/
plexus
-
utils
-
3.0
.
jar
7f
afc0689000
-
7f
afc068d000
r
--
s
0002f000
fd
:
01
12981693
/
home
/
alogo
/.
m2
/
repository
/
commons
-
lang
/
commons
-
lang
/
2.1
/
commons
-
lang
-
2.1
.
jar
7f
afc068d000
-
7f
afc0690000
r
--
s
0000
c000
fd
:
01
12979652
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
io
/
2.0.2
/
plexus
-
io
-
2.0.2
.
jar
7f
afc0690000
-
7f
afc0695000
r
--
s
00029000
fd
:
01
12979651
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
archiver
/
2.1
/
plexus
-
archiver
-
2.1
.
jar
7f
afc0695000
-
7f
afc0697000
r
--
s
0000
d000
fd
:
01
12980059
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
interpolation
/
1.15
/
plexus
-
interpolation
-
1.15
.
jar
7f
afc0697000
-
7f
afc0699000
r
--
s
00004000
fd
:
01
12980060
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
maven
-
archiver
/
2.5
/
maven
-
archiver
-
2.5
.
jar
7f
afc0699000
-
7f
afc069b000
r
--
s
00007000
fd
:
01
527062
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
plugins
/
maven
-
jar
-
plugin
/
2.4
/
maven
-
jar
-
plugin
-
2.4
.
jar
7f
afc069b000
-
7f
afc069d000
r
--
s
00002000
fd
:
01
526647
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
plugin
-
tools
/
maven
-
plugin
-
annotations
/
3.1
/
maven
-
plugin
-
annotations
-
3.1
.
jar
7f
afc069d000
-
7f
afc069e000
r
--
s
00002000
fd
:
01
12329854
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
reporting
/
maven
-
reporting
-
api
/
2.0.9
/
maven
-
reporting
-
api
-
2.0.9
.
jar
7f
afc069e000
-
7f
afc06a2000
r
--
s
00035000
fd
:
01
12329856
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
utils
/
3.0.8
/
plexus
-
utils
-
3.0.8
.
jar
7f
afc06a2000
-
7f
afc06a4000
r
--
s
00006000
fd
:
01
12979994
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
common
-
artifact
-
filters
/
1.3
/
maven
-
common
-
artifact
-
filters
-
1.3
.
jar
7f
afc06a4000
-
7f
afc06aa000
r
--
s
00048000
fd
:
01
12329605
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
commons
/
commons
-
lang3
/
3.1
/
commons
-
lang3
-
3.1
.
jar
7f
afc06aa000
-
7f
afc06af000
r
--
s
0003
c000
fd
:
01
526633
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
surefire
/
maven
-
surefire
-
common
/
2.12.4
/
maven
-
surefire
-
common
-
2.12.4
.
jar
7f
afc06af000
-
7f
afc06b3000
r
--
s
00019000
fd
:
01
526621
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
surefire
/
surefire
-
api
/
2.12.4
/
surefire
-
api
-
2.12.4
.
jar
7f
afc06b3000
-
7f
afc06b5000
r
--
s
00007000
fd
:
01
526620
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
surefire
/
surefire
-
booter
/
2.12.4
/
surefire
-
booter
-
2.12.4
.
jar
7f
afc06b5000
-
7f
afc06b6000
r
--
s
00007000
fd
:
01
12718591
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
plugins
/
maven
-
surefire
-
plugin
/
2.12.4
/
maven
-
surefire
-
plugin
-
2.12.4
.
jar
7f
afc06b6000
-
7f
afc06b9000
r
--
s
0001
b000
fd
:
01
12329537
/
home
/
alogo
/.
m2
/
repository
/
junit
/
junit
/
3.8.2
/
junit
-
3.8.2
.
jar
7f
afc06b9000
-
7f
afc06c7000
r
--
s
0008f000
fd
:
01
12329535
/
home
/
alogo
/.
m2
/
repository
/
com
/
google
/
collections
/
google
-
collections
/
1.0
/
google
-
collections
-
1.0
.
jar
7f
afc06c7000
-
7f
afc06c8000
r
--
s
0000
a000
fd
:
01
12329534
/
home
/
alogo
/.
m2
/
repository
/
commons
-
logging
/
commons
-
logging
-
api
/
1.1
/
commons
-
logging
-
api
-
1.1
.
jar
7f
afc06c8000
-
7f
afc06cf000
r
--
s
00051000
fd
:
01
12329529
/
home
/
alogo
/.
m2
/
repository
/
log4j
/
log4j
/
1.2.12
/
log4j
-
1.2.12
.
jar
7f
afc06cf000
-
7f
afc06d3000
r
--
s
0001
d000
fd
:
01
12329526
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
xbean
/
xbean
-
reflect
/
3.4
/
xbean
-
reflect
-
3.4
.
jar
7f
afc06d3000
-
7f
afc06d4000
r
--
s
00004000
fd
:
01
12329527
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
compiler
-
javac
/
2.2
/
plexus
-
compiler
-
javac
-
2.2
.
jar
7f
afc06d4000
-
7f
afc06d6000
r
--
s
00000000
fd
:
01
12329528
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
compiler
-
manager
/
2.2
/
plexus
-
compiler
-
manager
-
2.2
.
jar
7f
afc06d6000
-
7f
afc06d8000
r
--
s
00005000
fd
:
01
12329523
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
compiler
-
api
/
2.2
/
plexus
-
compiler
-
api
-
2.2
.
jar
7f
afc06d8000
-
7f
afc06da000
r
--
s
00000000
fd
:
01
12329519
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
component
-
annotations
/
1.5.5
/
plexus
-
component
-
annotations
-
1.5.5
.
jar
7f
afc06da000
-
7f
afc06dc000
r
--
s
00002000
fd
:
01
12329516
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
shared
-
incremental
/
1.1
/
maven
-
shared
-
incremental
-
1.1
.
jar
7f
afc06dc000
-
7f
afc06de000
r
--
s
00006000
fd
:
01
12329520
/
home
/
alogo
/.
m2
/
repository
/
com
/
google
/
code
/
findbugs
/
jsr305
/
2.0.1
/
jsr305
-
2.0.1
.
jar
7f
afc06de000
-
7f
afc06e1000
r
--
s
00023000
fd
:
01
12329517
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
shared
-
utils
/
0.1
/
maven
-
shared
-
utils
-
0.1
.
jar
7f
afc06e1000
-
7f
afc06e5000
r
--
s
00030000
fd
:
01
12329514
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
utils
/
1.5.1
/
plexus
-
utils
-
1.5.1
.
jar
7f
afc06e5000
-
7f
afc06e7000
r
--
s
00009000
fd
:
01
11935922
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
plugins
/
maven
-
compiler
-
plugin
/
3.1
/
maven
-
compiler
-
plugin
-
3.1
.
jar
7f
afc06e7000
-
7f
afc08e7000
rw
-
p
00000000
00
:
00
0
7f
afc08e7000
-
7f
afc08e9000
r
--
s
0000
d000
fd
:
01
12328573
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
interpolation
/
1.13
/
plexus
-
interpolation
-
1.13
.
jar
7f
afc08e9000
-
7f
afc08ea000
r
--
s
00001000
fd
:
01
12328575
/
home
/
alogo
/.
m2
/
repository
/
org
/
sonatype
/
plexus
/
plexus
-
build
-
api
/
0.0.4
/
plexus
-
build
-
api
-
0.0.4
.
jar
7f
afc08ea000
-
7f
afc08ec000
r
--
s
00009000
fd
:
01
12323927
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
shared
/
maven
-
filtering
/
1.1
/
maven
-
filtering
-
1.1
.
jar
7f
afc08ec000
-
7f
afc08f0000
r
--
s
00033000
fd
:
01
12328571
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
utils
/
2.0.5
/
plexus
-
utils
-
2.0.5
.
jar
7f
afc08f0000
-
7f
afc08f3000
r
--
s
0001
b000
fd
:
01
12323921
/
home
/
alogo
/.
m2
/
repository
/
junit
/
junit
/
3.8.1
/
junit
-
3.8.1
.
jar
7f
afc08f3000
-
7f
afc08f5000
r
--
s
00002000
fd
:
01
12323920
/
home
/
alogo
/.
m2
/
repository
/
org
/
codehaus
/
plexus
/
plexus
-
interactivity
-
api
/
1.0
-
alpha
-
4
/
plexus
-
interactivity
-
api
-
1.0
-
alpha
-
4.
jar
7f
afc08f5000
-
7f
afc08f7000
r
--
s
00006000
fd
:
01
12323917
/
home
/
alogo
/.
m2
/
repository
/
commons
-
cli
/
commons
-
cli
/
1.0
/
commons
-
cli
-
1.0
.
jar
7f
afc08f7000
-
7f
afc08f8000
r
--
s
00001000
fd
:
01
12323919
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
doxia
/
doxia
-
sink
-
api
/
1.0
-
alpha
-
7
/
doxia
-
sink
-
api
-
1.0
-
alpha
-
7.
jar
7f
afc08f8000
-
7f
afc08f9000
r
--
s
00002000
fd
:
01
12323918
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
reporting
/
maven
-
reporting
-
api
/
2.0.6
/
maven
-
reporting
-
api
-
2.0.6
.
jar
7f
afc08f9000
-
7f
afc08fb000
r
--
s
00006000
fd
:
01
12321402
/
home
/
alogo
/.
m2
/
repository
/
org
/
apache
/
maven
/
plugins
/
maven
-
resources
-
plugin
/
2.6
/
maven
-
resources
-
plugin
-
2.6
.
jar
7f
afc08fb000
-
7f
afc090c000
r
-
xp
00000000
fd
:
01
929539
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnio
.
so
7f
afc090c000
-
7f
afc0b0b000
---
p
00011000
fd
:
01
929539
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnio
.
so
7f
afc0b0b000
-
7f
afc0b0c000
r
--
p
00010000
fd
:
01
929539
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnio
.
so
7f
afc0b0c000
-
7f
afc0b0d000
rw
-
p
00011000
fd
:
01
929539
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnio
.
so
7f
afc0b0d000
-
7f
afc0b23000
r
-
xp
00000000
fd
:
01
929536
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnet
.
so
7f
afc0b23000
-
7f
afc0d23000
---
p
00016000
fd
:
01
929536
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnet
.
so
7f
afc0d23000
-
7f
afc0d24000
r
--
p
00016000
fd
:
01
929536
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnet
.
so
7f
afc0d24000
-
7f
afc0d25000
rw
-
p
00017000
fd
:
01
929536
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libnet
.
so
7f
afc0d25000
-
7f
afc0f25000
rw
-
p
00000000
00
:
00
0
7f
afc0f25000
-
7f
afc0f29000
r
--
s
000
a1000
fd
:
01
929376
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
jsse
.
jar
7f
afc0f29000
-
7f
afc1129000
rw
-
p
00000000
00
:
00
0
7f
afc1129000
-
7f
afc1329000
rw
-
p
00000000
00
:
00
0
7f
afc1329000
-
7f
afc1529000
rw
-
p
00000000
00
:
00
0
7f
afc1529000
-
7f
afc152b000
r
--
s
0000
d000
fd
:
01
11801645
/
home
/
alogo
/
netbeans
-
8.2
/
java
/
maven
-
nblib
/
netbeans
-
eventspy
.
jar
7f
afc152b000
-
7f
afc152e000
r
--
s
00011000
fd
:
01
14554196
/
usr
/
share
/
java
/
plexus
-
interpolation
.
jar
7f
afc152e000
-
7f
afc152f000
r
--
s
00002000
fd
:
01
14554133
/
usr
/
share
/
java
/
geronimo
-
annotation
-
1.3
-
spec
.
jar
7f
afc152f000
-
7f
afc1536000
r
--
s
00054000
fd
:
01
14554220
/
usr
/
share
/
java
/
sisu
-
inject
.
jar
7f
afc1536000
-
7f
afc1538000
r
--
s
00006000
fd
:
01
14553634
/
usr
/
share
/
java
/
maven
-
resolver
-
spi
.
jar
7f
afc1538000
-
7f
afc1545000
r
--
s
0008
b000
fd
:
01
14554171
/
usr
/
share
/
java
/
maven3
-
core
.
jar
7f
afc1545000
-
7f
afc154a000
r
--
s
00030000
fd
:
01
14554129
/
usr
/
share
/
java
/
commons
-
io
.
jar
7f
afc154a000
-
7f
afc154b000
r
--
s
0000
a000
fd
:
01
14554179
/
usr
/
share
/
java
/
maven3
-
settings
.
jar
7f
afc154b000
-
7f
afc154c000
r
--
s
00003000
fd
:
01
14554189
/
usr
/
share
/
java
/
plexus
-
cipher
.
jar
7f
afc154c000
-
7f
afc154e000
r
--
s
00005000
fd
:
01
14553638
/
usr
/
share
/
java
/
maven
-
resolver
-
transport
-
wagon
.
jar
7f
afc154e000
-
7f
afc1553000
r
--
s
00025000
fd
:
01
14554173
/
usr
/
share
/
java
/
maven3
-
model
-
builder
.
jar
7f
afc1553000
-
7f
afc1557000
r
--
s
0003
b000
fd
:
01
14554165
/
usr
/
share
/
java
/
plexus
-
utils2
.
jar
7f
afc1557000
-
7f
afc155d000
r
--
s
0002
d000
fd
:
01
14554222
/
usr
/
share
/
java
/
sisu
-
plexus
.
jar
7f
afc155d000
-
7f
afc155e000
r
--
s
00001000
fd
:
01
14554123
/
usr
/
share
/
java
/
geronimo
-
interceptor
-
3.0
-
spec
.
jar
7f
afc155e000
-
7f
afc1560000
r
--
s
0000
d000
fd
:
01
14553463
/
usr
/
share
/
java
/
el
-
api
.
jar
7f
afc1560000
-
7f
afc1561000
r
--
s
00000000
fd
:
01
14554121
/
usr
/
share
/
java
/
atinject
-
jsr330
-
api
-
1.0
.
jar
7f
afc1561000
-
7f
afc1564000
r
--
s
0000e000
fd
:
01
14554125
/
usr
/
share
/
java
/
cdi
-
api
.
jar
7f
afc1564000
-
7f
afc1566000
r
--
s
00001000
fd
:
01
14554169
/
usr
/
share
/
java
/
maven3
-
builder
-
support
.
jar
7f
afc1566000
-
7f
afc1592000
r
--
s
00208000
fd
:
01
14554137
/
usr
/
share
/
java
/
guava
.
jar
7f
afc1592000
-
7f
afc1594000
r
--
s
00003000
fd
:
01
14554200
/
usr
/
share
/
java
/
jcl
-
over
-
slf4j
.
jar
7f
afc1594000
-
7f
afc15c1000
r
--
s
001
ce000
fd
:
01
14554274
/
usr
/
share
/
java
/
wagon
-
http
-
shaded
-
3.0.0
.
jar
7f
afc15c1000
-
7f
afc15c3000
r
--
s
00000000
fd
:
01
14554193
/
usr
/
share
/
java
/
plexus
-
component
-
annotations
.
jar
7f
afc15c3000
-
7f
afc15c8000
r
--
s
00021000
fd
:
01
14553639
/
usr
/
share
/
java
/
maven
-
resolver
-
util
.
jar
7f
afc15c8000
-
7f
afc15cc000
r
--
s
00027000
fd
:
01
14553504
/
usr
/
share
/
java
/
maven
-
resolver
-
impl
.
jar
7f
afc15cc000
-
7f
afc15cd000
---
p
00000000
00
:
00
0
7f
afc15cd000
-
7f
afc16cd000
rw
-
p
00000000
00
:
00
0
7f
afc16cd000
-
7f
afc16d0000
---
p
00000000
00
:
00
0
7f
afc16d0000
-
7f
afc17ce000
rw
-
p
00000000
00
:
00
0
7f
afc17ce000
-
7f
afc17cf000
---
p
00000000
00
:
00
0
7f
afc17cf000
-
7f
afc17d2000
---
p
00000000
00
:
00
0
7f
afc17d2000
-
7f
afc18cf000
rw
-
p
00000000
00
:
00
0
7f
afc18cf000
-
7f
afc18d0000
---
p
00000000
00
:
00
0
7f
afc18d0000
-
7f
afc18d3000
---
p
00000000
00
:
00
0
7f
afc18d3000
-
7f
afc19d0000
rw
-
p
00000000
00
:
00
0
7f
afc19d0000
-
7f
afc19d1000
---
p
00000000
00
:
00
0
7f
afc19d1000
-
7f
afc19d4000
---
p
00000000
00
:
00
0
7f
afc19d4000
-
7f
afc1ad1000
rw
-
p
00000000
00
:
00
0
7f
afc1ad1000
-
7f
afc1ad2000
---
p
00000000
00
:
00
0
7f
afc1ad2000
-
7f
afc1ad5000
---
p
00000000
00
:
00
0
7f
afc1ad5000
-
7f
afc1bd2000
rw
-
p
00000000
00
:
00
0
7f
afc1bd2000
-
7f
afc1bd5000
---
p
00000000
00
:
00
0
7f
afc1bd5000
-
7f
afc1cd3000
rw
-
p
00000000
00
:
00
0
7f
afc1cd3000
-
7f
afc26a5000
r
--
p
00000000
fd
:
01
14162550
/
usr
/
lib
/
locale
/
locale
-
archive
7f
afc26a5000
-
7f
afc26a8000
---
p
00000000
00
:
00
0
7f
afc26a8000
-
7f
afc27a6000
rw
-
p
00000000
00
:
00
0
7f
afc27a6000
-
7f
afc27a9000
---
p
00000000
00
:
00
0
7f
afc27a9000
-
7f
afc28a7000
rw
-
p
00000000
00
:
00
0
7f
afc28a7000
-
7f
afc28a8000
---
p
00000000
00
:
00
0
7f
afc28a8000
-
7f
afc4000000
rw
-
p
00000000
00
:
00
0
7f
afc4000000
-
7f
afc4021000
rw
-
p
00000000
00
:
00
0
7f
afc4021000
-
7f
afc8000000
---
p
00000000
00
:
00
0
7f
afc8000000
-
7f
afc8007000
r
--
s
00041000
fd
:
01
14554170
/
usr
/
share
/
java
/
maven3
-
compat
.
jar
7f
afc8007000
-
7f
afcc000000
rw
-
p
00000000
00
:
00
0
7f
afcc000000
-
7f
afcc021000
rw
-
p
00000000
00
:
00
0
7f
afcc021000
-
7f
afd0000000
---
p
00000000
00
:
00
0
7f
afd0000000
-
7f
afd0021000
rw
-
p
00000000
00
:
00
0
7f
afd0021000
-
7f
afd4000000
---
p
00000000
00
:
00
0
7f
afd4000000
-
7f
afd4021000
rw
-
p
00000000
00
:
00
0
7f
afd4021000
-
7f
afd8000000
---
p
00000000
00
:
00
0
7f
afd8000000
-
7f
afd8021000
rw
-
p
00000000
00
:
00
0
7f
afd8021000
-
7f
afdc000000
---
p
00000000
00
:
00
0
7f
afdc000000
-
7f
afdc021000
rw
-
p
00000000
00
:
00
0
7f
afdc021000
-
7f
afe0000000
---
p
00000000
00
:
00
0
7f
afe0000000
-
7f
afe0021000
rw
-
p
00000000
00
:
00
0
7f
afe0021000
-
7f
afe4000000
---
p
00000000
00
:
00
0
7f
afe4000000
-
7f
afe4021000
rw
-
p
00000000
00
:
00
0
7f
afe4021000
-
7f
afe8000000
---
p
00000000
00
:
00
0
7f
afe8000000
-
7f
afe8001000
r
--
s
00006000
fd
:
01
14554176
/
usr
/
share
/
java
/
maven3
-
repository
-
metadata
.
jar
7f
afe8001000
-
7f
afe8002000
r
--
s
00000000
fd
:
01
14554121
/
usr
/
share
/
java
/
atinject
-
jsr330
-
api
-
1.0
.
jar
7f
afe8002000
-
7f
afe8004000
r
--
s
0000
a000
fd
:
01
14554175
/
usr
/
share
/
java
/
maven3
-
plugin
-
api
.
jar
7f
afe8004000
-
7f
afe8007000
r
--
s
00027000
fd
:
01
14554174
/
usr
/
share
/
java
/
maven3
-
model
.
jar
7f
afe8007000
-
7f
afe8009000
r
--
s
00009000
fd
:
01
14554203
/
usr
/
share
/
java
/
slf4j
-
api
.
jar
7f
afe8009000
-
7f
afe800c000
r
--
s
0000
a000
fd
:
01
14554132
/
usr
/
share
/
java
/
maven3
-
artifact
.
jar
7f
afe800c000
-
7f
afe800e000
r
--
s
0000
a000
fd
:
01
14554127
/
usr
/
share
/
java
/
commons
-
cli
.
jar
7f
afe800e000
-
7f
afe81e8000
r
--
s
03
d6f000
fd
:
01
929319
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
rt
.
jar
7f
afe81e8000
-
7f
afe8dfe000
rw
-
p
00000000
00
:
00
0
7f
afe8dfe000
-
7f
afe8dff000
---
p
00000000
00
:
00
0
7f
afe8dff000
-
7f
afe8eff000
rw
-
p
00000000
00
:
00
0
7f
afe8eff000
-
7f
afe8f00000
---
p
00000000
00
:
00
0
7f
afe8f00000
-
7f
afe9000000
rw
-
p
00000000
00
:
00
0
7f
afe9000000
-
7f
afea2b0000
rwxp
00000000
00
:
00
0
7f
afea2b0000
-
7f
aff8000000
---
p
00000000
00
:
00
0
7f
aff8000000
-
7f
aff903c000
rw
-
p
00000000
00
:
00
0
7f
aff903c000
-
7f
affc000000
---
p
00000000
00
:
00
0
7f
affc000000
-
7f
affc001000
r
--
s
00004000
fd
:
01
14554180
/
usr
/
share
/
java
/
maven3
-
slf4j
-
provider
.
jar
7f
affc001000
-
7f
affc003000
r
--
s
00006000
fd
:
01
14554198
/
usr
/
share
/
java
/
plexus
-
sec
-
dispatcher
.
jar
7f
affc003000
-
7f
affc006000
r
--
s
00015000
fd
:
01
14554172
/
usr
/
share
/
java
/
maven3
-
embedder
.
jar
7f
affc006000
-
7f
affc009000
r
--
s
00024000
fd
:
01
14553673
/
usr
/
share
/
java
/
maven
-
shared
-
utils
.
jar
7f
affc009000
-
7f
affc00b000
r
--
s
0000
b000
fd
:
01
14554167
/
usr
/
share
/
java
/
wagon
-
provider
-
api
.
jar
7f
affc00b000
-
7f
affc02c000
rw
-
p
00000000
00
:
00
0
7f
affc02c000
-
7f
affc02d000
---
p
00000000
00
:
00
0
7f
affc02d000
-
7f
affc12d000
rw
-
p
00000000
00
:
00
0
7f
affc12d000
-
7f
affc12e000
---
p
00000000
00
:
00
0
7f
affc12e000
-
7f
affc22e000
rw
-
p
00000000
00
:
00
0
7f
affc22e000
-
7f
affc22f000
---
p
00000000
00
:
00
0
7f
affc22f000
-
7f
affc32f000
rw
-
p
00000000
00
:
00
0
7f
affc32f000
-
7f
affc330000
---
p
00000000
00
:
00
0
7f
affc330000
-
7f
affc430000
rw
-
p
00000000
00
:
00
0
7f
affc430000
-
7f
affc431000
---
p
00000000
00
:
00
0
7f
affc431000
-
7f
affc531000
rw
-
p
00000000
00
:
00
0
7f
affc531000
-
7f
affc532000
---
p
00000000
00
:
00
0
7f
affc532000
-
7f
affc653000
rw
-
p
00000000
00
:
00
0
7f
affc653000
-
7f
affc89d000
---
p
00000000
00
:
00
0
7f
affc89d000
-
7f
affc8be000
rw
-
p
00000000
00
:
00
0
7f
affc8be000
-
7f
affcb07000
---
p
00000000
00
:
00
0
7f
affcb07000
-
7f
affcc3d000
rw
-
p
00000000
00
:
00
0
7f
affcc3d000
-
7f
affcc89000
rw
-
p
00000000
00
:
00
0
7f
affcc89000
-
7f
affcffe000
---
p
00000000
00
:
00
0
7f
affcffe000
-
7f
affd019000
r
-
xp
00000000
fd
:
01
929532
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libzip
.
so
7f
affd019000
-
7f
affd218000
---
p
0001
b000
fd
:
01
929532
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libzip
.
so
7f
affd218000
-
7f
affd219000
r
--
p
0001
a000
fd
:
01
929532
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libzip
.
so
7f
affd219000
-
7f
affd21a000
rw
-
p
0001
b000
fd
:
01
929532
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libzip
.
so
7f
affd21a000
-
7f
affd225000
r
-
xp
00000000
fd
:
01
10228471
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_files
-
2.27
.
so
7f
affd225000
-
7f
affd424000
---
p
0000
b000
fd
:
01
10228471
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_files
-
2.27
.
so
7f
affd424000
-
7f
affd425000
r
--
p
0000
a000
fd
:
01
10228471
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_files
-
2.27
.
so
7f
affd425000
-
7f
affd426000
rw
-
p
0000
b000
fd
:
01
10228471
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_files
-
2.27
.
so
7f
affd426000
-
7f
affd42c000
rw
-
p
00000000
00
:
00
0
7f
affd42c000
-
7f
affd443000
r
-
xp
00000000
fd
:
01
10228465
/
lib
/
x86_64
-
linux
-
gnu
/
libnsl
-
2.27
.
so
7f
affd443000
-
7f
affd642000
---
p
00017000
fd
:
01
10228465
/
lib
/
x86_64
-
linux
-
gnu
/
libnsl
-
2.27
.
so
7f
affd642000
-
7f
affd643000
r
--
p
00016000
fd
:
01
10228465
/
lib
/
x86_64
-
linux
-
gnu
/
libnsl
-
2.27
.
so
7f
affd643000
-
7f
affd644000
rw
-
p
00017000
fd
:
01
10228465
/
lib
/
x86_64
-
linux
-
gnu
/
libnsl
-
2.27
.
so
7f
affd644000
-
7f
affd646000
rw
-
p
00000000
00
:
00
0
7f
affd646000
-
7f
affd651000
r
-
xp
00000000
fd
:
01
10228482
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_nis
-
2.27
.
so
7f
affd651000
-
7f
affd850000
---
p
0000
b000
fd
:
01
10228482
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_nis
-
2.27
.
so
7f
affd850000
-
7f
affd851000
r
--
p
0000
a000
fd
:
01
10228482
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_nis
-
2.27
.
so
7f
affd851000
-
7f
affd852000
rw
-
p
0000
b000
fd
:
01
10228482
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_nis
-
2.27
.
so
7f
affd852000
-
7f
affd85a000
r
-
xp
00000000
fd
:
01
10228467
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_compat
-
2.27
.
so
7f
affd85a000
-
7f
affda5a000
---
p
00008000
fd
:
01
10228467
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_compat
-
2.27
.
so
7f
affda5a000
-
7f
affda5b000
r
--
p
00008000
fd
:
01
10228467
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_compat
-
2.27
.
so
7f
affda5b000
-
7f
affda5c000
rw
-
p
00009000
fd
:
01
10228467
/
lib
/
x86_64
-
linux
-
gnu
/
libnss_compat
-
2.27
.
so
7f
affda5c000
-
7f
affda88000
r
-
xp
00000000
fd
:
01
929526
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libjava
.
so
7f
affda88000
-
7f
affdc88000
---
p
0002
c000
fd
:
01
929526
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libjava
.
so
7f
affdc88000
-
7f
affdc89000
r
--
p
0002
c000
fd
:
01
929526
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libjava
.
so
7f
affdc89000
-
7f
affdc8b000
rw
-
p
0002
d000
fd
:
01
929526
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libjava
.
so
7f
affdc8b000
-
7f
affdc98000
r
-
xp
00000000
fd
:
01
929531
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libverify
.
so
7f
affdc98000
-
7f
affde97000
---
p
0000
d000
fd
:
01
929531
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libverify
.
so
7f
affde97000
-
7f
affde99000
r
--
p
0000
c000
fd
:
01
929531
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libverify
.
so
7f
affde99000
-
7f
affde9a000
rw
-
p
0000e000
fd
:
01
929531
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
libverify
.
so
7f
affde9a000
-
7f
affdea1000
r
-
xp
00000000
fd
:
01
10228522
/
lib
/
x86_64
-
linux
-
gnu
/
librt
-
2.27
.
so
7f
affdea1000
-
7f
affe0a0000
---
p
00007000
fd
:
01
10228522
/
lib
/
x86_64
-
linux
-
gnu
/
librt
-
2.27
.
so
7f
affe0a0000
-
7f
affe0a1000
r
--
p
00006000
fd
:
01
10228522
/
lib
/
x86_64
-
linux
-
gnu
/
librt
-
2.27
.
so
7f
affe0a1000
-
7f
affe0a2000
rw
-
p
00007000
fd
:
01
10228522
/
lib
/
x86_64
-
linux
-
gnu
/
librt
-
2.27
.
so
7f
affe0a2000
-
7f
affe23f000
r
-
xp
00000000
fd
:
01
10228444
/
lib
/
x86_64
-
linux
-
gnu
/
libm
-
2.27
.
so
7f
affe23f000
-
7f
affe43e000
---
p
0019
d000
fd
:
01
10228444
/
lib
/
x86_64
-
linux
-
gnu
/
libm
-
2.27
.
so
7f
affe43e000
-
7f
affe43f000
r
--
p
0019
c000
fd
:
01
10228444
/
lib
/
x86_64
-
linux
-
gnu
/
libm
-
2.27
.
so
7f
affe43f000
-
7f
affe440000
rw
-
p
0019
d000
fd
:
01
10228444
/
lib
/
x86_64
-
linux
-
gnu
/
libm
-
2.27
.
so
7f
affe440000
-
7f
afff128000
r
-
xp
00000000
fd
:
01
929508
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
server
/
libjvm
.
so
7f
afff128000
-
7f
afff327000
---
p
00
ce8000
fd
:
01
929508
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
server
/
libjvm
.
so
7f
afff327000
-
7f
afff3bd000
r
--
p
00
ce7000
fd
:
01
929508
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
server
/
libjvm
.
so
7f
afff3bd000
-
7f
afff3ee000
rw
-
p
00
d7d000
fd
:
01
929508
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
/
server
/
libjvm
.
so
7f
afff3ee000
-
7f
afff429000
rw
-
p
00000000
00
:
00
0
7f
afff429000
-
7f
afff610000
r
-
xp
00000000
fd
:
01
10228381
/
lib
/
x86_64
-
linux
-
gnu
/
libc
-
2.27
.
so
7f
afff610000
-
7f
afff810000
---
p
001e7000
fd
:
01
10228381
/
lib
/
x86_64
-
linux
-
gnu
/
libc
-
2.27
.
so
7f
afff810000
-
7f
afff814000
r
--
p
001e7000
fd
:
01
10228381
/
lib
/
x86_64
-
linux
-
gnu
/
libc
-
2.27
.
so
7f
afff814000
-
7f
afff816000
rw
-
p
001
eb000
fd
:
01
10228381
/
lib
/
x86_64
-
linux
-
gnu
/
libc
-
2.27
.
so
7f
afff816000
-
7f
afff81a000
rw
-
p
00000000
00
:
00
0
7f
afff81a000
-
7f
afff81d000
r
-
xp
00000000
fd
:
01
10228404
/
lib
/
x86_64
-
linux
-
gnu
/
libdl
-
2.27
.
so
7f
afff81d000
-
7f
afffa1c000
---
p
00003000
fd
:
01
10228404
/
lib
/
x86_64
-
linux
-
gnu
/
libdl
-
2.27
.
so
7f
afffa1c000
-
7f
afffa1d000
r
--
p
00002000
fd
:
01
10228404
/
lib
/
x86_64
-
linux
-
gnu
/
libdl
-
2.27
.
so
7f
afffa1d000
-
7f
afffa1e000
rw
-
p
00003000
fd
:
01
10228404
/
lib
/
x86_64
-
linux
-
gnu
/
libdl
-
2.27
.
so
7f
afffa1e000
-
7f
afffa35000
r
-
xp
00000000
fd
:
01
929196
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
lib
/
amd64
/
jli
/
libjli
.
so
7f
afffa35000
-
7f
afffc34000
---
p
00017000
fd
:
01
929196
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
lib
/
amd64
/
jli
/
libjli
.
so
7f
afffc34000
-
7f
afffc35000
r
--
p
00016000
fd
:
01
929196
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
lib
/
amd64
/
jli
/
libjli
.
so
7f
afffc35000
-
7f
afffc36000
rw
-
p
00017000
fd
:
01
929196
/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
lib
/
amd64
/
jli
/
libjli
.
so
7f
afffc36000
-
7f
afffc50000
r
-
xp
00000000
fd
:
01
10228514
/
lib
/
x86_64
-
linux
-
gnu
/
libpthread
-
2.27
.
so
7f
afffc50000
-
7f
afffe4f000
---
p
0001
a000
fd
:
01
10228514
/
lib
/
x86_64
-
linux
-
gnu
/
libpthread
-
2.27
.
so
7f
afffe4f000
-
7f
afffe50000
r
--
p
00019000
fd
:
01
10228514
/
lib
/
x86_64
-
linux
-
gnu
/
libpthread
-
2.27
.
so
7f
afffe50000
-
7f
afffe51000
rw
-
p
0001
a000
fd
:
01
10228514
/
lib
/
x86_64
-
linux
-
gnu
/
libpthread
-
2.27
.
so
7f
afffe51000
-
7f
afffe55000
rw
-
p
00000000
00
:
00
0
7f
afffe55000
-
7f
afffe7c000
r
-
xp
00000000
fd
:
01
10228353
/
lib
/
x86_64
-
linux
-
gnu
/
ld
-
2.27
.
so
7f
afffe7c000
-
7f
afffe7d000
r
--
s
00001000
fd
:
01
14554272
/
usr
/
share
/
java
/
wagon
-
file
.
jar
7f
afffe7d000
-
7f
afffe7f000
r
--
s
00001000
fd
:
01
14554139
/
usr
/
share
/
java
/
aopalliance
-
1.0
.
jar
7f
afffe7f000
-
7f
afffe81000
r
--
s
0000
d000
fd
:
01
14554177
/
usr
/
share
/
java
/
maven3
-
resolver
-
provider
.
jar
7f
afffe81000
-
7f
afffe83000
r
--
s
00008000
fd
:
01
14553503
/
usr
/
share
/
java
/
maven
-
resolver
-
connector
-
basic
.
jar
7f
afffe83000
-
7f
afffe87000
r
--
s
0001f000
fd
:
01
14553502
/
usr
/
share
/
java
/
maven
-
resolver
-
api
.
jar
7f
afffe87000
-
7f
afffe89000
r
--
s
00007000
fd
:
01
14554163
/
usr
/
share
/
java
/
jansi
.
jar
7f
afffe89000
-
7f
afffe8c000
r
--
s
00007000
fd
:
01
14554178
/
usr
/
share
/
java
/
maven3
-
settings
-
builder
.
jar
7f
afffe8c000
-
7f
afffe9a000
r
--
s
0009
a000
fd
:
01
14554149
/
usr
/
share
/
java
/
guice
.
jar
7f
afffe9a000
-
7f
affff3e000
rw
-
p
00000000
00
:
00
0
7f
affff3e000
-
7f
affff3f000
---
p
00000000
00
:
00
0
7f
affff3f000
-
7f
affff42000
---
p
00000000
00
:
00
0
7f
affff42000
-
7f
b000041000
rw
-
p
00000000
00
:
00
0
7f
b000041000
-
7f
b000049000
r
--
s
00072000
fd
:
01
14553438
/
usr
/
share
/
java
/
commons
-
lang3
.
jar
7f
b000049000
-
7f
b00004b000
r
--
s
0000
b000
fd
:
01
14554191
/
usr
/
share
/
java
/
plexus
-
classworlds
.
jar
7f
b00004b000
-
7f
b000070000
rw
-
p
00000000
00
:
00
0
7f
b000070000
-
7f
b000078000
rw
-
s
00000000
fd
:
01
2101430
/
tmp
/
hsperfdata_alogo
/
5352
7f
b000078000
-
7f
b000079000
rw
-
p
00000000
00
:
00
0
7f
b000079000
-
7f
b00007a000
---
p
00000000
00
:
00
0
7f
b00007a000
-
7f
b00007c000
rw
-
p
00000000
00
:
00
0
7f
b00007c000
-
7f
b00007d000
r
--
p
00027000
fd
:
01
10228353
/
lib
/
x86_64
-
linux
-
gnu
/
ld
-
2.27
.
so
7f
b00007d000
-
7f
b00007e000
rw
-
p
00028000
fd
:
01
10228353
/
lib
/
x86_64
-
linux
-
gnu
/
ld
-
2.27
.
so
7f
b00007e000
-
7f
b00007f000
rw
-
p
00000000
00
:
00
0
7f
ff3edb8000
-
7f
ff3edd9000
rw
-
p
00000000
00
:
00
0
[
stack
]
7f
ff3edf7000
-
7f
ff3edfa000
r
--
p
00000000
00
:
00
0
[
vvar
]
7f
ff3edfa000
-
7f
ff3edfc000
r
-
xp
00000000
00
:
00
0
[
vdso
]
ffffffffff600000
-
ffffffffff601000
r
-
xp
00000000
00
:
00
0
[
vsyscall
]
VM
Arguments
:
jvm_args
:
-
Dclassworlds
.
conf
=/
usr
/
share
/
maven
/
bin
/
m2
.
conf
-
Dmaven
.
home
=/
usr
/
share
/
maven
-
Dlibrary
.
jansi
.
path
=/
usr
/
share
/
maven
/
lib
/
jansi
-
native
-
Dmaven
.
multiModuleProjectDirectory
=/
home
/
alogo
/
workspace
/
DRIP
/
drip
-
provisioner
java_command
:
org
.
codehaus
.
plexus
.
classworlds
.
launcher
.
Launcher
-
Dmaven
.
ext
.
class
.
path
=/
home
/
alogo
/
netbeans
-
8.2
/
java
/
maven
-
nblib
/
netbeans
-
eventspy
.
jar
install
java_class_path
(
initial
):
/
usr
/
share
/
maven
/
boot
/
plexus
-
classworlds
-
2.
x
.
jar
Launcher
Type
:
SUN_STANDARD
Environment
Variables
:
JAVA_HOME
=/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
PATH
=/
usr
/
local
/
sbin
:/
usr
/
local
/
bin
:/
usr
/
sbin
:/
usr
/
bin
:/
sbin
:/
bin
:/
usr
/
games
:/
usr
/
local
/
games
:/
snap
/
bin
:/
usr
/
lib
/
jvm
/
java
-
11
-
oracle
/
bin
:/
usr
/
lib
/
jvm
/
java
-
11
-
oracle
/
db
/
bin
USERNAME
=
alogo
LD_LIBRARY_PATH
=/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
amd64
:/
usr
/
lib
/
jvm
/
java
-
8
-
oracle
/
jre
/
lib
/
i386
:
SHELL
=/
bin
/
bash
DISPLAY
=:
0
Signal
Handlers
:
SIGSEGV
:
[
libjvm
.
so
+
0xad3e60
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGBUS
:
[
libjvm
.
so
+
0xad3e60
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGFPE
:
[
libjvm
.
so
+
0x90b880
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGPIPE
:
[
libjvm
.
so
+
0x90b880
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGXFSZ
:
[
libjvm
.
so
+
0x90b880
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGILL
:
[
libjvm
.
so
+
0x90b880
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGUSR1
:
SIG_DFL
,
sa_mask
[
0
]=
00000000000000000000000000000000
,
sa_flags
=
none
SIGUSR2
:
[
libjvm
.
so
+
0x90b750
],
sa_mask
[
0
]=
00100000000000000000000000000000
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGHUP
:
[
libjvm
.
so
+
0x90bd70
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGINT
:
SIG_IGN
,
sa_mask
[
0
]=
00000000000000000000000000000000
,
sa_flags
=
none
SIGTERM
:
[
libjvm
.
so
+
0x90bd70
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
SIGQUIT
:
[
libjvm
.
so
+
0x90bd70
],
sa_mask
[
0
]=
11111111011111111101111111111110
,
sa_flags
=
SA_RESTART
|
SA_SIGINFO
---------------
S
Y
S
T
E
M
---------------
OS
:
DISTRIB_ID
=
Ubuntu
DISTRIB_RELEASE
=
18.04
DISTRIB_CODENAME
=
bionic
DISTRIB_DESCRIPTION
=
"Ubuntu 18.04.2 LTS"
uname
:
Linux
4.15.0
-
51
-
generic
#
55
-
Ubuntu
SMP
Wed
May
15
14
:
27
:
21
UTC
2019
x86_64
libc
:
glibc
2.27
NPTL
2.27
rlimit
:
STACK
8192
k
,
CORE
0
k
,
NPROC
29424
,
NOFILE
1048576
,
AS
infinity
load
average
:
4
,
66
1
,
77
1
,
25
/
proc
/
meminfo
:
MemTotal
:
7597332
kB
MemFree
:
111740
kB
MemAvailable
:
30840
kB
Buffers
:
896
kB
Cached
:
822648
kB
SwapCached
:
6360
kB
Active
:
5991632
kB
Inactive
:
986204
kB
Active
(
anon
):
5978640
kB
Inactive
(
anon
):
973028
kB
Active
(
file
):
12992
kB
Inactive
(
file
):
13176
kB
Unevictable
:
48
kB
Mlocked
:
48
kB
SwapTotal
:
1003516
kB
SwapFree
:
0
kB
Dirty
:
72
kB
Writeback
:
0
kB
AnonPages
:
6148408
kB
Mapped
:
584176
kB
Shmem
:
796968
kB
Slab
:
280984
kB
SReclaimable
:
100024
kB
SUnreclaim
:
180960
kB
KernelStack
:
26928
kB
PageTables
:
89772
kB
NFS_Unstable
:
0
kB
Bounce
:
0
kB
WritebackTmp
:
0
kB
CommitLimit
:
4802180
kB
Committed_AS
:
16738184
kB
VmallocTotal
:
34359738367
kB
VmallocUsed
:
0
kB
VmallocChunk
:
0
kB
HardwareCorrupted
:
0
kB
AnonHugePages
:
0
kB
ShmemHugePages
:
0
kB
ShmemPmdMapped
:
0
kB
CmaTotal
:
0
kB
CmaFree
:
0
kB
HugePages_Total
:
0
HugePages_Free
:
0
HugePages_Rsvd
:
0
HugePages_Surp
:
0
Hugepagesize
:
2048
kB
DirectMap4k
:
402356
kB
DirectMap2M
:
7409664
kB
DirectMap1G
:
0
kB
container
(
cgroup
)
information
:
container_type
:
cgroupv1
cpu_cpuset_cpus
:
0
-
7
cpu_memory_nodes
:
0
active_processor_count
:
8
cpu_quota
:
-
1
cpu_period
:
100000
cpu_shares
:
-
1
memory_limit_in_bytes
:
-
1
memory_and_swap_limit_in_bytes
:
-
2
memory_soft_limit_in_bytes
:
-
1
memory_usage_in_bytes
:
7075635200
memory_max_usage_in_bytes
:
7080869888
CPU
:
total
8
(
initial
active
8
)
(
4
cores
per
cpu
,
2
threads
per
core
)
family
6
model
142
stepping
10
,
cmov
,
cx8
,
fxsr
,
mmx
,
sse
,
sse2
,
sse3
,
ssse3
,
sse4
.1
,
sse4
.2
,
popcnt
,
avx
,
avx2
,
aes
,
clmul
,
erms
,
3
dnowpref
,
lzcnt
,
ht
,
tsc
,
tscinvbit
,
bmi1
,
bmi2
,
adx
/
proc
/
cpuinfo
:
processor
:
0
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3591.099
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
0
cpu
cores
:
4
apicid
:
0
initial
apicid
:
0
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
processor
:
1
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3610.007
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
1
cpu
cores
:
4
apicid
:
2
initial
apicid
:
2
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
processor
:
2
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3596.045
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
2
cpu
cores
:
4
apicid
:
4
initial
apicid
:
4
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
processor
:
3
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3617.301
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
3
cpu
cores
:
4
apicid
:
6
initial
apicid
:
6
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
processor
:
4
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3610.305
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
0
cpu
cores
:
4
apicid
:
1
initial
apicid
:
1
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
processor
:
5
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3612.811
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
1
cpu
cores
:
4
apicid
:
3
initial
apicid
:
3
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
processor
:
6
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3583.545
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
2
cpu
cores
:
4
apicid
:
5
initial
apicid
:
5
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
processor
:
7
vendor_id
:
GenuineIntel
cpu
family
:
6
model
:
142
model
name
:
Intel
(
R
)
Core
(
TM
)
i7
-
8550U
CPU
@
1.80
GHz
stepping
:
10
microcode
:
0xb4
cpu
MHz
:
3593.105
cache
size
:
8192
KB
physical
id
:
0
siblings
:
8
core
id
:
3
cpu
cores
:
4
apicid
:
7
initial
apicid
:
7
fpu
:
yes
fpu_exception
:
yes
cpuid
level
:
22
wp
:
yes
flags
:
fpu
vme
de
pse
tsc
msr
pae
mce
cx8
apic
sep
mtrr
pge
mca
cmov
pat
pse36
clflush
dts
acpi
mmx
fxsr
sse
sse2
ss
ht
tm
pbe
syscall
nx
pdpe1gb
rdtscp
lm
constant_tsc
art
arch_perfmon
pebs
bts
rep_good
nopl
xtopology
nonstop_tsc
cpuid
aperfmperf
tsc_known_freq
pni
pclmulqdq
dtes64
monitor
ds_cpl
vmx
est
tm2
ssse3
sdbg
fma
cx16
xtpr
pdcm
pcid
sse4_1
sse4_2
x2apic
movbe
popcnt
tsc_deadline_timer
aes
xsave
avx
f16c
rdrand
lahf_lm
abm
3
dnowprefetch
cpuid_fault
epb
invpcid_single
pti
ssbd
ibrs
ibpb
stibp
tpr_shadow
vnmi
flexpriority
ept
vpid
fsgsbase
tsc_adjust
bmi1
avx2
smep
bmi2
erms
invpcid
mpx
rdseed
adx
smap
clflushopt
intel_pt
xsaveopt
xsavec
xgetbv1
xsaves
dtherm
ida
arat
pln
pts
hwp
hwp_notify
hwp_act_window
hwp_epp
md_clear
flush_l1d
bugs
:
cpu_meltdown
spectre_v1
spectre_v2
spec_store_bypass
l1tf
mds
bogomips
:
3984.00
clflush
size
:
64
cache_alignment
:
64
address
sizes
:
39
bits
physical
,
48
bits
virtual
power
management
:
Memory
:
4
k
page
,
physical
7597332
k
(
111892
k
free
),
swap
1003516
k
(
0
k
free
)
vm_info
:
Java
HotSpot
(
TM
)
64
-
Bit
Server
VM
(
25.201
-
b09
)
for
linux
-
amd64
JRE
(
1.8.0
_201
-
b09
),
built
on
Dec
15
2018
11
:
35
:
59
by
"java_re"
with
gcc
7.3.0
time
:
Wed
Jun
19
17
:
55
:
39
2019
timezone
:
CEST
elapsed
time
:
13
seconds
(
0
d
0
h
0
m
13
s
)
drip-provisioner/src/main/java/nl/uva/sne/drip/drip/provisioner/utils/MessageParsing.java
View file @
c04ca632
...
...
@@ -26,6 +26,7 @@ import java.net.URL;
import
java.security.cert.CertificateEncodingException
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.Base64
;
import
java.util.List
;
import
java.util.Map
;
import
nl.uva.sne.drip.commons.utils.AAUtils
;
...
...
@@ -33,6 +34,7 @@ import nl.uva.sne.drip.commons.utils.AAUtils.SOURCE;
import
static
nl
.
uva
.
sne
.
drip
.
commons
.
utils
.
AAUtils
.
downloadCACertificates
;
import
nl.uva.sne.drip.drip.commons.data.internal.MessageParameter
;
import
nl.uva.sne.drip.drip.commons.data.v1.external.CloudCredentials
;
import
org.apache.commons.io.FileUtils
;
//import org.globus.myproxy.MyProxyException;
import
org.ietf.jgss.GSSException
;
import
org.json.JSONArray
;
...
...
@@ -42,6 +44,7 @@ import org.yaml.snakeyaml.Yaml;
import
provisioning.credential.Credential
;
import
provisioning.credential.EC2Credential
;
import
provisioning.credential.EGICredential
;
import
provisioning.credential.ExoGENICredential
;
/**
*
...
...
@@ -135,7 +138,7 @@ public class MessageParsing {
MessageParameter
messageParam
=
mapper
.
readValue
(
param
.
toString
(),
MessageParameter
.
class
);
String
name
=
messageParam
.
getName
();
String
value
=
messageParam
.
getValue
();
if
(
name
.
equals
(
"scale_topology_name"
))
{
if
(
name
.
equals
(
"scale_topology_name"
))
{
return
messageParam
;
}
}
...
...
@@ -200,6 +203,18 @@ public class MessageParsing {
egi
.
trustedCertPath
=
PropertyValues
.
TRUSTED_CERTIFICATE_FOLDER
;
credential
=
egi
;
}
if
(
cred
.
getCloudProviderName
().
toLowerCase
().
equals
(
"exogeni"
))
{
ExoGENICredential
exoGeniCredential
=
new
ExoGENICredential
();
exoGeniCredential
.
keyAlias
=
cred
.
getAccessKeyId
();
exoGeniCredential
.
keyPassword
=
cred
.
getSecretKey
();
Map
<
String
,
Object
>
att
=
cred
.
getAttributes
();
if
(
att
!=
null
&&
att
.
containsKey
(
"keystore"
))
{
String
javaKeyStoreEncoded
=
(
String
)
att
.
get
(
"keystore"
);
byte
[]
decoded
=
Base64
.
getDecoder
().
decode
(
javaKeyStoreEncoded
);
FileUtils
.
writeByteArrayToFile
(
new
File
(
tempInputDirPath
+
File
.
separator
+
"user.jks"
),
decoded
);
}
credential
=
exoGeniCredential
;
}
// for (KeyPair pair : cred.getKeyPairs()) {
// if (pair != null) {
...
...
drip-provisioner/src/main/java/nl/uva/sne/drip/drip/provisioner/v1/Consumer.java
View file @
c04ca632
...
...
@@ -53,6 +53,7 @@ import org.json.JSONObject;
import
provisioning.credential.Credential
;
import
provisioning.credential.EC2Credential
;
import
provisioning.credential.EGICredential
;
import
provisioning.credential.ExoGENICredential
;
import
provisioning.credential.SSHKeyPair
;
import
provisioning.credential.UserCredential
;
import
provisioning.database.EC2.EC2Database
;
...
...
@@ -499,6 +500,9 @@ public class Consumer extends DefaultConsumer {
if
(
cred
instanceof
EGICredential
)
{
userCredential
.
cloudAccess
.
put
(
"egi"
,
cred
);
}
if
(
cred
instanceof
ExoGENICredential
)
{
userCredential
.
cloudAccess
.
put
(
"egi"
,
cred
);
}
}
return
userCredential
;
}
...
...
drip_planner2/nbproject/project.properties
View file @
c04ca632
java.lib.path
=
main.file
=
rpc_server.py
platform.active
=
Python_2.7.1
2
platform.active
=
Python_2.7.1
5
python.lib.path
=
src.dir
=
src
drip_planner2/src/drip_logging/__init__.pyc
View file @
c04ca632
No preview for this file type
drip_planner2/src/drip_logging/drip_logging_handler.pyc
View file @
c04ca632
No preview for this file type
drip_planner2/src/planner/__pycache__/winery_planner.cpython-36.pyc
0 → 100644
View file @
c04ca632
File added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment