Package org.jruby.management

Examples of org.jruby.management.ClassCache


        this.jitCompiler        = new JITCompiler(this);
        this.parserStats        = new ParserStats(this);
       
        this.beanManager.register(new Config(this));
        this.beanManager.register(parserStats);
        this.beanManager.register(new ClassCache(this));
    }
View Full Code Here


        this.jitCompiler        = new JITCompiler(this);
        this.parserStats        = new ParserStats(this);
       
        this.beanManager.register(new Config(this));
        this.beanManager.register(parserStats);
        this.beanManager.register(new ClassCache(this));
        this.beanManager.register(new org.jruby.management.Runtime(this));

        this.runtimeCache = new RuntimeCache();
        runtimeCache.initMethodCache(ClassIndex.MAX_CLASSES * MethodIndex.MAX_METHODS);
    }
View Full Code Here

        this.hashSeedK0 = this.random.nextLong();
        this.hashSeedK1 = this.random.nextLong();
       
        this.beanManager.register(new Config(this));
        this.beanManager.register(parserStats);
        this.beanManager.register(new ClassCache(this));
        this.beanManager.register(new org.jruby.management.Runtime(this));

        this.runtimeCache = new RuntimeCache();
        runtimeCache.initMethodCache(ClassIndex.MAX_CLASSES * MethodNames.values().length - 1);
       
View Full Code Here

TOP

Related Classes of org.jruby.management.ClassCache

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.