diff options
author | pavook <pavook@yandex-team.com> | 2024-08-22 16:26:27 +0300 |
---|---|---|
committer | pavook <pavook@yandex-team.com> | 2024-08-22 16:39:20 +0300 |
commit | 8520e043f2e12acdfd39d971ebeeacbe9e5ac3ca (patch) | |
tree | 55e2c5a3efebd951a92445ed5c7327c86479f655 /yt/cpp/mapreduce/interface/job_statistics.h | |
parent | f9fbb65f64b68c5de5cf257c04e06ac6aeaeb1e8 (diff) | |
download | ydb-8520e043f2e12acdfd39d971ebeeacbe9e5ac3ca.tar.gz |
GLOBAL OTBIVKA FIX ୧༼ಠ益ಠ༽୨
Make all "otbivka" exactly 80 symbols.
Command:
```bash
sed -i 's#^//////////////\+$#////////////////////////////////////////////////////////////////////////////////#g' $(find yt \( -name '*.cpp' -or -name '*.h' -or -name '*.proto' \) -not -path 'yt/yt/experiments/private/tabletvis/imgui/*')
```
30a0ba9f42ba1909d3cee11fe12bba14c7c8b039
Diffstat (limited to 'yt/cpp/mapreduce/interface/job_statistics.h')
-rw-r--r-- | yt/cpp/mapreduce/interface/job_statistics.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/yt/cpp/mapreduce/interface/job_statistics.h b/yt/cpp/mapreduce/interface/job_statistics.h index 4582d9e872..a41b48d5c6 100644 --- a/yt/cpp/mapreduce/interface/job_statistics.h +++ b/yt/cpp/mapreduce/interface/job_statistics.h @@ -16,7 +16,7 @@ namespace NYT { -//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////// /// /// @brief Convert i64 representation of statistics to other type. @@ -28,7 +28,7 @@ namespace NYT { template <typename T> T ConvertJobStatisticsEntry(i64 value); -//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////// /// Class representing a collection of job statistics. class TJobStatistics @@ -160,7 +160,7 @@ private: friend class TJobStatisticsEntry; }; -//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////// /// Class representing single statistic. template <typename T> @@ -225,7 +225,7 @@ private: friend class TJobStatistics; }; -//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////// template <typename T> TJobStatisticsEntry<T> TJobStatistics::GetStatisticsAs(TStringBuf name) const @@ -239,7 +239,7 @@ TJobStatisticsEntry<T> TJobStatistics::GetCustomStatisticsAs(TStringBuf name) co return TJobStatisticsEntry<T>(GetStatisticsImpl(CustomStatisticsNamePrefix_ + name)); } -//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////// /// /// @brief Write [custom statistics](https://ytsaurus.tech/docs/en/user-guide/data-processing/operations/jobs#user_stats). @@ -263,6 +263,6 @@ void WriteCustomStatistics(const TNode& statistics); /// @brief Flush [custom statistics stream](https://ytsaurus.tech/docs/en/user-guide/data-processing/operations/jobs#user_stats) /// void FlushCustomStatisticsStream(); -//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////// } // namespace NYT |