Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.management.jmod - Management Module
JDK 11 jdk.management.jmod is the JMOD file for JDK 11 Management module.
JDK 11 Management module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.management.jmod.
JDK 11 Management module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Management module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.management.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/management/internal/HotSpotDiagnostic.java
/* * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.management.internal; import java.io.IOException; import java.util.ArrayList; import java.util.List; import javax.management.ObjectName; import com.sun.management.HotSpotDiagnosticMXBean; import com.sun.management.VMOption; import java.security.AccessController; import java.security.PrivilegedAction; import sun.management.Util; /** * Implementation of the diagnostic MBean for Hotspot VM. */ public class HotSpotDiagnostic implements HotSpotDiagnosticMXBean { public HotSpotDiagnostic() { } @Override public void dumpHeap(String outputFile, boolean live) throws IOException { String propertyName = "jdk.management.heapdump.allowAnyFileSuffix"; PrivilegedAction<Boolean> pa = () -> Boolean.parseBoolean(System.getProperty(propertyName, "false")); boolean allowAnyFileSuffix = AccessController.doPrivileged(pa); if (!allowAnyFileSuffix && !outputFile.endsWith(".hprof")) { throw new IllegalArgumentException("heapdump file must have .hprof extention"); } SecurityManager security = System.getSecurityManager(); if (security != null) { security.checkWrite(outputFile); Util.checkControlAccess(); } dumpHeap0(outputFile, live); } private native void dumpHeap0(String outputFile, boolean live) throws IOException; @Override public List<VMOption> getDiagnosticOptions() { List<Flag> allFlags = Flag.getAllFlags(); List<VMOption> result = new ArrayList<>(); for (Flag flag : allFlags) { if (flag.isWriteable() && flag.isExternal()) { result.add(flag.getVMOption()); } } return result; } @Override public VMOption getVMOption(String name) { if (name == null) { throw new NullPointerException("name cannot be null"); } Flag f = Flag.getFlag(name); if (f == null) { throw new IllegalArgumentException("VM option \"" + name + "\" does not exist"); } return f.getVMOption(); } @Override public void setVMOption(String name, String value) { if (name == null) { throw new NullPointerException("name cannot be null"); } if (value == null) { throw new NullPointerException("value cannot be null"); } Util.checkControlAccess(); Flag flag = Flag.getFlag(name); if (flag == null) { throw new IllegalArgumentException("VM option \"" + name + "\" does not exist"); } if (!flag.isWriteable()){ throw new IllegalArgumentException("VM Option \"" + name + "\" is not writeable"); } // Check the type of the value Object v = flag.getValue(); if (v instanceof Long) { try { long l = Long.parseLong(value); Flag.setLongValue(name, l); } catch (NumberFormatException e) { throw new IllegalArgumentException("Invalid value:" + " VM Option \"" + name + "\"" + " expects numeric value", e); } } else if (v instanceof Double) { try { double d = Double.parseDouble(value); Flag.setDoubleValue(name, d); } catch (NumberFormatException e) { throw new IllegalArgumentException("Invalid value:" + " VM Option \"" + name + "\"" + " expects numeric value", e); } } else if (v instanceof Boolean) { if (!value.equalsIgnoreCase("true") && !value.equalsIgnoreCase("false")) { throw new IllegalArgumentException("Invalid value:" + " VM Option \"" + name + "\"" + " expects \"true\" or \"false\"."); } Flag.setBooleanValue(name, Boolean.parseBoolean(value)); } else if (v instanceof String) { Flag.setStringValue(name, value); } else { throw new IllegalArgumentException("VM Option \"" + name + "\" is of an unsupported type: " + v.getClass().getName()); } } @Override public ObjectName getObjectName() { return Util.newObjectName("com.sun.management:type=HotSpotDiagnostic"); } }
⏎ com/sun/management/internal/HotSpotDiagnostic.java
Or download all of them as a single archive file:
File name: jdk.management-11.0.1-src.zip File size: 38186 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.management.agent.jmod - Management Agent Module
2020-06-21, 11351👍, 0💬
Popular Posts:
Java Cryptography Extension 1.6 JAR File Size and Download Location: File name: jce.jar, jce-1.6.jar...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...
Joda-Time provides a quality replacement for the Java date and time classes. The design allows for m...
Apache Log4j API provides the interface that applications should code to and provides the adapter co...