| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
66f69cf2778ef870c0ddb050d260160ce8be1c3f
|
| |
|
|
|
|
| |
rate-limiter nginx module
b90ea2b46b910c5bf2e0db4ccacb45ca5c39ecaa
|
| |
|
|
|
| |
rename private fields
cfceec78649473a68bdbd3cca8635674e12e42ee
|
| |
|
|
|
| |
The TryGetEnv function can be used to distinguish the case when a variable is not defined from the case when it has an empty value.
4aab7a2a39f4b9107b0b1d1ef639dc2c41c04f42
|
| |
|
|
| |
3523ab3f5aade2bdf4c0efd5dd2defbe19f124ff
|
| |
|
|
| |
f660faa016f3549719f718b14125e02327fc02b2
|
| |
|
|
|
| |
Relates to https://github.com/ydb-platform/ydb/pull/3684
86761f5a71a48625f1e0644c483825e25ba290ed
|
| |
|
|
|
| |
The loop version works as fast as unrolled one. But the binary code size is about 7 times smaller.
9c014c6ba2ab744670f9ac2fe3bf57942e01b0a1
|
| |
|
|
|
|
|
| |
added tests
fixed MakeTempName() for paths > MAX_PATH
d3aee81b508fa0de3fea66b71618981594f262e4
|
| | |
|
| |
|
|
| |
b46c1e446c9d0f9393bf688b26db810f60add0f6
|
| |
|
|
| |
0a9e5a8cb8cd8cd03641221da29e1186a61cf984
|
| |
|
|
|
|
|
| |
В этом ревью сделано две вещи:
1. В util/system/fs добавилась функция SetExecutable
2. В TDataFetcher добавилась функция FetchEntry, аналог FetchBlob/FetchTree но с пробросом метаинформации
06888e7a37526ef46789eafd29bd2728661d8be7
|
| |
|
|
|
| |
Improve annotations
5bd824bae00ce17bf4db9b1181455252e94f0b9f
|
| | |
|
| |
|
|
| |
Relates: https://st.yandex-team.ru/, https://st.yandex-team.ru/
|
| |
|
|
|
| |
* Library import 5, delete go dependencies
* Fix yt client
|
| | |
|
| | |
|
| |
|
|
|
| |
Check the version of the nvcc compiler only if it is used.
Re-enable `[[clang::reinitialized]]` attribute for all other clang-based toolsets.
|
| |
|
|
| |
Fix warnings when compiling with old CUDA SDKs.
|
| | |
|
| |
|
|
|
|
|
| |
Add wrapper for [[clang::lifetimebound]] attribute.
Mark `ToString(TString)` functions with a new attibute.
Preserve rvalue reference type when ToString applied to a temporary string.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
https://clubs.at.yandex-team.ru/arcadia/29404
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
https://clubs.at.yandex-team.ru/arcadia/29404
|
| |
|
|
| |
заметил что в ::NPrivate::Panic и так есть написание трейса
|
| |
|
|
| |
https://clubs.at.yandex-team.ru/arcadia/29404
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
platform
При сборке проектов с ```--sanitize=thread``` под **darwin**, по умолчанию попадет ```util``` и его часть ```system/context.h```, где в случае ```thread_sanitizer_enabled``` выставляется ```USE_UCONTEXT_CONT```, что приводит к использованию [депрекейтнутного](https://opensource.apple.com/source/libplatform/libplatform-125/include/ucontext.h.auto.html) ```<ucontext.h>``` из [macos_sdk](https://a.yandex-team.ru/arcadia/build/platform/macos_sdk/ya.make?rev=rXXXXXX#L6).
Без должных изменений, сборка падает с ошибкой.
```In file included from /Users/hiddenpath/.ya/build/build_root/fnjm/000128/util/all_system_1.cpp:13:
In file included from /Users/hiddenpath/arcadia/util/system/context.cpp:31:
In file included from /Users/hiddenpath/arcadia/util/system/context.h:46:
/Users/hiddenpath/.ya/tools/v4/2088833948/usr/include/ucontext.h:51:2: error: The deprecated ucontext routines require _XOPEN_SOURCE to be defined
#error The deprecated ucontext routines require _XOPEN_SOURCE to be defined
^
In file included from /Users/hiddenpath/.ya/build/build_root/fnjm/000128/util/all_system_1.cpp:13:
In file included from /Users/hiddenpath/arcadia/util/system/context.cpp:31:
/Users/hiddenpath/arcadia/util/system/context.h:68:9: error: use of undeclared identifier 'getcontext'
getcontext(&Ctx_);
^
/Users/hiddenpath/arcadia/util/system/context.h:72:9: error: use of undeclared identifier 'getcontext'
getcontext(&Ctx_);
^
/Users/hiddenpath/arcadia/util/system/context.h:80:9: error: use of undeclared identifier 'makecontext'
makecontext(&Ctx_, (ucontext_func_t)ContextTrampoLine, 1, c.TrampoLine);
^
/Users/hiddenpath/arcadia/util/system/context.h:87:9: error: use of undeclared identifier 'swapcontext'
swapcontext(&Ctx_, &next->Ctx_);
^
5 errors generated.
Failed
|
| | |
|