<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ydb/util, branch oidc-1.2.6</title>
<subtitle>Mirror of YDB github repos</subtitle>
<id>https://code.mastervirt.ru/ydb/atom?h=oidc-1.2.6</id>
<link rel='self' href='https://code.mastervirt.ru/ydb/atom?h=oidc-1.2.6'/>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/'/>
<updated>2025-09-12T21:28:03Z</updated>
<entry>
<title>Fix `-Wignored-qualifiers` improved in clang20 in util</title>
<updated>2025-09-12T21:28:03Z</updated>
<author>
<name>mikhnenko</name>
<email>mikhnenko@yandex-team.com</email>
</author>
<published>2025-09-12T21:10:27Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=c2b29fe7b839b5ab83373ade274fe08838d14789'/>
<id>urn:sha1:c2b29fe7b839b5ab83373ade274fe08838d14789</id>
<content type='text'>
Fix errors from [here](https://nda.ya.ru/t/6hgrAk757JpcZP
commit_hash:46e426f3170c5b9881f552314f602e57662334a6
</content>
</entry>
<entry>
<title>no COW mode for TString</title>
<updated>2025-09-09T17:46:48Z</updated>
<author>
<name>pg</name>
<email>pg@yandex-team.com</email>
</author>
<published>2025-09-09T17:30:07Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=4714cd5a942e9e6fda3cce0d892412037c5330ad'/>
<id>urn:sha1:4714cd5a942e9e6fda3cce0d892412037c5330ad</id>
<content type='text'>
commit_hash:cac5390ad9d9bc5822ca2f6ebd362a55d4190759
</content>
</entry>
<entry>
<title>fix bug in GetMemInfo on freebsd</title>
<updated>2025-08-29T16:20:50Z</updated>
<author>
<name>tldr</name>
<email>tldr@yandex-team.com</email>
</author>
<published>2025-08-29T16:01:25Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=4906bc8c585d0609d7cef4ea83891f6957665c28'/>
<id>urn:sha1:4906bc8c585d0609d7cef4ea83891f6957665c28</id>
<content type='text'>
commit_hash:47d410520be641eaa93ab44b92da8a095e72d301
</content>
</entry>
<entry>
<title>Add forward-declaration of TBlob to util/generic/fwd.h</title>
<updated>2025-08-22T07:11:15Z</updated>
<author>
<name>thegeorg</name>
<email>thegeorg@yandex-team.com</email>
</author>
<published>2025-08-22T06:54:05Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=cd599f2d5b4c6593a9770488c4affb53f46e42f6'/>
<id>urn:sha1:cd599f2d5b4c6593a9770488c4affb53f46e42f6</id>
<content type='text'>
While the class itself it defined in `util/memory/blob.h`, it seems better to reuse an existing `fwd.h` rather than creating a new one.
commit_hash:3e373ab68ced34c709ee12e3ce5b544376ac8417
</content>
</entry>
<entry>
<title>Don't use deprecated literal operator</title>
<updated>2025-08-20T13:17:57Z</updated>
<author>
<name>namorniradnug</name>
<email>namorniradnug@yandex-team.com</email>
</author>
<published>2025-08-20T12:59:22Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=bb6c48f24c7a2004cb90d7f2907d49a29888b25e'/>
<id>urn:sha1:bb6c48f24c7a2004cb90d7f2907d49a29888b25e</id>
<content type='text'>
Newer clang versions produce the `deprecated-literal-operator` warning.
See https://reviews.llvm.org/D152632 and https://wg21.link/CWG2521.
commit_hash:52ebdc26dfe511681a1d73f24a8ba96592bb1b47
</content>
</entry>
<entry>
<title>TTempFile should be move-only. Implement proper move semantics.</title>
<updated>2025-08-15T09:25:32Z</updated>
<author>
<name>akhropov</name>
<email>akhropov@yandex-team.com</email>
</author>
<published>2025-08-15T07:44:33Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=4528158cce9713da50392a22f80e9390fe37423e'/>
<id>urn:sha1:4528158cce9713da50392a22f80e9390fe37423e</id>
<content type='text'>
#### Реализация move-семантики для TTempFile и оптимизация передачи параметров 📝

- 🔄 **Сделал TTempFile move-only классом**:
  - Удалили копирующий конструктор и оператор присванивания
  - Добавили перемещающий конструктор и оператор с noexcept
  - Изменили хранение имени файла в TMaybe для безопасного перемещения
  - Добавили явное удаление временного файла в операторе перемещения

- 🏗 **Оптимизировали передачу параметров в различных классах**:
  - Заменили передачу объектов по значению/константной ссылке на перемещение (std::move)
  - Основные изменения коснулись параметров среды (envParams) и аргументов процессов

- ✨ **Улучшили обработку временных файлов**:
  - Убрали лишнее поле TTempFile из TSmallEnvParams
  - Вектор временных файлов теперь корректно хранится и обрабатывается через move-семантику

- 📝 **Прочие улучшения**:
  - Исправлены контексты вызовов, где используется временная файловая система
  - Оптимизированы аргументы запуска процессов через std::move
  - Добавлено перемещение для аргументов стандартных потоков ввода-вывода

---
**Оценить качество описания можно [здесь](https://nda.ya.ru/t/_MxIaV0Q7FnCMG**

&lt;a href="https://nda.ya.ru/t/qa0kX64r7DqvtN"&gt;&lt;font size="2"&gt;Autodescription by Code Assistant&lt;/font&gt;&lt;/a&gt;
commit_hash:474bcbb9db8c7dc14d7aa204991ecdb4611e8e87
</content>
</entry>
<entry>
<title>Intermediate changes</title>
<updated>2025-08-15T09:04:53Z</updated>
<author>
<name>robot-piglet</name>
<email>robot-piglet@yandex-team.com</email>
</author>
<published>2025-08-15T07:42:46Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=c9c9e8fc0ab787644561475580a4a4f581f065d4'/>
<id>urn:sha1:c9c9e8fc0ab787644561475580a4a4f581f065d4</id>
<content type='text'>
commit_hash:c453d8ab5fbf0440dec8356e0f741bfe25d48033
</content>
</entry>
<entry>
<title>TIntrusivePtr is not needed here</title>
<updated>2025-08-11T17:33:24Z</updated>
<author>
<name>akhropov</name>
<email>akhropov@yandex-team.com</email>
</author>
<published>2025-08-11T17:16:01Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=7e1e1f8e8fb81a9389e154824a781a9adfd41293'/>
<id>urn:sha1:7e1e1f8e8fb81a9389e154824a781a9adfd41293</id>
<content type='text'>
commit_hash:54b9e74039cd4f86cc8ab610b27005a5199af4f9
</content>
</entry>
<entry>
<title>Fix grammar, better wording and fix the version of the standard</title>
<updated>2025-08-10T22:05:52Z</updated>
<author>
<name>akhropov</name>
<email>akhropov@yandex-team.com</email>
</author>
<published>2025-08-10T21:53:36Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=bc638812127dd833b78c313929603c1e3a43ac06'/>
<id>urn:sha1:bc638812127dd833b78c313929603c1e3a43ac06</id>
<content type='text'>
commit_hash:af06eeb383729e2b7ce1254d0a24f68b126591fe
</content>
</entry>
<entry>
<title>Fix typo</title>
<updated>2025-08-06T09:41:00Z</updated>
<author>
<name>mikailbag</name>
<email>mikailbag@yandex-team.com</email>
</author>
<published>2025-08-06T09:04:12Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=ba4771ba91781c6aef0bfa2506302c4b3e2a2e73'/>
<id>urn:sha1:ba4771ba91781c6aef0bfa2506302c4b3e2a2e73</id>
<content type='text'>
This fixes a typo caught by GameRoMan in https://github.com/yandex/perforator/pull/51
commit_hash:0fba8e46bed70f3afbd3f4a5a473be24c67e8f2f
</content>
</entry>
</feed>
