Home
last modified time | relevance | path

Searched refs:repository (Results 1 – 25 of 1802) sorted by relevance

12345678910>>...73

/external/deqp/scripts/khr_util/
Dregistry_cache.py36 def __init__(self, repository, filename, revision, checksum): argument
37 self.repository = repository
43 return hash((self.repository, self.filename, self.revision, self.checksum))
46 …return (self.repository, self.filename, self.revision, self.checksum) == (other.repository, other.…
61 return self.repository
74 def makeSourceUrl (repository, revision, filename): argument
75 return "%s/%s/%s" % (repository, revision, filename)
77 def checkoutGit (repository, revision, fullDstPath): argument
79 execute(["git", "clone", "--no-checkout", repository, fullDstPath])
83 execute(["git", "fetch", repository, "+refs/heads/*:refs/remotes/origin/*"])
[all …]
/external/python/cpython2/Demo/pdist/
Dcvslock.py112 def __init__(self, repository = ".", delay = DELAY): argument
113 self.repository = repository
142 self.repository, msg))
167 sleep(st, self.repository, self.delay)
170 return os.path.join(self.repository, name)
173 def sleep(st, repository, delay): argument
183 print "Waiting for %s's lock in" % user, repository
189 def __init__(self, repository, delay = DELAY): argument
190 Lock.__init__(self, repository, delay)
206 def __init__(self, repository, delay = DELAY): argument
[all …]
/external/python/cpython3/Lib/distutils/
Dconfig.py26 repository = None variable in PyPIRCCommand
53 repository = self.repository or self.DEFAULT_REPOSITORY
90 repository in (self.DEFAULT_REPOSITORY, 'pypi')):
94 if (current['server'] == repository or
95 current['repository'] == repository):
101 repository = config.get(server, 'repository')
103 repository = self.DEFAULT_REPOSITORY
106 'repository': repository,
121 self.repository = None
127 if self.repository is None:
[all …]
/external/python/cpython2/Lib/distutils/
Dconfig.py26 repository = None variable in PyPIRCCommand
56 repository = self.repository or self.DEFAULT_REPOSITORY
87 if (current['server'] == repository or
88 current['repository'] == repository):
94 repository = config.get(server, 'repository')
96 repository = self.DEFAULT_REPOSITORY
99 'repository': repository,
107 self.repository = None
113 if self.repository is None:
114 self.repository = self.DEFAULT_REPOSITORY
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DRepository.java38 private static org.apache.bcel.util.Repository repository = SyntheticRepository.getInstance(); field in Repository
44 return repository; in getRepository()
51 repository = rep; in setRepository()
63 return repository.loadClass(class_name); in lookupClass()
75 return repository.loadClass(clazz); in lookupClass()
86 final ClassPath path = repository.getClassPath(); in lookupClassFile()
100 repository.clear(); in clearCache()
110 final JavaClass old = repository.findClass(clazz.getClassName()); in addClass()
111 repository.storeClass(clazz); in addClass()
120 repository.removeClass(repository.findClass(clazz)); in removeClass()
[all …]
/external/llvm/cmake/modules/
DGetSVN.cmake5 # FIRST_NAME - The macro prefix for the first repository's info
7 # SECOND_NAME - The macro prefix for the second repository's info (opt)
22 macro(get_source_info_svn path revision repository)
38 set(${repository} ${Project_WC_URL} PARENT_SCOPE)
43 macro(get_source_info_git_svn path revision repository)
57 set(${repository} ${git_url} PARENT_SCOPE)
62 macro(get_source_info_git path revision repository)
81 set(${repository} "${git_url}" PARENT_SCOPE)
86 function(get_source_info path revision repository)
88 get_source_info_svn("${path}" revision repository)
[all …]
/external/javassist/src/main/javassist/scopedpool/
DScopedClassPool.java38 protected ScopedClassPoolRepository repository; field in ScopedClassPool
64 ScopedClassPoolRepository repository) in ScopedClassPool() argument
66 this(cl, src, repository, false); in ScopedClassPool()
82 ScopedClassPoolRepository repository, boolean isTemp) in ScopedClassPool() argument
85 this.repository = repository; in ScopedClassPool()
144 if (repository.isPrune()) in soften()
190 Map<ClassLoader,ScopedClassPool> registeredCLs = repository.getRegisteredCLs(); in getCached()
194 repository.unregisterClassLoader(pool in getCached()
226 if (repository.isPrune()) in cacheCtClass()
DScopedClassPoolFactoryImpl.java32 ScopedClassPoolRepository repository) { in create() argument
33 return new ScopedClassPool(cl, src, repository, false); in create()
40 ScopedClassPoolRepository repository) { in create() argument
41 return new ScopedClassPool(null, src, repository, true); in create()
/external/opencensus-java/examples/
Dopencensus_workspace.bzl15 repository = "http://repo.maven.apache.org/maven2/",
24 repository = "http://repo.maven.apache.org/maven2/",
32 repository = "http://repo.maven.apache.org/maven2/",
42 repository = "http://repo.maven.apache.org/maven2/",
53 repository = "http://repo.maven.apache.org/maven2/",
62 repository = "http://repo.maven.apache.org/maven2/",
71 repository = "http://repo.maven.apache.org/maven2/",
80 repository = "http://repo.maven.apache.org/maven2/",
89 repository = "http://repo.maven.apache.org/maven2/",
98 repository = "http://repo.maven.apache.org/maven2/",
[all …]
/external/vulkan-headers/
DBUILD.md3 Instructions for building this repository on Windows, Linux, and MacOS.
7 1. [Contributing](#contributing-to-the-repository)
8 1. [Repository Content](#repository-content)
9 1. [Repository Set-up](#repository-set-up)
16 The contents of this repository are sourced primarily from the Khronos Vulkan
17 API specification [repository](https://github.com/KhronosGroup/Vulkan-Docs).
18 Please visit that repository for information on contributing.
22 This repository contains the Vulkan header files and the Vulkan API definition
23 (registry) with its related files. This repository does not create libraries
26 However, this repository contains CMake build configuration files to "install"
[all …]
DREADME.md7 The contents of this repository are largely obtained from other repositories
10 If proposing changes to any file originating from a different repository,
11 please propose such changes in that repository, rather than Vulkan-Headers.
12 Files in this repository originate from:
14 ### Specification repository (https://github.com/KhronosGroup/Vulkan-Docs)
25 …les under include/vulkan/ which are *not* listed explicitly as originating from another repository.
27 ### This repository (https://github.com/KhronosGroup/Vulkan-Headers)
49 Updates to the `Vulkan-Headers` repository which correspond to a new Vulkan
/external/angle/third_party/vulkan-deps/vulkan-headers/src/
DBUILD.md3 Instructions for building this repository on Windows, Linux, and MacOS.
7 1. [Contributing](#contributing-to-the-repository)
8 1. [Repository Content](#repository-content)
9 1. [Repository Set-up](#repository-set-up)
16 The contents of this repository are sourced primarily from the Khronos Vulkan
17 API specification [repository](https://github.com/KhronosGroup/Vulkan-Docs).
18 Please visit that repository for information on contributing.
22 This repository contains the Vulkan header files and the Vulkan API definition
23 (registry) with its related files. This repository does not create libraries
26 However, this repository contains CMake build configuration files to "install"
[all …]
DREADME.md7 The contents of this repository are largely obtained from other repositories
10 If proposing changes to any file originating from a different repository,
11 please propose such changes in that repository, rather than Vulkan-Headers.
12 Files in this repository originate from:
14 ### Specification repository (https://github.com/KhronosGroup/Vulkan-Docs)
25 …les under include/vulkan/ which are *not* listed explicitly as originating from another repository.
27 ### This repository (https://github.com/KhronosGroup/Vulkan-Headers)
47 repository.
58 Updates to the `Vulkan-Headers` repository which correspond to a new Vulkan
/external/kotlinx.coroutines/buildSrc/src/main/kotlin/
DCacheRedirector.kt127 for (repository in repositories) { in Project() method
128 when (repository) { in Project()
129 … is MavenArtifactRepository -> repository.url = checkRedirectUrl(repository.url, containerName) in Project()
130 … is IvyArtifactRepository -> repository.url = checkRedirectUrl(repository.url, containerName) in Project()
/external/vulkan-validation-layers/
DBUILD.md3 Instructions for building this repository on Linux, Windows, Android, and
8 1. [Contributing](#contributing-to-the-repository)
9 1. [Repository Content](#repository-content)
10 1. [Repository Set-Up](#repository-set-up)
19 your contribution in a fork of this repository in your GitHub account and then
21 in this repository for more details.
25 This repository contains the source code necessary to build the Vulkan
44 This repository does not contain a Vulkan-capable driver. You will need to
50 To create your local git repository:
56 This repository attempts to resolve some of its dependencies by using
[all …]
/external/llvm-project/clang-tools-extra/
DREADME.txt2 // Clang Tools repository
5 Welcome to the repository of extra Clang Tools. This repository holds tools
7 Clang frontend. These tools are kept in a separate "extra" repository to
10 This repository is only intended to be checked out inside of a full LLVM+Clang
13 All discussion regarding Clang, Clang-based tools, and code in this repository
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/xml/
DDOMConfigurator.java47 public void doConfigure(Element element, LoggerRepository repository) { in doConfigure() argument
50 …public void doConfigure(InputStream inputStream, LoggerRepository repository) throws FactoryConfig… in doConfigure() argument
53 …public void doConfigure(Reader reader, LoggerRepository repository) throws FactoryConfigurationErr… in doConfigure() argument
56 public void doConfigure(String filename, LoggerRepository repository) { in doConfigure() argument
59 public void doConfigure(URL url, LoggerRepository repository) { in doConfigure() argument
/external/skia/infra/bots/recipe_modules/flavor/examples/
Dfull.py116 repository='https://skia.googlesource.com/skia.git',
137 repository='https://skia.googlesource.com/skia.git',
149 repository='https://skia.googlesource.com/skia.git',
161 repository='https://skia.googlesource.com/skia.git',
172 repository='https://skia.googlesource.com/skia.git',
184 repository='https://skia.googlesource.com/skia.git',
200 repository='https://skia.googlesource.com/skia.git',
210 repository='https://skia.googlesource.com/skia.git',
221 repository='https://skia.googlesource.com/skia.git',
/external/dokka/
Dbuild.gradle6 …artifactPattern("https://teamcity.jetbrains.com/guestAuth/repository/download/Kotlin_dev_CompilerA…
7 …artifactPattern("https://teamcity.jetbrains.com/guestAuth/repository/download/IntelliJMarkdownPars…
31 maven { url 'https://www.jetbrains.com/intellij-repository/releases' }
36 …maven { url "https://teamcity.jetbrains.com/guestAuth/repository/download/Kotlin_dev_CompilerAllPl…
80 maven { url 'https://www.jetbrains.com/intellij-repository/snapshots' }
81 maven { url 'https://www.jetbrains.com/intellij-repository/releases' }
107 description "Publishes all Maven publications to Maven repository 'distMaven'."
109 it.repository == publishing.repositories.distMaven
/external/skqp/infra/bots/recipe_modules/flavor/examples/
Dfull.py88 repository='https://skia.googlesource.com/skia.git',
115 repository='https://skia.googlesource.com/skia.git',
127 repository='https://skia.googlesource.com/skia.git',
139 repository='https://skia.googlesource.com/skia.git',
150 repository='https://skia.googlesource.com/skia.git',
162 repository='https://skia.googlesource.com/skia.git',
178 repository='https://skia.googlesource.com/skia.git',
188 repository='https://skia.googlesource.com/skia.git',
/external/skqp/infra/bots/recipes/
Dbookmaker.py249 repository='https://skia.googlesource.com/skia.git',
258 repository='https://skia.googlesource.com/skia.git',
268 repository='https://skia.googlesource.com/skia.git',
279 repository='https://skia.googlesource.com/skia.git',
290 repository='https://skia.googlesource.com/skia.git',
300 repository='https://skia.googlesource.com/skia.git',
310 repository='https://skia.googlesource.com/skia.git',
/external/skqp/infra/bots/recipe_modules/checkout/examples/
Dfull.py68 repository='https://skia.googlesource.com/skia.git',
78 repository='https://skia.googlesource.com/skia.git',
93 repository='https://skia.googlesource.com/skia.git',
112 repository='https://skia.googlesource.com/skia.git',
128 repository='https://skia.googlesource.com/parent_repo.git',
145 repository='https://skia.googlesource.com/skia.git',
/external/rust/crates/lazy_static/
DCargo.toml.orig12 repository = "https://github.com/rust-lang-nursery/lazy-static.rs"
28 appveyor = { repository = "rust-lang-nursery/lazy-static.rs" }
29 travis-ci = { repository = "rust-lang-nursery/lazy-static.rs" }
31 is-it-maintained-issue-resolution = { repository = "rust-lang-nursery/lazy-static.rs" }
32 is-it-maintained-open-issues = { repository = "rust-lang-nursery/lazy-static.rs" }
DCargo.toml9 # issue against the rust-lang/cargo repository. If you're
24 repository = "https://github.com/rust-lang-nursery/lazy-static.rs"
34 repository = "rust-lang-nursery/lazy-static.rs"
37 repository = "rust-lang-nursery/lazy-static.rs"
40 repository = "rust-lang-nursery/lazy-static.rs"
46 repository = "rust-lang-nursery/lazy-static.rs"
/external/angle/doc/
DUpdate20130618.md9 contributors pulling from the svn repository will continue to be able to do so,
10 but please note that this repository is now read-only, and no further updates
12 need to watch the git repository. Instructions on checking out code from the git
13 repository can be found on the [Source Checkout](https://code.google.com/p/angleproject/source/chec…
24 the new repository, has been promoted to master. Code previously located in the
25 trunk of the svn repository will now be located in the git legacy branch, and

12345678910>>...73