Searched refs:url (Results 276 - 300 of 716) sorted by relevance

<<11121314151617181920>>

/openjdk10/jdk/test/java/io/OutputStreamWriter/
H A DEncode.java47 String url = "http://localhost:" + Integer.toString(ss.getLocalPort()) +
49 HttpURLConnection uc = (HttpURLConnection)new URL(url).openConnection();
/openjdk10/jdk/test/java/net/HttpCookie/
H A DIllegalCookieNameTest.java43 URL url = new URL(u);
44 HttpURLConnection c = (HttpURLConnection) url.openConnection();
/openjdk10/jdk/test/java/net/URLClassLoader/
H A DGetURLsTest.java50 public void addURL(URL url) { argument
51 super.addURL(url);
/openjdk10/jdk/test/java/net/URLConnection/
H A DSetIfModifiedSince.java84 URL url = new URL ("http://localhost:"+port+"/index.html");
85 URLConnection urlc = url.openConnection ();
H A DRedirect307Test.java108 URL url = new URL("http://localhost:" + port);
109 URLConnection conURL = url.openConnection();
H A DHttpContinueStackOverflow.java86 URL url = new URL("http", "localhost", s.getLocalPort(), "anything.html");
87 HttpURLConnection conn = (HttpURLConnection)url.openConnection();
H A DB5052093.java69 URL url = new URL("http://localhost:"+server.getLocalPort()+"/foo");
70 URLConnection conn = url.openConnection();
/openjdk10/jdk/test/java/net/ResponseCache/
H A DTest.java71 URL url = new URL ("http://localhost:" + server.getAddress().getPort() + "/");
72 URLConnection urlc = url.openConnection ();
/openjdk10/jdk/test/sun/net/www/protocol/http/
H A DStreamingOutputStream.java62 URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test/");
63 HttpURLConnection uc = (HttpURLConnection)url.openConnection();
H A DHttpInputStream.java109 URL url = new URL("http://localhost:" + server.getPort() + "/anything");
110 try (InputStream is = url.openConnection().getInputStream()) {
H A DNoCache.java46 URL url = new URL("http://" + InetAddress.getLocalHost().getHostAddress()
48 URLConnection uc = url.openConnection();
H A DProtocolRedirect.java41 URL url = new URL(page);
42 HttpURLConnection conn = (HttpURLConnection)url.openConnection();
H A DUserCookie.java61 URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test/");
62 HttpURLConnection uc = (HttpURLConnection)url.openConnection();
H A DUserAgent.java92 URL url = new URL ("http://127.0.0.1:"+port);
93 URLConnection urlc = url.openConnection ();
H A DCloseOptionHeader.java89 URL url = new URL("http://localhost:" + ss.getLocalPort());
90 HttpURLConnection huc = (HttpURLConnection)url.openConnection();
H A DB6296310.java68 URL url = new URL("http" , InetAddress.getLocalHost().getHostAddress(),
70 HttpURLConnection uc = (HttpURLConnection)url.openConnection();
H A DAsyncDisconnect.java62 URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/test/");
63 uc = (HttpURLConnection)url.openConnection();
/openjdk10/jdk/test/sun/net/ftp/
H A DB6427768.java113 URL url = new URL("ftp://user:passwd@localhost:" + port + "/foo.txt");
114 URLConnection con = url.openConnection();
/openjdk10/jdk/test/sun/net/www/http/HttpClient/
H A DStreamingRetry.java66 URL url = new URL("http://localhost:" + port + "/");
67 HttpURLConnection uc = (HttpURLConnection) url.openConnection();
H A DRequestURI.java62 URL url = new URL("http://boo.bar.com/foo.html#section5");
63 HttpURLConnection uc = (HttpURLConnection) url.openConnection();
H A DB7025238.java47 URL url = new URL("http://localhost:" + s.getPort() + "?q=test");
48 HttpURLConnection urlConnection = (HttpURLConnection)url.openConnection();
/openjdk10/jdk/test/sun/net/www/protocol/jar/jarbug/src/test/
H A DTestBug4523159.java53 URL url = new URL("jar:" + testFile.toURI().toURL() + "!/res1.txt");
54 JarURLConnection conn = (JarURLConnection) url.openConnection();
/openjdk10/jdk/test/jdk/internal/jrtfs/remote/
H A DMain.java71 URL url = Paths.get(javaHome, "lib", "jrt-fs.jar").toUri().toURL();
72 URLClassLoader loader = new URLClassLoader(new URL[] { url });
/openjdk10/jdk/test/sun/net/www/http/KeepAliveStream/
H A DKeepAliveStreamCloseWithWrongContentLength.java83 URL url = new URL ("http://localhost:"+port);
84 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
H A DKeepAliveStreamClose.java85 URL url = new URL ("http://localhost:"+port);
86 URLConnection urlc = url.openConnection ();

Completed in 152 milliseconds

<<11121314151617181920>>