Search Results
OK to copy?
Examples 1 through 10 of
38 (0.0050 seconds)
Class:
org.apache.axis.utils.IdentityHashMap
©,
Rating:
0% of 0,
C1
Class: org.apache.axis.utils.IdentityHashMap ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.visualizers.MonitorHealthPanel ©, Rating: 0% of 0, C1
Class: org.apache.catalina.cluster.tcp.ReplicationTransmitter ©, Rating: 0% of 0, C1
Class: org.apache.batik.transcoder.TranscodingHints ©, Rating: 0% of 0, C1
Class: org.apache.axis.security.simple.SimpleSecurityProvider ©, Rating: 0% of 0, C3
Class: org.apache.webapp.admin.TreeControl ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.SoftReferenceCache ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.SoftReferenceCache ©, Rating: 0% of 0, C2
Class: org.apache.batik.util.SoftReferenceCache ©, Rating: 0% of 0, C2
096 public boolean containsKey(Object key)
097 {
098 return super.containsKey(new IDKey(key));
099 }
100 }
Class: org.apache.axis.utils.IdentityHashMap ©, Rating: 0% of 0, C1
075 {
076 Object key = new IDKey(value);
077 if (! super.containsKey(key))
078 {
079 return super.put(key, value);
Class: org.apache.jmeter.visualizers.MonitorHealthPanel ©, Rating: 0% of 0, C1
113 */
114 public void addSample(MonitorModel model){
115 if (SERVERMAP.containsKey(model.getURL())){
116 ServerPanel pane = null;
117 if(SERVERMAP.get(model.getURL()) != null){
Class: org.apache.catalina.cluster.tcp.ReplicationTransmitter ©, Rating: 0% of 0, C1
063 String key = sender.getAddress().getHostAddress() + ":" +
064 sender.getPort();
065 if (!map.containsKey(key))
066 map.put(sender.getAddress().getHostAddress() + ":" +
067 sender.getPort(), sender);
Class: org.apache.batik.transcoder.TranscodingHints ©, Rating: 0% of 0, C1
Class: org.apache.axis.security.simple.SimpleSecurityProvider ©, Rating: 0% of 0, C3
152
153 // in order to authenticate, the user must exist
154 if ( username == null ||
155 username.equals("") ||
156 !users.containsKey(username) )
Class: org.apache.webapp.admin.TreeControl ©, Rating: 0% of 0, C1
168 synchronized (registry) {
169 String name = node.getName();
170 if (registry.containsKey(name))
171 throw new IllegalArgumentException("Name '" + name +
172 "' is not unique");
Class: org.apache.batik.util.SoftReferenceCache ©, Rating: 0% of 0, C1
189 */
190 protected final synchronized void putImpl(Object key, Object object) {
191 if (map.containsKey(key)) {
192 SoftReference ref = new SoftRefKey(object, key);
193 map.put(key, ref);
Class: org.apache.batik.util.SoftReferenceCache ©, Rating: 0% of 0, C2
152 // check if key was cleared, if so it will most likely
153 // never be 'put'.
154 if (!map.containsKey(key))
155 break;
156
Class: org.apache.batik.util.SoftReferenceCache ©, Rating: 0% of 0, C2
140 * cache. */
141 protected final synchronized Object requestImpl(Object key) {
142 if (map.containsKey(key)) {
143
144 Object o = map.get(key);