Package org.adoptopenjdk.jitwatch.histo

Examples of org.adoptopenjdk.jitwatch.histo.AttributeNameHistoWalker


       
        IReadOnlyJITDataModel model = parent.getJITDataModel();

    final Map<String, IHistoVisitable> attrMap = new HashMap<>();

    attrMap.put("JIT Compilation Times", new AttributeNameHistoWalker(model, true, ATTR_COMPILE_MILLIS, 10));
        attrMap.put("Bytes per Compiled Method", new AttributeNameHistoWalker(model, true, ATTR_BYTES, 10));
        attrMap.put("Native Bytes per Compiled Method", new AttributeNameHistoWalker(model, true, ATTR_NMSIZE, 10));
        attrMap.put("Inlined Method Sizes", new InlineSizeHistoVisitable(model, 1));

        VBox vbox = new VBox();

        ObservableList<String> options = FXCollections.observableArrayList(attrMap.keySet());
View Full Code Here

TOP

Related Classes of org.adoptopenjdk.jitwatch.histo.AttributeNameHistoWalker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.