Home
last modified time | relevance | path

Searched refs:urls (Results 1 – 25 of 108) sorted by relevance

12345

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DURLClassLoaderTest.java75 public URLClassLoaderExt(URL[] urls) { in URLClassLoaderExt() argument
76 super(urls); in URLClassLoaderExt()
122 URL[] urls = new URL[2]; in test_findResourcesLjava_lang_String() local
123 urls[0] = new URL(serverURL); in test_findResourcesLjava_lang_String()
124 urls[1] = new URL(serverURL + "/subdir1/"); in test_findResourcesLjava_lang_String()
125 ucl = new URLClassLoader(urls); in test_findResourcesLjava_lang_String()
152 URL[] urls = new URL[4]; in test_getURLs() local
153 urls[0] = new URL("http://" + Support_Configuration.HomeAddress); in test_getURLs()
154 urls[1] = new URL("http://" + Support_Configuration.TestResources + "/"); in test_getURLs()
155 urls[2] = new URL("ftp://" + Support_Configuration.TestResources + "/"); in test_getURLs()
[all …]
/external/autotest/frontend/
Durls.py2 from django.conf import urls
15 urlpatterns = urls.patterns(
17 (RE_PREFIX + r'admin/', urls.include(admin.site.urls)),
18 (RE_PREFIX, urls.include('frontend.afe.urls')),
19 (TKO_RE_PREFIX, urls.include('frontend.tko.urls')),
24 urlpatterns += urls.patterns(
25 '', (TKO_RE_PREFIX, urls.include('frontend.tko.site_urls')))
27 debug_patterns = urls.patterns(
Durls_common.py2 from django.conf import urls
16 pattern_list = urls.patterns(
22 debug_pattern_list = urls.patterns('',
/external/autotest/server/
Dafe_urls_unittest.py29 urls = afe_urls.AfeUrls('http://localhost/afe/')
30 got = urls._geturl({'foo': 'bar', 'spam': 'eggs'})
35 urls = afe_urls.AfeUrls('http://localhost/afe/')
36 got = urls.get_host_url(42)
43 urls = afe_urls.AfeUrls('http://localhost/afe/')
44 self.assertEqual(urls.root_url, 'http://localhost/afe/')
54 urls = afe_urls.AfeUrls.from_hostname('sharanohiar')
55 self.assertEqual(urls.root_url, 'http://sharanohiar/afe/')
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DSandboxClassLoader.java26 private final ClassLoader urls; field in SandboxClassLoader
36 ClassLoader systemClassLoader, InstrumentationConfiguration config, URL... urls) { in SandboxClassLoader() argument
41 this.urls = new URLClassLoader(urls, null); in SandboxClassLoader()
42 for (URL url : urls) { in SandboxClassLoader()
66 ImmutableList.Builder<URL> urls = ImmutableList.builder(); in parseJavaClassPath() local
70 urls.add(new File(entry).toURI().toURL()); in parseJavaClassPath()
72 urls.add(new URL("file", null, new File(entry).getAbsolutePath())); in parseJavaClassPath()
78 return urls.build().toArray(new URL[0]); in parseJavaClassPath()
90 return urls.getResource(name); in getResource()
96 return urls.getResource(name); in getResource()
[all …]
/external/tensorflow/tensorflow/
Dworkspace.bzl87 urls = [
97 urls = [
107 urls = [
127 urls = [
138 urls = [
150 urls = [
161 urls = [
174 urls = [
185 urls = [
199 urls = [
[all …]
/external/tensorflow/
DWORKSPACE9 urls = [
48 urls = ["https://github.com/bazelbuild/rules_apple/archive/0.14.0.tar.gz"],
53 urls = ["https://github.com/google/xctestrunner/releases/download/0.2.6/ios_test_runner.par"],
60 urls = ["https://github.com/bazelbuild/bazel-skylib/archive/0.7.0.tar.gz"],
67 urls = ["https://github.com/bazelbuild/apple_support/archive/0.5.0.tar.gz"],
74 urls = ["https://github.com/bazelbuild/rules_swift/archive/0.7.0.tar.gz"],
81 urls = ["https://github.com/apple/swift-protobuf/archive/1.2.0.zip"],
110 urls = [
120 urls = [
130 urls = [
[all …]
/external/autotest/utils/
Dexternal_packages.py91 urls = () variable in ExternalPackage
553 for url in self.urls:
607 urls = (_CHROMEOS_MIRROR + 'setuptools-%s.tar.gz' % (version,),) variable in SetuptoolsPackage
661 urls = ('http://commondatastorage.googleapis.com/chromeos-mirror/gentoo/' variable in MySQLdbPackage
686 urls = (_CHROMEOS_MIRROR + local_filename,) variable in DjangoPackage
706 urls = (_CHROMEOS_MIRROR + local_filename,) variable in NumpyPackage
720 urls = (_CHROMEOS_MIRROR + local_filename,) variable in JsonRPCLib
737 urls = (_CHROMEOS_MIRROR + local_filename,) variable in GwtPackage
785 urls = (_CHROMEOS_MIRROR + local_filename,) variable in PyudevPackage
805 urls = (_CHROMEOS_MIRROR + url_filename,) variable in PyMoxPackage
[all …]
/external/webrtc/webrtc/api/objctests/
DRTCIceServerTest.mm33 EXPECT_EQ((size_t)1, iceStruct.urls.size());
34 EXPECT_EQ("stun:stun1.example.net", iceStruct.urls.front());
44 EXPECT_EQ((size_t)2, iceStruct.urls.size());
45 EXPECT_EQ("turn1:turn1.example.net", iceStruct.urls.front());
46 EXPECT_EQ("turn2:turn2.example.net", iceStruct.urls.back());
57 EXPECT_EQ((size_t)1, iceStruct.urls.size());
58 EXPECT_EQ("turn1:turn1.example.net", iceStruct.urls.front());
/external/webrtc/webrtc/tools/loopback_test/
Dadapter.js96 createIceServers = function(urls, username, password) { argument
99 for (i = 0; i < urls.length; i++) {
100 var iceServer = createIceServer(urls[i],
159 createIceServers = function(urls, username, password) {
163 iceServers = {'urls': urls, property
167 for (i = 0; i < urls.length; i++) {
168 var iceServer = createIceServer(urls[i],
/external/python/oauth2client/oauth2client/contrib/django_util/
Dsite.py17 from django.conf import urls
22 urls.url(r'oauth2callback/', views.oauth2_callback, name="callback"),
23 urls.url(r'oauth2authorize/', views.oauth2_authorize, name="authorize")
26 urls = (urlpatterns, "google_oauth", "google_oauth") variable
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
DMavenDependencyResolver.java76 URL[] urls = new URL[dependencies.length]; in getLocalArtifactUrls() local
77 for (int i = 0; i < urls.length; i++) { in getLocalArtifactUrls()
79 urls[i] = Util.url(artifacts.get(key(dependencies[i]))); in getLocalArtifactUrls()
84 return urls; in getLocalArtifactUrls()
104 URL[] urls = getLocalArtifactUrls(dependency); in getLocalArtifactUrl() local
105 if (urls.length > 0) { in getLocalArtifactUrl()
106 return urls[0]; in getLocalArtifactUrl()
/external/syzkaller/vendor/google.golang.org/api/compute/v0.beta/
Dcompute-gen.go17942 urls := googleapi.ResolveRelative(c.s.BasePath, "{project}/aggregated/acceleratorTypes")
17943 urls += "?" + c.urlParams_.Encode()
17944 req, _ := http.NewRequest("GET", urls, body)
18131urls := googleapi.ResolveRelative(c.s.BasePath, "{project}/zones/{zone}/acceleratorTypes/{accelera…
18132 urls += "?" + c.urlParams_.Encode()
18133 req, _ := http.NewRequest("GET", urls, body)
18359 urls := googleapi.ResolveRelative(c.s.BasePath, "{project}/zones/{zone}/acceleratorTypes")
18360 urls += "?" + c.urlParams_.Encode()
18361 req, _ := http.NewRequest("GET", urls, body)
18620 urls := googleapi.ResolveRelative(c.s.BasePath, "{project}/aggregated/addresses")
[all …]
/external/syzkaller/vendor/google.golang.org/api/storage/v1/
Dstorage-gen.go1879 urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl/{entity}")
1880 urls += "?" + c.urlParams_.Encode()
1881 req, _ := http.NewRequest("DELETE", urls, body)
2012 urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl/{entity}")
2013 urls += "?" + c.urlParams_.Encode()
2014 req, _ := http.NewRequest("GET", urls, body)
2163 urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl")
2164 urls += "?" + c.urlParams_.Encode()
2165 req, _ := http.NewRequest("POST", urls, body)
2316 urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl")
[all …]
/external/python/futures/
Dcrawl.py32 def download_urls_sequential(urls, timeout=60): argument
34 for url in urls:
41 def download_urls_with_executor(urls, executor, timeout=60): argument
45 for url in urls)
/external/python/httplib2/python2/
Dssl_protocol_test.py36 urls = [
41 for url in urls:
47 urls = [
52 for url in urls:
/external/brotli/java/
DWORKSPACE18urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/share/javavm/export/j…
25urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/solaris/javavm/export…
32urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/macosx/javavm/export/…
39urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/windows/javavm/export…
/external/curl/docs/examples/
D10-at-a-time.c35 static const char *urls[] = { variable
86 #define NUM_URLS sizeof(urls)/sizeof(char *)
100 curl_easy_setopt(eh, CURLOPT_URL, urls[i]); in add_transfer()
101 curl_easy_setopt(eh, CURLOPT_PRIVATE, urls[i]); in add_transfer()
Dmultithread.c42 const char * const urls[NUMT]= { variable
81 (void *)urls[i]); in main()
85 fprintf(stderr, "Thread %d, gets %s\n", i, urls[i]); in main()
/external/autotest/frontend/afe/
Durls.py1 from django.conf import urls
13 urlpatterns += urls.patterns(
17 debug_patterns += urls.patterns(
/external/mockito/src/test/java/org/mockitoutil/
DClassLoaders.java190 public IsolatedURLClassLoaderBuilder withCodeSourceUrls(String... urls) { in withCodeSourceUrls() argument
191 codeSourceUrls.addAll(pathsToURLs(urls)); in withCodeSourceUrls()
227 URL[] urls, in LocalIsolatedURLClassLoader() argument
230 super(urls, classLoader); in LocalIsolatedURLClassLoader()
276 public ExcludingURLClassLoaderBuilder withCodeSourceUrls(String... urls) { in withCodeSourceUrls() argument
277 codeSourceUrls.addAll(pathsToURLs(urls)); in withCodeSourceUrls()
306 URL[] urls, in LocalExcludingURLClassLoader() argument
308 super(urls, classLoader); in LocalExcludingURLClassLoader()
437 ArrayList<URL> urls = new ArrayList<URL>(codeSourceUrls.size()); in pathsToURLs() local
440 urls.add(url); in pathsToURLs()
[all …]
/external/autotest/client/site_tests/power_LoadTest/
Dcontrol.email_1hour39 # the window. Cycle will cycle through the urls for the duration of the window
47 # tabs: list of urls for the window type
48 # urls: list of urls to cycle through for the cycle type
70 ' urls: [' + \
81 ' urls: [' + \
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
DSandboxFactory.java38 URL[] urls = dependencyResolver.getLocalArtifactUrls(sdkConfig.getAndroidSdkDependency()); in getSdkEnvironment() local
40 ClassLoader robolectricClassLoader = createClassLoader(instrumentationConfig, urls); in getSdkEnvironment()
54 …ic ClassLoader createClassLoader(InstrumentationConfiguration instrumentationConfig, URL... urls) { in createClassLoader() argument
55 return new SandboxClassLoader(ClassLoader.getSystemClassLoader(), instrumentationConfig, urls); in createClassLoader()
/external/python/cpython2/Doc/tools/static/
Dswitchers.js55 function navigate_to_first_existing(urls) { argument
57 var url = urls.shift();
58 if (urls.length == 0) {
68 navigate_to_first_existing(urls);
/external/autotest/client/site_tests/power_LoadTest/extension/
Durls.js44 urls: URLS, property
55 urls: [ property
72 urls: isMP3DecoderPresent() ? [BBC_AUDIO_URL, BBC_AUDIO_URL] : property
84 urls: [ property

12345