Search Results
OK to copy?
Examples 1 through 10 of
34 (0.0010 seconds)
Class:
org.apache.webapp.balancer.rules.CharacterEncodingRule
©,
Rating:
100% of 1,
C1
Class: org.apache.jmeter.protocol.http.parser.URLString ©, Rating: 100% of 1, C1
Class: org.apache.webapp.balancer.rules.RemoteAddressRule ©, Rating: 0% of 0, C1
Class: org.apache.webapp.balancer.rules.RequestHeaderRule ©, Rating: 0% of 0, C2
Class: org.apache.webapp.balancer.rules.RequestParameterRule ©, Rating: 0% of 1, C2
Class: org.apache.jmeter.protocol.http.sampler.SoapSampler ©, Rating: 0% of 0, C1
Class: org.springframework.beans.TestBean ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.types.Resource ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.ELParser ©, Rating: 0% of 0, C2
Class: org.apache.catalina.util.DOMWriter ©, Rating: 0% of 0, C2
44 String actualEncoding = request.getCharacterEncoding();
45
46 return (getEncoding().compareTo(actualEncoding) == 0);
47 }
48
Class: org.apache.jmeter.protocol.http.parser.URLString ©, Rating: 100% of 1, C1
Class: org.apache.webapp.balancer.rules.RemoteAddressRule ©, Rating: 0% of 0, C1
62 String requestAddr = request.getRemoteAddr();
63
64 return (requestAddr.compareTo(getRemoteAddress()) == 0);
65 }
66
Class: org.apache.webapp.balancer.rules.RequestHeaderRule ©, Rating: 0% of 0, C2
090 return (getHeaderValue() == null);
091 } else {
092 return (actualHeaderValue.compareTo(getHeaderValue()) == 0);
093 }
094 }
Class: org.apache.webapp.balancer.rules.RequestParameterRule ©, Rating: 0% of 1, C2
091 return (getParamValue() == null);
092 } else {
093 return (actualParamValue.compareTo(getParamValue()) == 0);
094 }
095 }
Class: org.apache.jmeter.protocol.http.sampler.SoapSampler ©, Rating: 0% of 0, C1
125 setProtocol(url.getProtocol());
126 setMethod(POST);
127 if (url.getQuery() != null && url.getQuery().compareTo("") != 0)
128 {
129 setPath(url.getPath() + "?" + url.getQuery());
Class: org.springframework.beans.TestBean ©, Rating: 0% of 0, C1
278 public int compareTo(Object other) {
279 if (this.name != null && other instanceof TestBean) {
280 return this.name.compareTo(((TestBean) other).getName());
281 }
282 else {
Class: org.apache.tools.ant.types.Resource ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.ELParser ©, Rating: 0% of 0, C2
147 while (i < j) {
148 int k = (i+j)/2;
149 int result = reservedWords[k].compareTo(id);
150 if (result == 0) {
151 return true;
Class: org.apache.catalina.util.DOMWriter ©, Rating: 0% of 0, C2
271 curName = array[j].getLocalName();
272 }
273 if ( curName.compareTo(name) < 0 ) {
274 name = curName;
275 index = j;