Browse Source

Restoring authorship annotation for Andrey Fomichev <andrey.fomichev@gmail.com>. Commit 2 of 2.

Andrey Fomichev 3 years ago
parent
commit
1c61afbf3d

+ 1 - 1
build/conf/opensource.conf

@@ -10,5 +10,5 @@ when ($OPENSOURCE) {
     USE_DYNAMIC_ICONV=yes
     USE_ASMLIB=no
     SO_OUTPUTS=yes
-    UDF_NO_PROBE=yes 
+    UDF_NO_PROBE=yes
 }

+ 3 - 3
build/conf/project_specific/yql_udf.conf

@@ -69,8 +69,8 @@ module YQL_UDF_TEST: PY2TEST {
 ###
 ### https://yql.yandex-team.ru/docs/yt/udf/cpp/
 macro _ADD_YQL_UDF_DEPS() {
-    PEERDIR(ydb/library/yql/public/udf) 
-    PEERDIR(ydb/library/yql/public/udf/support) 
+    PEERDIR(ydb/library/yql/public/udf)
+    PEERDIR(ydb/library/yql/public/udf/support)
 }
 
 ### @usage: _MAKE_YQL_UDF()
@@ -82,7 +82,7 @@ macro _MAKE_YQL_UDF() {
     _ADD_YQL_UDF_DEPS()
     SET_APPEND(USER_CXXFLAGS -DBUILD_UDF)
     # For Windows using declspecs
-    DEFAULT(YQL_UDF_EXPORT ${ARCADIA_ROOT}/ydb/library/yql/public/udf/udfs_exports.exports) 
+    DEFAULT(YQL_UDF_EXPORT ${ARCADIA_ROOT}/ydb/library/yql/public/udf/udfs_exports.exports)
 
     when ($WINDOWS == "yes") {
         YQL_UDF_EXPORT=

+ 2 - 2
build/plugins/yql_python_udf.py

@@ -19,7 +19,7 @@ def onregister_yql_python_udf(unit, *args):
 
     unit.onyql_abi_version(['2', '9', '0'])
     unit.onpeerdir(['yql/udfs/common/python/python_udf'])
-    unit.onpeerdir(['ydb/library/yql/public/udf']) 
+    unit.onpeerdir(['ydb/library/yql/public/udf'])
 
     if add_libra_modules:
         unit.onpeerdir(['quality/user_sessions/libra_arc/noyql'])
@@ -39,7 +39,7 @@ def onregister_yql_python_udf(unit, *args):
 
     output_includes = [
         'yql/udfs/common/python/python_udf/python_udf.h',
-        'ydb/library/yql/public/udf/udf_registrator.h', 
+        'ydb/library/yql/public/udf/udf_registrator.h',
     ]
     if add_libra_modules:
         output_includes.append('yql/udfs/quality/libra/module/module.h')

+ 3 - 3
build/rules/kikimr.policy

@@ -182,7 +182,7 @@ ALLOW yql/tests -> kikimr/yq
 ALLOW yql/.*/ut -> kikimr/core/testlib/basics
 
 ALLOW kikimr/ -> kikimr
- 
-# FIXME temporary allow ydb depend on kikimr 
-ALLOW ydb/ -> kikimr 
+
+# FIXME temporary allow ydb depend on kikimr
+ALLOW ydb/ -> kikimr
 DENY .* -> kikimr

+ 1 - 1
build/scripts/gen_yql_python_udf.py

@@ -3,7 +3,7 @@ import sys
 TEMPLATE="""
 #include <yql/udfs/common/python/python_udf/python_udf.h>
 
-#include <ydb/library/yql/public/udf/udf_registrator.h> 
+#include <ydb/library/yql/public/udf/udf_registrator.h>
 
 #if @WITH_LIBRA@
 #include <yql/udfs/quality/libra/module/module.h>

+ 4 - 4
build/scripts/ya.make

@@ -95,8 +95,8 @@ TEST_SRCS(
     yndexer.py
 )
 
-PEERDIR( 
-    ydb/library/yql/public/udf 
-) 
- 
+PEERDIR(
+    ydb/library/yql/public/udf
+)
+
 END()

+ 1 - 1
library/cpp/actors/core/actor.h

@@ -19,7 +19,7 @@ namespace NActors {
     }
 
     struct TActorContext;
- 
+
     struct TActivationContext {
     public:
         TMailboxHeader& Mailbox;

+ 2 - 2
library/cpp/actors/core/actorsystem.cpp

@@ -8,7 +8,7 @@
 #include "servicemap.h"
 #include "scheduler_queue.h"
 #include "scheduler_actor.h"
-#include "log.h" 
+#include "log.h"
 #include "probes.h"
 #include "ask.h"
 #include <library/cpp/actors/util/affinity.h>
@@ -121,7 +121,7 @@ namespace NActors {
     void TActorSystem::Schedule(TInstant deadline, TAutoPtr<IEventHandle> ev, ISchedulerCookie* cookie) const {
         Schedule(deadline - Timestamp(), ev, cookie);
     }
- 
+
     void TActorSystem::Schedule(TMonotonic deadline, TAutoPtr<IEventHandle> ev, ISchedulerCookie* cookie) const {
         const auto current = Monotonic();
         if (deadline < current)

+ 4 - 4
library/cpp/actors/core/actorsystem.h

@@ -6,7 +6,7 @@
 #include "balancer.h"
 #include "config.h"
 #include "event.h"
-#include "log_settings.h" 
+#include "log_settings.h"
 #include "scheduler_cookie.h"
 #include "mon_stats.h"
 
@@ -233,7 +233,7 @@ namespace NActors {
         mutable TTicketLock ScheduleLock;
 
         friend class TExecutorThread;
- 
+
         THolder<TActorSystemSetup> SystemSetup;
         TActorId DefSelfID;
         void* AppData0;
@@ -331,7 +331,7 @@ namespace NActors {
 
         TActorId LookupLocalService(const TActorId& x) const;
         TActorId RegisterLocalService(const TActorId& serviceId, const TActorId& actorId);
- 
+
         ui32 GetMaxActivityType() const {
             return SystemSetup ? SystemSetup->MaxActivityType : 1;
         }
@@ -339,7 +339,7 @@ namespace NActors {
         TInstant Timestamp() const {
             return TInstant::MicroSeconds(RelaxedLoad(&CurrentTimestamp));
         }
- 
+
         TMonotonic Monotonic() const {
             return TMonotonic::MicroSeconds(RelaxedLoad(&CurrentMonotonic));
         }

+ 1 - 1
library/cpp/actors/core/defs.h

@@ -39,7 +39,7 @@ namespace NActors {
 
     struct TMailboxType {
         enum EType {
-            Inherited = -1, // inherit mailbox from parent 
+            Inherited = -1, // inherit mailbox from parent
             Simple = 0, // simplest queue under producer lock. fastest in no-contention case
             Revolving = 1, // somewhat outdated, tries to be wait-free. replaced by ReadAsFilled
             HTSwap = 2, // other simple lf queue, suggested for low-contention case

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