/external/grpc-grpc/templates/ |
D | package.xml.template | 18 <release>${settings.php_version.php()}</release> 22 <release>${settings.php_version.php_stability()}</release> 60 <release> 62 <release>0.5.0</release> 66 <release>alpha</release> 72 First alpha release 74 </release> 75 <release> 77 <release>0.5.1</release> 81 <release>alpha</release> [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | HowToReleaseLLVM.rst | 13 If you're looking for the document on how to test the release candidates and 23 The release manager will determine if and when to make a dot release based 31 The release process is roughly as follows: 34 date. Announce release schedule to the LLVM community and update the website. 36 * Create release branch and begin release process. 38 * Send out release candidate sources for first round of testing. Testing lasts 40 fixed. Patches are merged from mainline into the release branch. Also, all 43 release. 45 * Generate and send out the second release candidate sources. Only *critical* 49 * The release notes are updated. [all …]
|
D | ReleaseProcess.rst | 12 This document contains information about testing the release candidates that 13 will ultimately be the next LLVM release. For more information on how to 14 manage the actual release, please refer to :doc:`HowToReleaseLLVM`. 19 Once the release process starts, the Release Manager will ask for volunteers, 22 * Test and benchmark the previous release 24 * Test and benchmark each release candidate, comparing to the previous release 29 * Make sure the critical bugs get fixed and merged to the next release candidate 33 release. 41 * The stage in the release. Less critical bugs should be considered to be 52 The scripts are in the ``utils/release`` directory. [all …]
|
/external/python/cpython3/Lib/ |
D | platform.py | 455 def _syscmd_ver(system='', release='', version='', argument 470 return system, release, version 487 return system, release, version 493 system, release, version = m.groups() 495 if release[-1] == '.': 496 release = release[:-1] 502 return system, release, version 533 def win32_ver(release='', version='', csd='', ptype=''): argument 537 return release, version, csd, ptype 547 release = (_WIN32_CLIENT_RELEASES.get((maj, min)) or [all …]
|
/external/python/cpython2/Lib/ |
D | platform.py | 514 def _syscmd_ver(system='', release='', version='', argument 529 return system,release,version 549 return system,release,version 555 system,release,version = m.groups() 557 if release[-1] == '.': 558 release = release[:-1] 564 return system,release,version 656 def win32_ver(release='', version='', csd='', ptype=''): argument 660 return release, version, csd, ptype 670 release = (_WIN32_CLIENT_RELEASES.get((maj, min)) or [all …]
|
/external/python/cpython2/Lib/test/ |
D | lock_tests.py | 87 lock.release() 93 lock.release() 103 lock.release() 111 lock.release() 117 lock.release() 125 lock.release() 143 lock.release() 170 lock.release() 180 lock.release() 184 lock.release() [all …]
|
/external/python/cpython2/Demo/threads/ |
D | sync.py | 301 def release(self): member in condition 302 self.mutex.release() 313 idlock.release() 315 mutex.release() 321 checkout.release(); idlock.release() 326 checkout.release() 331 idlock.release() 354 self.checkout.release() 355 self.idlock.release() 372 full.release() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiNullHandleTests.cpp | 42 inline void release (Context& context, VkBuffer buffer, const VkAllocationCallbacks* pAllocator) in release() function 47 inline void release (Context& context, VkBufferView bufferView, const VkAllocationCallbacks* pAlloc… in release() function 52 inline void release (Context& context, VkCommandPool commandPool, const VkAllocationCallbacks* pAll… in release() function 57 inline void release (Context& context, VkDescriptorPool descriptorPool, const VkAllocationCallbacks… in release() function 62 inline void release (Context& context, VkDescriptorSetLayout descriptorSetLayout, const VkAllocatio… in release() function 67 inline void release (Context& context, VkDevice device, const VkAllocationCallbacks* pAllocator) in release() function 72 inline void release (Context& context, VkEvent event, const VkAllocationCallbacks* pAllocator) in release() function 77 inline void release (Context& context, VkFence fence, const VkAllocationCallbacks* pAllocator) in release() function 82 inline void release (Context& context, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAll… in release() function 87 inline void release (Context& context, VkImage image, const VkAllocationCallbacks* pAllocator) in release() function [all …]
|
/external/llvm/docs/ |
D | HowToReleaseLLVM.rst | 17 If you're looking for the document on how to test the release candidates and 27 The release manager will determine if and when to make a dot release based 35 The release process is roughly as follows: 38 date. Announce release schedule to the LLVM community and update the website. 40 * Create release branch and begin release process. 42 * Send out release candidate sources for first round of testing. Testing lasts 44 fixed. Patches are merged from mainline into the release branch. Also, all 47 release. 49 * Generate and send out the second release candidate sources. Only *critial* 53 * The release notes are updated. [all …]
|
D | ReleaseProcess.rst | 12 This document contains information about testing the release candidates that will 13 ultimately be the next LLVM release. For more information on how to manage the 14 actual release, please refer to :doc:`HowToReleaseLLVM`. 19 Once the release process starts, the Release Manager will ask for volunteers, 22 * Test and benchmark the previous release 24 * Test and benchmark each release candidate, comparing to the previous release and candidates 28 * Make sure the critical bugs get fixed and merged to the next release candidate 31 should be fixed before the next candidate and what can wait until the next release. 39 * The stage in the release. Less critical bugs should be considered to be fixed between 50 The scripts are in the ``utils/release`` directory. [all …]
|
/external/skqp/docker/ |
D | README.md | 6 skia-release 14 docker build -t skia-release ./docker/skia-release/ 15 docker tag skia-release gcr.io/skia-public/skia-release:prod 16 docker push gcr.io/skia-public/skia-release:prod 18 skia-wasm-release 27 docker build -t skia-wasm-release ./docker/skia-wasm-release/ 28 docker tag skia-wasm-release gcr.io/skia-public/skia-wasm-release:prod 29 docker push gcr.io/skia-public/skia-wasm-release:prod 52 cmake-release 60 docker build -t cmake-release ./cmake-release/ [all …]
|
/external/python/cpython3/Doc/tools/extensions/ |
D | patchlevel.py | 34 release = version = '%s.%s' % (d['PY_MAJOR_VERSION'], d['PY_MINOR_VERSION']) 36 release += '.' + str(micro) 45 release += suffixes[level] + str(int(d['PY_RELEASE_SERIAL'])) 46 return version, release 51 release = version = '%s.%s' % (major, minor) 52 release += '.%s' % micro 54 release += '%s%s' % (level[0], serial) 55 return version, release 62 version, release = get_sys_version_info() 64 'using version of this interpreter (%s).' % release, file=sys.stderr) [all …]
|
/external/python/cpython2/Doc/tools/extensions/ |
D | patchlevel.py | 35 release = version = '%s.%s' % (d['PY_MAJOR_VERSION'], d['PY_MINOR_VERSION']) 38 release += '.' + str(micro) 47 release += suffixes[level] + str(int(d['PY_RELEASE_SERIAL'])) 48 return version, release 53 release = version = '%s.%s' % (major, minor) 55 release += '.%s' % micro 57 release += '%s%s' % (level[0], serial) 58 return version, release 65 version, release = get_sys_version_info() 67 'using version of this interpreter (%s).' % release [all …]
|
/external/grpc-grpc/tools/interop_matrix/ |
D | create_matrix_images.py | 174 if args.release != 'master': 178 releases = [args.release] 180 if args.release == 'all': 184 if args.release not in ['master' 188 '%s for %s is not defined' % (args.release, lang), 191 releases = [args.release] 194 for release in releases: 195 images += build_all_images_for_release(lang, release) 203 def build_all_images_for_release(lang, release): argument 212 stack_base = checkout_grpc_stack(lang, release) [all …]
|
/external/clang/test/Analysis/ |
D | properties.m | 24 -(oneway void)release; method 110 value = [self.myNumber retain]; // this line fixes the over release 499 [p.name release]; // expected-warning{{not owned}} 502 [p.friend release]; // expected-warning{{not owned}} 507 [friend release]; // expected-warning{{not owned}} 517 [_name release]; // no-warning 521 [other.name release]; // no-warning 530 [name release]; 535 [self.name release]; 536 [self.name release]; // expected-warning{{not owned}} [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/ |
D | load-store-acquire-release-v8-thumb.s | 12 @ CHECK-V7: error: instruction requires: acquire/release 13 @ CHECK-V7: error: instruction requires: acquire/release 14 @ CHECK-V7: error: instruction requires: acquire/release 15 @ CHECK-V7: error: instruction requires: acquire/release 25 @ CHECK-V7: error: instruction requires: acquire/release 26 @ CHECK-V7: error: instruction requires: acquire/release 27 @ CHECK-V7: error: instruction requires: acquire/release 28 @ CHECK-V7: error: instruction requires: acquire/release 36 @ CHECK-V7: error: instruction requires: acquire/release 37 @ CHECK-V7: error: instruction requires: acquire/release [all …]
|
D | load-store-acquire-release-v8.s | 12 @ CHECK-V7: instruction requires: acquire/release 13 @ CHECK-V7: instruction requires: acquire/release 14 @ CHECK-V7: instruction requires: acquire/release 15 @ CHECK-V7: instruction requires: acquire/release 25 @ CHECK-V7: instruction requires: acquire/release 26 @ CHECK-V7: instruction requires: acquire/release 27 @ CHECK-V7: instruction requires: acquire/release 28 @ CHECK-V7: instruction requires: acquire/release 36 @ CHECK-V7: instruction requires: acquire/release 37 @ CHECK-V7: instruction requires: acquire/release [all …]
|
/external/llvm/test/MC/ARM/ |
D | load-store-acquire-release-v8.s | 12 @ CHECK-V7: instruction requires: acquire/release 13 @ CHECK-V7: instruction requires: acquire/release 14 @ CHECK-V7: instruction requires: acquire/release 15 @ CHECK-V7: instruction requires: acquire/release 25 @ CHECK-V7: instruction requires: acquire/release 26 @ CHECK-V7: instruction requires: acquire/release 27 @ CHECK-V7: instruction requires: acquire/release 28 @ CHECK-V7: instruction requires: acquire/release 36 @ CHECK-V7: instruction requires: acquire/release 37 @ CHECK-V7: instruction requires: acquire/release [all …]
|
D | load-store-acquire-release-v8-thumb.s | 12 @ CHECK-V7: error: instruction requires: acquire/release 13 @ CHECK-V7: error: instruction requires: acquire/release 14 @ CHECK-V7: error: instruction requires: acquire/release 15 @ CHECK-V7: error: instruction requires: acquire/release 25 @ CHECK-V7: error: instruction requires: acquire/release 26 @ CHECK-V7: error: instruction requires: acquire/release 27 @ CHECK-V7: error: instruction requires: acquire/release 28 @ CHECK-V7: error: instruction requires: acquire/release 36 @ CHECK-V7: error: instruction requires: acquire/release 37 @ CHECK-V7: error: instruction requires: acquire/release [all …]
|
/external/skia/docker/ |
D | README.md | 6 skia-release 14 docker build -t skia-release ./docker/skia-release/ 15 docker tag skia-release gcr.io/skia-public/skia-release:prod 16 docker push gcr.io/skia-public/skia-release:prod 18 skia-wasm-release 27 docker build -t skia-wasm-release ./docker/skia-wasm-release/ 28 docker tag skia-wasm-release gcr.io/skia-public/skia-wasm-release:prod 29 docker push gcr.io/skia-public/skia-wasm-release:prod 52 cmake-release 60 docker build -t cmake-release ./cmake-release/ [all …]
|
/external/llvm/utils/release/ |
D | export.sh | 20 release="" 33 release_no_dot=`echo $release | sed -e 's,\.,,g'` 44 $proj-$release$rc.src 47 tar cfJ $proj-$release$rc.src.tar.xz $proj-$release$rc.src 53 -release | --release ) 55 release=$1 77 if [ "x$release" = "x" ]; then
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/release/ |
D | export.sh | 20 release="" 33 release_no_dot=`echo $release | sed -e 's,\.,,g'` 44 $proj-$release$rc.src 47 tar cfJ $proj-$release$rc.src.tar.xz $proj-$release$rc.src 53 -release | --release ) 55 release=$1 77 if [ "x$release" = "x" ]; then
|
/external/kmod/testsuite/ |
D | uname.c | 32 const char *release; in uname() local 56 release = getenv(S_TC_UNAME_R); in uname() 57 if (release == NULL) { in uname() 63 sz = strlen(release) + 1; in uname() 64 if (sz > sizeof(u->release)) { in uname() 67 release, sizeof(u->release)); in uname() 72 memcpy(u->release, release, sz); in uname()
|
/external/u-boot/drivers/core/ |
D | devres.c | 30 dr_release_t release; member 58 void *__devres_alloc(dr_release_t release, size_t size, gfp_t gfp, in __devres_alloc() argument 61 void *_devres_alloc(dr_release_t release, size_t size, gfp_t gfp) in __devres_alloc() 72 dr->release = release; in __devres_alloc() 98 void *devres_find(struct udevice *dev, dr_release_t release, in devres_find() argument 104 if (dr->release != release) in devres_find() 120 res = devres_find(dev, new_dr->release, match, match_data); in devres_get() 131 void *devres_remove(struct udevice *dev, dr_release_t release, in devres_remove() argument 136 res = devres_find(dev, release, match, match_data); in devres_remove() 147 int devres_destroy(struct udevice *dev, dr_release_t release, in devres_destroy() argument [all …]
|
/external/python/cpython3/Lib/test/ |
D | lock_tests.py | 113 lock.release() 119 lock.release() 129 lock.release() 137 lock.release() 143 lock.release() 151 lock.release() 169 lock.release() 192 lock.release() 242 lock.release() 252 lock.release() [all …]
|