Java Code Examples for java.lang.management.MemoryNotificationInfo#from()
The following examples show how to use
java.lang.management.MemoryNotificationInfo#from() .
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 | 6 votes |
public static void badNameCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", badItemNames, badItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, badItemNames, values); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 2
Source Project: TencentKona-8 File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 6 votes |
public static void badNameCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", badItemNames, badItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, badItemNames, values); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 3
Source Project: openjdk-8-source File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 6 votes |
public static void badNameCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", badItemNames, badItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, badItemNames, values); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 4
Source Project: openjdk-jdk8u File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 6 votes |
public static void badNameCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", badItemNames, badItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, badItemNames, values); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 5
Source Project: openjdk-jdk8u-backup File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 6 votes |
public static void badNameCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", badItemNames, badItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, badItemNames, values); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 6
Source Project: jdk8u-jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 6 votes |
public static void badNameCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", badItemNames, badItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, badItemNames, values); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 7
Source Project: hottub File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 6 votes |
public static void badNameCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", badItemNames, badItemNames, validItemTypes); CompositeData cd = new CompositeDataSupport(ct, badItemNames, values); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 8
Source Project: jdk8u-jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 5 votes |
public static void badTypeCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, badItemTypes); final Object[] values1 = { "Dummy", "Foo", new Long(100), "Bad memory usage object", "Dummy", }; CompositeData cd = new CompositeDataSupport(ct, validItemNames, values1); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 9
Source Project: dragonwell8_jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 5 votes |
public static void badTypeCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, badItemTypes); final Object[] values1 = { "Dummy", "Foo", new Long(100), "Bad memory usage object", "Dummy", }; CompositeData cd = new CompositeDataSupport(ct, validItemNames, values1); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 10
Source Project: hottub File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 5 votes |
public static void badTypeCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, badItemTypes); final Object[] values1 = { "Dummy", "Foo", new Long(100), "Bad memory usage object", "Dummy", }; CompositeData cd = new CompositeDataSupport(ct, validItemNames, values1); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 11
Source Project: jdk8u-jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 5 votes |
public static void badTypeCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, badItemTypes); final Object[] values1 = { "Dummy", "Foo", new Long(100), "Bad memory usage object", "Dummy", }; CompositeData cd = new CompositeDataSupport(ct, validItemNames, values1); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 12
Source Project: jdk8u_jdk File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 5 votes |
public static void badTypeCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, badItemTypes); final Object[] values1 = { "Dummy", "Foo", new Long(100), "Bad memory usage object", "Dummy", }; CompositeData cd = new CompositeDataSupport(ct, validItemNames, values1); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 13
Source Project: openjdk-jdk8u File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 5 votes |
public static void badTypeCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, badItemTypes); final Object[] values1 = { "Dummy", "Foo", new Long(100), "Bad memory usage object", "Dummy", }; CompositeData cd = new CompositeDataSupport(ct, validItemNames, values1); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 14
Source Project: openjdk-jdk9 File: MemoryNotifInfoCompositeData.java License: GNU General Public License v2.0 | 5 votes |
public static void badTypeCompositeData() throws Exception { CompositeType ct = new CompositeType("MyCompositeType", "CompositeType for MemoryNotificationInfo", validItemNames, validItemNames, badItemTypes); final Object[] values1 = { "Dummy", "Foo", new Long(100), "Bad memory usage object", "Dummy", }; CompositeData cd = new CompositeDataSupport(ct, validItemNames, values1); try { MemoryNotificationInfo info = MemoryNotificationInfo.from(cd); } catch (IllegalArgumentException e) { System.out.println("Expected exception: " + e.getMessage()); return; } throw new RuntimeException( "IllegalArgumentException not thrown"); }
Example 15
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 16
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 17
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 18
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 19
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 20
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()); }