Package water.util

Examples of water.util.JProfile


      default:
        throw H2O.fail("Bad version for Frames schema: " + version);
    }
  }
  public ProfilerBase fetch(int version, Profiler p) {
    JProfile profile = new JProfile(p._depth).execImpl(true);
    int i=0;
    p._stacktraces = new String[profile.nodes.length][];
    p._counts = new int[profile.nodes.length][];
    for (JProfile.ProfileSummary s : profile.nodes) {
      p._stacktraces[i] = s.profile.stacktraces;
View Full Code Here

TOP

Related Classes of water.util.JProfile

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.