/external/python/cpython2/Demo/pdist/ |
D | cvslock.py | 112 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/cpython2/Lib/distutils/ |
D | config.py | 26 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/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/javassist/src/main/javassist/scopedpool/ |
D | ScopedClassPool.java | 37 protected ScopedClassPoolRepository repository; field in ScopedClassPool 64 ScopedClassPoolRepository repository) { in ScopedClassPool() argument 65 this(cl, src, repository, false); in ScopedClassPool() 80 …protected ScopedClassPool(ClassLoader cl, ClassPool src, ScopedClassPoolRepository repository, boo… in ScopedClassPool() argument 83 this.repository = repository; in ScopedClassPool() 143 if (repository.isPrune()) in soften() 188 Map registeredCLs = repository.getRegisteredCLs(); in getCached() 194 repository.unregisterClassLoader(pool in getCached() 226 if (repository.isPrune()) in cacheCtClass()
|
D | ScopedClassPoolFactoryImpl.java | 31 ScopedClassPoolRepository repository) { in create() argument 32 return new ScopedClassPool(cl, src, repository, false); in create() 39 ScopedClassPoolRepository repository) { in create() argument 40 return new ScopedClassPool(null, src, repository, true); in create()
|
/external/skia/infra/bots/recipes/ |
D | ct_skps.py | 252 repository='https://skia.googlesource.com/skia.git', 266 repository='https://skia.googlesource.com/skia.git', 279 repository='https://skia.googlesource.com/skia.git', 293 repository='https://skia.googlesource.com/skia.git', 307 repository='https://skia.googlesource.com/skia.git', 325 repository='https://skia.googlesource.com/skia.git', 343 repository='https://skia.googlesource.com/skia.git', 360 repository='https://skia.googlesource.com/skia.git', 374 repository='https://skia.googlesource.com/skia.git', 389 repository='https://skia.googlesource.com/skia.git', [all …]
|
D | compile.py | 121 repository='https://skia.googlesource.com/skia.git', 143 repository='https://skia.googlesource.com/skia.git', 162 repository='https://skia.googlesource.com/other_repo.git', 175 repository='https://skia.googlesource.com/skia.git', 198 repository='https://skia.googlesource.com/skia.git',
|
D | infra.py | 39 repository='https://skia.googlesource.com/skia.git', 48 repository='https://skia.googlesource.com/skia.git', 58 repository='https://skia.googlesource.com/skia.git',
|
D | update_meta_config.py | 62 repository='https://skia.googlesource.com/skia.git', 71 repository='https://skia.googlesource.com/skia.git', 81 repository='https://skia.googlesource.com/skia.git',
|
/external/deqp/scripts/khr_util/ |
D | registry_cache.py | 32 def __init__(self, repository, filename, revision, checksum): argument 33 self.repository = repository 39 return hash((self.repository, self.filename, self.revision, self.checksum)) 42 …return (self.repository, self.filename, self.revision, self.checksum) == (other.repository, other.… 57 return "%s/%s/%s" % (self.repository, self.revision, self.filename)
|
/external/skia/infra/bots/recipe_modules/core/examples/ |
D | full.py | 22 repository='https://skia.googlesource.com/skia.git', 38 repository='https://skia.googlesource.com/skia.git', 54 repository='https://skia.googlesource.com/skia.git', 76 repository='https://skia.googlesource.com/skia.git', 98 repository='https://skia.googlesource.com/skia.git', 109 repository='https://skia.googlesource.com/parent_repo.git',
|
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/xml/ |
D | DOMConfigurator.java | 47 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/chromium-trace/catapult/common/lab/ |
D | commits.py | 60 def CommitTimes(repository, revision_count): argument 62 url = '%s/%s/+log?%s' % (_BASE_URL, urllib.quote(repository), parameters) 76 for repository in _REPOSITORIES: 77 commit_times = CommitTimes(repository, _REVISION_COUNT) 84 print 'REPOSITORY:', repository
|
/external/python/cpython2/Lib/distutils/command/ |
D | register.py | 76 self.repository = config['repository'] 80 if self.repository not in ('pypi', self.DEFAULT_REPOSITORY): 81 raise ValueError('%s not found in .pypirc' % self.repository) 82 if self.repository == 'pypi': 83 self.repository = self.DEFAULT_REPOSITORY 89 response = urllib2.urlopen(self.repository+'?:action=list_classifiers') 164 host = urlparse.urlparse(self.repository)[1] 256 self.repository), 292 req = urllib2.Request(self.repository, body, headers)
|
D | upload.py | 48 self.repository = config['repository'] 65 urlparse.urlparse(self.repository) 67 raise AssertionError("Incompatible url %s" % self.repository) 163 self.announce("Submitting %s to %s" % (filename, self.repository), log.INFO) 171 request = Request(self.repository, data=body,
|
/external/protobuf/protoc-artifacts/ |
D | README.md | 26 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/seccomp-tests/ |
D | README.md | 3 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/vulkan-validation-layers/ |
D | CONTRIBUTING.md | 7 In general, the canonical Vulkan Loader and Validation Layers sources are in the Khronos repository, 14 As a convenience, the contents of the Vulkan-LoaderAndValidationLayers repository are downstreamed … 16 … with Vulkan-LoaderAndValidationLayers components if they were obtained from a separate repository. 20 The Vulkan validation layers are one of the larger and more important components in this repository. 26 in this repository and look for any unassigned issues that are of interest to you. 38 This will involve [forking the repository](https://help.github.com/articles/fork-a-repo/), 43 …es from the Vulkan-LoaderAndValidationLayers repository, please direct your pull request to that r… 49 * There are `.clang-format files` throughout the repository to define clang-format settings 61 * Run the existing tests in the repository before and after your changes to check for any regressio… 100 All contributions made to the Vulkan-LoaderAndValidationLayers repository are Khronos branded and a… [all …]
|
/external/skia/infra/bots/recipe_modules/flavor/examples/ |
D | full.py | 92 repository='https://skia.googlesource.com/skia.git', 111 repository='https://skia.googlesource.com/skia.git', 122 repository='https://skia.googlesource.com/skia.git', 133 repository='https://skia.googlesource.com/skia.git',
|
/external/skia/infra/bots/recipe_modules/infra/examples/ |
D | full.py | 32 repository='https://skia.googlesource.com/skia.git', 41 repository='https://skia.googlesource.com/skia.git', 51 repository='https://skia.googlesource.com/skia.git',
|
/external/jline/src/src/site/apt/ |
D | building.apt | 9 …e JLine distribution, or can be checked out from CVS as described {{{source-repository.html}here}}. 19 <repository> 23 </repository>
|
/external/clang/tools/ |
D | CMakeLists.txt | 22 # We support checking out the clang-tools-extra repository into the 'extra' 24 # on top of the Clang tooling platform. We keep them in a separate repository 25 # to keep the primary Clang repository small and focused.
|
/external/conscrypt/ |
D | RELEASING.md | 204 go to the snapshot repository. Otherwise it's a release deployment and the 205 artifacts will go to a freshly created staging repository. 213 [a new staging repository](https://oss.sonatype.org/#stagingRepositories). You'll need 215 deployment commands should include `-PrepositoryId=<repository-id>` in order to 216 ensure that the artifacts are pushed to the same staging repository. 221 conscrypt-openjdk:uploadArchives -PrepositoryId=<repository-id> 227 conscrypt-openjdk:uploadArchives -PrepositoryId=<repository-id> 259 [a new staging repository](https://oss.sonatype.org/#stagingRepositories), 261 repository via the OSSRH UI, as you did in the previous step. 265 Once all of the artifacts have been pushed to the staging repository, the [all …]
|
/external/libxml2/result/ |
D | utf16bom.xml.rde | 1 0 1 repository 0 0 3 0 15 repository 0 0
|
D | utf16bom.xml.rdr | 1 0 1 repository 0 0 3 0 15 repository 0 0
|