Search Results
OK to copy?
Examples 1 through 10 of
14 (0.0050 seconds)
Class:
org.apache.jmeter.protocol.http.sampler.SoapSampler
©,
Rating:
0% of 0,
C1
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C2
Class: org.apache.axis.tools.ant.axis.RunAxisFunctionalTestsTask ©, Rating: 100% of 1, C1
Class: org.apache.jmeter.protocol.http.control.AuthManager ©, Rating: 0% of 0, C3
Class: org.apache.jmeter.protocol.http.control.AuthManager ©, Rating: 0% of 0, C3
Class: org.apache.jmeter.junit.protocol.http.parser.HtmlParserTester ©, Rating: 0% of 0, C1
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C1
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C3
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C3
122 URL url = new URL(getURLData());
123 setDomain(url.getHost());
124 setPort(url.getPort());
125 setProtocol(url.getProtocol());
126 setMethod(POST);
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C1
180 */
181 public MonitorModel createNewMonitorModel(URL url){
182 MonitorStats stat = new MonitorStats(Stats.DEAD,
183 0,
184 0,
Class: org.apache.jmeter.visualizers.MonitorAccumModel ©, Rating: 0% of 0, C2
141 Status st = of.parseBytes(sample.getResponseData());
142 if (st != null){
143 MonitorStats stat =
144 new MonitorStats(Stats.calculateStatus(st),
145 Stats.calculateLoad(st),
Class: org.apache.axis.tools.ant.axis.RunAxisFunctionalTestsTask ©, Rating: 100% of 1, C1
236 Socket sock = null;
237 try {
238 sock = new Socket(url.getHost(), url.getPort());
239 sock.getOutputStream().write(new String(str).getBytes());
240 // get a single byte response
Class: org.apache.jmeter.protocol.http.control.AuthManager ©, Rating: 0% of 0, C3
190 url.getPath());
191 }
192 else if (
193 (url.getPort() == 80
194 && url.getProtocol().equalsIgnoreCase("http"))
Class: org.apache.jmeter.protocol.http.control.AuthManager ©, Rating: 0% of 0, C3
Class: org.apache.jmeter.junit.protocol.http.parser.HtmlParserTester ©, Rating: 0% of 0, C1
297 context.setDomain(u.getHost());
298 context.setPath(u.getPath());
299 context.setPort(u.getPort());
300 context.setProtocol(u.getProtocol());
301 context.parseArguments(u.getQuery());
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C1
322 try {
323 URL url = new URL(getURL());
324 return( url.getPort() );
325 }
326 catch( Exception exp ) {
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C3
293
294 if ( host == null ) host = defaultURL.getHost();
295 if ( port == null ) port = "" + defaultURL.getPort();
296 if ( servlet == null ) servlet = defaultURL.getFile();
297 else
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C3
276 url = new URL( tmp );
277 host = url.getHost();
278 port = "" + url.getPort();
279 servlet = url.getFile();
280 protocol = url.getProtocol();