summaryrefslogtreecommitdiffstats
path: root/library/cpp/tld
Commit message (Collapse)AuthorAgeFilesLines
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-04-171-1/+1
| | | | abc4f16f2a80b89a4bb0f4961df492ad2881a007
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-04-131-1/+1
| | | | 2a8ad5153e705d400848986ee41961e9727ba64a
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-04-101-1/+1
| | | | bdeed1cefc753fe53d18db1219ca5e6b9e030933
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-04-071-1/+1
| | | | ed46af53587fda3122e7fdad8c6f60ef76e66e0e
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-04-041-1/+1
| | | | 885af1f4dbd3971fa148db453793b3bcba86ea06
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-04-011-2/+1
| | | | 38fcc9e01d924ff61e67be0f6dfda16ec0f5ad3a
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-03-251-1/+1
| | | | fb308a8b9fd2dc57f7015330464c4b55e932cec9
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-03-221-1/+1
| | | | fe68c37dc6ed2a224462df02e0deb8b1ca0ca38f
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-03-211-2/+1
| | | | edefcd6a58c9fc64b6e2322c89d7e71848bdf11a
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-03-011-1/+1
| | | | 41cc54fde10b0b783aec4948c1dc8eae35cea047
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-281-1/+1
| | | | dac62cd9954d9192bc048002d928fc9e5c9cde1f
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-251-1/+1
| | | | 7f74579a194296c8b3e8c263bfd3d35de08cce9d
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-221-1/+1
| | | | 5383f45f0d7fadf7fe1f72830869c4caa770749b
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-191-1/+1
| | | | 76faaa2be1a95a3ba117ecb4d48e22eac0360f99
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-161-1/+1
| | | | 155ab801b664cc38013eaea040033fd1eefae1b3
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-131-1/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-101-1/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-071-3/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-041-1/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-02-011-1/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-01-311-1/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-01-281-1/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-01-251-1/+1
|
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2024-01-231-3/+1
|
* Revertzenoyan2024-01-191-1/+1
| | | | Note: mandatory check (NEED_CHECK) was skipped
* Up tld listzenoyan2024-01-191-1/+1
| | | | Note: mandatory check (NEED_CHECK) was skipped
* feat contrib: aiogram 3armenqa2024-01-196-186/+0
| | | | Relates: https://st.yandex-team.ru/, https://st.yandex-team.ru/
* Import libs 4 (#758)AlexSm2023-12-271-34/+2
|
* External build system generator release 65robot-ya-builder2023-12-051-3/+3
| | | | Update tools: yexport, os-yexport
* add darwin-arm64 CMakeListsdcherednik2023-11-202-0/+35
|
* fix gen_tld.py on non-unicode locale encodingsNikita Kozlovskiy2023-06-281-11/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix gen_tld.py on non-unicode locale encodings In python versions prior to 3.7, as well as when using non-unicode locale encodings, the `gen_tld.py` script fails: ``` ydb/ydb/library/cpp/tld % git rev-parse head 97b1a695d3be4edc08550d3ae7d200f6d9f3d42e ydb/ydb/library/cpp/tld % LC_CTYPE=C ~/.pyenv/versions/3.6.15/bin/python gen_tld.py tlds-alpha-by-domain.txt|md5 Traceback (most recent call last): File "gen_tld.py", line 57, in <module> main() File "gen_tld.py", line 39, in main sys.stdout.write('%s*/\n' % str.rstrip()) UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-2: ordinal not in range(128) ``` This pull request fixes this behevaiour by explicit set output encoding to utf-8. To ensure that I do not break anything, I checked the MD5 hash of the generated file before and after making my changes: ``` ydb/ydb/library/cpp/tld % git rev-parse head 97b1a695d3be4edc08550d3ae7d200f6d9f3d42e ydb/ydb/library/cpp/tld % python3 gen_tld.py tlds-alpha-by-domain.txt|md5 564242d355d842db790977df3642a405 ``` After ``` ydb/ydb/library/cpp/tld % git rev-parse head 1096dd7f034c573aabdf3bac2dc4b181a6688c71 ydb/ydb/library/cpp/tld % python3 gen_tld.py tlds-alpha-by-domain.txt|md5 564242d355d842db790977df3642a405 ydb/ydb/library/cpp/tld % LC_CTYPE=C ~/.pyenv/versions/3.6.15/bin/python gen_tld.py tlds-alpha-by-domain.txt|md5 564242d355d842db790977df3642a405 ``` Pull Request resolved: #279
* add ymake export to ydbalexv-smirnov2023-06-132-0/+34
|
* External build system generator release 29robot-ya-builder2023-04-191-1/+1
| | | Update tools: yexport
* Revert ymake build from ydb oss exportalexv-smirnov2023-03-282-34/+0
|
* External build system generator release 21robot-ya-builder2023-03-171-3/+3
| | | Update tools: yexport
* add library/cpp/actors, ymake build to ydb oss exportalexv-smirnov2023-03-152-0/+34
|
* Intermediate changesrobot-piglet2023-03-092-0/+35
|
* Intermediate changesrobot-piglet2023-03-073-2/+2
|
* External build system generator release 17robot-ya-builder2023-03-061-1/+1
| | | Update tools: yexport
* Intermediate changesrobot-piglet2023-02-073-21/+21
|
* Intermediate changesrobot-piglet2023-02-073-21/+21
|
* External build system generator release 12robot-ya-builder2023-01-311-1/+1
| | | Update tools: yexport
* External build system generator release 8robot-ya-builder2023-01-174-4/+4
| | | Update tools: yexport
* Port gen_tld to py3svidyuk2022-12-164-18/+18
|
* Sync linux-headers instead of using system onesthegeorg2022-12-154-25/+108
|
* intermediate changesarcadia-devtools2022-03-221-64/+15
| | | | ref:a25e02cb9e00a4378514ae6347e8caf5a7808f72
* intermediate changesarcadia-devtools2022-03-152-34/+0
| | | | ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
* Improve SystemCommand check in YDB CLI, KIKIMR-14321pnv12022-03-011-0/+8
| | | | ref:fe5ed49138dce046a93c364cc8879fad3abf3eef
* intermediate changesarcadia-devtools2022-02-241-1/+1
| | | | ref:70ac1bca1acbb458c863fb4686263967ea009057
* intermediate changesarcadia-devtools2022-02-221-3/+1
| | | | ref:a2def34fe7b595460d7ee820cdd054755d790eeb