Lines Matching full:stable
133 Testing --> Stable: Stabilise
134 Stable --> Deprecated: Deprecate
144 | Production | `-Dabi=deprecated,stable` |
145 | Maintenance | `-Dabi=stable` |
146 | Development | `-Dabi=deprecated,stable,testing` |
151 off of deprecated APIs by constraining the library ABI to the stable category.
169 stable.
171 ### Marking functions as testing, stable or deprecated
174 translation units) to mark functions as testing, stable or deprecated:
193 ### What does it mean to mark a function as stable?
195 Marking a function as stable makes the following promise to users of the
203 Marking a function as stable does _not_ promise that it is free of
207 Given this, it is always okay to implement functions marked stable in terms of
214 To move a function from the testing category to the stable category, it's
231 meson setup ... -Dlibpldm:abi=deprecated,stable,testing ...