HomeSort by relevance Sort by last modified time
    Searched refs:HTTPS (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /test/vts/web/dashboard/src/main/java/com/android/vts/util/
UrlUtil.java 23 private static final String HTTPS = "https";
50 * <p>Ensures that the protocol is HTTPs and the URL is properly formatted. This avoids link
66 if (!url.getProtocol().equals(HTTPS))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_wsgiref.py 272 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on")
273 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1")
274 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes")
275 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo")
276 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo")
277 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on")
282 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_wsgiref.py 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on")
232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1")
233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes")
234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo")
235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo")
236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on")
240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http"
    [all...]
test_httplib.py 497 # XXX Here should be tests for HTTPS, there isn't any right now!
505 @unittest.skipIf(not hasattr(httplib, 'HTTPS'), 'httplib.HTTPS not available')
519 http = httplib.HTTPS(hp)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_wsgiref.py 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on")
232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1")
233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes")
234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo")
235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo")
236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on")
240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http"
    [all...]
test_httplib.py 497 # XXX Here should be tests for HTTPS, there isn't any right now!
505 @unittest.skipIf(not hasattr(httplib, 'HTTPS'), 'httplib.HTTPS not available')
519 http = httplib.HTTPS(hp)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_wsgiref.py 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on")
232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1")
233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes")
234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo")
235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo")
236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on")
240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http"
    [all...]
test_httplib.py 497 # XXX Here should be tests for HTTPS, there isn't any right now!
505 @unittest.skipIf(not hasattr(httplib, 'HTTPS'), 'httplib.HTTPS not available')
519 http = httplib.HTTPS(hp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_wsgiref.py 231 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="on")
232 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="1")
233 self.checkCrossDefault('wsgi.url_scheme',"https",HTTPS="yes")
234 self.checkCrossDefault('wsgi.url_scheme',"http",HTTPS="foo")
235 self.checkCrossDefault('SERVER_PORT',"80",HTTPS="foo")
236 self.checkCrossDefault('SERVER_PORT',"443",HTTPS="on")
240 self.assertEqual(util.guess_scheme({'HTTPS':"foo"}), "http"
    [all...]
test_httplib.py 497 # XXX Here should be tests for HTTPS, there isn't any right now!
505 @unittest.skipIf(not hasattr(httplib, 'HTTPS'), 'httplib.HTTPS not available')
519 http = httplib.HTTPS(hp)
  /prebuilts/go/darwin-x86/src/net/http/
doc.go 8 Get, Head, Post, and PostForm make HTTP (or HTTPS) requests:
52 resp, err := client.Get("https://example.com")
82 HTTP/2 protocol when using HTTPS. Programs that must disable HTTP/2
95 support: https://golang.org/s/http2bug
  /prebuilts/go/linux-x86/src/net/http/
doc.go 8 Get, Head, Post, and PostForm make HTTP (or HTTPS) requests:
52 resp, err := client.Get("https://example.com")
82 HTTP/2 protocol when using HTTPS. Programs that must disable HTTP/2
95 support: https://golang.org/s/http2bug
  /prebuilts/go/darwin-x86/src/net/http/cgi/
child_test.go 77 "HTTPS": "1",
84 if g, e := req.URL.String(), "https://example.com/path?a=b"; e != g {
child.go 106 if s := params["HTTPS"]; s == "on" || s == "ON" || s == "1" {
116 rawurl = "https://" + rawurl
  /prebuilts/go/linux-x86/src/net/http/cgi/
child_test.go 77 "HTTPS": "1",
84 if g, e := req.URL.String(), "https://example.com/path?a=b"; e != g {
child.go 106 if s := params["HTTPS"]; s == "on" || s == "ON" || s == "1" {
116 rawurl = "https://" + rawurl
  /development/apps/Development/src/com/android/development/
Connectivity.java 536 onHttpRequest(HTTPS);
695 private final static int HTTPS = 2;
762 final URL httpsUrl = new URL("https", fixedHost, path);
776 case HTTPS:
  /prebuilts/go/darwin-x86/src/net/http/cookiejar/
jar.go 118 func (e *entry) shouldSend(https bool, host, path string) bool {
119 return e.domainMatch(host) && e.pathMatch(path) && (https || !e.Secure)
152 // It returns an empty slice if the URL's scheme is not HTTP or HTTPS.
159 if u.Scheme != "http" && u.Scheme != "https" {
176 https := u.Scheme == "https"
190 if !e.shouldSend(https, host, path) {
227 // It does nothing if the URL's scheme is not HTTP or HTTPS.
237 if u.Scheme != "http" && u.Scheme != "https" {
  /prebuilts/go/linux-x86/src/net/http/cookiejar/
jar.go 118 func (e *entry) shouldSend(https bool, host, path string) bool {
119 return e.domainMatch(host) && e.pathMatch(path) && (https || !e.Secure)
152 // It returns an empty slice if the URL's scheme is not HTTP or HTTPS.
159 if u.Scheme != "http" && u.Scheme != "https" {
176 https := u.Scheme == "https"
190 if !e.shouldSend(https, host, path) {
227 // It does nothing if the URL's scheme is not HTTP or HTTPS.
237 if u.Scheme != "http" && u.Scheme != "https" {
  /external/nanohttpd/
README.md 7 * Build status: [![Build Status](https://api.travis-ci.org/NanoHttpd/nanohttpd.png)](https://travis-ci.org/NanoHttpd/nanohttpd)
8 * Coverage Status: [![Coverage Status](https://coveralls.io/repos/NanoHttpd/nanohttpd/badge.svg)](https://coveralls.io/r/NanoHttpd/nanohttpd)
9 * Current central released version: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd)
84 This text has to be extrended with an example, so for now take a look at the unit tests for the usage. <https://github.com/NanoHttpd/nanohttpd/blob/master/nanolets/src/test/java/fi/iki/elonen/router/AppNanolets.java>
110 * Support for HTTPS (SSL)
133 * Simple [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing) support via `--cors` paramater
181 For a specialized HTTP (HTTPS) service you can use the module with artifactId *nanohttpd*
    [all...]
  /external/nanohttpd/src/site/markdown/
index.md 7 * Build status: [![Build Status](https://api.travis-ci.org/NanoHttpd/nanohttpd.png)](https://travis-ci.org/NanoHttpd/nanohttpd)
8 * Coverage Status: [![Coverage Status](https://coveralls.io/repos/NanoHttpd/nanohttpd/badge.svg)](https://coveralls.io/r/NanoHttpd/nanohttpd)
9 * Current central released version: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.nanohttpd/nanohttpd)
84 This text has to be extrended with an example, so for now take a look at the unit tests for the usage. <https://github.com/NanoHttpd/nanohttpd/blob/master/nanolets/src/test/java/fi/iki/elonen/router/AppNanolets.java>
110 * Support for HTTPS (SSL)
133 * Simple [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing) support via `--cors` paramater
177 For a specialized HTTP (HTTPS) service you can use the module with artifactId *nanohttpd*
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httptrace/
trace.go 78 // See https://blog.golang.org/http-tracing for more.
129 // connecting to a HTTPS site via a HTTP proxy, the handshake happens after
  /prebuilts/go/linux-x86/src/net/http/httptrace/
trace.go 78 // See https://blog.golang.org/http-tracing for more.
129 // connecting to a HTTPS site via a HTTP proxy, the handshake happens after
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
httplib.py     [all...]
xmlrpclib.py 121 SafeTransport Handles an HTTPS transaction to an XML-RPC server
    [all...]

Completed in 685 milliseconds

1 2 3 4