Home
last modified time | relevance | path

Searched refs:urls (Results 1 – 25 of 120) 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/tensorflow/tensorflow/
Dworkspace.bzl85 urls = [
100 urls = [
111 urls = [
122 urls = [
135 urls = [
146 urls = [
157 urls = [
170 urls = [
181 urls = [
191 urls = [
[all …]
/external/autotest/utils/
Dexternal_packages.py91 urls = () variable in ExternalPackage
542 for url in self.urls:
596 urls = (_CHROMEOS_MIRROR + 'setuptools-%s.tar.gz' % (version,),) variable in SetuptoolsPackage
650 urls = ('http://commondatastorage.googleapis.com/chromeos-mirror/gentoo/' variable in MySQLdbPackage
675 urls = (_CHROMEOS_MIRROR + local_filename,) variable in DjangoPackage
695 urls = (_CHROMEOS_MIRROR + local_filename,) variable in NumpyPackage
709 urls = (_CHROMEOS_MIRROR + local_filename,) variable in JsonRPCLib
726 urls = (_CHROMEOS_MIRROR + local_filename,) variable in GwtPackage
774 urls = (_CHROMEOS_MIRROR + local_filename,) variable in PyudevPackage
794 urls = (_CHROMEOS_MIRROR + url_filename,) variable in PyMoxPackage
[all …]
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
DMavenDependencyResolver.java54 URL[] urls = new URL[dependencies.length]; in getLocalArtifactUrls() local
55 for (int i = 0; i < urls.length; i++) { in getLocalArtifactUrls()
57 urls[i] = Util.url(artifacts.get(key(dependencies[i]))); in getLocalArtifactUrls()
62 return urls; in getLocalArtifactUrls()
67 URL[] urls = getLocalArtifactUrls(dependency); in getLocalArtifactUrl() local
68 if (urls.length > 0) { in getLocalArtifactUrl()
69 return urls[0]; in getLocalArtifactUrl()
/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/tensorflow/
DWORKSPACE7 urls = [
47 urls = [
57 urls = [
67 urls = [
77 urls = [
87 urls = [
/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/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/extension/
Dtest.js17 chrome.webRequest.onCompleted.addListener(capture_completed_status, {urls: ["<all_urls>"]}); property
40 active_idx = cycle.idx == 0 ? cycle.urls.length - 1 : cycle.idx - 1;
41 return cycle.urls[active_idx];
82 var url = cycle.urls[cycle.idx];
93 cycle.idx = (cycle.idx + 1) % cycle.urls.length;
141 } else if (task.type == 'cycle' && task.urls) {
149 'urls': task.urls, property
Durls.js44 urls: URLS, property
55 urls: [ property
72 urls: isMP3DecoderPresent() ? [BBC_AUDIO_URL, BBC_AUDIO_URL] : property
84 urls: [ property
/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: [' + \
Dcontrol.single_page39 # 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
61 ' urls: [' + \
Dcontrol.web_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: URLS, }]'
Dcontrol.docs_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: [' + \
/external/mesa3d/bin/
Dbugzilla_mesa.sh25 urls=$(git log $* | grep 'bugs.freedesktop.org/show_bug' | sed -e $trim_before | sort -n -u | sed -…
32 for i in $urls
40 for i in $urls
/external/autotest/frontend/afe/
Durls.py1 from django.conf import urls
13 urlpatterns += urls.patterns(
17 debug_patterns += urls.patterns(
/external/curl/docs/examples/
D10-at-a-time.c37 static const char *urls[] = { variable
89 #define CNT sizeof(urls)/sizeof(char *) /* total number of transfers to do */
105 curl_easy_setopt(eh, CURLOPT_URL, urls[i]); in init()
106 curl_easy_setopt(eh, CURLOPT_PRIVATE, urls[i]); in init()
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()
Dsmooth-gtk-thread.c49 const char * const urls[]= { variable
82 urls[j]); in pull_one_url()
89 outfile = fopen(urls[j], "wb"); in pull_one_url()
145 fprintf(stderr, "Thread %d, gets %s\n", i, urls[i]); in create_thread()
/external/jline/src/src/main/java/jline/
DClassNameCompletor.java38 Set urls = new HashSet(); in getClassNames() local
47 urls.addAll(Arrays.asList(((URLClassLoader) loader).getURLs())); in getClassNames()
65 urls.add(((JarURLConnection) uc).getJarFileURL()); in getClassNames()
72 for (Iterator i = urls.iterator(); i.hasNext();) { in getClassNames()
/external/python/cpython3/Lib/test/
Dtest_urllib2net.py99 urls = [
104 self._test_urls(urls, self._extra_handlers())
112 urls = [
117 self._test_urls(urls, self._extra_handlers(), retry=True)
200 def _test_urls(self, urls, handlers, retry=True): argument
209 for url in urls:

12345