Java Code Examples for java.lang.management.MemoryNotificationInfo#getPoolName()
The following examples show how to use
java.lang.management.MemoryNotificationInfo#getPoolName() .
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 File: MemoryNotifInfoCompositeData.java From dragonwell8_jdk with 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 File: MemoryNotifInfoCompositeData.java From TencentKona-8 with 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 File: MemoryNotifInfoCompositeData.java From jdk8u60 with 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 File: MemoryNotifInfoCompositeData.java From openjdk-jdk8u with 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 File: MemoryNotifInfoCompositeData.java From openjdk-jdk8u-backup with 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 File: MemoryNotifInfoCompositeData.java From openjdk-jdk9 with 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 File: MemoryNotifInfoCompositeData.java From jdk8u-jdk with 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 File: MemoryNotifInfoCompositeData.java From hottub with 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 File: MemoryNotifInfoCompositeData.java From openjdk-8-source with 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 File: MemoryNotifInfoCompositeData.java From openjdk-8 with 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 File: MemoryNotifInfoCompositeData.java From jdk8u_jdk with 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 File: MemoryNotifInfoCompositeData.java From jdk8u-jdk with 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 File: MemoryNotifInfoCompositeData.java From jdk8u-dev-jdk with 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()); }