Search Results
OK to copy?
Examples 1 through 10 of
30 (0.043 seconds)
Class:
org.springframework.core.io.support.PathMatchingResourcePatternResolverTests
©,
Rating:
0% of 0,
C1
Class: org.apache.jmeter.protocol.http.sampler.SoapSampler ©, Rating: 0% of 0, C1
Class: org.springframework.util.ResourceUtils ©, Rating: 0% of 0, C1
Class: org.apache.axis.utils.URLHashSet ©, 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.jasper.servlet.JspCServletContext ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.http.control.AuthManager ©, 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
089 for (int i = 0; i < resources.length; i++) {
090 Resource resource = resources[i];
091 assertEquals(urlProtocol, resource.getURL().getProtocol());
092 assertFileNameIn(resource, fileNames);
093 }
Class: org.apache.jmeter.protocol.http.sampler.SoapSampler ©, Rating: 0% of 0, C1
123 setDomain(url.getHost());
124 setPort(url.getPort());
125 setProtocol(url.getProtocol());
126 setMethod(POST);
127 if (url.getQuery() != null && url.getQuery().compareTo("") != 0)
Class: org.springframework.util.ResourceUtils ©, Rating: 0% of 0, C1
169 */
170 public static File getFile(URL resourceUrl, String description) throws FileNotFoundException {
171 if (!URL_PROTOCOL_FILE.equals(resourceUrl.getProtocol())) {
172 throw new FileNotFoundException(
173 description + " cannot be resolved to absolute file path " +
Class: org.apache.axis.utils.URLHashSet ©, Rating: 0% of 0, C1
104 */
105 public static URL normalize(URL url) {
106 if (url.getProtocol().equals("file")) {
107 try {
108 File f = new File(cleanup(url.getFile()));
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.jasper.servlet.JspCServletContext ©, Rating: 0% of 0, C1
196 public String getRealPath(String path) {
197
198 if (!myResourceBaseURL.getProtocol().equals("file"))
199 return (null);
200 if (!path.startsWith("/"))
Class: org.apache.jmeter.protocol.http.control.AuthManager ©, Rating: 0% of 0, C1
342 private static boolean isSupportedProtocol(URL url)
343 {
344 return url.getProtocol().toUpperCase().equals("HTTP")
345 || url.getProtocol().toUpperCase().equals("HTTPS");
346 }
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
190 url.getPath());
191 }
192 else if (
193 (url.getPort() == 80
194 && url.getProtocol().equalsIgnoreCase("http"))