Search Results
OK to copy?
Examples 21 through 30 of
1017 (0.0060 seconds)
Class:
org.springframework.web.context.support.ServletContextAttributeExporter
©,
Rating:
0% of 0,
C2
Class: org.apache.jmeter.gui.action.AbstractAction ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.security.jaas.JaasLoginModuleAdapter ©, Rating: 0% of 0, C1
Class: org.springframework.transaction.interceptor.TransactionAttributeSourceEditor ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.threads.JMeterVariables ©, Rating: 0% of 0, C1
Class: org.apache.webapp.admin.DumpServerAction ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.gui.action.Clear ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.protocol.http.modifier.UserSequence ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.http.modifier.UserSequence ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.support.MethodOverrides ©, Rating: 0% of 0, C1
67
68 public void setServletContext(ServletContext servletContext) {
69 for (Iterator it = this.attributes.entrySet().iterator(); it.hasNext();) {
70 Map.Entry entry = (Map.Entry) it.next();
71 String attributeName = (String) entry.getKey();
Class: org.apache.jmeter.gui.action.AbstractAction ©, Rating: 0% of 0, C2
54 {
55 Iterator iter = new LinkedList(tree.list()).iterator();
56 while (iter.hasNext())
57 {
58 JMeterTreeNode item = (JMeterTreeNode) iter.next();
Class: com.technoetic.xplanner.security.jaas.JaasLoginModuleAdapter ©, Rating: 0% of 0, C1
54 Set principals = subject.getPrincipals(jaasUserPrincipalClass);
55 Iterator principalIterator = principals.iterator();
56 if (principalIterator.hasNext()) {
57 Principal jaasUserPrincipal = (Principal)principalIterator.next();
58 populateSubjectPrincipalFromDatabase(subject, jaasUserPrincipal.getName());
Class: org.springframework.transaction.interceptor.TransactionAttributeSourceEditor ©, Rating: 0% of 0, C2
66 // Now we have properties, process each one individually
67 TransactionAttributeEditor tae = new TransactionAttributeEditor();
68 for (Iterator iter = props.keySet().iterator(); iter.hasNext();) {
69 String name = (String) iter.next();
70 String value = props.getProperty(name);
Class: org.apache.jmeter.threads.JMeterVariables ©, Rating: 0% of 0, C1
072 {
073 Iterator iter = vars.keySet().iterator();
074 while (iter.hasNext())
075 {
076 String item = (String) iter.next();
Class: org.apache.webapp.admin.DumpServerAction ©, Rating: 0% of 0, C1
76 Iterator names = server.queryNames(null, null).iterator();
77 ArrayList list = new ArrayList();
78 while (names.hasNext()) {
79 list.add(names.next().toString());
80 }
Class: org.apache.jmeter.gui.action.Clear ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.protocol.http.modifier.UserSequence ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.http.modifier.UserSequence ©, Rating: 0% of 0, C1
079 {
080 // Use round robin allocation of user details
081 if (!indexOfUsers.hasNext())
082 {
083 indexOfUsers = allUsers.iterator();
Class: org.springframework.beans.factory.support.MethodOverrides ©, Rating: 0% of 0, C1
094 */
095 public MethodOverride getOverride(Method method) {
096 for (Iterator it = this.overrides.iterator(); it.hasNext();) {
097 MethodOverride methodOverride = (MethodOverride) it.next();
098 if (methodOverride.matches(method, this)) {