Home
last modified time | relevance | path

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

12345678910>>...60

/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 …]
DCONTRIBUTING.md3 ## **The Repository**
11 The Vulkan validation layers are one of the larger and more important components in this repository.
18 in this repository and look for issues that are of interest
31 Repository Issue labels:
47 This will involve [forking the repository](https://help.github.com/articles/fork-a-repo/),
51 * The resulting Pull Request will be assigned to a repository maintainer. It is the maintainer's re…
52 …cesses. Once the Pull Request has been approved and is passing internal CI, a repository maintainer
65 * There are `.clang-format` files present in the repository to define clang-format settings
90 That said, please ensure that the repository compiles and passes tests without error for each commi…
91 that to be accepted into the repository, the pull request must [pass all tests](#testing your chang…
[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 …]
/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/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/robolectric-shadows/
DAndroid.mk66 …robolectric-monitor-1.0.2-alpha1:../../../prebuilts/tools/common/m2/repository/com/android/support…
75 …robolectric-accessibility-test-framework-2.1:../../../prebuilts/tools/common/m2/repository/com/goo…
76 …robolectric-ant-1.8.0:../../../prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/ant-1…
77 …robolectric-asm-6.0:../../../prebuilts/tools/common/m2/repository/org/ow2/asm/asm/6.0/asm-6.0.jar \
78 …robolectric-asm-commons-6.0:../../../prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/…
79 …robolectric-asm-tree-6.0:../../../prebuilts/tools/common/m2/repository/org/ow2/asm/asm-tree/6.0/as…
80 …robolectric-bouncycastle-1.46:../../../prebuilts/tools/common/m2/repository/org/bouncycastle/bcpro…
81 …robolectric-byte-buddy-1.6.5:../../../prebuilts/tools/common/m2/repository/net/bytebuddy/byte-budd…
82 …robolectric-byte-buddy-agent-1.6.5:../../../prebuilts/tools/common/m2/repository/net/bytebuddy/byt…
83 …robolectric-compile-testing-0.15:../../../prebuilts/tools/common/m2/repository/com/google/testing/…
[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.py37 def __init__(self, repository, filename, revision, checksum): argument
38 self.repository = repository
44 return hash((self.repository, self.filename, self.revision, self.checksum))
47 …return (self.repository, self.filename, self.revision, self.checksum) == (other.repository, other.…
62 return self.repository
73 def makeSourceUrl (repository, revision, filename): argument
74 return "%s/%s/%s" % (repository, revision, filename)
76 def checkoutGit (repository, revision, fullDstPath): argument
78 execute(["git", "clone", "--no-checkout", repository, fullDstPath])
82 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/swiftshader/third_party/llvm-7.0/llvm/docs/Proposals/
DGitHubMove.rst29 This proposal relates only to moving the hosting of our source-code repository
73 * Inspect the repository history (blame, log, bisect) without Internet access.
75 integrate back to the main repository.
92 BitBucket: it offers read-write **SVN** access to the repository
95 were still canonically in an SVN repository.
103 The current SVN repository hosts all the LLVM sub-projects alongside each other.
139 to mandate making merge commits illegal in our canonical Git repository.
150 repository.
166 repository.
168 umbrella repository update (if the multirepo is selected) or the read-only
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/cmake/modules/
DGetSVN.cmake20 macro(get_source_info_svn path revision repository)
36 set(${repository} ${Project_WC_URL} PARENT_SCOPE)
41 macro(get_source_info_git_svn path revision repository)
55 set(${repository} ${git_url} PARENT_SCOPE)
60 macro(get_source_info_git path revision repository)
79 set(${repository} "${git_url}" PARENT_SCOPE)
84 function(get_source_info path revision repository)
86 get_source_info_svn("${path}" revision repository)
88 get_source_info_git_svn("${path}" revision repository)
90 get_source_info_git("${path}" revision repository)
[all …]
/external/mesa3d/docs/
Drepository.html5 <title>Code Repository</title>
17 <h1>Code Repository</h1>
25 The master git repository is hosted on
30 You may access the repository either as an
39 >browse the main Mesa git repository</a> and the
41 >Mesa demos and tests git repository</a>.
53 <li>Get an initial, local copy of the repository with:
57 <li>Later, you can update your tree from the master repository with:
61 <li>If you also want the Mesa demos/tests repository:
105 <li>Get an initial, local copy of the repository with:
[all …]
/external/protobuf/protoc-artifacts/
DREADME.md26 The following command will install the ``protoc`` artifact to your local Maven repository.
53 Before you can upload artifacts to Maven Central repository, make sure you have
58 support. DO NOT close the staging repository until you have done the
67 staging repository.
71 It creates a new staging repository. Go to
72 https://oss.sonatype.org/#stagingRepositories and find the repository, usually
76 subsequent deployments you will need to provide the repository name that you
78 repository:
80 $ mvn clean deploy -P release -Dstaging.repository=comgoogle-123
88 repository has all the binaries, close and release this repository.
[all …]
/external/autotest/client/deps/libnet/
Dlibnet.tar.gz
/external/vulkan-validation-layers/scripts/
Dupdate_deps.py28 This program is intended to assist a developer of this repository
29 (the "home" repository) by gathering and building the repositories that
30 this home repository depend on. It also checks out each dependent
31 repository at a "known-good" commit in order to provide stability in
44 the needs of the home repository by including its dependent repositories.
58 For example, a directory named "build" in the repository's root directory
95 "home" repository.
117 The name of the dependent repository. This field can be referenced
122 Specifies the URL of the repository.
127 The directory where the program clones the repository, relative to
[all …]
/external/clang/include/clang/Basic/
DVersion.h43 /// \brief Retrieves the repository path (e.g., Subversion path) that
48 /// \brief Retrieves the repository path from which LLVM was built.
50 /// This supports LLVM residing in a separate repository from clang.
53 /// \brief Retrieves the repository revision number (or identifer) from which
57 /// \brief Retrieves the repository revision number (or identifer) from which
60 /// If Clang and LLVM are in the same repository, this returns the same
64 /// \brief Retrieves the full repository version that is an amalgamation of
69 /// which includes the clang version number, the repository version,
78 /// number, the repository version, and the vendor tag.
/external/seccomp-tests/
DREADME.md3 This repository contains a mirror of the upstream Linux kernel test suite for the Seccomp-BPF
5 repository because the code is GPL.
9 Rather than hold the entire Linux history in this repository, only the subdirectory for the Seccomp
10 selftests are preserved here. In order to sync this repository to the upstream Linux, follow these
18 These instructions only need to be followed for the first time you are updating the repository from
21 1. Configure a remote to use as the source repository (limited to only syncing the master branch):
60 Resolve any conflicts with the local modifications present in the repository.
78 branch into the seccomp-tests repository and subtree merge it (as FETCH\_HEAD). This will avoid
/external/libchrome/libchrome_tools/
Dupdate_libchrome.py22 Prepare your local Chromium repository with the target revision.
29 - Copy necessary files from original Chromium repository.
56 # Files which are in the repository, but should not be imported from Chrome
57 # repository.
103 # Files in the repository should be updated.
110 # repository will be deleted on update.
153 """Copies files from Chromium repository into libchrome.
156 chromium_root: Path to the Chromium's repository.
169 libchrome needs some modification from Chromium repository, e.g. supporting
171 the library checked in the Chromium repository.
[all …]
/external/skqp/infra/bots/
Dgit_utils.py45 This class allows one to create a new branch in a repository to make changes,
100 """Creates a new local checkout of a Git repository."""
102 def __init__(self, repository, commit='HEAD'): argument
103 """Set parameters for this local copy of a Git repository.
116 repository: URL of the remote repository (e.g.,
117 'https://skia.googlesource.com/common') or path to a local repository
123 self._repository = repository
132 """Check out a new local copy of the repository.
/external/skia/infra/bots/
Dgit_utils.py45 This class allows one to create a new branch in a repository to make changes,
100 """Creates a new local checkout of a Git repository."""
102 def __init__(self, repository, commit='HEAD'): argument
103 """Set parameters for this local copy of a Git repository.
116 repository: URL of the remote repository (e.g.,
117 'https://skia.googlesource.com/common') or path to a local repository
123 self._repository = repository
132 """Check out a new local copy of the repository.
/external/python/cpython2/Doc/distutils/
Dpackageindex.rst132 The ``--repository`` or ``-r`` option lets you specify a PyPI server
159 If this file exists, the command uses the username, password, and repository
168 repository: <repository-url>
173 name of all sections describing a repository.
175 Each section describing a repository defines three variables:
177 - *repository*, that defines the url of the PyPI server. Defaults to
192 repository: <repository-url>
197 repository: https://example.com/pypi
202 called with the ``--repository`` option as described in
205 Specifically, you might want to add the `PyPI Test Repository

12345678910>>...60