Home
last modified time | relevance | path

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

/tools/external_updater/
Dgithub_archive_updater.py47 def choose_best_url(urls: List[str], previous_url: str) -> str:
62 return min(urls,
122 self._new_ver, urls = (self._fetch_latest_release()
126 urls.append('https://github.com/{}/{}/archive/{}.tar.gz'.format(
128 urls.append('https://github.com/{}/{}/archive/{}.zip'.format(
131 self._new_url.value = choose_best_url(urls, self._old_url.value)
Dexternal_updater_test.py26 urls = [
36 url = github_archive_updater.choose_best_url(urls, previous_url)
41 url = github_archive_updater.choose_best_url(urls, previous_url)
DREADME.md35 The most important part in the file is a list of urls.
36 `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/tradefederation/core/src/com/android/tradefed/util/
DTestLoader.java74 URL[] urls = new URL[dependentJars.size() + 1]; in buildJarClassLoader() local
75 urls[0] = jarFile.toURI().toURL(); in buildJarClassLoader()
78 urls[i] = jarIter.next().toURI().toURL(); in buildJarClassLoader()
80 return new URLClassLoader(urls); in buildJarClassLoader()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DHostTest.java929 URL[] urls = {f.toURI().toURL()}; in getClasses() local
930 cl = URLClassLoader.newInstance(urls); in getClasses()
960 URL[] urls = {file.toURI().toURL()}; in getClasses() local
961 cl = URLClassLoader.newInstance(urls); in getClasses()
/tools/test/connectivity/acts/framework/acts/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()