Search Results
OK to copy?
Examples 1 through 10 of
19 (0.009000000000000001 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: 0% of 0, 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
121 {
122 URL url = new URL(getURLData());
123 setDomain(url.getHost());
124 setPort(url.getPort());
125 setProtocol(url.getProtocol());
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: 0% of 0, 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
196 && url.getProtocol().equalsIgnoreCase("https")))
197 {
198 url2= new URL(url.getProtocol(), url.getHost(), url.getPath());
199 }
200 }
Class: org.apache.jmeter.protocol.http.control.AuthManager ©, Rating: 0% of 0, C3
183 int port= url.getProtocol().equalsIgnoreCase("http") ? 80 : 443;
184 // only http and https are supported
185 url2=
186 new URL(
187 url.getProtocol(),
Class: org.apache.jmeter.junit.protocol.http.parser.HtmlParserTester ©, Rating: 0% of 0, C1
295 URL u = new URL(url);
296 HTTPSampler context = new HTTPSampler();
297 context.setDomain(u.getHost());
298 context.setPath(u.getPath());
299 context.setPort(u.getPort());
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C1
312 try {
313 URL url = new URL(getURL());
314 return( url.getHost() );
315 }
316 catch( Exception exp ) {
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C3
292 tmp = isValueSet( 's' ); if ( servlet == null ) servlet = tmp ;
293
294 if ( host == null ) host = defaultURL.getHost();
295 if ( port == null ) port = "" + defaultURL.getPort();
296 if ( servlet == null ) servlet = defaultURL.getFile();
Class: org.apache.axis.utils.Options ©, Rating: 0% of 0, C3
275 if ( (tmp = isValueSet( 'l' )) != null ) {
276 url = new URL( tmp );
277 host = url.getHost();
278 port = "" + url.getPort();
279 servlet = url.getFile();