Home
last modified time | relevance | path

Searched full:repository (Results 1 – 25 of 4049) sorted by relevance

12345678910>>...162

/external/dokka/.idea/
DjarRepositories.xml4 <remote-repository>
6 <option name="name" value="Maven Central repository" />
8 </remote-repository>
9 <remote-repository>
11 <option name="name" value="JBoss Community repository" />
12 <option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
13 </remote-repository>
14 <remote-repository>
17 …<option name="url" value="https://teamcity.jetbrains.com/guestAuth/repository/download/Kotlin_dev_…
18 </remote-repository>
[all …]
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/resource/loader/
DStringResourceLoader.java45 * resources to the repository that is used by the resource loader instance.
48 * Note that 'repository.class' is not necessary;
55 …* resource.loader.string.repository.name = MyRepositoryName (optional, to avoid using the default
56 …* resource.loader.string.repository.class = org.apache.velocity.runtime.resource.loader.StringReso…
58 * Resources can be added to the repository like this:
70 * you should consider specifying a 'resource.loader.string.repository.name = foo'
71 * property in order to keep you string resources in a non-default repository.
74 * You can then retrieve your named repository like this:
81 * to have your string repository stored statically as a class member, then you
82 * should set 'resource.loader.string.repository.static = false' in your properties.
[all …]
/external/cronet/build/fuchsia/test/
Dserve_repo.py5 """Implements commands for serving a TUF repository."""
19 """Stop serving a repository."""
22 run_ffx_command(['target', 'repository', 'deregister', '-r', repo_name],
25 run_ffx_command(['repository', 'remove', repo_name], check=False)
26 run_ffx_command(['repository', 'server', 'stop'], check=False)
31 """Start serving a repository to a target device.
34 repo_dir: directory the repository is served from.
35 repo_name: repository name.
36 target: Fuchsia device the repository is served to.
39 run_ffx_command(('config', 'set', 'repository.server.mode', '\"ffx\"'))
[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)
14 ## Contributing to the Repository
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.
20 ## Repository Content
22 This repository contains the Vulkan header files and the Vulkan API definition
[all …]
DREADME.md5 The contents of this repository are largely obtained from other repositories
8 If proposing changes to any file originating from a different repository,
9 please propose such changes in that repository, rather than Vulkan-Headers.
10 Files in this repository originate from:
12 ### Specification repository (https://github.com/KhronosGroup/Vulkan-Docs)
17 …les under include/vulkan/ which are *not* listed explicitly as originating from another repository.
19 ### This repository (https://github.com/KhronosGroup/Vulkan-Headers)
33 ### Vulkan C++ Binding Repository (https://github.com/KhronosGroup/Vulkan-Hpp)
37 repository.
43 Updates to the `Vulkan-Headers` repository which correspond to a new Vulkan
/external/angle/build/fuchsia/test/
Dserve_repo.py5 """Implements commands for serving a TUF repository."""
20 """Stop serving a repository."""
24 cmd=['target', 'repository', 'deregister', '-r', repo_name],
27 run_ffx_command(cmd=['repository', 'remove', repo_name], check=False)
28 run_ffx_command(cmd=['repository', 'server', 'stop'], check=False)
33 """Start serving a repository to a target device.
36 repo_dir: directory the repository is served from.
37 repo_name: repository name.
38 target: Fuchsia device the repository is served to.
41 run_ffx_command(cmd=('config', 'set', 'repository.server.mode', '\"ffx\"'))
[all …]
/external/oss-fuzz/infra/build/functions/
Dproject_sync_test.py39 class Repository: class
40 """Mocking Github Repository."""
50 """"Get contents of repository."""
209 repo = Repository('oss-fuzz', 'dir', 'projects', [
210 Repository('test0', 'dir', 'projects/test0', [
211 Repository('Dockerfile', 'file', 'projects/test0/Dockerfile'),
212 Repository('project.yaml', 'file', 'projects/test0/project.yaml')
214 Repository('test1', 'dir', 'projects/test1', [
215 Repository('Dockerfile', 'file', 'projects/test1/Dockerfile'),
216 Repository('project.yaml', 'file', 'projects/test1/project.yaml')
[all …]
/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)
16 ## Contributing to the Repository
19 your contribution in a fork of this repository in your GitHub account and then
21 in this repository for more details.
23 ## Repository Content
25 This repository contains the source code necessary to build the Vulkan
40 ## Repository Set-Up
[all …]
/external/python/cpython3/Lib/distutils/
Dconfig.py26 repository = None variable in PyPIRCCommand
30 ('repository=', 'r',
31 "url of repository [default: %s]" % \
53 repository = self.repository or self.DEFAULT_REPOSITORY
77 for key, default in (('repository',
86 # work around people having "repository" for the "pypi"
90 repository in (self.DEFAULT_REPOSITORY, 'pypi')):
91 current['repository'] = self.DEFAULT_REPOSITORY
94 if (current['server'] == repository or
95 current['repository'] == repository):
[all …]
/external/python/setuptools/setuptools/_distutils/
Dconfig.py26 repository = None variable in PyPIRCCommand
30 ('repository=', 'r',
31 "url of repository [default: %s]" % \
53 repository = self.repository or self.DEFAULT_REPOSITORY
77 for key, default in (('repository',
86 # work around people having "repository" for the "pypi"
90 repository in (self.DEFAULT_REPOSITORY, 'pypi')):
91 current['repository'] = self.DEFAULT_REPOSITORY
94 if (current['server'] == repository or
95 current['repository'] == repository):
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DRepository.java27 * The repository maintains informations about class interdependencies, e.g.,
31 * @see org.apache.bcel.util.Repository
36 public abstract class Repository { class
38 private static org.apache.bcel.util.Repository repository = SyntheticRepository.getInstance(); field in Repository
41 /** @return currently used repository instance
43 public static org.apache.bcel.util.Repository getRepository() { in getRepository()
44 return repository; in getRepository()
48 /** Set repository instance to be used for class loading
50 public static void setRepository( final org.apache.bcel.util.Repository rep ) { in setRepository()
51 repository = rep; in setRepository()
[all …]
/external/python/cpython2/Lib/distutils/
Dconfig.py26 repository = None variable in PyPIRCCommand
30 ('repository=', 'r',
31 "url of repository [default: %s]" % \
56 repository = self.repository or self.DEFAULT_REPOSITORY
79 for key, default in (('repository',
87 if (current['server'] == repository or
88 current['repository'] == repository):
93 if config.has_option(server, 'repository'):
94 repository = config.get(server, 'repository')
96 repository = self.DEFAULT_REPOSITORY
[all …]
/external/python/cpython2/Demo/pdist/
Dcvslock.py8 - Locking is done on a per repository basis (but a process can hold
10 the repository and have names beginning with "#cvs.".
13 (and removed again), to test that we can write the repository. [The
14 algorithm can still be fooled (1) if the repository's mode is changed
20 named "#cvs.lock" in the repository. The meta-lock is also held while
49 - A process should read-lock at most one repository at a time.
59 repository at the same time.
65 rl = ReadLock(repository, waittime)
67 wl = WriteLock(repository, waittime)
112 def __init__(self, repository = ".", delay = DELAY): argument
[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/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/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DMemorySensitiveClassPathRepository.java30 …* This repository is used in situations where a Class is created outside the realm of a ClassLoade…
31 … default, this is the value returned by ClassPath.getClassPath(). This repository holds onto class…
34 * @see org.apache.bcel.Repository
36 public class MemorySensitiveClassPathRepository implements Repository {
46 * Store a new JavaClass instance into this Repository.
55 * Remove class from repository
75 …bject by name. If it is already in this Repository, the Repository version is returned. Otherwise,…
76 * searched for the class (and it is added to the Repository if found).
82 * if the class is not in the Repository, and could not be found on the classpath
102 …Class object. If a class with the same name is already in this Repository, the Repository version …
[all …]
DClassPathRepository.java29 …* This repository is used in situations where a Class is created outside the realm of a ClassLoade…
32 * @see org.apache.bcel.Repository
34 public class ClassPathRepository implements Repository {
44 * Store a new JavaClass instance into this Repository.
53 * Remove class from repository
69 …bject by name. If it is already in this Repository, the Repository version is returned. Otherwise,…
70 * searched for the class (and it is added to the Repository if found).
76 * if the class is not in the Repository, and could not be found on the classpath
96 …Class object. If a class with the same name is already in this Repository, the Repository version …
98 * Repository.
[all …]
/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/python/google-api-python-client/docs/dyn/
Dartifactregistry_v1.projects.locations.repositories.html87 <p class="firstline">Gets a repository.</p>
102 <pre>Gets a repository.
105 name: string, Required. The name of the repository to retrieve. (required)
114 { # A Repository for storing artifacts with a specific format.
115 &quot;createTime&quot;: &quot;A String&quot;, # The time when the repository was created.
116 &quot;description&quot;: &quot;A String&quot;, # The user-provided description of the repository.
117 …uot;format&quot;: &quot;A String&quot;, # The format of packages that are stored in the repository.
118Repository. Has the form: `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-ke…
122 …&quot;name&quot;: &quot;A String&quot;, # The name of the repository, for example: &quot;projects/…
123 &quot;updateTime&quot;: &quot;A String&quot;, # The time when the repository was last updated.
[all …]
Dartifactregistry_v1beta2.projects.locations.repositories.html112 …">Creates a repository. The returned Operation will finish once the repository has been created. I…
115 <p class="firstline">Deletes a repository and all of its contents. The returned Operation will fini…
118 <p class="firstline">Gets a repository.</p>
130 <p class="firstline">Updates a repository.</p>
145 …e>Creates a repository. The returned Operation will finish once the repository has been created. I…
148 parent: string, The name of the parent resource where the repository will be created. (required)
152 { # A Repository for storing artifacts with a specific format.
153 &quot;createTime&quot;: &quot;A String&quot;, # The time when the repository was created.
154 &quot;description&quot;: &quot;A String&quot;, # The user-provided description of the repository.
155 …uot;format&quot;: &quot;A String&quot;, # The format of packages that are stored in the repository.
[all …]
/external/auto/.github/workflows/
Dci.yml24 - name: 'Check out repository'
26 - name: 'Cache local Maven repository'
29 path: ~/.m2/repository
48 if: github.event_name == 'push' && github.repository == 'google/auto'
51 - name: 'Check out repository'
53 - name: 'Cache local Maven repository'
56 path: ~/.m2/repository
77 if: github.event_name == 'push' && github.repository == 'google/auto'
80 - name: 'Check out repository'
82 - name: 'Cache local Maven repository'
[all …]
/external/truth/.github/workflows/
Dci.yml24 - name: 'Check out repository'
26 - name: 'Cache local Maven repository'
29 path: ~/.m2/repository
48 if: github.event_name == 'push' && github.repository == 'google/truth'
51 - name: 'Check out repository'
53 - name: 'Cache local Maven repository'
56 path: ~/.m2/repository
77 if: github.event_name == 'push' && github.repository == 'google/truth'
80 - name: 'Check out repository'
82 - name: 'Cache local Maven repository'
[all …]
/external/webrtc/infra/config/
Dluci-notify.cfg26 repository: "https://webrtc.googlesource.com/src"
53 repository: "https://webrtc.googlesource.com/src"
80 repository: "https://webrtc.googlesource.com/src"
107 repository: "https://webrtc.googlesource.com/src"
134 repository: "https://webrtc.googlesource.com/src"
161 repository: "https://webrtc.googlesource.com/src"
188 repository: "https://webrtc.googlesource.com/src"
215 repository: "https://webrtc.googlesource.com/src"
237 repository: "https://webrtc.googlesource.com/src"
264 repository: "https://webrtc.googlesource.com/src"
[all …]
/external/guava/.github/workflows/
Dci.yml27 - name: 'Check out repository'
29 - name: 'Cache local Maven repository'
32 path: ~/.m2/repository
56 if: github.event_name == 'push' && github.repository == 'google/guava'
59 - name: 'Check out repository'
61 - name: 'Cache local Maven repository'
64 path: ~/.m2/repository
85 if: github.event_name == 'push' && github.repository == 'google/guava'
88 - name: 'Check out repository'
90 - name: 'Cache local Maven repository'
[all …]
/external/kotlinx.coroutines/buildSrc/src/main/kotlin/
DCacheRedirector.kt19 …* To add a repository to the list create an issue in ADM project (example issue https://youtrack.…
24 "https://dl.google.com/android/repository",
49 "https://www.jetbrains.com/intellij-repository/nightly",
50 "https://www.jetbrains.com/intellij-repository/releases",
51 "https://www.jetbrains.com/intellij-repository/snapshots",
83 val msg = "Repository $url in $containerName should be cached with cache-redirector" in isCachedOrLocal()
84 val details = "Using non cached repository may lead to download failures in CI builds." + in isCachedOrLocal()
95 for (repository in repositories) { in Project() method
96 when (repository) { in Project()
97 … is MavenArtifactRepository -> repository.url = checkRedirectUrl(repository.url, containerName) in Project()
[all …]

12345678910>>...162