Home
last modified time | relevance | path

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

12345678910>>...128

/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/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)
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.md7 …in #222, the default branch of this repository is now 'main'. This change should be largely transp…
16 ## Repository Content
18 The contents of this repository are largely obtained from other repositories
21 If proposing changes to any file originating from a different repository,
22 please propose such changes in that repository, rather than Vulkan-Headers.
23 Files in this repository originate from:
25 ### Specification repository (https://github.com/KhronosGroup/Vulkan-Docs)
37 …les under include/vulkan/ which are *not* listed explicitly as originating from another repository.
39 ### This repository (https://github.com/KhronosGroup/Vulkan-Headers)
55 ### Vulkan C++ Binding Repository (https://github.com/KhronosGroup/Vulkan-Hpp)
[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 ## Repository Content
7 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)
43 ### Vulkan C++ Binding Repository (https://github.com/KhronosGroup/Vulkan-Hpp)
47 repository.
[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/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/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/dagger2/.github/workflows/
Dci.yml29 - name: 'Check out gh-pages repository'
45 - name: 'Check out repository'
47 - name: 'Cache local Maven repository'
51 ~/.m2/repository
52 !~/.m2/repository/com/google/dagger
82 path: ~/.m2/repository/com/google/dagger
88 - name: 'Check out repository'
103 path: ~/.m2/repository/com/google/dagger
115 - name: 'Check out repository'
130 path: ~/.m2/repository/com/google/dagger
[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/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",
51 "https://www.jetbrains.com/intellij-repository/nightly",
52 "https://www.jetbrains.com/intellij-repository/releases",
53 "https://www.jetbrains.com/intellij-repository/snapshots"
81 val msg = "Repository $url in $containerName should be cached with cache-redirector" in isCachedOrLocal()
82 val details = "Using non cached repository may lead to download failures in CI builds." + in isCachedOrLocal()
93 for (repository in repositories) { in Project() method
94 when (repository) { in Project()
95 … is MavenArtifactRepository -> repository.url = checkRedirectUrl(repository.url, containerName) in Project()
[all …]
/external/mesa3d/docs/
Drepository.rst1 Source Code Repository
7 The master Git repository is hosted on
10 You may access the repository either as an :ref:`anonymous
15 repository <https://gitlab.freedesktop.org/mesa/mesa>`__ and the `Mesa
17 repository <https://gitlab.freedesktop.org/mesa/demos>`__.
27 #. Get an initial, local copy of the repository with:
33 #. Later, you can update your tree from the master repository with:
39 #. If you also want the Mesa demos/tests repository:
90 repository:
105 repository. Generally, ``master`` contains the latest development
[all …]
/external/autotest/client/deps/libnet/
Dlibnet.tar.gz ... /Entries libnet/autom4te.cache/CVS/Repository libnet/autom4te.cache/CVS/Root libnet ...

12345678910>>...128