diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-10-30 14:43:19 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-10-30 15:24:20 +0300 |
commit | e589edb669af5acb0efabcfa77cebb60a9b97407 (patch) | |
tree | 7d829c61c48fdf7e3a50cc469c60eea589a03816 | |
parent | 978be2360a794c68ff6177e6c7fd7649b4e8354f (diff) | |
download | ydb-e589edb669af5acb0efabcfa77cebb60a9b97407.tar.gz |
Intermediate changes
commit_hash:8728d5088f12247cf38892337baf887b6df09d87
47 files changed, 173 insertions, 58 deletions
diff --git a/contrib/python/xmltodict/py3/.dist-info/METADATA b/contrib/python/xmltodict/py3/.dist-info/METADATA index e2aaa3e797..da6664f77f 100644 --- a/contrib/python/xmltodict/py3/.dist-info/METADATA +++ b/contrib/python/xmltodict/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: xmltodict -Version: 0.13.0 +Version: 0.14.0 Summary: Makes working with XML feel like you are working with JSON Home-page: https://github.com/martinblech/xmltodict Author: Martin Blech @@ -19,6 +19,9 @@ Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Text Processing :: Markup :: XML Requires-Python: >=3.4 @@ -29,7 +32,7 @@ License-File: LICENSE `xmltodict` is a Python module that makes working with XML feel like you are working with [JSON](http://docs.python.org/library/json.html), as in this ["spec"](http://www.xml.com/pub/a/2006/05/31/converting-between-xml-and-json.html): -[![Build Status](https://travis-ci.com/martinblech/xmltodict.svg?branch=master)](https://travis-ci.com/martinblech/xmltodict) +[![Build Status](https://app.travis-ci.com/martinblech/xmltodict.svg?branch=master)](https://app.travis-ci.com/martinblech/xmltodict) ```python >>> print(json.dumps(xmltodict.parse(""" @@ -231,6 +234,17 @@ You just need to $ pip install xmltodict ``` +### Using conda + +For installing `xmltodict` using Anaconda/Miniconda (*conda*) from the +[conda-forge channel][#xmltodict-conda] all you need to do is: + +[#xmltodict-conda]: https://anaconda.org/conda-forge/xmltodict + +```sh +$ conda install -c conda-forge xmltodict +``` + ### RPM-based distro (Fedora, RHEL, …) There is an [official Fedora package for xmltodict](https://apps.fedoraproject.org/packages/python-xmltodict). @@ -274,5 +288,3 @@ $ zypper in python2-xmltodict # Python3 $ zypper in python3-xmltodict ``` - - diff --git a/contrib/python/xmltodict/py3/README.md b/contrib/python/xmltodict/py3/README.md index ab63401a80..6f776a8b4d 100644 --- a/contrib/python/xmltodict/py3/README.md +++ b/contrib/python/xmltodict/py3/README.md @@ -2,7 +2,7 @@ `xmltodict` is a Python module that makes working with XML feel like you are working with [JSON](http://docs.python.org/library/json.html), as in this ["spec"](http://www.xml.com/pub/a/2006/05/31/converting-between-xml-and-json.html): -[![Build Status](https://travis-ci.com/martinblech/xmltodict.svg?branch=master)](https://travis-ci.com/martinblech/xmltodict) +[![Build Status](https://app.travis-ci.com/martinblech/xmltodict.svg?branch=master)](https://app.travis-ci.com/martinblech/xmltodict) ```python >>> print(json.dumps(xmltodict.parse(""" @@ -204,6 +204,17 @@ You just need to $ pip install xmltodict ``` +### Using conda + +For installing `xmltodict` using Anaconda/Miniconda (*conda*) from the +[conda-forge channel][#xmltodict-conda] all you need to do is: + +[#xmltodict-conda]: https://anaconda.org/conda-forge/xmltodict + +```sh +$ conda install -c conda-forge xmltodict +``` + ### RPM-based distro (Fedora, RHEL, …) There is an [official Fedora package for xmltodict](https://apps.fedoraproject.org/packages/python-xmltodict). diff --git a/contrib/python/xmltodict/py3/tests/__init__.py b/contrib/python/xmltodict/py3/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/contrib/python/xmltodict/py3/tests/__init__.py diff --git a/contrib/python/xmltodict/py3/tests/test_dicttoxml.py b/contrib/python/xmltodict/py3/tests/test_dicttoxml.py index 7fc21718ae..470aca98a1 100644 --- a/contrib/python/xmltodict/py3/tests/test_dicttoxml.py +++ b/contrib/python/xmltodict/py3/tests/test_dicttoxml.py @@ -144,6 +144,26 @@ class DictToXMLTestCase(unittest.TestCase): self.assertEqual(xml, unparse(obj, pretty=True, newl=newl, indent=indent)) + def test_pretty_print_with_int_indent(self): + obj = {'a': OrderedDict(( + ('b', [{'c': [1, 2]}, 3]), + ('x', 'y'), + ))} + newl = '\n' + indent = 2 + xml = dedent('''\ + <?xml version="1.0" encoding="utf-8"?> + <a> + <b> + <c>1</c> + <c>2</c> + </b> + <b>3</b> + <x>y</x> + </a>''') + self.assertEqual(xml, unparse(obj, pretty=True, + newl=newl, indent=indent)) + def test_encoding(self): try: value = unichr(39321) @@ -171,8 +191,6 @@ class DictToXMLTestCase(unittest.TestCase): self.assertEqual('<a attr="1"></a>', _strip(unparse(obj))) def test_short_empty_elements(self): - if sys.version_info[0] < 3: - return obj = {'a': None} self.assertEqual('<a/>', _strip(unparse(obj, short_empty_elements=True))) diff --git a/contrib/python/xmltodict/py3/tests/test_xmltodict.py b/contrib/python/xmltodict/py3/tests/test_xmltodict.py index 04137f9e03..037771eea3 100644 --- a/contrib/python/xmltodict/py3/tests/test_xmltodict.py +++ b/contrib/python/xmltodict/py3/tests/test_xmltodict.py @@ -93,13 +93,13 @@ class XMLToDictTestCase(unittest.TestCase): """ self.assertEqual( parse(xml), - {'root': {'emptya': None, + {'root': {'emptya': " ", 'emptyb': {'@attr': 'attrvalue'}, 'value': 'hello'}}) def test_keep_whitespace(self): xml = "<root> </root>" - self.assertEqual(parse(xml), dict(root=None)) + self.assertEqual(parse(xml), dict(root=' ')) self.assertEqual(parse(xml, strip_whitespace=False), dict(root=' ')) @@ -168,14 +168,14 @@ class XMLToDictTestCase(unittest.TestCase): except NameError: value = chr(39321) self.assertEqual({'a': value}, - parse('<a>%s</a>' % value)) + parse(f'<a>{value}</a>')) def test_encoded_string(self): try: value = unichr(39321) except NameError: value = chr(39321) - xml = '<a>%s</a>' % value + xml = f'<a>{value}</a>' self.assertEqual(parse(xml), parse(xml.encode('utf-8'))) @@ -457,3 +457,21 @@ class XMLToDictTestCase(unittest.TestCase): } } self.assertEqual(parse(xml, process_comments=True), expectedResult) + + def test_streaming_attrs(self): + xml = """ + <a> + <b attr1="value"> + <c>cdata</c> + </b> + </a> + """ + def handler(path, item): + expected = { + '@attr1': 'value', + 'c': 'cdata' + } + self.assertEqual(expected, item) + return True + + parse(xml, item_depth=2, item_callback=handler) diff --git a/contrib/python/xmltodict/py3/xmltodict.py b/contrib/python/xmltodict/py3/xmltodict.py index ca760aa637..21242cfc10 100644 --- a/contrib/python/xmltodict/py3/xmltodict.py +++ b/contrib/python/xmltodict/py3/xmltodict.py @@ -1,19 +1,10 @@ #!/usr/bin/env python "Makes working with XML feel like you are working with JSON" -try: - from defusedexpat import pyexpat as expat -except ImportError: - from xml.parsers import expat +from xml.parsers import expat from xml.sax.saxutils import XMLGenerator from xml.sax.xmlreader import AttributesImpl -try: # pragma no cover - from cStringIO import StringIO -except ImportError: # pragma no cover - try: - from StringIO import StringIO - except ImportError: - from io import StringIO +from io import StringIO _dict = dict import platform @@ -22,17 +13,8 @@ if tuple(map(int, platform.python_version_tuple()[:2])) < (3, 7): from inspect import isgenerator -try: # pragma no cover - _basestring = basestring -except NameError: # pragma no cover - _basestring = str -try: # pragma no cover - _unicode = unicode -except NameError: # pragma no cover - _unicode = str - __author__ = 'Martin Blech' -__version__ = '0.13.0' +__version__ = '0.14.0' __license__ = 'MIT' @@ -40,7 +22,7 @@ class ParsingInterrupted(Exception): pass -class _DictSAXHandler(object): +class _DictSAXHandler: def __init__(self, item_depth=0, item_callback=lambda *args: True, @@ -107,7 +89,7 @@ class _DictSAXHandler(object): attrs['xmlns'] = self.namespace_declarations self.namespace_declarations = self.dict_constructor() self.path.append((name, attrs or None)) - if len(self.path) > self.item_depth: + if len(self.path) >= self.item_depth: self.stack.append((self.item, self.data)) if self.xml_attribs: attr_entries = [] @@ -135,13 +117,13 @@ class _DictSAXHandler(object): should_continue = self.item_callback(self.path, item) if not should_continue: - raise ParsingInterrupted() + raise ParsingInterrupted if self.stack: data = (None if not self.data else self.cdata_separator.join(self.data)) item = self.item self.item, self.data = self.stack.pop() - if self.strip_whitespace and data: + if self.strip_whitespace and data and item: data = data.strip() or None if data and self.force_cdata and item is None: item = self.dict_constructor() @@ -335,9 +317,8 @@ def parse(xml_input, encoding=None, expat=expat, process_namespaces=False, """ handler = _DictSAXHandler(namespace_separator=namespace_separator, **kwargs) - if isinstance(xml_input, _unicode): - if not encoding: - encoding = 'utf-8' + if isinstance(xml_input, str): + encoding = encoding or 'utf-8' xml_input = xml_input.encode(encoding) if not process_namespaces: namespace_separator = None @@ -372,8 +353,8 @@ def parse(xml_input, encoding=None, expat=expat, process_namespaces=False, parser.ParseFile(xml_input) elif isgenerator(xml_input): for chunk in xml_input: - parser.Parse(chunk,False) - parser.Parse(b'',True) + parser.Parse(chunk, False) + parser.Parse(b'', True) else: parser.Parse(xml_input, True) return handler.item @@ -412,9 +393,7 @@ def _emit(key, value, content_handler, if result is None: return key, value = result - if (not hasattr(value, '__iter__') - or isinstance(value, _basestring) - or isinstance(value, dict)): + if not hasattr(value, '__iter__') or isinstance(value, (str, dict)): value = [value] for index, v in enumerate(value): if full_document and depth == 0 and index > 0: @@ -422,16 +401,13 @@ def _emit(key, value, content_handler, if v is None: v = _dict() elif isinstance(v, bool): - if v: - v = _unicode('true') - else: - v = _unicode('false') - elif not isinstance(v, dict): - if expand_iter and hasattr(v, '__iter__') and not isinstance(v, _basestring): + v = 'true' if v else 'false' + elif not isinstance(v, (dict, str)): + if expand_iter and hasattr(v, '__iter__'): v = _dict(((expand_iter, v),)) else: - v = _unicode(v) - if isinstance(v, _basestring): + v = str(v) + if isinstance(v, str): v = _dict(((cdata_key, v),)) cdata = None attrs = _dict() @@ -445,14 +421,16 @@ def _emit(key, value, content_handler, attr_prefix) if ik == '@xmlns' and isinstance(iv, dict): for k, v in iv.items(): - attr = 'xmlns{}'.format(':{}'.format(k) if k else '') - attrs[attr] = _unicode(v) + attr = 'xmlns{}'.format(f':{k}' if k else '') + attrs[attr] = str(v) continue - if not isinstance(iv, _unicode): - iv = _unicode(iv) + if not isinstance(iv, str): + iv = str(iv) attrs[ik[len(attr_prefix):]] = iv continue children.append((ik, iv)) + if isinstance(indent, int): + indent = ' ' * indent if pretty: content_handler.ignorableWhitespace(depth * indent) content_handler.startElement(key, AttributesImpl(attrs)) diff --git a/contrib/python/xmltodict/py3/ya.make b/contrib/python/xmltodict/py3/ya.make index 6872d9affa..462ce1b4eb 100644 --- a/contrib/python/xmltodict/py3/ya.make +++ b/contrib/python/xmltodict/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(0.13.0) +VERSION(0.14.0) LICENSE(MIT) diff --git a/vendor/github.com/golang/protobuf/internal/gengogrpc/ya.make b/vendor/github.com/golang/protobuf/internal/gengogrpc/ya.make index 3c94f9e302..942e632e4a 100644 --- a/vendor/github.com/golang/protobuf/internal/gengogrpc/ya.make +++ b/vendor/github.com/golang/protobuf/internal/gengogrpc/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.5.4) + SRCS( grpc.go ) diff --git a/vendor/github.com/golang/protobuf/protoc-gen-go/ya.make b/vendor/github.com/golang/protobuf/protoc-gen-go/ya.make index 71c8487166..db464d8212 100644 --- a/vendor/github.com/golang/protobuf/protoc-gen-go/ya.make +++ b/vendor/github.com/golang/protobuf/protoc-gen-go/ya.make @@ -2,6 +2,8 @@ GO_PROGRAM() LICENSE(BSD-3-Clause) +VERSION(v1.5.4) + SRCS( main.go ) diff --git a/vendor/google.golang.org/protobuf/cmd/protoc-gen-go/internal_gengo/ya.make b/vendor/google.golang.org/protobuf/cmd/protoc-gen-go/internal_gengo/ya.make index 114c371ff4..765e4b291d 100644 --- a/vendor/google.golang.org/protobuf/cmd/protoc-gen-go/internal_gengo/ya.make +++ b/vendor/google.golang.org/protobuf/cmd/protoc-gen-go/internal_gengo/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( init.go main.go diff --git a/vendor/google.golang.org/protobuf/compiler/protogen/ya.make b/vendor/google.golang.org/protobuf/compiler/protogen/ya.make index 65652dc84a..f2e0e6e3e0 100644 --- a/vendor/google.golang.org/protobuf/compiler/protogen/ya.make +++ b/vendor/google.golang.org/protobuf/compiler/protogen/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( protogen.go ) diff --git a/vendor/google.golang.org/protobuf/encoding/prototext/ya.make b/vendor/google.golang.org/protobuf/encoding/prototext/ya.make index 14ea8e575d..3d35bb8109 100644 --- a/vendor/google.golang.org/protobuf/encoding/prototext/ya.make +++ b/vendor/google.golang.org/protobuf/encoding/prototext/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( decode.go doc.go diff --git a/vendor/google.golang.org/protobuf/encoding/protowire/ya.make b/vendor/google.golang.org/protobuf/encoding/protowire/ya.make index 74a3dc5f92..e944a7face 100644 --- a/vendor/google.golang.org/protobuf/encoding/protowire/ya.make +++ b/vendor/google.golang.org/protobuf/encoding/protowire/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( wire.go ) diff --git a/vendor/google.golang.org/protobuf/internal/descfmt/ya.make b/vendor/google.golang.org/protobuf/internal/descfmt/ya.make index 6f0464b58b..d1c40a75f7 100644 --- a/vendor/google.golang.org/protobuf/internal/descfmt/ya.make +++ b/vendor/google.golang.org/protobuf/internal/descfmt/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( stringer.go ) diff --git a/vendor/google.golang.org/protobuf/internal/descopts/ya.make b/vendor/google.golang.org/protobuf/internal/descopts/ya.make index 26ef6cc24b..b63e12cf89 100644 --- a/vendor/google.golang.org/protobuf/internal/descopts/ya.make +++ b/vendor/google.golang.org/protobuf/internal/descopts/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( options.go ) diff --git a/vendor/google.golang.org/protobuf/internal/detrand/ya.make b/vendor/google.golang.org/protobuf/internal/detrand/ya.make index dd1b8456b9..a0d7ea6c2c 100644 --- a/vendor/google.golang.org/protobuf/internal/detrand/ya.make +++ b/vendor/google.golang.org/protobuf/internal/detrand/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( rand.go ) diff --git a/vendor/google.golang.org/protobuf/internal/editiondefaults/ya.make b/vendor/google.golang.org/protobuf/internal/editiondefaults/ya.make index eff20cca8a..e78ea669be 100644 --- a/vendor/google.golang.org/protobuf/internal/editiondefaults/ya.make +++ b/vendor/google.golang.org/protobuf/internal/editiondefaults/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( defaults.go ) diff --git a/vendor/google.golang.org/protobuf/internal/editionssupport/ya.make b/vendor/google.golang.org/protobuf/internal/editionssupport/ya.make index fde817ec3b..45b82c7de2 100644 --- a/vendor/google.golang.org/protobuf/internal/editionssupport/ya.make +++ b/vendor/google.golang.org/protobuf/internal/editionssupport/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( editions.go ) diff --git a/vendor/google.golang.org/protobuf/internal/encoding/defval/ya.make b/vendor/google.golang.org/protobuf/internal/encoding/defval/ya.make index 9f5b5a3fb7..6ba0c708dc 100644 --- a/vendor/google.golang.org/protobuf/internal/encoding/defval/ya.make +++ b/vendor/google.golang.org/protobuf/internal/encoding/defval/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( default.go ) diff --git a/vendor/google.golang.org/protobuf/internal/encoding/messageset/ya.make b/vendor/google.golang.org/protobuf/internal/encoding/messageset/ya.make index 3681a9a476..946f28d167 100644 --- a/vendor/google.golang.org/protobuf/internal/encoding/messageset/ya.make +++ b/vendor/google.golang.org/protobuf/internal/encoding/messageset/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( messageset.go ) diff --git a/vendor/google.golang.org/protobuf/internal/encoding/tag/ya.make b/vendor/google.golang.org/protobuf/internal/encoding/tag/ya.make index 12d85eb139..3b51433f66 100644 --- a/vendor/google.golang.org/protobuf/internal/encoding/tag/ya.make +++ b/vendor/google.golang.org/protobuf/internal/encoding/tag/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( tag.go ) diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/ya.make b/vendor/google.golang.org/protobuf/internal/encoding/text/ya.make index 5665f82701..cab9b833b2 100644 --- a/vendor/google.golang.org/protobuf/internal/encoding/text/ya.make +++ b/vendor/google.golang.org/protobuf/internal/encoding/text/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( decode.go decode_number.go diff --git a/vendor/google.golang.org/protobuf/internal/errors/ya.make b/vendor/google.golang.org/protobuf/internal/errors/ya.make index d958a0d019..446386647a 100644 --- a/vendor/google.golang.org/protobuf/internal/errors/ya.make +++ b/vendor/google.golang.org/protobuf/internal/errors/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( errors.go is_go113.go diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/ya.make b/vendor/google.golang.org/protobuf/internal/filedesc/ya.make index df85be08f6..11ee917a02 100644 --- a/vendor/google.golang.org/protobuf/internal/filedesc/ya.make +++ b/vendor/google.golang.org/protobuf/internal/filedesc/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( build.go desc.go diff --git a/vendor/google.golang.org/protobuf/internal/filetype/ya.make b/vendor/google.golang.org/protobuf/internal/filetype/ya.make index e0fc61c11b..9dce0cf0d9 100644 --- a/vendor/google.golang.org/protobuf/internal/filetype/ya.make +++ b/vendor/google.golang.org/protobuf/internal/filetype/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( build.go ) diff --git a/vendor/google.golang.org/protobuf/internal/flags/ya.make b/vendor/google.golang.org/protobuf/internal/flags/ya.make index 0116cd8953..f75da040cc 100644 --- a/vendor/google.golang.org/protobuf/internal/flags/ya.make +++ b/vendor/google.golang.org/protobuf/internal/flags/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( flags.go proto_legacy_disable.go diff --git a/vendor/google.golang.org/protobuf/internal/genid/ya.make b/vendor/google.golang.org/protobuf/internal/genid/ya.make index e257c029a9..3df4ae5b38 100644 --- a/vendor/google.golang.org/protobuf/internal/genid/ya.make +++ b/vendor/google.golang.org/protobuf/internal/genid/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( any_gen.go api_gen.go diff --git a/vendor/google.golang.org/protobuf/internal/impl/ya.make b/vendor/google.golang.org/protobuf/internal/impl/ya.make index 3d5e1a1077..6f477685fc 100644 --- a/vendor/google.golang.org/protobuf/internal/impl/ya.make +++ b/vendor/google.golang.org/protobuf/internal/impl/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( api_export.go checkinit.go diff --git a/vendor/google.golang.org/protobuf/internal/msgfmt/ya.make b/vendor/google.golang.org/protobuf/internal/msgfmt/ya.make index 5ed4b140dc..cd16c939f5 100644 --- a/vendor/google.golang.org/protobuf/internal/msgfmt/ya.make +++ b/vendor/google.golang.org/protobuf/internal/msgfmt/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( format.go ) diff --git a/vendor/google.golang.org/protobuf/internal/order/ya.make b/vendor/google.golang.org/protobuf/internal/order/ya.make index fbc58d1f9b..ed17c14646 100644 --- a/vendor/google.golang.org/protobuf/internal/order/ya.make +++ b/vendor/google.golang.org/protobuf/internal/order/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( order.go range.go diff --git a/vendor/google.golang.org/protobuf/internal/pragma/ya.make b/vendor/google.golang.org/protobuf/internal/pragma/ya.make index 521f22ace6..499f8bb3ed 100644 --- a/vendor/google.golang.org/protobuf/internal/pragma/ya.make +++ b/vendor/google.golang.org/protobuf/internal/pragma/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( pragma.go ) diff --git a/vendor/google.golang.org/protobuf/internal/set/ya.make b/vendor/google.golang.org/protobuf/internal/set/ya.make index ef768eff13..62b43b9e30 100644 --- a/vendor/google.golang.org/protobuf/internal/set/ya.make +++ b/vendor/google.golang.org/protobuf/internal/set/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( ints.go ) diff --git a/vendor/google.golang.org/protobuf/internal/strs/ya.make b/vendor/google.golang.org/protobuf/internal/strs/ya.make index 3e580e1999..5156dc71bd 100644 --- a/vendor/google.golang.org/protobuf/internal/strs/ya.make +++ b/vendor/google.golang.org/protobuf/internal/strs/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( strings.go strings_unsafe_go121.go diff --git a/vendor/google.golang.org/protobuf/internal/version/ya.make b/vendor/google.golang.org/protobuf/internal/version/ya.make index ca3958ecd9..357c70bad1 100644 --- a/vendor/google.golang.org/protobuf/internal/version/ya.make +++ b/vendor/google.golang.org/protobuf/internal/version/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( version.go ) diff --git a/vendor/google.golang.org/protobuf/proto/ya.make b/vendor/google.golang.org/protobuf/proto/ya.make index 6f72cc0ff1..9df48fe669 100644 --- a/vendor/google.golang.org/protobuf/proto/ya.make +++ b/vendor/google.golang.org/protobuf/proto/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( checkinit.go decode.go diff --git a/vendor/google.golang.org/protobuf/reflect/protodesc/ya.make b/vendor/google.golang.org/protobuf/reflect/protodesc/ya.make index cb217be223..1ddb6e4377 100644 --- a/vendor/google.golang.org/protobuf/reflect/protodesc/ya.make +++ b/vendor/google.golang.org/protobuf/reflect/protodesc/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( desc.go desc_init.go diff --git a/vendor/google.golang.org/protobuf/reflect/protopath/ya.make b/vendor/google.golang.org/protobuf/reflect/protopath/ya.make index 5dcf56c0c8..859addc349 100644 --- a/vendor/google.golang.org/protobuf/reflect/protopath/ya.make +++ b/vendor/google.golang.org/protobuf/reflect/protopath/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( path.go step.go diff --git a/vendor/google.golang.org/protobuf/reflect/protorange/ya.make b/vendor/google.golang.org/protobuf/reflect/protorange/ya.make index fc294f2b0e..16bb3bfc5a 100644 --- a/vendor/google.golang.org/protobuf/reflect/protorange/ya.make +++ b/vendor/google.golang.org/protobuf/reflect/protorange/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( range.go ) diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/ya.make b/vendor/google.golang.org/protobuf/reflect/protoreflect/ya.make index 7cef01fc14..f4a2f7f4f9 100644 --- a/vendor/google.golang.org/protobuf/reflect/protoreflect/ya.make +++ b/vendor/google.golang.org/protobuf/reflect/protoreflect/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( methods.go proto.go diff --git a/vendor/google.golang.org/protobuf/reflect/protoregistry/ya.make b/vendor/google.golang.org/protobuf/reflect/protoregistry/ya.make index a6fda0d69d..091dd4ba69 100644 --- a/vendor/google.golang.org/protobuf/reflect/protoregistry/ya.make +++ b/vendor/google.golang.org/protobuf/reflect/protoregistry/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( registry.go ) diff --git a/vendor/google.golang.org/protobuf/runtime/protoiface/ya.make b/vendor/google.golang.org/protobuf/runtime/protoiface/ya.make index 76eaf10dee..5b33e7681c 100644 --- a/vendor/google.golang.org/protobuf/runtime/protoiface/ya.make +++ b/vendor/google.golang.org/protobuf/runtime/protoiface/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( legacy.go methods.go diff --git a/vendor/google.golang.org/protobuf/runtime/protoimpl/ya.make b/vendor/google.golang.org/protobuf/runtime/protoimpl/ya.make index 8da76e4e71..41016080d4 100644 --- a/vendor/google.golang.org/protobuf/runtime/protoimpl/ya.make +++ b/vendor/google.golang.org/protobuf/runtime/protoimpl/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( impl.go version.go diff --git a/vendor/google.golang.org/protobuf/types/descriptorpb/ya.make b/vendor/google.golang.org/protobuf/types/descriptorpb/ya.make index a96c8d9d3c..3c3d3a0277 100644 --- a/vendor/google.golang.org/protobuf/types/descriptorpb/ya.make +++ b/vendor/google.golang.org/protobuf/types/descriptorpb/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( descriptor.pb.go ) diff --git a/vendor/google.golang.org/protobuf/types/dynamicpb/ya.make b/vendor/google.golang.org/protobuf/types/dynamicpb/ya.make index ecab55dc87..a11c30ed0e 100644 --- a/vendor/google.golang.org/protobuf/types/dynamicpb/ya.make +++ b/vendor/google.golang.org/protobuf/types/dynamicpb/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( dynamic.go types.go diff --git a/vendor/google.golang.org/protobuf/types/gofeaturespb/ya.make b/vendor/google.golang.org/protobuf/types/gofeaturespb/ya.make index 065e25268b..b2465a613e 100644 --- a/vendor/google.golang.org/protobuf/types/gofeaturespb/ya.make +++ b/vendor/google.golang.org/protobuf/types/gofeaturespb/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( go_features.pb.go ) diff --git a/vendor/google.golang.org/protobuf/types/pluginpb/ya.make b/vendor/google.golang.org/protobuf/types/pluginpb/ya.make index 7b8a798f38..479992020d 100644 --- a/vendor/google.golang.org/protobuf/types/pluginpb/ya.make +++ b/vendor/google.golang.org/protobuf/types/pluginpb/ya.make @@ -2,6 +2,8 @@ GO_LIBRARY() LICENSE(BSD-3-Clause) +VERSION(v1.34.2) + SRCS( plugin.pb.go ) diff --git a/yt/yt/core/concurrency/unittests/scheduled_executor_ut.cpp b/yt/yt/core/concurrency/unittests/scheduled_executor_ut.cpp index 2d7143297d..f0573463c6 100644 --- a/yt/yt/core/concurrency/unittests/scheduled_executor_ut.cpp +++ b/yt/yt/core/concurrency/unittests/scheduled_executor_ut.cpp @@ -19,7 +19,7 @@ class TScheduledExecutorTest //////////////////////////////////////////////////////////////////////////////// -constexpr auto ErrorMargin = TDuration::MilliSeconds(20); +constexpr auto ErrorMargin = TDuration::MilliSeconds(50); //////////////////////////////////////////////////////////////////////////////// |