Home
last modified time | relevance | path

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

/tools/external_updater/
Dtest_github_archive_updater.py27 urls = [
37 url = github_archive_updater.choose_best_url(urls, previous_url)
42 url = github_archive_updater.choose_best_url(urls, previous_url)
Dgithub_archive_updater.py45 def choose_best_url(urls: List[str], previous_url: str) -> str:
60 return min(urls,
131 self._new_identifier.version, urls = (self._fetch_latest_release()
135 urls.append(f'https://github.com/{self.owner}/{self.repo}/archive/'
137 urls.append(f'https://github.com/{self.owner}/{self.repo}/archive/'
140 self._new_identifier.value = choose_best_url(urls, self._old_identifier.value)
DREADME.md69 The most important part in the file is a list of urls.
70 `external_updater` will go through all urls and uses the first
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DSubprocessConfigBuilder.java93 final List<URL> urls = new ArrayList<>(); in build() local
102 urls.add(file.toURI().toURL()); in build()
105 urls.add(new File(path).toURI().toURL()); in build()
112 try (URLClassLoader loader = new URLClassLoader(urls.toArray(new URL[urls.size()]), null)) { in build()
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/
Dtwilio_client.py43 self.urls = None
60 self.urls = cfg[URLS_KEY]
/tools/tradefederation/core/lite/com/android/tradefed/lite/
DHostUtils.java85 URL[] urls = {new URL(String.format("jar:file:%s!/", file.getAbsolutePath()))}; in getJUnitClasses() local
86 URLClassLoader cl = URLClassLoader.newInstance(urls); in getJUnitClasses()
/tools/netsim/ui/
Drollup.config.mjs16 // Add Import maps from libraries to CDN urls
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DHostTest.java988 URL[] urls = {f.toURI().toURL()}; in getClasses() local
989 cl = URLClassLoader.newInstance(urls); in getClasses()
1019 URL[] urls = {file.toURI().toURL()}; in getClasses() local
1020 cl = URLClassLoader.newInstance(urls); in getClasses()