Home
last modified time | relevance | path

Searched refs:release (Results 1 – 25 of 6855) sorted by relevance

12345678910>>...275

/external/mesa3d/docs/
Drelnotes.rst4 The release notes summarize what's new or changed in each Mesa release.
6 - :doc:`20.2.2 release notes <relnotes/20.2.2>`
7 - :doc:`20.1.10 release notes <relnotes/20.1.10>`
8 - :doc:`20.2.1 release notes <relnotes/20.2.1>`
9 - :doc:`20.2.0 release notes <relnotes/20.2.0>`
10 - :doc:`20.1.9 release notes <relnotes/20.1.9>`
11 - :doc:`20.1.8 release notes <relnotes/20.1.8>`
12 - :doc:`20.1.7 release notes <relnotes/20.1.7>`
13 - :doc:`20.1.6 release notes <relnotes/20.1.6>`
14 - :doc:`20.1.5 release notes <relnotes/20.1.5>`
[all …]
/external/grpc-grpc/templates/
Dpackage.xml.template18 <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/python/cpython3/Lib/
Dplatform.py261 def _syscmd_ver(system='', release='', version='', argument
276 return system, release, version
293 return system, release, version
299 system, release, version = m.groups()
301 if release[-1] == '.':
302 release = release[:-1]
308 return system, release, version
360 def win32_ver(release='', version='', csd='', ptype=''): argument
364 return release, version, csd, ptype
373 release = (_WIN32_CLIENT_RELEASES.get((major, minor)) or
[all …]
/external/python/cpython2/Lib/
Dplatform.py514 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/Demo/threads/
Dsync.py301 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/python/cpython2/Lib/test/
Dlock_tests.py87 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/tpm2-tss/
DRELEASE.md2 This document describes the general process that maintainers must follow when making a release of t…
21 In the run up to a release the maintainers may create tags to identify progress toward the release.
22 … cases we will append a string to the release number to indicate progress using the abbreviation `…
24 We append an incremental digit `X` in case more than one release candidate is necessary to communic…
27 Before a release is made the `coverity_scan` branch must be updated to the point in git history whe…
29 The results of this scan must be dispositioned by the maintainers before the release is made.
32 When a release is made a tag is created in the git repo identifying the release by the [version str…
33 The tag should be pushed to upstream git repo as the last step in the release process.
34 **NOTE** tags for release candidates will be deleted from the git repository after a release with t…
35 **NOTE** release (not release candidate) tags should be considered immutable.
[all …]
/external/curl/docs/
DEARLY-RELEASE.md1 # How to determine if an early patch release is warranted
4 and do an early patch release.
6 We do frequent releases partly to always have the next release "not too far
11 During the release cycle, and especially in the beginning of a new cycle,
14 associated fix important enough for an early patch release.
19 ## Early release
21 An early patch release means that we ship a new, complete and full release
23 the previous release. A curl release is a curl release. There is no small or
24 big and we never release just a patch. There is only "release".
32 If the answer is yes to one or more of the above, an early release might
[all …]
/external/llvm/docs/
DHowToReleaseLLVM.rst17 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 …]
DReleaseProcess.rst12 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/rust/crates/grpcio-sys/grpc/tools/interop_matrix/
Dcreate_matrix_images.py42 set(release
44 for release in release_dict.keys())))
166 if args.release != 'master':
170 releases = [args.release]
172 if args.release == 'all':
176 if args.release not in ['master'
180 (args.release, lang),
183 releases = [args.release]
186 for release in releases:
187 images += build_all_images_for_release(lang, release)
[all …]
/external/python/cpython2/Doc/tools/extensions/
Dpatchlevel.py35 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/python/cpython3/Doc/tools/extensions/
Dpatchlevel.py34 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/deqp/external/vulkancts/modules/vulkan/api/
DvktApiNullHandleTests.cpp42 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
53 inline void release (Context& context, VkCommandPool commandPool, const VkAllocationCallbacks* pAll… in release() function
58 inline void release (Context& context, VkDescriptorPool descriptorPool, const VkAllocationCallbacks… in release() function
64 inline void release (Context& context, VkDescriptorSetLayout descriptorSetLayout, const VkAllocatio… in release() function
69 inline void release (Context& context, VkDevice device, const VkAllocationCallbacks* pAllocator) in release() function
74 inline void release (Context& context, VkEvent event, const VkAllocationCallbacks* pAllocator) in release() function
79 inline void release (Context& context, VkFence fence, const VkAllocationCallbacks* pAllocator) in release() function
84 inline void release (Context& context, VkFramebuffer framebuffer, const VkAllocationCallbacks* pAll… in release() function
89 inline void release (Context& context, VkImage image, const VkAllocationCallbacks* pAllocator) in release() function
[all …]
/external/grpc-grpc/tools/interop_matrix/
Dcreate_matrix_images.py174 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/
Dproperties.m24 -(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/llvm/utils/release/
Dexport.sh20 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/llvm/test/MC/ARM/
Dload-store-acquire-release-v8.s12 @ 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 …]
Dload-store-acquire-release-v8-thumb.s12 @ 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/tensorflow/tensorflow/python/lib/io/
Dfile_io_wrapper.cc64 py::gil_scoped_release release; in PYBIND11_MODULE() local
73 py::gil_scoped_release release; in PYBIND11_MODULE() local
83 py::gil_scoped_release release; in PYBIND11_MODULE() local
95 py::gil_scoped_release release; in PYBIND11_MODULE() local
106 py::gil_scoped_release release; in PYBIND11_MODULE() local
118 py::gil_scoped_release release; in PYBIND11_MODULE() local
129 py::gil_scoped_release release; in PYBIND11_MODULE() local
140 py::gil_scoped_release release; in PYBIND11_MODULE() local
150 py::gil_scoped_release release; in PYBIND11_MODULE() local
166 py::gil_scoped_release release; in PYBIND11_MODULE() local
[all …]
/external/kmod/testsuite/
Duname.c32 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/armnn/third-party/half/
DChangeLog.txt4 1.12.0 release (2017-03-06):
15 1.11.0 release (2013-11-16):
26 1.10.0 release (2013-11-09):
38 1.9.2 release (2013-11-01):
46 1.9.1 release (2013-08-08):
53 1.9.0 release (2013-08-07):
65 1.8.1 release (2013-01-22):
72 1.8.0 release (2013-01-19):
85 1.7.0 release (2012-10-26):
92 1.6.1 release (2012-09-13):
[all …]
/external/skia/docker/
DREADME.md5 ## skia-release
12 docker build -t skia-release ./docker/skia-release/
13 docker tag skia-release gcr.io/skia-public/skia-release:prod
14 docker push gcr.io/skia-public/skia-release:prod
16 ## skia-wasm-release
24 docker build -t skia-wasm-release ./docker/skia-wasm-release/
25 docker tag skia-wasm-release gcr.io/skia-public/skia-wasm-release:prod
26 docker push gcr.io/skia-public/skia-wasm-release:prod
48 ## cmake-release
55 docker build -t cmake-release ./cmake-release/
[all …]
/external/skia/tools/skslc/
DMakefile3 bazel run //tools/skslc:compile_glsl_tests --config=release
4 bazel run //tools/skslc:compile_glsl_nosettings_tests --config=release
5 bazel run //tools/skslc:compile_metal_tests --config=release
6 bazel run //tools/skslc:compile_skrp_tests --config=release
7 bazel run //tools/skslc:compile_skvm_tests --config=release
8 bazel run //tools/skslc:compile_stage_tests --config=release
9 bazel run //tools/skslc:compile_spirv_tests --config=release
10 bazel run //tools/skslc:compile_wgsl_tests --config=release
11 bazel run //tools/skslc:compile_hlsl_tests --config=release
/external/python/cryptography/docs/
Ddoing-a-release.rst1 Doing a release
4 Doing a release of ``cryptography`` requires a few steps.
9 In addition to the other steps described below, for a release which fixes a
14 starting the release process so that the CVE is available at the time of the
15 release.
17 * The release should be announced on the `oss-security`_ mailing list, in
23 The release process creates wheels bundling OpenSSL for Windows, macOS, and
37 The next step in doing a release is bumping the version number in the
42 * Set the release date in the :doc:`/changelog`.
47 Performing the release
[all …]

12345678910>>...275