Search Results
OK to copy?
Examples 1 through 10 of
38 (0.283 seconds)
Class:
org.apache.jmeter.testelement.VariablesCollection
©,
Rating:
100% of 3,
C1
Class: org.apache.jmeter.testelement.VariablesCollection ©, Rating: 100% of 1, C1
Class: org.apache.jmeter.functions.ThreadNumber ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.threads.JMeterVariables ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.control.TransactionController ©, Rating: 0% of 0, C1
Class: org.springframework.aop.target.ThreadLocalTargetSource ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.functions.LogFunction ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.functions.LogFunction ©, Rating: 0% of 0, C1
Class: org.apache.catalina.cluster.util.SmartQueue ©, Rating: 0% of 0, C2
Class: org.apache.catalina.cluster.util.SmartQueue ©, Rating: 0% of 0, C2
39 public JMeterVariables getVariables()
40 {
41 return (JMeterVariables) varMap.get(Thread.currentThread().getName());
42 }
43
Class: org.apache.jmeter.testelement.VariablesCollection ©, Rating: 100% of 1, C1
34 public void addJMeterVariables(JMeterVariables jmVars)
35 {
36 varMap.put(Thread.currentThread().getName(), jmVars);
37 }
38
Class: org.apache.jmeter.functions.ThreadNumber ©, Rating: 0% of 0, C1
42 throws InvalidVariableException
43 {
44 return Thread.currentThread().getName().substring(
45 Thread.currentThread().getName().indexOf("-") + 1);
46 }
Class: org.apache.jmeter.threads.JMeterVariables ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.control.TransactionController ©, Rating: 0% of 0, C1
054 public TransactionController()
055 {
056 threadName = Thread.currentThread().getName();
057 lnf = new ListenerNotifier();
058 }
Class: org.springframework.aop.target.ThreadLocalTargetSource ©, Rating: 0% of 0, C1
073 if (target == null) {
074 if (logger.isDebugEnabled()) {
075 logger.debug("No target for prototype '" + getTargetBeanName() + "' found in thread: " +
076 "creating one and binding it to thread '" + Thread.currentThread().getName() + "'");
077 }
Class: org.apache.jmeter.functions.LogFunction ©, Rating: 0% of 0, C2
130 Priority p = Priority.getPriorityForName(prio);
131 if (log.isPriorityEnabled(p)){//Thread method is potentially expensive
132 String tn = Thread.currentThread().getName();
133 log.log(p,tn+" "+s,t);
134 }
Class: org.apache.jmeter.functions.LogFunction ©, Rating: 0% of 0, C1
101 private static void printDetails(java.io.PrintStream ps,String s, Throwable t)
102 {
103 String tn = Thread.currentThread().getName();
104 if (t != null)
105 {
Class: org.apache.catalina.cluster.util.SmartQueue ©, Rating: 0% of 0, C2
112 result = (SmartEntry)queue.removeFirst();
113 queueMap.remove(result.getKey());
114 if ( debug != 0 ) log.debug("["+Thread.currentThread().getName()+"][SmartQueue] Returning="+result);
115 }
116 return result;
Class: org.apache.catalina.cluster.util.SmartQueue ©, Rating: 0% of 0, C2
101 }
102 mutex.wait(timeout);
103 if ( debug != 0 ) log.debug("["+Thread.currentThread().getName()+"][SmartQueue] Queue woke up or interrupted size="+size()+".");
104 }
105 catch(IllegalMonitorStateException ex) {