Java Code Examples for java.lang.management.MemoryNotificationInfo#getPoolName()
The following examples show how to use
java.lang.management.MemoryNotificationInfo#getPoolName() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: dragonwell8_jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 2
Source Project: TencentKona-8 File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 3
Source Project: jdk8u60 File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 4
Source Project: openjdk-jdk8u File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 5
Source Project: openjdk-jdk8u-backup File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 6
Source Project: openjdk-jdk9 File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 7
Source Project: jdk8u-jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 8
Source Project: hottub File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 9
Source Project: openjdk-8-source File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 10
Source Project: openjdk-8 File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 11
Source Project: jdk8u_jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 12
Source Project: jdk8u-jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }
Example 13
Source Project: jdk8u-dev-jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 4 votes |
public static void createGoodCompositeData() throws Exception { // get the CompositeType for MemoryUsage validItemTypes[USAGE] = OpenTypeConverter.toOpenType(MemoryUsage.class); CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, validItemNames, values); MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); if (!info.getPoolName().equals(values[POOL_NAME])) { throw new RuntimeException("pool name = " + info.getPoolName() + " expected = " + values[POOL_NAME]); } if (info.getCount() != ((Long) values[COUNT]).longValue()) { throw new RuntimeException("count = " + info.getCount() + " expected = " + values[COUNT]); } if (info.getUsage().getInit() != 0) { throw new RuntimeException("usage init = " + info.getUsage().getInit() + " expected = 0"); } if (info.getUsage().getUsed() != 100) { throw new RuntimeException("usage used = " + info.getUsage().getUsed() + " expected = 100"); } if (info.getUsage().getCommitted () != 1000) { throw new RuntimeException("usage committed = " + info.getUsage().getCommitted() + " expected = 1000"); } if (info.getUsage().getMax() != 5000) { throw new RuntimeException("usage max = " + info.getUsage().getMax() + " expected = 5000"); } System.out.print("Pool name = " + info.getPoolName()); System.out.println(" Count = " + info.getCount()); System.out.println("Usage = " + info.getUsage()); }