/external/autotest/client/site_tests/power_LoadTest/extension/ |
D | urls.js | 6 var URLS = new Array(); variable 44 urls: URLS, property 55 urls: [ property 72 urls: isMP3DecoderPresent() ? [BBC_AUDIO_URL, BBC_AUDIO_URL] : property 84 urls: [ property 103 // List of URLs to cycle through 105 URLS[u_index++] = 'https://www.google.com'; 106 URLS[u_index++] = 'https://www.yahoo.com'; 107 URLS[u_index++] = 'https://www.facebook.com'; 108 URLS[u_index++] = 'https://www.youtube.com'; [all …]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
D | URLClassLoaderTest.java | 75 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/ |
D | 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'))) 27 debug_patterns = urls.patterns(
|
/external/tensorflow/tensorflow/ |
D | workspace.bzl | 87 urls = [ 97 urls = [ 107 urls = [ 127 urls = [ 138 urls = [ 150 urls = [ 161 urls = [ 174 urls = [ 185 urls = [ 199 urls = [ [all …]
|
/external/python/futures/ |
D | crawl.py | 1 """Compare the speed of downloading URLs sequentially vs. using futures.""" 16 URLS = ['http://www.google.com/', variable 32 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) 58 functools.partial(download_urls_sequential, URLS)), 61 URLS, 65 URLS, 71 (time.time() - start, len(url_map), len(URLS)))
|
/external/webrtc/webrtc/tools/loopback_test/ |
D | 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) { argument 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. [all …]
|
/external/autotest/server/ |
D | 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/tensorflow/ |
D | WORKSPACE | 9 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/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | SandboxClassLoader.java | 26 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/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/ |
D | MavenDependencyResolver.java | 43 …* Get an array of local artifact URLs for the given dependencies. The order of the URLs is guarant… 44 …* same as the input order of dependencies, i.e., urls[i] is the local artifact URL for dependencie… 76 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/python/google-api-python-client/docs/dyn/ |
D | acceleratedmobilepageurl_v1.ampUrls.html | 90 { # AMP URL request for a batch of URLs. 92 "urls": [ # List of URLs to look up for the paired AMP URLs. 93 # The URLs are case-sensitive. Up to 50 URLs per lookup 109 # not be in the same order as URLs in the batch request. 110 # If BatchAmpUrlsRequest contains duplicate URLs, AmpUrl is generated 119 "urlErrors": [ # The errors for requested URLs that have no AMP URL.
|
/external/autotest/utils/ |
D | external_packages.py | 19 """Failed to fetch a package from any of its listed URLs.""" 50 Defines an external package with URLs to fetch its sources from and 61 @attribute urls - A tuple of URLs to try fetching the package from. 91 urls = () variable in ExternalPackage 522 Fetch the package from one its URLs and save it in dest_dir. 551 # Download the package from one of its urls, rejecting any if the 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 [all …]
|
/external/webrtc/webrtc/api/objctests/ |
D | 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/autotest/client/site_tests/power_LoadTest/ |
D | control.web_1hour | 39 # 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, }]'
|
D | control.email_1hour | 39 # 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: [' + \
|
D | control.single_page | 39 # 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: [' + \
|
D | control.docs_1hour | 39 # 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/owasp/sanitizer/src/main/org/owasp/html/ |
D | FilterUrlByProtocolAttributePolicy.java | 36 * An attribute policy for attributes whose values are URLs that requires that 40 * URLs with protocols must match the protocol set passed to the constructor. 41 * URLs without protocols but which specify an origin different from the 46 * Same-origin URLs, URLs without any protocol or authority part are always 51 * This class assumes that URLs are either hierarchical, or are opaque, but 72 // Check for domain relative URLs like //www.evil.org/ in apply() 120 // not dealing with URLs that haven't been copy/pasted into in normalizeUri()
|
/external/curl/docs/libcurl/ |
D | libcurl-security.3 | 117 user running the libcurl application, SCP: or SFTP: URLs could access password 130 \fICURLOPT_FOLLOWLOCATION(3)\fP and handling redirects itself, sanitizing URLs 144 All the malicious scenarios regarding redirected URLs apply just as well to 145 non-redirected URLs, if the user is allowed to specify an arbitrary URL that 206 .SH "Dangerous SCP URLs" 207 SCP URLs can contain raw commands within the scp: URL, which is a side effect 212 Applications must not allow unsanitized SCP: URLs to be passed in for 215 By default curl and libcurl support file:// URLs. Such a URL is always an 217 avoid that, keep control of what URLs to use and/or prevent curl/libcurl from 220 By default, libcurl prohibits redirects to file:// URLs. [all …]
|
/external/python/oauth2client/oauth2client/contrib/django_util/ |
D | site.py | 17 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/autotest/client/site_tests/policy_RestoreOnStartupURLs/ |
D | policy_RestoreOnStartupURLs.py | 15 specified startup URLs, and to None to when no URLs are specified. 44 When RestoreOnStartupURLs policy is set to one or more URLs, check 51 # Get list of open tab urls from browser; Convert unicode to text; 73 startup urls given. Otherwise, set to None.
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2net.py | 66 # # specification strings (that is, URLs or authorities specifying a 104 urls = [ 109 self._test_urls(urls, self._extra_handlers()) 117 urls = [ 121 self._test_urls(urls, self._extra_handlers(), retry=True) 139 ## urls = [ 153 ## self._test_urls(urls, self._extra_handlers()+[bauth, dauth]) 198 def _test_urls(self, urls, handlers, retry=True): argument 207 for url in urls:
|
/external/brotli/java/ |
D | WORKSPACE | 18 …urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/share/javavm/export/j… 25 …urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/solaris/javavm/export… 32 …urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/macosx/javavm/export/… 39 …urls = ["https://hg.openjdk.java.net/jdk8/jdk8/jdk/raw-file/687fd7c7986d/src/windows/javavm/export…
|
/external/autotest/client/site_tests/policy_CookiesBlockedForUrls/ |
D | policy_CookiesBlockedForUrls.py | 18 URLs shall be stored (i.e., shall be not blocked), except for the URL 24 url/host patterns. It also verifies that cookies are allowed for urls that 76 When the CookiesBlockedForUrls policy is set to one or more urls/hosts, 77 check that cookies are blocked for the urls/urlpatterns listed in 79 all URLs.
|
/external/autotest/client/site_tests/policy_CookiesAllowedForUrls/ |
D | policy_CookiesAllowedForUrls.py | 18 cookies for all URLs shall not be stored (ie, shall be blocked), except 24 url/host patterns. It also verifies that cookies are blocked for urls that 75 When the CookiesAllowedForUrls policy is set to one or more urls/hosts, 76 check that cookies are not blocked for the urls/urlpatterns listed in 78 all URLs.
|