| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Cosmetics in ref counted | lukyan | 2022-12-26 | 3 | -7/+7 | |
| | | ||||||
| * | Sync linux-headers instead of using system ones | thegeorg | 2022-12-15 | 40 | -113/+669 | |
| | | ||||||
| * | Node maintenance requests | kvk1920 | 2022-12-08 | 2 | -4/+10 | |
| | | ||||||
| * | Fix nallocx redefinition when using lf allocator on windows | aleexfi | 2022-12-06 | 3 | -13/+18 | |
| | | ||||||
| * | Add TSharedRefArray::ToString | babenko | 2022-12-04 | 2 | -0/+22 | |
| | | ||||||
| * | remove kikimr/driver DEPENDS | qrort | 2022-12-02 | 24 | -2216/+0 | |
| | | ||||||
| * | validate canons without yatest_common | qrort | 2022-11-30 | 24 | -0/+2216 | |
| | | ||||||
| * | Fix ya-bin crashes on win when yt-store is enabled | svidyuk | 2022-11-21 | 1 | -0/+8 | |
| | | | | | | | | | | | | | | | | | | | yt-store is enabled by default on all platforms including windows PR:2997752 https://a.yandex-team.ru/review/2997752 adds ifdedfs for windows to enforce MSDN requirement that memory allocated with _alligned_allocate must be deallocated with _aligned_free. PR:3110888 https://a.yandex-team.ru/review/3110888 removes 2 of 3 ifdefs added and introduces inconsistency between allc/free functions on windows. Types with alignment requiremens less then std::max_allign_t are allocated with malloc and freed with _alligned_free. ya-bin release with this commit crashes on windows unless user explicitelly disable yt-store. Restore ifdefs which were removed in PR:3110888 in order to fix the problem. | |||||
| * | Switch to modern std::memory_order enum | babenko | 2022-11-16 | 8 | -42/+42 | |
| | | ||||||
| * | Some more tests for SS consistency over topic move | komels | 2022-11-15 | 1 | -0/+2 | |
| | | ||||||
| * | Move TChunkedOutputStream to library and make it zero-copy aware | babenko | 2022-11-13 | 4 | -43/+189 | |
| | | ||||||
| * | Properly use std::max_align_t | babenko | 2022-11-03 | 1 | -2/+2 | |
| | | ||||||
| * | Introduce aligned_malloc; drop more YTAlloc dependencies | babenko | 2022-11-03 | 8 | -38/+37 | |
| | | ||||||
| * | Remove unlocalized mode from NLG library | alexanderplat | 2022-10-31 | 1 | -1/+2 | |
| | | ||||||
| * | [pg] initialize tx timestamps | vvvv | 2022-10-30 | 3 | -21/+44 | |
| | | | | | влияет на функции now, statement_timestamp - они будут брать кешированное значение с момента инициализации comp graph. clock_timestamp сейчас всегда возвращает некешированное системное время - это потом надо будет увести в TimeProvider | |||||
| * | Remove a workaround for ancient CUDA versions | dfyz | 2022-10-29 | 2 | -0/+94 | |
| | | | | `#define noexcept throw()` is a questionable idea, since replacing `noexcept` with `throw()` in expressions such as `noexcept(true)` results in spectacular compiler errors. We stopped supporting CUDA 8 (and even CUDA 9) long ago, which means we can just get rid of the problematic define. | |||||
| * | Introduce PP_DEPAREN | babenko | 2022-10-27 | 2 | -0/+17 | |
| | | ||||||
| * | YT: Support multiple literals in YPathJoin | dgolear | 2022-10-18 | 2 | -7/+14 | |
| | | ||||||
| * | feat: add dlc-ctl package to autocheck | cody0 | 2022-10-13 | 1 | -12/+2 | |
| | | ||||||
| * | add test to reproduce the bug | gvit | 2022-10-10 | 1 | -4/+10 | |
| | | ||||||
| * | Memory reference tracking restyling | savrus | 2022-10-07 | 8 | -48/+105 | |
| | | ||||||
| * | Fix of aligned_free on windows | aleexfi | 2022-10-04 | 4 | -14/+26 | |
| | | ||||||
| * | Support logic time in ORM | dgolear | 2022-09-23 | 3 | -0/+21 | |
| | | ||||||
| * | Introduce shared range holders | savrus | 2022-09-19 | 6 | -52/+57 | |
| | | ||||||
| * | Sane handling of %x and %X for pointers in Format | babenko | 2022-09-19 | 3 | -5/+38 | |
| | | ||||||
| * | Fix tsan warnings in yt intrusive ptr | ayles | 2022-09-19 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | For example, https://github.com/google/sanitizers/issues/1352 - tsan is not working well with std::atomic_thread_fence Minimal reproducible example (and one that bothers most in every fiber-aware service): ``` auto threadPool = NYT::New<NYT::NConcurrency::TThreadPool>(2, "thread"); TVector<NYT::TFuture<void>> futures; for (size_t i = 0; i < 100000; ++i) { futures.emplace_back(BIND([]() { }).AsyncVia(threadPool->GetInvoker()).Run()); } for (auto& future : futures) { future.Get().ThrowOnError(); } ``` | |||||
| * | Rebalancing autocheck partitions and distbuild clusters. | robot-dts-analyst | 2022-09-19 | 2 | -3/+4 | |
| | | | | The process of preparing changes https://sandbox.yandex-team.ru/task/1452983473/view | |||||
| * | Support logging unstructured messages to structured log | babenko | 2022-09-15 | 4 | -1/+36 | |
| | | ||||||
| * | Update external build system generation utility | robot-ya-builder | 2022-09-01 | 1 | -0/+18 | |
| | | | | | * [cmake] Hierarchical add_subdirectroy structure * [cmake] Support for same file compilation multiple times with different flags | |||||
| * | Natively support %x and %X in Format | babenko | 2022-08-26 | 6 | -88/+289 | |
| | | ||||||
| * | Add simple atomic ptr | lukyan | 2022-08-15 | 6 | -17/+574 | |
| | | ||||||
| * | Get rid of NYTAlloc::GetAllocationSize usages | babenko | 2022-08-08 | 5 | -19/+29 | |
| | | ||||||
| * | Update contrib/restricted/boost/format to 1.79.0 | robot-contrib | 2022-08-08 | 2 | -0/+13 | |
| | | ||||||
| * | Get rid of NYTAlloc::FreeNonNull usages | babenko | 2022-08-08 | 2 | -3/+3 | |
| | | ||||||
| * | Introduce TSharedMutableRefAllocateOptions | babenko | 2022-08-07 | 5 | -28/+34 | |
| | | ||||||
| * | Reimport boost/typeof as a separate project | bugaevskiy | 2022-08-06 | 1 | -0/+4 | |
| | | ||||||
| * | coalesce | vvvv | 2022-08-02 | 2 | -0/+85 | |
| | | ||||||
| * | Reimport boost/align as a separate project | bugaevskiy | 2022-07-23 | 2 | -0/+10 | |
| | | ||||||
| * | Drop some thunks from yt/yt/core/misc, part 1 | babenko | 2022-07-20 | 1 | -1/+2 | |
| | | ||||||
| * | Better logging | hor911 | 2022-07-18 | 1 | -1/+9 | |
| | | ||||||
| * | rebalancing in sandbox task 1379675374 | robot-dts-analyst | 2022-07-18 | 2 | -2/+2 | |
| | | | | rebalancing | |||||
| * | Consistent logging | hor911 | 2022-07-16 | 6 | -122/+242 | |
| | | ||||||
| * | Fix compiling jwt-cpp on Darwin | thegeorg | 2022-07-15 | 1 | -3/+5 | |
| | | | | Нашёл локальный для Маркета фикс и вынес в код самого контриба. | |||||
| * | fix ya.make | monster | 2022-07-07 | 40 | -488/+1933 | |
| | | ||||||
| * | intermediate changes | arcadia-devtools | 2022-07-04 | 2 | -12/+10 | |
| | | | | | ref:eb323ed6990ec25c44f6fff39b4c6e695146549d | |||||
| * | intermediate changes | arcadia-devtools | 2022-06-11 | 2 | -4/+6 | |
| | | | | | ref:9f55d2c3ce619b2f172c3d636d0caefc9dc33095 | |||||
| * | intermediate changes | arcadia-devtools | 2022-06-01 | 3 | -0/+34 | |
| | | | | | ref:92c37846cff40718ed69273194a02776aa72f499 | |||||
| * | intermediate changes | arcadia-devtools | 2022-05-31 | 2 | -34/+0 | |
| | | | | | ref:85306a27df0004d13faf777131d0b092370e6b90 | |||||
| * | intermediate changes | arcadia-devtools | 2022-05-19 | 1 | -3/+2 | |
| | | | | | ref:f3ffb3a755c21a39bc6808f3e66c750045ea5b55 | |||||
| * | intermediate changes | arcadia-devtools | 2022-05-12 | 1 | -3/+3 | |
| | | | | | ref:a6dd4541cd4224304d6eeff974067ff591bc40a7 | |||||
