Examples of ProfileData


Examples of org.jruby.runtime.profile.ProfileData

     *
     * @return the thread's profile data
     */
    public IProfileData getProfileData() {
        if (profileData == null)
            profileData = new ProfileData(this);
        return profileData;
    }
View Full Code Here

Examples of org.jruby.runtime.profile.ProfileData

     *
     * @return the thread's profile data
     */
    public ProfileData getProfileData() {
        if (profileData == null) {
            profileData = new ProfileData(this);
        }
        return profileData;
    }
View Full Code Here

Examples of org.jruby.runtime.profile.ProfileData

    public void startProfiling() {
        isProfiling = true;
        // use new profiling data every time profiling is started, useful in
        // case users keep a reference to previous data after profiling stop
        profileData = new ProfileData(this);
    }
View Full Code Here

Examples of org.jruby.runtime.profile.ProfileData

            getJRubyClassLoader().tearDown(isDebug());
        }

        if (config.isProfilingEntireRun()) {
            // not using logging because it's formatted
            ProfileData profileData = threadService.getMainThread().getContext().getProfileData();
            printProfileData(profileData);
        }

        if (systemExit && status != 0) {
            throw newSystemExit(status);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.