Home
last modified time | relevance | path

Searched +full:post +full:- +full:release (Results 1 – 25 of 558) sorted by relevance

12345678910>>...23

/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
Dversion.py38 release: Tuple[int, ...]
41 post: Optional[Tuple[str, int]]
45 def parse(version: str) -> "Version":
70 def __hash__(self) -> int:
76 def __lt__(self, other: "_BaseVersion") -> bool:
82 def __le__(self, other: "_BaseVersion") -> bool:
88 def __eq__(self, other: object) -> bool:
94 def __ge__(self, other: "_BaseVersion") -> bool:
100 def __gt__(self, other: "_BaseVersion") -> bool:
106 def __ne__(self, other: object) -> bool:
[all …]
Dutils.py35 r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE
37 _canonicalize_regex = re.compile(r"[-_.]+")
38 _normalized_regex = re.compile(r"^([a-z0-9]|[a-z0-9]([a-z0-9-](?!--))*[a-z0-9])$")
43 def canonicalize_name(name: str, *, validate: bool = False) -> NormalizedName:
47 value = _canonicalize_regex.sub("-", name).lower()
51 def is_normalized_name(name: str) -> bool:
57 ) -> str:
60 with the way it handles the release segment.
77 # Release segment
78 release_segment = ".".join(str(x) for x in parsed.release)
[all …]
Dspecifiers.py34 def _coerce_version(version: UnparsedVersion) -> Version:
54 def __str__(self) -> str:
56 Returns the str representation of this Specifier-like object. This
61 def __hash__(self) -> int:
63 Returns a hash value for this Specifier-like object.
67 def __eq__(self, other: object) -> bool:
69 Returns a boolean representing whether or not the two Specifier-like
77 def prereleases(self) -> Optional[bool]:
78 """Whether or not pre-releases as a whole are allowed.
85 def prereleases(self, value: bool) -> None:
[all …]
/third_party/littlefs/.github/workflows/
Dpost-release.yml1 name: post-release
3 release:
8 post-release:
9 runs-on: ubuntu-18.04
11 # trigger post-release in dependency repo, this indirection allows the
14 # creating PRs for other dependent repos post-release.
15 - name: trigger-post-release
16 continue-on-error: true
18 curl -sS -X POST -H "authorization: token ${{secrets.BOT_TOKEN}}" \
20 -d "$(jq -n '{
[all …]
/third_party/node/doc/contributing/
Dsecurity-release-process.md1 # Security release process
3 The security release process covers the steps required to plan/implement a
4 security release. This document is copied into the description of the Next
5 Security Release and used to track progress on the release. It contains _**TEXT
6 LIKE THIS**_ which will be replaced during the release process with the
9 ## Security release stewards
11 For each security release, a security steward will take ownership for
17 [security steward on/off boarding](security-steward-on-off-boarding.md).
20 [README.md](https://github.com/nodejs/node#security-release-stewards).
22 | Company | Person | Release Date |
[all …]
Dreleases.md1 # Node.js release process
3 This document describes the technical aspects of the Node.js release process.
6 official release builds for Node.js, hosted on <https://nodejs.org/>.
10 * [Who can make a release?](#who-can-make-a-release)
11 * [1. Jenkins release access](#1-jenkins-release-access)
12 * [2. \<nodejs.org> access](#2-nodejsorg-access)
13 * [3. A publicly listed GPG key](#3-a-publicly-listed-gpg-key)
14 * [How to create a release](#how-to-create-a-release)
15 * [0. Pre-release steps](#0-pre-release-steps)
16 * [1. Update the staging branch](#1-update-the-staging-branch)
[all …]
/third_party/mesa3d/docs/relnotes/
D9.2.3.rst1 Mesa 9.2.3 Release Notes / (November 13, 2013)
4 Mesa 9.2.3 is a bug fix release which fixes bugs found since the 9.2.2
5 release.
15 -------------
19 66e9a33a414f801e1c33398bf627d56b MesaLib-9.2.3.tar.gz
20 f56b6beb556e4b9072814419f7c554e3 MesaLib-9.2.3.tar.bz2
21 ed852dab576faac237ac4298bf55d0a1 MesaLib-9.2.3.zip
24 ------------
29 ---------
33 - `Bug 69437 <https://bugs.freedesktop.org/show_bug.cgi?id=69437>`__ -
[all …]
/third_party/astc-encoder/jenkins/
Dnightly.Jenkinsfile1 /* This pipeline is used for post-commit testing, so it runs frequently.
5 * - Run the entire pipeline in less than 10 minutes.
6 * - Test builds on all supported operating systems.
7 * - Test builds on all supported compilers.
8 * - Test release and debug build variants.
9 * - Run functional smoke tests.
10 * - Run image quality smoke tests.
16 @Library('hive-infra-library@changes/86/295486/1') _
29 /* Build for Linux on x86-64 using GCC */
41 - name: artifactory-ms-docker
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/proposals/
DVK_EXT_external_memory_acquire_unmodified.adoc1 // Copyright 2023-2024 The Khronos Group Inc.
3 // SPDX-License-Identifier: CC-BY-4.0
7 :refpage: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/
22 non-external memory.
30 The resource's _non-external memory_, in this discussion,
31 is any implementation-private memory that
37 and the non-external memory may contain implementation-private metadata.
39 the resource's non-external memory, unlike its external memory, is
43 non-external memory for the resource.
50 In particular, operations that seem to be read-only may modify a resource's
[all …]
/third_party/rust/crates/clap/.github/workflows/
Dpost-release.yml1 name: post-release
5 - "v*"
10 create-release:
12 contents: write # for actions/create-release to create a release
13 name: create-release
14 runs-on: ubuntu-latest
16 upload_url: ${{ steps.release.outputs.upload_url }}
19 - name: Get the release version from the tag
23 …# See: https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight…
26 - name: Checkout repository
[all …]
/third_party/python/Lib/distutils/command/
Dbdist_rpm.py19 ('bdist-base=', None,
21 ('rpm-base=', None,
23 "--bdist-base; must be specified for RPM 2)"),
24 ('dist-dir=', 'd',
26 "(and .spec files if --spec-only)"),
28 "path to Python interpreter to hard-code in the .spec file "
30 ('fix-python', None,
31 "hard-code the exact path to the current Python interpreter in "
33 ('spec-only', None,
35 ('source-only', None,
[all …]
/third_party/skia/infra/wasm-common/perf/
Dwasm_perf_aggregator.go2 // Use of this source code is governed by a BSD-style license that can be
7 // This server runs along side the karma tests and listens for POST requests
45 … = flag.String("builder", "", "Builder, like 'Test-Debian9-EMCC-GCE-CPU-AVX2-wasm-Debug-All-P…
47 config = flag.String("config", "Release", "Configuration (e.g. Debug/Release) key")
48 gitHash = flag.String("git_hash", "-", "The git commit hash of the version being tested")
89 if strings.Index(*builder, "-GPU-") != -1 {
116 if r.Method != "POST" {
117 http.Error(w, "Only POST accepted", 400)
160 if r.Method != "POST" {
161 http.Error(w, "Only POST accepted", 400)
/third_party/lame/
Dlame.spec.in8 Summary(fr) : LAME n'est pas un encodeur MP3 ;->
11 Release: %{rel}
17 Source: %{name}-%{version}.tar.gz
18 BuildRoot: %{_tmppath}/%{name}-root
20 BuildRequires: gcc => 3.0.1, /usr/bin/find, ncurses-devel
31 %description -l fr
57 rm -f config.cache
61 --enable-nasm \
63 --enable-decoder \
64 --without-vorbis \
[all …]
/third_party/skia/infra/lottiecap/gold/
Dlottie-web-aggregator.go2 // Use of this source code is governed by a BSD-style license that can be
7 // This server runs alongside lottiecap.js and istens for POST requests
10 // TODO(kjlubick): Deduplicate with pathkit-aggregator
42 … = flag.String("builder", "", "Builder, like 'Test-Debian9-EMCC-GCE-CPU-AVX2-wasm-Debug-All-P…
43 renderer = flag.String("renderer", "lottie-web", "e.g. lottie-web or skottie")
44 config = flag.String("config", "Release", "Configuration (e.g. Debug/Release) key")
45 gitHash = flag.String("git_hash", "-", "The git commit hash of the version being tested")
94 if r.Method != "POST" {
95 http.Error(w, "Only POST accepted", 400)
152 if r.Method != "POST" {
[all …]
/third_party/skia/infra/wasm-common/gold/
Dwasm_gold_aggregator.go2 // Use of this source code is governed by a BSD-style license that can be
7 // This server runs along side the karma tests and listens for POST requests
42 … = flag.String("builder", "", "Builder, like 'Test-Debian9-EMCC-GCE-CPU-AVX2-wasm-Debug-All-P…
44 config = flag.String("config", "Release", "Configuration (e.g. Debug/Release) key")
45 gitHash = flag.String("git_hash", "-", "The git commit hash of the version being tested")
73 if strings.Index(*builder, "-GPU-") != -1 {
102 if r.Method != "POST" {
103 http.Error(w, "Only POST accepted", 400)
163 if r.Method != "POST" {
164 http.Error(w, "Only POST accepted", 400)
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/
DMidiDeviceMonitor.java8 * http://www.apache.org/licenses/LICENSE-2.0
35 * This class is used to workaround a bug in the M release of the Android MIDI API.
43 * This code checks to see if the N release is being used. N has a fix for the bug.
46 * Note that this code is not thread-safe. It should only be called from the UI thread.
71 handler.post(new Runnable() { in onDeviceAdded()
89 handler.post(new Runnable() { in onDeviceRemoved()
107 handler.post(new Runnable() { in onDeviceStatusChanged()
/third_party/libwebsockets/READMEs/
Drelease-checklist1 Release Checklist
2 -----------------
4 1) non-CI QA
12 - CMakeLists.txt
16 - scripts/libwebsockets.spec
18 -/%{_libdir}/libwebsockets.so.6
27 - NEW
28 - CHANGE
29 - REMOVE
33 - CMakeLists.txt
[all …]
/third_party/node/deps/openssl/openssl/
DREADME.md7 [README-OpenSSL.md](https://github.com/quictls/openssl/blob/openssl-3.0.13%2Bquic/README-OpenSSL.md)
11 [charter](https://datatracker.ietf.org/wg/quic/about/), QUIC is a "UDP-based,
12 stream-multiplexing, encrypted transport protocol." If you don't need QUIC, you
22 [blog post](https://www.openssl.org/blog/blog/2020/02/17/QUIC-and-OpenSSL/) and
23 [openssl-project email](https://github.com/quictls/openssl/discussions/54)
26 As stated in their blog post, the OpenSSL team is focused on their 3.0 release
27 (released 2021-09-07), and does not intend to add QUIC functionality to 1.1.x.
28 There is a community need for a QUIC-capable TLS library. This fork is intended
42 --------------------
45 `+quic`. Release tags are likely to be the QUIC branch with `-releaseX` appended.
[all …]
/third_party/icu/docs/userguide/strings/
Dcharacteriterator.md1 ---
6 ---
7 <!--
10 -->
17 accessing characters in a text-storage object. This class has methods for
37 The information can be restricted to a sub-range of characters, can contain a
45 Prior to ICU release 1.6, the CharacterIterator class allowed access to a single
46 UChar at a time and did not support variable-width encoding. Single UChar
48 encodings. Beginning with ICU release 1.6, the CharacterIterator class now
49 efficiently supports UTF-16 encodings and provides new APIs for UTF32 return
[all …]
/third_party/libcoap/include/coap3/
Dcoap_resource.h2 * coap_resource.h -- generic resource handling
4 * Copyright (C) 2010,2011,2014-2023 Olaf Bergmann <bergmann@tzi.org>
6 * SPDX-License-Identifier: BSD-2-Clause
49 * Observe Notifications will be sent non-confirmable by default. RFC 7641
51 * https://rfc-editor.org/rfc/rfc7641#section-4.5
58 * https://rfc-editor.org/rfc/rfc7641#section-4.5
63 * Observe Notifications will always be sent non-confirmable. This is in
65 * https://rfc-editor.org/rfc/rfc7641#section-4.5
68 * https://rfc-editor.org/rfc/rfc8782#section-4.4.2.1
74 * https://rfc-editor.org/rfc/rfc7252#section-11.3
[all …]
/third_party/python/Lib/idlelib/
DHISTORY.txt4 This file contains the release messages for previous IDLE releases.
11 *Release date: 22-Jul-2001*
13 - New tarball released as a result of the 'revitalisation' of the IDLEfork
16 - This release requires python 2.1 or better. Compatibility with earlier
20 - This release is based on a merging of the earlier IDLE fork work with current
21 cvs IDLE (post IDLE version 0.8), with some minor additional coding by Kurt
24 - This release is basically functional but also contains some known breakages,
27 release (0.7.1) as well.
29 - This release is being made now to mark the point at which IDLEfork is
32 - IDLEfork CVS will now be branched to enable further development and
[all …]
/third_party/nghttp2/fedora/
Dspdylay.spec4 Release: 1%{?dist}
10 Source0: %{name}-%{version}.tar.gz
11 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
13 BuildRequires: pkgconfig >= 0.20, zlib >= 1.2.3, gcc, gcc-c++, make
14 BuildRequires: openssl-devel, CUnit-devel
30 Requires: %{name} = %{version}-%{release}
33 The %{name}-devel package contains libraries and header files for
37 %setup -q
40 autoreconf -i
43 %configure --disable-static --enable-examples --disable-xmltest
[all …]
/third_party/cups/
Dcups.spec6 # http://www.apache.org/licenses/LICENSE-2.0
19 Release: 11
20 Summary: CUPS is the standards-based, open source printing system for linux operating systems.
21 License: Apache-2.0 WITH LLVM-exception
24 Source0: https://github.com/OpenPrinting/cups/releases/download/v%{version}/cups-%{version}-source.…
29 Patch1: cups-system-auth.patch
30 Patch2: cups-multilib.patch
31 Patch3: cups-banners.patch
32 Patch4: cups-direct-usb.patch
33 Patch5: cups-driverd-timeout.patch
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
Dwaiter.h7 // https://www.apache.org/licenses/LICENSE-2.0
42 // May be chosen at compile time via -DABSL_FORCE_WAITER_MODE=<index>
64 // Waiter is an OS-specific semaphore.
77 // Blocks the calling thread until a matching call to `Post()` or
78 // `t` has passed. Returns `true` if woken (`Post()` called),
83 void Post();
87 // `Post()` or timeout.
95 return reinterpret_cast<Waiter*>(identity->waiter_state.data); in GetWaiter()
103 // so we release resources sooner. The value of 1 leads to 1 to 2 second
110 // Futexes are defined by specification to be 32-bits.
[all …]
/third_party/python/Lib/distutils/
Dversion.py21 an equivalent string -- ie. one that will generate an equivalent
76 # Interface for version-number classes -- must be implemented
77 # by the following classes (the concrete ones -- Version should
79 # __init__ (string) - create and take same action as 'parse'
81 # parse (string) - convert a string representation to whatever
84 # __str__ (self) - convert back to a string; should be very similar
86 # __repr__ (self) - generate Python code to recreate
88 # _cmp (self, other) - compare two version numbers ('other' may
98 dot-separated numeric components, with an optional "pre-release" tag
99 on the end. The pre-release tag consists of the letter 'a' or 'b'
[all …]

12345678910>>...23