Searched refs:urls (Results 1 – 8 of 8) sorted by relevance
47 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)
26 urls = [36 url = github_archive_updater.choose_best_url(urls, previous_url)41 url = github_archive_updater.choose_best_url(urls, previous_url)
35 The most important part in the file is a list of urls.36 `external_updater` will go through all urls and uses the first
93 final List<URL> urls = new ArrayList<>(); in build() local102 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()
74 URL[] urls = new URL[dependentJars.size() + 1]; in buildJarClassLoader() local75 urls[0] = jarFile.toURI().toURL(); in buildJarClassLoader()78 urls[i] = jarIter.next().toURI().toURL(); in buildJarClassLoader()80 return new URLClassLoader(urls); in buildJarClassLoader()
929 URL[] urls = {f.toURI().toURL()}; in getClasses() local930 cl = URLClassLoader.newInstance(urls); in getClasses()960 URL[] urls = {file.toURI().toURL()}; in getClasses() local961 cl = URLClassLoader.newInstance(urls); in getClasses()
43 self.urls = None60 self.urls = cfg[URLS_KEY]
85 URL[] urls = {new URL(String.format("jar:file:%s!/", file.getAbsolutePath()))}; in getJUnitClasses() local86 URLClassLoader cl = URLClassLoader.newInstance(urls); in getJUnitClasses()