Search Results
OK to copy?
Examples 31 through 40 of
71 (0.219 seconds)
Class:
org.apache.jmeter.functions.BeanShell
©,
Rating:
0% of 0,
C2
Class: org.apache.naming.factory.BeanFactory ©, Rating: 0% of 0, C3
Class: org.apache.catalina.core.ApplicationFilterConfig ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.protocol.java.config.gui.JavaConfigGui ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.protocol.java.sampler.JavaSampler ©, Rating: 0% of 0, C1
Class: org.springframework.aop.support.AopUtils ©, Rating: 0% of 0, C1
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
178 private void setupBeanShell()
179 {
180 ClassLoader loader = Thread.currentThread().getContextClassLoader();
181
182 try
Class: org.apache.naming.factory.BeanFactory ©, Rating: 0% of 0, C3
118 String beanClassName = ref.getClassName();
119 Class beanClass = null;
120 ClassLoader tcl =
121 Thread.currentThread().getContextClassLoader();
122 if (tcl != null) {
Class: org.apache.catalina.core.ApplicationFilterConfig ©, Rating: 0% of 0, C2
205 classLoader = context.getLoader().getClassLoader();
206
207 ClassLoader oldCtxClassLoader =
208 Thread.currentThread().getContextClassLoader();
209
Class: org.apache.jmeter.protocol.java.config.gui.JavaConfigGui ©, Rating: 0% of 0, C2
180 try
181 {
182 JavaSamplerClient client = (JavaSamplerClient) Class.forName(
183 className,
184 true,
Class: org.apache.jmeter.protocol.java.sampler.JavaSampler ©, Rating: 0% of 0, C1
185 try
186 {
187 Class javaClass = Class.forName(getClassname().trim(),
188 false,
189 Thread.currentThread().getContextClassLoader());
Class: org.springframework.aop.support.AopUtils ©, Rating: 0% of 0, C1
140 Class interfaces[] = new Class[interfaceNames.length];
141 for (int i = 0; i < interfaceNames.length; i++) {
142 interfaces[i] = Class.forName(interfaceNames[i].trim(), true, Thread.currentThread().getContextClassLoader());
143 // Check it's an interface.
144 if (!interfaces[i].isInterface()) {
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
350 */
351 public static boolean isClassLoaderBound() {
352 ClassLoader cl = Thread.currentThread().getContextClassLoader();
353 do {
354 if (clBindings.containsKey(cl)) {
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
333 static Object getClassLoaderName()
334 throws NamingException {
335 ClassLoader cl = Thread.currentThread().getContextClassLoader();
336 Object name = null;
337 do {
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
315 public static Context getClassLoader()
316 throws NamingException {
317 ClassLoader cl = Thread.currentThread().getContextClassLoader();
318 Context context = null;
319 do {
Class: org.apache.naming.ContextBindings ©, Rating: 0% of 0, C1
286 */
287 public static void unbindClassLoader(Object name, Object token) {
288 unbindClassLoader(name, token,
289 Thread.currentThread().getContextClassLoader());
290 }