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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/frontend/
urls.py 2 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'))
    [all...]
urls_common.py 2 from django.conf import urls
16 pattern_list = urls.patterns(
22 debug_pattern_list = urls.patterns('',
  /external/autotest/frontend/afe/
urls.py 1 from django.conf import urls
13 urlpatterns += urls.patterns(
17 debug_patterns += urls.patterns(
  /external/autotest/frontend/tko/
urls.py 1 from django.conf import urls
8 urlpatterns += urls.patterns(
  /external/autotest/server/
afe_urls_unittest.py 18 """Assert two URLs are equal.
29 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/mesa3d/bin/
bugzilla_mesa.sh 24 # extract fdo urls from commit log
25 urls=$(git log $* | grep 'bugs.freedesktop.org/show_bug' | sed -e $trim_before | sort -n -u | sed -e $use_after)
27 # if DRYRUN is set to "yes", simply print the URLs and don't fetch the
32 for i in $urls
40 for i in $urls
  /external/webrtc/webrtc/api/objctests/
RTCIceServerTest.mm 33 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/curl/docs/examples/
multithread.c 34 List of URLs to fetch.
42 const char * const urls[NUMT]= { variable
81 (void *)urls[i]);
85 fprintf(stderr, "Thread %d, gets %s\n", i, urls[i]);
  /external/apache-harmony/support/src/test/resources/tests/resources/JarIndex/
hyts_13.jar 
hyts_33.jar 
hyts_23.jar 
  /libcore/support/src/test/java/tests/resources/JarIndex/
hyts_13.jar 
hyts_33.jar 
hyts_23.jar 
  /external/python/futures/
crawl.py 1 """Compare the speed of downloading URLs sequentially vs. using futures."""
16 URLS = ['http://www.google.com/',
32 def download_urls_sequential(urls, timeout=60):
34 for url in urls:
41 def download_urls_with_executor(urls, executor, timeout=60):
45 for url in urls)
58 functools.partial(download_urls_sequential, URLS)),
61 URLS,
65 URLS,
71 (time.time() - start, len(url_map), len(URLS)))
    [all...]
  /external/toolchain-utils/automation/server/monitor/
urls.py 7 from django.conf.urls.defaults import patterns
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
MavenDependencyResolver.java 28 * Get an array of local artifact URLs for the given dependencies. The order of the URLs is guaranteed to be the
29 * same as the input order of dependencies, i.e., urls[i] is the local artifact URL for dependencies[i].
54 URL[] urls = new URL[dependencies.length]; local
55 for (int i = 0; i < urls.length; i++) {
57 urls[i] = Util.url(artifacts.get(key(dependencies[i])));
62 return urls;
67 URL[] urls = getLocalArtifactUrls(dependency); local
68 if (urls.length > 0) {
69 return urls[0]
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderTest.java 75 public URLClassLoaderExt(URL[] urls) {
76 super(urls);
122 URL[] urls = new URL[2]; local
123 urls[0] = new URL(serverURL);
124 urls[1] = new URL(serverURL + "/subdir1/");
125 ucl = new URLClassLoader(urls);
152 URL[] urls = new URL[4]; local
153 urls[0] = new URL("http://" + Support_Configuration.HomeAddress);
154 urls[1] = new URL("http://" + Support_Configuration.TestResources + "/");
155 urls[2] = new URL("ftp://" + Support_Configuration.TestResources + "/")
171 URL[] urls = new URL[1]; local
236 URL[] urls = new URL[1]; local
352 URL[] urls = new URL[2]; local
472 URL[] urls = new URL[urlVec.size()]; local
515 URL[] urls = new URL[1]; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
SmsProviderTest.java 42 Uri[] urls = new Uri[10]; local
62 for (int i = 0; i < urls.length; i++) {
65 urls[i] = contentResolver.insert(Sms.Inbox.CONTENT_URI, map);
66 assertNotNull(urls[i]);
73 for (Uri url : urls) {
  /libcore/luni/src/test/java/libcore/java/net/
OldURLClassLoaderTest.java 53 URL [] urls = {new URL("http://foo.com/foo"), local
57 URLClassLoader ucl1 = new URLClassLoader(urls);
58 assertTrue(urls.length == ucl1.getURLs().length);
100 URL[] urls = new URL[2]; local
101 urls[0] = new URL("file://" + tmpDir.getAbsolutePath() + "/");
102 urls[1] = new URL("file://" + subDir.getAbsolutePath() + "/");
104 ucl = new URLClassLoader(urls);
120 URL [] urls = {new URL("http://foo.com/foo"), local
126 for(int i = 0; i < urls.length;) {
127 tucl.addURL(urls[i])
168 URL [] urls = {new URL("http:\/\/foo.com\/foo"), local
230 URL[] urls = { new URL("http:\/\/localhost:" + port + "\/") }; local
    [all...]
  /external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderImplTest.java 54 final URL[] urls = { base }; local
55 final URLClassLoader ucl = new URLClassLoader(urls, null, new TestFactory());
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StyleUtils.java 48 final URLSpan[] urls = input.getSpans(0, input.length(), URLSpan.class); local
50 for (URLSpan span : urls) {
  /system/extras/multinetwork/
quick_test.sh 43 urls=$(getUrls $host)
44 for url in $urls; do
  /external/webrtc/webrtc/tools/loopback_test/
adapter.js 33 if (pcConfig.iceServers[i].hasOwnProperty('urls')){
34 pcConfig.iceServers[i]['url'] = pcConfig.iceServers[i]['urls'];
35 delete pcConfig.iceServers[i]['urls'];
50 // .urls is not supported in FF yet.
96 createIceServers = function(urls, username, password) {
99 for (i = 0; i < urls.length; i++) {
100 var iceServer = createIceServer(urls[i],
158 // Creates iceServers from the urls for Chrome M34 and above.
159 createIceServers = function(urls, username, password) {
162 // .urls is supported since Chrome M34
163 iceServers = {'urls': urls, property in class:iceServers
    [all...]
  /frameworks/base/services/robotests/src/com/android/server/testing/
FrameworkRobolectricTestRunner.java 111 URL... urls) {
112 super(systemClassLoader, instrumentationConfig, urls);
141 Enumeration<URL> urls = getResources(resource); local
142 while (urls.hasMoreElements()) {
143 URL url = urls.nextElement();
178 InstrumentationConfiguration instrumentationConfig, URL... urls) {
183 urls);

Completed in 2134 milliseconds

1 2 3 4 5 6 7 8 91011>>