Browse Source

Restoring authorship annotation for <myltsev@yandex-team.ru>. Commit 1 of 2.

myltsev 3 years ago
parent
commit
9166d66c30

+ 3 - 3
build/rules/contrib_restricted.policy

@@ -74,9 +74,9 @@ ALLOW extsearch/audio/kernel/recoglib -> contrib/restricted/mpg123
 ALLOW yandex_io -> contrib/restricted/openal-soft
 ALLOW speechkit -> contrib/restricted/openal-soft
 
-# rubberband is a GPL audio stretching library
-ALLOW dict/mt/video -> contrib/restricted/rubberband
-
+# rubberband is a GPL audio stretching library 
+ALLOW dict/mt/video -> contrib/restricted/rubberband 
+ 
 # Allowed subset of abseil is exported via library/
 ALLOW library/cpp/containers/absl_flat_hash -> contrib/restricted/abseil-cpp/absl/container
 ALLOW library/cpp/containers/absl_tstring_flat_hash -> contrib/restricted/abseil-cpp-tstring/y_absl/container

+ 12 - 12
build/ya.conf.json

@@ -1350,14 +1350,14 @@
                 }
             ]
         },
-        "sandboxctl": {
-            "tools": {
+        "sandboxctl": { 
+            "tools": { 
                 "sandboxctl": {
                     "bottle": "sandboxctl",
                     "executable": "sandboxctl"
                 }
-            },
-            "platforms": [
+            }, 
+            "platforms": [ 
                 {
                     "host": {
                         "os": "LINUX"
@@ -1376,8 +1376,8 @@
                     },
                     "default": true
                 }
-            ]
-        },
+            ] 
+        }, 
         "gcc82": {
             "tools": {
                 "cc": {
@@ -5920,19 +5920,19 @@
                 ]
             }
         },
-        "sandboxctl": {
-            "formula": {
+        "sandboxctl": { 
+            "formula": { 
                 "sandbox_id": [
                     832226067
                 ],
                 "match": "tools/sandboxctl/bin/sandboxctl"
-            },
-            "executable": {
+            }, 
+            "executable": { 
                 "sandboxctl": [
                     "sandboxctl"
                 ]
-            }
-        },
+            } 
+        }, 
         "python": {
             "formula": {
                 "sandbox_id": 981577320,

+ 1 - 1
contrib/libs/ya.make

@@ -220,7 +220,7 @@ RECURSE(
     lzmasdk
     lzo2
     matrixssl
-    mecab
+    mecab 
     metrohash
     mimalloc
     minilzo

+ 3 - 3
contrib/python/dateutil/dateutil/_version.py

@@ -1,5 +1,5 @@
-# coding: utf-8
-# file generated by setuptools_scm
-# don't change, don't track in version control
+# coding: utf-8 
+# file generated by setuptools_scm 
+# don't change, don't track in version control 
 version = '2.8.2'
 version_tuple = (2, 8, 2)

+ 1 - 1
contrib/python/dateutil/ya.make

@@ -23,7 +23,7 @@ PY_SRCS(
     TOP_LEVEL
     dateutil/__init__.py
     dateutil/_common.py
-    dateutil/_version.py
+    dateutil/_version.py 
     dateutil/easter.py
     dateutil/parser/__init__.py
     dateutil/parser/_parser.py

+ 1 - 1
contrib/python/toml/ya.make

@@ -1,6 +1,6 @@
 OWNER(g:python-contrib)
 
-PY23_LIBRARY()
+PY23_LIBRARY() 
 
 LICENSE(MIT)
 

+ 2 - 2
contrib/python/ya.make

@@ -526,7 +526,7 @@ RECURSE(
     invoke
     ipaddr
     ipaddress
-    ipadic
+    ipadic 
     ipdb
     ipykernel
     ipython
@@ -616,7 +616,7 @@ RECURSE(
     matplotlib
     matplotlib-inline
     mccabe
-    mecab-python3
+    mecab-python3 
     meld3
     memory-profiler
     mercurial

+ 1 - 1
contrib/restricted/ya.make

@@ -52,7 +52,7 @@ RECURSE(
     protozero
     range-v3
     rnnoise
-    rubberband
+    rubberband 
     spdlog
     thrift
     thrift/compiler

+ 1 - 1
library/cpp/containers/comptrie/comptrie_builder.h

@@ -115,7 +115,7 @@ protected:
 // IMPORTANT: never try to reminimize an already minimized trie or a trie with fast layout.
 // Because of non-local structure and epsilon links, it won't work
 // as you expect it to, and can destroy the trie in the making.
-// If you want both minimization and fast layout, do the minimization first.
+// If you want both minimization and fast layout, do the minimization first. 
 
 template <class TPacker>
 size_t CompactTrieMinimize(IOutputStream& os, const char* data, size_t datalength, bool verbose = false, const TPacker& packer = TPacker(), NCompactTrie::EMinimizeMode mode = NCompactTrie::MM_DEFAULT);

+ 7 - 7
library/cpp/getopt/small/last_getopt_opt.h

@@ -637,11 +637,11 @@ namespace NLastGetopt {
             return DefaultValue("0").StoreResult(target, true);
         }
 
-        // Similar to store_true in Python's argparse
-        TOpt& StoreTrue(bool* target) {
-            return NoArgument().SetFlag(target);
-        }
-
+        // Similar to store_true in Python's argparse 
+        TOpt& StoreTrue(bool* target) { 
+            return NoArgument().SetFlag(target); 
+        } 
+ 
         template <typename TpVal, typename T, typename TpFunc>
         TOpt& StoreMappedResultT(T* target, const TpFunc& func) {
             return Handler1T<TpVal>(NPrivate::TStoreMappedResultFunctor<T, TpFunc, TpVal>(target, func));
@@ -675,13 +675,13 @@ namespace NLastGetopt {
         // Appends FromString<T>(arg) to *target for each argument
         template <typename T>
         TOpt& AppendTo(TVector<T>* target) {
-            return Handler1T<T>([target](auto&& value) { target->push_back(std::move(value)); });
+            return Handler1T<T>([target](auto&& value) { target->push_back(std::move(value)); }); 
         }
 
         // Appends FromString<T>(arg) to *target for each argument
         template <typename T>
         TOpt& InsertTo(THashSet<T>* target) {
-            return Handler1T<T>([target](auto&& value) { target->insert(std::move(value)); });
+            return Handler1T<T>([target](auto&& value) { target->insert(std::move(value)); }); 
         }
 
         // Emplaces TString arg to *target for each argument

Some files were not shown because too many files changed in this diff