aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
Commit message (Collapse)AuthorAgeFilesLines
* [unified-agent] add config endpoint to agentetoraf2024-11-061-0/+1
| | | | commit_hash:f617f0a99f254f9100cea5bb7c2adaa30ae2038d
* Better diagnostics in AbortProcess(Silently|Dramatically)babenko2024-11-068-12/+108
| | | | commit_hash:7bbc13afbd569ca9bb064aed656c12644fd2de96
* NaN-safe comparison and hashingbabenko2024-11-069-2/+294
| | | | commit_hash:46d59ab3acbd313753d3e46f3a6f10a8ebc424d8
* [libray/cpp/threading] Fix typosskvor2024-11-051-3/+3
| | | | commit_hash:f76f3edfa160fba90d0f8d594211fa35c6eb6077
* Intermediate changesrobot-piglet2024-11-051-3/+3
| | | | commit_hash:fa9cb13adebcd335794779a600c4d88ad1af00d4
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-11-051-1/+1
| | | | commit_hash:95cd91e635cd58d38f4e69396d9d6d2201f1946b
* add ::element_type, .get() to smart pointers for better compatibility with stdpavook2024-11-044-0/+22
| | | | | For example, this makes it possible to use gtest pointer matchers on smart pointers commit_hash:2650074ae18ee35696b297d3d1f0393e7350789f
* YT-22885: Refactor checked castsbabenko2024-11-038-51/+122
| | | | commit_hash:7f7600d332c3ddb5c8372e921bcba3b4fbed68f8
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-11-021-1/+1
| | | | commit_hash:fdb84ff67180fd3887207a1b681ca8ab16652f47
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-11-011-1/+1
| | | | commit_hash:b51f9bd955778fca55a0628e2ba4acc60cd9c311
* Intermediate changesrobot-piglet2024-10-311-3/+3
| | | | commit_hash:6c7ea26efb0f57227eee0726fe43fe72e05f8f33
* Fix regression: static anchors are not updated properlybabenko2024-10-303-19/+51
| | | | commit_hash:ab0bd9b2d0569820e495c714baecb05145ed35bf
* YT-22593: Migrate table schemas to std::stringbabenko2024-10-292-0/+8
| | | | | [nodiff:caesar] commit_hash:5dbd8e19169560e317e150cd4c6a420a32abdc05
* Add specialization for TString. Preparation for methods removingmikhnenko2024-10-291-0/+6
| | | | commit_hash:022cf546edf10db76dc94b3bc83aad5e07ba5da1
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-10-291-1/+1
| | | | commit_hash:dfef9ed169e7c82179061ed48b09bf25966eb5d7
* Add GetAllSetValue and IsKnownValuebabenko2024-10-273-5/+72
| | | | commit_hash:cbc39112d8384b8c4bcd2410f0a203466b400c10
* YT-22885: DEFINE_ENUM_UNKNOWN_VALUE, string-related conversionsbabenko2024-10-267-96/+165
| | | | commit_hash:14c7e42422af750383f04855b4a7ea6b267b92d2
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-10-261-1/+1
| | | | commit_hash:f4575d97774bf58fcac1caab0aa05358bac3e29a
* check POST data length to match Content-Lengthlavv172024-10-241-1/+2
| | | | commit_hash:9f66fdc1ffe8653fba7144bff4dbee4b92723b50
* Prevent hyperscan tests from flapping onhoststhegeorg2024-10-241-1/+3
| | | | commit_hash:bdcbd4c22b70c7ef3897110e2713f19166b16869
* PopCount => std::popcounttobo2024-10-223-7/+7
| | | | commit_hash:b648a03fff23eec34a775607e9435d77a885a27a
* YT-21233: Introduce TErrorAttributes as an opaque type for attributes to ↵arkady-e1ppa2024-10-226-0/+315
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | hide dependencies on IAttributeDictionary's API Plan: 1) Remove `IAttributedDictionary` type from the public API. \+ 2) Remove `Set` method from public API in favor of `operator<<=`. \+ 3) Adopt `ConvertTo<T>` (or other name) CPO with proper extension into `NYT::NYson::ConvertTo` from `yt/core`. 4) Use CPO from (3) to eliminate direct dependency on `yt/core` of `Get/Find` methods from attributes API. 5) Adopt `ConvertToYsonString` (or other name) CPO with proper extension into `yt/core` customisations. 6) Use CPO from (5) to eliminate direct dependency on `yt/core` of `TErrorAttribute` ctor. 7) Swap attributes implementation to the one which doesn’t use `IAttributeDictionary`. 8) At this point `stripped_error*` can be moved to library/cpp/yt and so can recursively dependant on THROW macro methods `Get/Find/…`. 9) Adjust CPO’s to work with `std::string` instead of `TYsonString` assuming text format to be used (maybe `TString` for now). 10) Remove dep of `library/cpp/yt/error` on `yson` entirely. This pull request covers steps 1 and 2 laying foundation to 3-4 being implemented in the next one commit_hash:e899bccdef4ebed321ea2eb93215282694c261ac
* Intermediate changesrobot-piglet2024-10-211-0/+30
| | | | commit_hash:190ff2d3da523521b04ad0065bc2c0615d719674
* Introduce message_level_overrides to tune log message levels at runtimebabenko2024-10-203-20/+35
| | | | | | | | * Changelog entry Type: feature Add message_level_overrides option to logging config for better run-time tuning. commit_hash:07e9563fd111c437edf7ac0e5dd190781878d8fa
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-10-201-1/+1
| | | | commit_hash:514e533e0d7a227fbca23493746cfdcfa224756b
* YTORM-1187: Fix IN and BETWEEN expression work with indexesdgolear2024-10-172-31/+29
| | | | commit_hash:12d86de033f73ea238ebde7f47b689d30014119a
* Fix disabling ref counted trackingnastprol2024-10-172-0/+8
| | | | commit_hash:8552424a0dfce80a71c406632beba95646bf5b3e
* remove unused includes in util/generic/string.htobo2024-10-172-0/+2
| | | | commit_hash:edd5ed00db3a4c6090c535fa406f184268188733
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-10-171-1/+1
| | | | commit_hash:a96b155c1ea432bcff49800f63149d1ff83f071e
* Fancier error messages upon static analysis check failurearkady-e1ppa2024-10-162-43/+15
| | | | commit_hash:f939fba86939275047d2eca49b11bec3d0ea3ce7
* reduce number of hash table lookups in the resource libraryswarmer2024-10-161-18/+33
| | | | commit_hash:7252be1dc97d6361957aa6f9071247cf1a2b8afe
* Intermediate changesrobot-piglet2024-10-151-0/+1
| | | | commit_hash:a9d505ad0eca8d52e322f9b3f5daaa1968f65b7b
* Increase max decimal precision to 76 (decimal256)Andrey Chulkov2024-10-156-0/+151
| | | | | | | | | | | | | | | | | | | | | * Changelog entry Type: feature Component: type system Support for decimals with precision from 35 to 76. This PR adds decimal256 support to YT. Additionally: - Decimal256 is supported in skiff as int256. - ClickHouse decimal precisions from 35 to 76 are supported in CHYT. --- Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/798 Co-authored-by: ermolovd <ermolovd@yandex-team.com> Co-authored-by: dakovalkov <dakovalkov@yandex-team.com> commit_hash:73c4809966cf4c625e6007d31b5dde14bd80e829
* Move atomic object to library/cpp/yt/threadingarkady-e1ppa2024-10-142-0/+160
| | | | | [nodiff:caesar] commit_hash:446e45e0378f6b2cb31d85bcc3e4516efbdfe5a7
* Styledgolear2024-10-141-0/+2
| | | | commit_hash:e267dc9b41e9291970d760657852a20f06fa8410
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-10-141-1/+1
| | | | commit_hash:88c0cdd1339b95fa5826e2ad3714c6ac63f5d6d9
* Extract string_builderbabenko2024-10-136-178/+218
| | | | commit_hash:1573c88f09db79bab2755c9c2c3ffd0bc219b2d2
* add include that comes transparentlytobo2024-10-111-0/+2
| | | | commit_hash:7ec5bc6f7e85e5412ff6759b0d1bd52d1172a9c1
* add include that comes transparentlytobo2024-10-111-0/+1
| | | | commit_hash:96d26ff6ad6f69272fc19ff157bb73013c3f8df7
* Support Android build for YT librarykharcheva2024-10-102-1/+11
| | | | commit_hash:a21164c621de657007dd5ba88024cf92cb5ba739
* Intermediate changesrobot-piglet2024-10-103-4/+4
| | | | commit_hash:93cf56fbe7125e68c2d1b9d57ae3ed8db0052605
* add include that comes transparentlytobo2024-10-101-0/+1
| | | | commit_hash:5be750ea1896b1ae8b1d395a4131341555dca8c9
* Use lower case for TString methods Data, Size and Empty in extsearch, ↵mikhnenko2024-10-105-8/+8
| | | | | | | fintech, games, geobase, infra, ipreg, juggler, kernel, keyboard, laas, library, logbroker, logos, mail If you think that this pr has broken something for you, roll it back commit_hash:df8e48b2a4ecbbc74a504aa3ff62ebb8f464218d
* YT: Support plain enum deserializationdgolear2024-10-103-10/+33
| | | | | (HIDDEN_URL commit_hash:d9358ac48da1ab4a4ef9ccdbf7eb77a100cf3897
* add include that comes transparentlytobo2024-10-091-0/+1
| | | | commit_hash:28a1feed886ff6f1fb586119dcdc433df011773b
* Intermediate changesrobot-piglet2024-10-084-12/+114
| | | | commit_hash:8b7eb71badc9f2fcd168ee34e8c379b35577eccb
* Drop redundant MarkAsIntentionallyLeakedbabenko2024-10-081-3/+0
| | | | commit_hash:a7e152eae3d2996e60fa5940906933bfb64bdc88
* Virtual CreateEncoder in TDynamicCountersPageiddqd2024-10-082-0/+8
| | | | | Идея в том, чтобы фильтровать нулевые метрики на выводе при помощи вот такого класса: <HIDDEN_URL> commit_hash:296137b0e9503a932eeb1bd5586772c9e4d6c1f8
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-10-081-1/+1
| | | | commit_hash:bf9375e006e1e5edc4cc8912196438cc7be884bf
* Fix spellingbabenko2024-10-083-13/+13
| | | | commit_hash:4ef7f7ef82cc22483672460eb87dfe4fa6b5d817