/external/dokka/.idea/ |
D | jarRepositories.xml | 4 <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/vulkan-headers/ |
D | BUILD.md | 3 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 …]
|
D | README.md | 5 ## 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) 49 Updates to the `Vulkan-Headers` repository which correspond to a new Vulkan
|
/external/angle/third_party/vulkan-deps/vulkan-headers/src/ |
D | BUILD.md | 3 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 …]
|
D | README.md | 5 ## 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/python/cpython3/Lib/distutils/ |
D | config.py | 26 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/vulkan-validation-layers/ |
D | BUILD.md | 3 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/ |
D | project_sync_test.py | 39 class Repository: class 40 """Mocking Github Repository.""" 50 """"Get contents of repository.""" 210 repo = Repository('oss-fuzz', 'dir', 'projects', [ 211 Repository('test0', 'dir', 'projects/test0', [ 212 Repository('Dockerfile', 'file', 'projects/test0/Dockerfile'), 213 Repository('project.yaml', 'file', 'projects/test0/project.yaml') 215 Repository('test1', 'dir', 'projects/test1', [ 216 Repository('Dockerfile', 'file', 'projects/test1/Dockerfile'), 217 Repository('project.yaml', 'file', 'projects/test1/project.yaml') [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/ |
D | Repository.java | 27 * 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/ |
D | config.py | 26 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/ |
D | cvslock.py | 8 - 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/ |
D | GetSVN.cmake | 5 # 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/ |
D | registry_cache.py | 36 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/ |
D | MemorySensitiveClassPathRepository.java | 30 …* 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 …]
|
D | ClassPathRepository.java | 29 …* 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/ |
D | opencensus_workspace.bzl | 15 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/dagger2/.github/workflows/ |
D | ci.yml | 14 - name: 'Check out repository' 16 - name: 'Cache local Maven repository' 20 ~/.m2/repository 21 !~/.m2/repository/com/google/dagger 51 path: ~/.m2/repository/com/google/dagger 57 - name: 'Check out repository' 72 path: ~/.m2/repository/com/google/dagger 84 - name: 'Check out repository' 99 path: ~/.m2/repository/com/google/dagger 110 - name: 'Check out repository' [all …]
|
/external/mesa3d/docs/ |
D | repository.rst | 1 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/python/google-api-python-client/docs/dyn/ |
D | sourcerepo_v1.projects.repos.html | 112 If the named repository already exists, `CreateRepo` returns 121 { # A repository (or repo) is a Git repository storing versioned source content. 122 "url": "A String", # URL to clone the repository from Google Cloud Source Repositories. 124 "pubsubConfigs": { # How this repository publishes a change in the repository through Cloud 140 "name": "A String", # Resource name of the repository, of the form 143 … # Configuration to automatically mirror a repository from another # How this repository mirrors a… 146 "url": "A String", # URL of the main repository at the other hosting service. 165 { # A repository (or repo) is a Git repository storing versioned source content. 166 "url": "A String", # URL to clone the repository from Google Cloud Source Repositories. 168 "pubsubConfigs": { # How this repository publishes a change in the repository through Cloud [all …]
|
/external/autotest/client/deps/libnet/ |
D | libnet.tar.gz | ... /Entries
libnet/autom4te.cache/CVS/Repository
libnet/autom4te.cache/CVS/Root
libnet ... |
/external/llvm-project/clang/include/clang/Basic/ |
D | Version.h | 22 /// Retrieves the repository path (e.g., Subversion path) that 27 /// Retrieves the repository path from which LLVM was built. 29 /// This supports LLVM residing in a separate repository from clang. 32 /// Retrieves the repository revision number (or identifier) from which 36 /// Retrieves the repository revision number (or identifier) from which 39 /// If Clang and LLVM are in the same repository, this returns the same 43 /// Retrieves the full repository version that is an amalgamation of 48 /// which includes the clang version number, the repository version, 57 /// number, the repository version, and the vendor tag.
|
/external/javassist/src/main/javassist/scopedpool/ |
D | ScopedClassPool.java | 38 protected ScopedClassPoolRepository repository; field in ScopedClassPool 60 * @param repository 61 * the repository 64 ScopedClassPoolRepository repository) in ScopedClassPool() argument 66 this(cl, src, repository, false); in ScopedClassPool() 76 * @param repository 77 * the repository 82 ScopedClassPoolRepository repository, boolean isTemp) in ScopedClassPool() argument 85 this.repository = repository; in ScopedClassPool() 144 if (repository.isPrune()) in soften() [all …]
|
/external/python/parse_type/tasks/ |
D | release.py | 36 # DEPRECATED: repository = https://pypi.python.org/pypi 41 # DEPRECATED: repository = https://test.pypi.org/legacy 69 [{x1}] Bump version to new-version and tag repository (via bump_version) 71 [{x3}] Register and upload packages to testpypi repository (first) 73 [{x5}] Register and upload packages to pypi repository 74 [{x6}] Push last changes to Github repository 79 [ ] Commit latest changes to Github repository 119 # """Register release (packages) in artifact-store/repository.""" 129 # ctx.run("twine register --repository={repo} {artifact}".format( 136 """Upload release packages to repository (artifact-store).""" [all …]
|
/external/vulkan-validation-layers/scripts/ |
D | update_deps.py | 28 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/ |
D | Version.h | 43 /// \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.
|