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 java.management.jmod - Management Module
JDK 11 java.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\java.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\java.management.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/management/counter/perf/Prologue.java
/* * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.management.counter.perf; import sun.management.counter.*; import java.nio.*; class Prologue { // these constants should match their #define counterparts in vmdata.hpp private final static byte PERFDATA_BIG_ENDIAN = 0; private final static byte PERFDATA_LITTLE_ENDIAN = 1; private final static int PERFDATA_MAGIC = 0xcafec0c0; private class PrologueFieldOffset { private final static int SIZEOF_BYTE = 1; private final static int SIZEOF_INT = 4; private final static int SIZEOF_LONG = 8; private final static int MAGIC_SIZE = SIZEOF_INT; private final static int BYTE_ORDER_SIZE = SIZEOF_BYTE; private final static int MAJOR_SIZE = SIZEOF_BYTE; private final static int MINOR_SIZE = SIZEOF_BYTE; private final static int ACCESSIBLE_SIZE = SIZEOF_BYTE; private final static int USED_SIZE = SIZEOF_INT; private final static int OVERFLOW_SIZE = SIZEOF_INT; private final static int MOD_TIMESTAMP_SIZE = SIZEOF_LONG; private final static int ENTRY_OFFSET_SIZE = SIZEOF_INT; private final static int NUM_ENTRIES_SIZE = SIZEOF_INT; // these constants must match the field offsets and sizes // in the PerfDataPrologue structure in perfMemory.hpp final static int MAGIC = 0; final static int BYTE_ORDER = MAGIC + MAGIC_SIZE; final static int MAJOR_VERSION = BYTE_ORDER + BYTE_ORDER_SIZE; final static int MINOR_VERSION = MAJOR_VERSION + MAJOR_SIZE; final static int ACCESSIBLE = MINOR_VERSION + MINOR_SIZE; final static int USED = ACCESSIBLE + ACCESSIBLE_SIZE; final static int OVERFLOW = USED + USED_SIZE; final static int MOD_TIMESTAMP = OVERFLOW + OVERFLOW_SIZE; final static int ENTRY_OFFSET = MOD_TIMESTAMP + MOD_TIMESTAMP_SIZE; final static int NUM_ENTRIES = ENTRY_OFFSET + ENTRY_OFFSET_SIZE; final static int PROLOGUE_2_0_SIZE = NUM_ENTRIES + NUM_ENTRIES_SIZE; } private ByteBuffer header; private int magic; Prologue(ByteBuffer b) { this.header = b.duplicate(); // the magic number is always stored in big-endian format // save and restore the buffer's initial byte order around // the fetch of the data. header.order(ByteOrder.BIG_ENDIAN); header.position(PrologueFieldOffset.MAGIC); magic = header.getInt(); // the magic number is always stored in big-endian format if (magic != PERFDATA_MAGIC) { throw new InstrumentationException("Bad Magic: " + Integer.toHexString(getMagic())); } // set the buffer's byte order according to the value of its // byte order field. header.order(getByteOrder()); // Check version int major = getMajorVersion(); int minor = getMinorVersion(); if (major < 2) { throw new InstrumentationException("Unsupported version: " + major + "." + minor); } // Currently, only support 2.0 version. header.limit(PrologueFieldOffset.PROLOGUE_2_0_SIZE); } public int getMagic() { return magic; } public int getMajorVersion() { header.position(PrologueFieldOffset.MAJOR_VERSION); return (int)header.get(); } public int getMinorVersion() { header.position(PrologueFieldOffset.MINOR_VERSION); return (int)header.get(); } public ByteOrder getByteOrder() { header.position(PrologueFieldOffset.BYTE_ORDER); byte byte_order = header.get(); if (byte_order == PERFDATA_BIG_ENDIAN) { return ByteOrder.BIG_ENDIAN; } else { return ByteOrder.LITTLE_ENDIAN; } } public int getEntryOffset() { header.position(PrologueFieldOffset.ENTRY_OFFSET); return header.getInt(); } // The following fields are updated asynchronously // while they are accessed by these methods. public int getUsed() { header.position(PrologueFieldOffset.USED); return header.getInt(); } public int getOverflow() { header.position(PrologueFieldOffset.OVERFLOW); return header.getInt(); } public long getModificationTimeStamp() { header.position(PrologueFieldOffset.MOD_TIMESTAMP); return header.getLong(); } public int getNumEntries() { header.position(PrologueFieldOffset.NUM_ENTRIES); return header.getInt(); } public boolean isAccessible() { header.position(PrologueFieldOffset.ACCESSIBLE); byte b = header.get(); return (b == 0 ? false : true); } }
⏎ sun/management/counter/perf/Prologue.java
Or download all of them as a single archive file:
File name: java.management-11.0.1-src.zip File size: 828174 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.management.rmi.jmod - Management RMI Module
2020-04-30, 96595👍, 0💬
Popular Posts:
Apache BCEL Source Code Files are inside the Apache BCEL source package file like bcel-6.5.0-src.zip...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
What Is commons-collections4-4.4 .jar?commons-collections4-4.4 .jaris the JAR file for Apache Common...