/external/tensorflow/tensorflow/java/ |
generate_pom.cc | 33 <url>https://www.tensorflow.org</url> 39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 45 <url>https://github.com/tensorflow/tensorflow.git</url>
|
/frameworks/av/media/libstagefright/httplive/ |
HTTPDownloader.h | 54 const char *url, 59 String8 *actualUrl, /* returns actual URL */ 65 const char *url, 71 const char *url, uint8_t *curPlaylistHash, bool *unchanged);
|
/external/python/cpython2/Lib/ |
urllib.py | 1 """Open an arbitrary URL. 12 - RFC1808: the "relative URL" spec. (authoritative status) 13 - RFC1738 - the "URL standard". (authoritative status) 54 """OS-specific conversion from a relative URL of the 'file' scheme 59 """OS-specific conversion from a file system path to a relative URL 72 def urlopen(url, data=None, proxies=None, context=None): 73 """Create a file-like object for the specified URL to read from.""" 87 return opener.open(url) 89 return opener.open(url, data) 90 def urlretrieve(url, filename=None, reporthook=None, data=None, context=None) [all...] |
/build/make/tools/droiddoc/templates-pdk/assets/ |
android-developer-resource-browser.css | 16 background-image: url(images/resource-article.png); 20 background-image: url(images/resource-sample.png); 24 background-image: url(images/resource-tutorial.png);
|
/external/python/apitools/apitools/base/py/ |
exceptions.py | 54 def __init__(self, response, content, url, 59 self.url = url 68 self.url, self.response, content) 146 def __init__(self, response, content, url, retry_after): 147 super(RetryAfterError, self).__init__(response, content, url)
|
/external/tensorflow/tensorflow/lite/tools/make/ |
download_dependencies.sh | 58 local usage="Usage: download_and_extract URL DIR" 59 local url="${1:?${usage}}" 61 echo "downloading ${url}" >&2 63 if [[ "${url}" == *gz ]]; then 64 curl -Ls "${url}" | tar -C "${dir}" --strip-components=1 -xz 65 elif [[ "${url}" == *zip ]]; then 69 curl -L ${url} > ${tempdir}/zipped.zip
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
UrlImageBinder.java | 25 * This CursorBinder binds the provided image URL to an ImageView by downloading the image from the 40 final String url = mTransformation.transform(cursor, columnIndex); local 41 imageDownloader.download(url, (ImageView) view);
|
UrlIntentListener.java | 27 * A listener which expects a URL as a tag of the view it is associated with. It then opens the URL 33 final String url = view.getTag().toString(); local 34 final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
robotparser.py | 24 def __init__(self, url=''):
29 self.set_url(url)
49 def set_url(self, url):
50 """Sets the URL referring to a robots.txt file."""
51 self.url = url
52 self.host, self.path = urlparse.urlparse(url)[1:3]
55 """Reads the robots.txt URL and feeds it to the parser."""
57 f = opener.open(self.url)
128 def can_fetch(self, useragent, url): [all...] |
/external/autotest/client/common_lib/cros/ |
power_load_util.py | 16 def _get_content(url): 17 """Reads the content of the file at the given |URL|. 20 url: URL to be fetched. 26 file_utils.download_file(url, named_file.name)
|
/external/autotest/client/site_tests/policy_URLBlacklist/ |
policy_URLBlacklist.py | 60 'page: %s\n %r' % (tab.url, err)) 67 def _is_url_blocked(self, url): 69 Return True if the URL is blocked else returns False. 71 @param url: The URL to be checked whether it is blocked. 75 tab = self.navigate_to_url(url) 106 @raises: TestFail if url is blocked/not blocked based on the 110 for url in self.ALL_URLS_LIST: 111 url_is_blocked = self._is_url_blocked(url) 114 url in policy_value [all...] |
/external/catch2/ |
conanfile.py | 9 url = "https://github.com/catchorg/Catch2" variable in class:CatchConan 10 homepage = url
|
/external/chromium-libpac/test/js-unittest/ |
b_132073833.js | 1 function FindProxyForURL(url, host){
|
binding_from_global.js | 6 function FindProxyForURL(url, host) {
|
side_effects.js | 7 function FindProxyForURL(url, host) {
|
/external/conscrypt/common/src/main/java/org/conscrypt/ct/ |
CTLogInfo.java | 30 * This object stores information about a CT log, its public key, description and URL. 38 private final String url; field in class:CTLogInfo 40 public CTLogInfo(PublicKey publicKey, String description, String url) { 51 this.url = url; 70 return url; 86 this.url.equals(that.url); 94 hash = hash * 31 + url.hashCode();
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/ |
CTLogInfo.java | 31 * This object stores information about a CT log, its public key, description and URL. 40 private final String url; field in class:CTLogInfo 42 public CTLogInfo(PublicKey publicKey, String description, String url) { 53 this.url = url; 72 return url; 88 this.url.equals(that.url); 96 hash = hash * 31 + url.hashCode();
|
/external/curl/docs/examples/ |
threaded-shared-conn.c | 27 * downloads the same fixed URL a URL_ITERATIONS number of times. The received 41 URL to fetch. If you select HTTPS, you need to use a TLS backend with mutex 44 #define URL "http://localhost/4KB" 49 /* how many times each URL is transferred per thread */ 92 const char *url; member in struct:initurl 104 curl_easy_setopt(curl, CURLOPT_URL, u->url); 122 struct initurl url[NUM_THREADS]; local 135 url[i].url = URL; [all...] |
/external/curl/tests/libtest/ |
lib1541.c | 78 const char *url; member in struct:initurl 91 curl_easy_setopt(curl, CURLOPT_URL, u->url); 103 int test(char *URL) 109 struct initurl url[NUM_THREADS]; local 122 url[i].url = URL; 123 url[i].share = share; 124 url[i].threadno = i; 125 error = pthread_create(&tid[i], NULL, run_thread, &url[i]) [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/data/ |
HttpUrlFetcher.java | 12 import java.net.URL; 15 * A DataFetcher that retrieves an {@link java.io.InputStream} for a Url. 43 private InputStream loadDataWithRedirects(URL url, int redirects, URL lastUrl) throws IOException { 50 if (lastUrl != null && url.toURI().equals(lastUrl.toURI())) { 57 urlConnection = connectionFactory.build(url); 75 throw new IOException("Received empty or null redirect url"); 77 URL redirectUrl = new URL(url, redirectUrlString) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
URLHandler.java | 22 import java.net.URL; 49 Class<?>[] params = { URL.class }; 105 public static URLHandler get(URL url) { 106 if (url == null) { 110 String protocol = url.getProtocol(); 117 URLHandler handler = (URLHandler)m.invoke(null, new Object[] { url }); 135 return getDefault(url); 138 protected static URLHandler getDefault(URL url) { [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
URLHandler.java | 21 import java.net.URL; 45 Class<?>[] params = { URL.class }; 101 public static URLHandler get(URL url) { 102 if (url == null) { 106 String protocol = url.getProtocol(); 113 URLHandler handler = (URLHandler)m.invoke(null, new Object[] { url }); 131 return getDefault(url); 134 protected static URLHandler getDefault(URL url) { [all...] |
/external/jacoco/.travis/ |
trigger-site-deployment.py | 5 def request(url, data, token = None): 6 req = urllib2.Request(url, data)
|
/external/libbrillo/brillo/http/ |
http_proxy.h | 27 // the last element always being the direct option. The target URL should be 28 // passed in for the |url| parameter. The proxy servers are set in 36 const std::string& url, 42 const std::string& url,
|
/external/oauth/core/src/main/java/net/oauth/http/ |
HttpResponseMessage.java | 20 import java.net.URL; 31 protected HttpResponseMessage(String method, URL url) { 32 super(method, url);
|