| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
library/containers
YT-22593: Switch to std::string in misc modules (ytprof, tcmalloc, client, core/net, rex, tools)
commit_hash:d41b4d0e4cf17f771532f7a3bfb8e21cac19de19
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Field 2 of /proc/PID/stat (the process name) is wrapped in parentheses by
the kernel and may contain spaces and parentheses. Splitting the whole line
by spaces shifted all subsequent field indices when the comm field contained
spaces, causing startstack to be read from the wrong position.
Fixed by finding the last ')' and splitting only the portion of the line
after it. The field index is adjusted accordingly (field 28 = index 25 in
the trimmed string starting from field 3).
commit_hash:cddde18cff0a89a706dcf78286a8e36972dcb82d
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The W3C Trace Context spec defines the `traceparent` version field as a
two-hex-digit value. Parsing it with base 10 works today since the only
defined version is `"00"`, but would silently fail for any future version
with a hex digit (e.g. `"0a"`). Changed to base 16.
commit_hash:728c9e606ac373eef0f2650f9acb97890efbad04
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The previous formula `new + (Max<ui32>() - old)` is off by one on wraparound:
when the counter goes from `old=5` to `new=2` after wrapping through zero the
true delta is `Max<ui32>() - 5 + 1 + 2`, but the formula gives
`Max<ui32>() - 3` instead of `Max<ui32>() - 2`.
Replaced with a plain unsigned subtraction via `static_cast<ui32>(new - old)`,
which handles overflow correctly by construction: C++ unsigned arithmetic wraps
modulo 2³², so the result is always the right delta regardless of whether the
counter wrapped.
commit_hash:f4aa45770c912ae53907b70cc1130c4822140e9f
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Introduce `YqlAggWin` callable and adapt `PgWindow` as `YqlWindow`.
The `YqlAggWin` is similar to `YqlAgg`, but with window reference (name)
included. Moved `PgWindowWrapper` to `SqlWindowWrapper`. It gives +6 TPC-DS
test cases. Window functions are not yet supported, because they have
separate callables and an extra design is required.
commit_hash:ccef4463fd994779da21514dc9f6f596c511bbfe
|
| | | |
| | |
| | |
| | | |
commit_hash:0912d7a08b0b2ae26b6298108a9fdd57cabbc77a
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
<section id="quibbler-autodescription">
#### Поддержка bytecode Java 25 в компиляции Kotlin 📝
- 🔄 Обновлена логика определения целевой версии JVM для Kotlin: при использовании JDK 26 теперь устанавливается целевая версия 25, вместо ранее используемой версии 24.
- 🛠 Исправлена логика сопоставления версий JDK и целевой версии Kotlin: теперь версия 25 и выше соответствует целевой версии 25, а не 24.
- 🧪 Обновлена тестовая конфигурация: изменена версия JDK в тестах с 24 на 25 для соответствия новой логике.
<a href="https://nda.ya.ru/t/qa0kX64r7DqvtN"><font size="2">Autodescription by Yandex Code Assistant</font></a>
</section>
#### Поддержка bytecode Java 25 в компиляции Kotlin 📝
- 🔄 Обновлено указание версии JDK с 24 на 25 для корректной компиляции проектов с использованием Java 25.
- 🧠 Настроена поддержка Java 25 в компиляторе Kotlin, чтобы он генерировал байт-код, совместимый с этой версией JDK.
- 🔧 Исправлена логика определения целевой версии JVM для Kotlin при использовании JDK 26, теперь она указывает на версию 25.
- 🧪 Обновлена версия JDK в тестовой конфигурации с 24 на 25.
<a href="https://nda.ya.ru/t/qa0kX64r7DqvtN"><font size="2">Autodescription by Yandex Code Assistant</font></a>
commit_hash:ed2d6f419f387b3853f491bf71c6544ff78be5d2
|
| | | |
| | |
| | |
| | | |
commit_hash:56e98867af1c78d0bd7c5af59f754a9c4e917820
|
| |\ \ \ |
|
| | | | | |
|
| |/ / / |
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | | |
Co-authored-by: Matveev Sergei <[email protected]>
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | | |
* Added metrics settings to TTableDescription
* Added METRICS_LEVEL support to CREATE TABLE in Scheme Shard
* Added METRICS_LEVEL support to ALTER TABLE in Scheme Shard (including RESET)
* Added unit tests for CREATE/ALTER TABLE with METRICS_LEVEL
|
| |/ / |
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | |\| |
|
| | | |
| | |
| | |
| | | |
commit_hash:ea9da0911ff0c30da70e9182729232ae587ff9fd
|
| | | |
| | |
| | |
| | | |
commit_hash:b00e4136e1782f99aca85d3c6c8cbf85ded93056
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
TRetryingInvocationTimePolicy
`CachedBackoffMultiplier_` was initialized with `options.BackoffJitter`
instead of `options.BackoffMultiplier`, causing the cached multiplier to
hold the jitter value and the actual multiplier to be effectively ignored
until the cache was next updated.
commit_hash:f9913ff136536b18ae911a2a668d875481c6afcb
|
| | | |
| | |
| | |
| | | |
commit_hash:109a037d794f89d04558540fa492aca56570d0f3
|
| | | |
| | |
| | |
| | | |
commit_hash:a0bd2f6efc7bfaef236e172b5735c00b524da09b
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
`TYsonAttributesStripper::OnUint64Scalar` was incorrectly forwarding to
`Output_->OnInt64Scalar` instead of `Output_->OnUint64Scalar`, silently
converting unsigned 64-bit values to signed ones.
commit_hash:6a607270c5df823791b8b3cf21697ef1e6f91941
|
| | | |
| | |
| | |
| | | |
commit_hash:7e54b9ddb9cf1504ee44f859c37c8904dac320e8
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
++result.MarkedSize += mark->Size parses as (++result.MarkedSize) += mark->Size,
which pre-increments MarkedSize by 1 before adding mark->Size. Each successfully
madvise'd region inflated the total by an extra byte.
Fix: remove the stray ++ so only mark->Size is accumulated.
commit_hash:8362bf448fa9c99293cd5d313ad5a998e3f180c4
|
| | | |
| | |
| | |
| | | |
commit_hash:ef8742d3476d232a27349a22d2e17340fc900194
|
| | | |
| | |
| | |
| | | |
commit_hash:5614998f158a97e0c7d950a6d3939d7f14a2cf2d
|
| | | |
| | |
| | |
| | | |
commit_hash:a2da9a8efcf62169b36a6c950e0a7d4550576eb6
|
| | | |
| | |
| | |
| | | |
commit_hash:fe925e642ebbb6e9929cf82358873ddb8b754b90
|
| | | |
| | |
| | |
| | | |
commit_hash:986e542ff1ba68798aae6017ee09bd0cc4d55200
|
| | | |
| | |
| | |
| | | |
commit_hash:733f01993ec3f29eedc18c7f8a631e7dd1e33dda
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Инструкция по обновлению: <https://nda.ya.ru/t/Hg0ktZza7ZpHiP>
{% cut "Был выполнен скрипт" %}
```
ya tool ktlint -F kinopoisk/backend/saft/internal/saft-bdui-module/src/main/kotlin/com/yango/saft/bdui/screen/profile/yango/ProfileYangoScreenContentFactory.kt
ya tool ktlint -F kinopoisk/backend/saft/internal/saft-bdui-module/src/main/kotlin/com/yango/saft/bdui/screen/paywall/PaywallAnalyticsEventsHelper.kt
ya tool ktlint -F mapi/market/external/mapi/core/uikit-integration/src/main/kotlin/ru/yandex/market/mapi/ui/divkit/uikit/integration/UiDivanWithContextCreator.kt
ya tool ktlint -F mapi/market/external/mapi/core/uikit-integration/src/main/kotlin/ru/yandex/market/mapi/ui/divkit/uikit/integration/UiEditablePreviewWithContexts.kt
ya tool ktlint -F mapi/market/external/mapi/feature/loyalty/common/src/main/PromoHeaderManager.kt
ya tool ktlint -F mapi/market/external/mapi/feature/search/search-result/src/main/draftbuilders/SearchContentDraftBuilder.kt
ya tool ktlint -F mapi/market/external/mapi/feature/search/search-result/src/main/sections/constructorScrollboxIncut/ConstructorScrollboxIncutDataBinder.kt
ya tool ktlint -F mapi/market/external/mapi/feature/search/search-result-api/src/main/scaffold/PromoHeaderManagerMapi2.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/scaffold/bottomView/mapper/CartScaffoldBottomViewMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/ConstructorCartItemSnippetOnlyMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/promoHub/render/CartPromoHubRenderer.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/CartItemsSectionMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/promoHub/CartPromoHubContextMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/ConstructorCartItemUnavailableSuggestMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/ConstructorCartItemMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/DiscoveryDivkitCartSnippetMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/foodtech/mapper/CartFoodtechEdaSnippetMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/changePayment/src/main/state/ChangePaymentPurchaseButtonActionMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/fintechCommon/src/main/compactBnpl/mapper/CheckoutSummaryCompactBnplPlansMapper.kt
ya tool ktlint -F mapi/market/pokupka/mapi/features/summary/src/main/sections/deliveryConsoles/rendering/console/parcel/liftUp/DeliveryConsoleParcelLiftUpRenderer.kt
ya tool ktlint -F mapi/market/product-card/mapi/modules/sections/product-card-madv-divkit-incut-section/src/main/v1/ProductCardMadvDivkitIncutSectionDataBinder.kt
ya tool ktlint -F mapi/market/product-card/mapi/modules/sections/product-card-madv-divkit-incut-section/src/main/MadvIncutSnippetWidthMapper.kt
ya tool ktlint -F mapi/market/search/mapi/features/catalog/src/main/root/sections/categoriesShortcutSection/CategoryShortcutNavigationActionFatory.kt
ya tool ktlint -F mapi/market/search/mapi/features/comparison/src/main/ui/ComparisonItem.kt
ya tool ktlint -F mapi/market/search/mapi/features/comparison/src/main/ui/multiSection/ComparisonProductGallery.kt
ya tool ktlint -F mapi/market/search/mapi/features/comparison/src/main/ui/multiSection/ComparisonItemGallery.kt
ya tool ktlint -F mapi/market/search/mapi/features/main/src/main/actions/OpenIDFAIfNeededAction.kt
ya tool ktlint -F mapi/market/search/mapi/features/main/src/main/sections/viFeedbox/ViFeedboxTemplateBuilder.kt
ya tool ktlint -F mapi/market/search/mapi/features/main/src/main/scaffold/MainDocumentScaffoldFactory.kt
ya tool ktlint -F mapi/market/ugc-mj/features/profile/profile-common/src/main/section/agitation/mapper/ReviewThanksAgitationsMapper.kt
ya tool ktlint -F mapi/market/ugc-mj/features/public-profile/public-profile-main/src/main/scaffold/UgcPublicProfileScaffoldUiRenderer.kt
ya tool ktlint -F mapi/market/ugc-mj/features/public-profile/public-profile-main/src/main/section/feed/mapper/UgcPublicProfileReviewContentMapper.kt
ya tool ktlint -F mapi/market/ugc-mj/features/sins-reviews/src/main/section/feed/mapper/SinsReviewContentMapper.kt
ya tool ktlint -F mapi/market/wishlist/features/sharePopup/src/main/sections/share/mapper/SharePopupSectionsMapper.kt
ya tool ktlint -F market/mapi-shared/business-engine/business-utils/src/main/kotlin/ru/yandex/market/mapi/business/ui/divkit/switch/Switch.kt
ya tool ktlint -F market/mapi-shared/feature/baobab/baobab-common/src/main/ru/yandex/market/mapi/baobab/assembler/AssembledNodeData.kt
ya tool ktlint -F market/mapi-shared/feature/common/popup-actions/src/main/kotlin/ru/yandex/market/mapi/feature/common/popupActions/ShowUiOnboardingAction.kt
ya tool ktlint -F market/mapi-shared/feature/common/popup-actions/src/main/kotlin/ru/yandex/market/mapi/feature/common/popupActions/ShowUiPopupAction.kt
ya tool ktlint -F market/mapi-shared/feature/deeplinks/deeplink-routehandler-utils/src/main/kotlin/SearchDeeplinkUtils.kt
ya tool ktlint -F market/mapi-shared/feature/fintech/payment/src/main/kotlin/backflow/processing/PaymentFlowActionFactory.kt
ya tool ktlint -F market/mapi-shared/feature/loyalty/fomo-api/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/fomo/api/utils/FomoFeedbackTypeMapper.kt
ya tool ktlint -F market/mapi-shared/feature/loyalty/sins/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/sins/SiSPromoContextMapperImpl.kt
ya tool ktlint -F market/mapi-shared/feature/loyalty/sins-api/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/sins/api/utils/ShopInShopContextUtils.kt
ya tool ktlint -F market/mapi-shared/feature/loyalty/universal-promo-badge/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/universalpromobadge/renderer/box/TimerBoxRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/loyalty/universal-promo-badge/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/universalpromobadge/renderer/box/BoxMargins.kt
ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-details-api/src/main/kotlin/ru/yandex/market/mapi/feature/offline/order/details/sections/items/mapper/OrderDetailsItemButtonsMapper.kt
ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-list-sections/src/main/kotlin/ru/yandex/market/mapi/feature/offline/tabs/sections/orders/mappers/apphost/OrderItemMapper.kt
ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-list-sections/src/main/kotlin/ru/yandex/market/mapi/feature/offline/tabs/sections/orders/mappers/apphost/OrderItemOffersMapper.kt
ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-list-sections/src/main/kotlin/ru/yandex/market/mapi/feature/offline/tabs/sections/list/OrderItemListRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/offline-ux/scrollbox/src/main/kotlin/ru/yandex/market/mapi/feature/offline/scrollbox/snippets/order/mapper/OrderSnippetAdditionalActionMapper.kt
ya tool ktlint -F market/mapi-shared/feature/online-ux/cart-api/src/main/kotlin/ru/yandex/market/mapi/feature/cart/api/mapper/base/BaseAgitationWidgetMapper.kt
ya tool ktlint -F market/mapi-shared/feature/online-ux/cart-button-legacy/src/main/mappers/CartParamsBuilder.kt
ya tool ktlint -F market/mapi-shared/feature/online-ux/referral-payment-api/src/main/kotlin/blenderSearchHeader/ReferralPaymentUserStatsEntryPointMapper.kt
ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist/src/main/kotlin/ru/yandex/market/mapi/feature/wishlist/listAddItem/ui/onboarding/WishlistListOnboardingRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist/src/main/kotlin/ru/yandex/market/mapi/feature/wishlist/brandsAndShops/list/divkit/WishlistBrandsAndShopsItemRedesignRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist-api/src/main/kotlin/ru/yandex/market/mapi/feature/wishlistApi/sections/shops/WishlistBrandsAndShopsEntryPointRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist-button/src/main/kotlin/ru/yandex/market/mapi/feature/wishlist/button/state/WishParamsBuilder.kt
ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/navigationaction/ProductNavigationActionContext.kt
ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/navigationaction/ProductNavigationActionFactory.kt
ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/utils/CreateProductQuery.kt
ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/utils/ProductRendererUtils.kt
ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-cart-feature/src/main/kotlin/ru/yandex/market/mapi/productcard/cart/CartParametersMapper.kt
ya tool ktlint -F market/mapi-shared/feature/product-list/items-list/src/main/kotlin/ru/yandex/mapi/feature/mappers/ItemListSnippetContextMapper.kt
ya tool ktlint -F market/mapi-shared/feature/shopinshop/sis-chat/src/main/ru/yandex/market/mapi/shopinshop/sis/chat/popup/SupplierChatsPopupContextMapper.kt
ya tool ktlint -F market/mapi-shared/feature/shopinshop/widgets/src/main/ru/yandex/market/mapi/shopinshop/widgets/mediacarousel/MediaCarouselMadvItemRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/shopinshop/widgets/src/main/ru/yandex/market/mapi/shopinshop/widgets/promoBanner/PromoBannerContextMapper.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/leave-review/src/main/kotlin/ru/yandex/market/mapi/ugc/state/LeaveReviewSendScreenState.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/review-agitation-snippet/src/main/kotlin/ru/yandex/market/mapi/feature/ugc/agitation/snippet/render/ReviewAgitationSnippetRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/review-agitation-snippet/src/main/kotlin/ru/yandex/market/mapi/feature/ugc/agitation/snippet/render/ReviewAgitationWideSnippetRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/reviews/src/main/kotlin/ru/yandex/market/mapi/reviews/ugcContent/ReviewsSummaryMapper.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/reviews/src/main/kotlin/ru/yandex/market/mapi/reviews/ugcContent/ProductUGCContentMapper.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/reviews/src/main/kotlin/ru/yandex/market/mapi/reviews/ugcContent/PhotoVideoGalleryMapper.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/ProductReviewsMainContentReviewItemInteractionsRenderer.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/specs/ProductReviewsMainContentItemsMapper.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/specs/ProductReviewsMainContentMapper.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/specs/ProductReviewsMainContentAsPostMapper.kt
ya tool ktlint -F market/mapi-shared/feature/ugc/ugc-transition-utils/src/main/kotlin/ru/yandex/market/mapi/feature/ugc/transition/utils/PersMasterTransitionFactory.kt
ya tool ktlint -F market/mapi-shared/uikit/core/integration/src/main/kotlin/ru/yandex/market/ui/divkit/uikit/integration/core/UiDivanCreator.kt
ya tool ktlint -F market/mapi/business-core/uikit-integration/src/main/kotlin/ru/yandex/market/mapi/ui/divkit/uikit/integration/ThemedExpressionStringFromContext.kt
ya tool ktlint -F market/mapi/feature/advertising-inventory/hero/src/main/kotlin/ru/yandex/market/mapi/feature/advertisinginventory/hero/HeroBannerSnippetBuilder.kt
ya tool ktlint -F market/mapi/feature/designdemo/src/main/kotlin/ru/yandex/market/mapi/section/designdemo/workingchecks/touchfeedback/DesignDemoTouchFeedbackActionsRenderer.kt
ya tool ktlint -F market/mapi/feature/designdemo/src/main/kotlin/ru/yandex/market/mapi/section/designdemo/workingchecks/common/DesignDemoControlScreenHelpers.kt
ya tool ktlint -F market/mapi/feature/discovery/discovery-filters/src/main/kotlin/ru/yandex/market/mapi/search/filters/utils/FilterListUtils.kt
ya tool ktlint -F market/mapi/feature/discovery/discovery-filters/src/main/kotlin/ru/yandex/market/mapi/search/filters/divkit/FastFiltersRenderer.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/background/FeedboxTriggerSnippetAppearanceManager.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/config/FeedboxConfigCollector.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/promo/FeedboxPromoTriggerMapper.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/FeedBoxDivkitSnippetsRearr.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/renderer/promotrigger/FeedboxProductBlockRenderer.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/promo/favouriteCategory/FeedBoxFavouriteCategoryMapper.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/promo/FeedboxPromoBlockExtensions.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/agitation/FeedBoxReviewAgitationSnippetMapper.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/FeedBoxDivKitProductSnippetMapper.kt
ya tool ktlint -F market/mapi/feature/discovery/feedbox-legacy/src/main/kotlin/ru/yandex/market/mapi/feedboxlegacy/FeedboxAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/lavka/src/main/kotlin/ru/yandex/market/mapi/lavka/LavkaProductSnippetAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/product-snippets/src/main/kotlin/ru/yandex/market/mapi/feature/discovery/mapper/DiscoveryDivkitProductSnippetBaseMapper.kt
ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/result/madvIncuts/SearchResultMadvIncutsSnippetRenderer.kt
ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/request/suggest/renderer/SearchRequestSuggestSectionTemplate.kt
ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/search/request/RedirectUrlBuilder.kt
ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/search/request/utils/RedirectControllerIUtils.kt
ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/request/suggest/SearchRequestSuggestContextMapper.kt
ya tool ktlint -F market/mapi/feature/discovery/search-api/src/main/kotlin/ru/yandex/market/mapi/search/utils/FilterMapper.kt
ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/OffersScrollboxAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/result/blender/superhypeincut/BlenderSearchSuperHypeIncutAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/result/blender/BlenderScrollboxConstructorAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/ShopSalesOffersScrollboxAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/SalesOffersScrollboxAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/TabbedOffersScrollboxAssembler.kt
ya tool ktlint -F market/mapi/feature/discovery/search-result-screen/src/main/kotlin/ru/yandex/market/mapi/controller/screen/search/blender/BlenderSearchResultScaffoldBuilder.kt
ya tool ktlint -F market/mapi/feature/discovery/search-result-screen/src/main/kotlin/ru/yandex/market/mapi/controller/screen/search/blender/BlenderSearchScreenBuilder.kt
ya tool ktlint -F market/mapi/feature/discovery/smart-camera/src/main/kotlin/ru/yandex/market/mapi/smartsearch/utils/SmartSearchNoResultStubContextFactory.kt
ya tool ktlint -F market/mapi/feature/loyalty/fortunewheel/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/fortunewheel/sections/fortunewheel/mapper/FortuneWheelNavigationMapper.kt
ya tool ktlint -F market/mapi/feature/loyalty/live-translation/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/livetranslation/section/LiveTranslationStickyRenderer.kt
ya tool ktlint -F market/mapi/feature/loyalty/live-translation/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/livetranslation/section/LiveTranslationStickiesRenderer.kt
ya tool ktlint -F market/mapi/feature/loyalty/weekly-promo-header/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/promoheader/PromoHeaderManager.kt
ya tool ktlint -F market/mapi/feature/offline/navigation-legacy/src/main/kotlin/ru/yandex/market/mapi/feature/offline/navigation/OfflineLegacyNavigationActionBuilder.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/errors/CheckoutErrorMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOption/mapper/PaymentOptionSectionMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/console/local/mapper/LocalConsolesSectionMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOptionPoup/mapper/PaymentOptionsPopupMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOption/divkit/PaymentOptionsSectionRenderer.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/contacts/editContact/mapper/EditContactPopupMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/purchase/PurchasePostProcessActionFactory.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/common/action/ShowDeliveryPointsAction.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/mapper/actions/CreateConsoleAgitationAction.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOption/divkit/PaymentOptionRenderer.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/console/common/mapper/ConsoleTimeOptionMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/console/common/mapper/ConsoleDateOptionMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/changeRepayOptionConfirmPopup/divkit/RepayOptionConfirmFactory.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/errors/barrier/divkit/BarrierRenderer.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/purchaseButton/utils/PurchaseButtonActionTypeMapper.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/state/CheckoutSummaryScreenState.kt
ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOptionPoup/ui/PaymentOptionPopupTemplate.kt
ya tool ktlint -F market/mapi/feature/online-ux/delivery-point/delivery-points-list/src/main/kotlin/ru/yandex/market/mapi/feature/deliverypoint/deliverypointslist/ui/DeliveryPointTemplates.kt
ya tool ktlint -F market/mapi/feature/product-bnpl/src/main/kotlin/ru/yandex/market/mapi/product/bnpl/mapper/BnplSelectionPlanMapper.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-fastflow-popup/src/main/kotlin/ru/yandex/market/mapi/product/fastflow/FastBuyFlowPostProcessor.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-promo/src/main/kotlin/ru/yandex/market/mapi/product/promohighlight/detailsBlock/mapper/HighlightedPromocodeMapper.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox/src/main/kotlin/ru/yandex/market/mapi/product/mapper/DivKitSnippetsScrollBoxMapper.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox/src/main/kotlin/ru/yandex/market/mapi/product/mapper/DivKitSnippetsScrollBoxRemixMapper.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox/src/main/kotlin/ru/yandex/market/mapi/product/mapper/DivKitSnippetsScrollBoxMapperUtils.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox-assemblers/src/main/kotlin/ru/yandex/market/mapi/product/assemblers/ProductsScrollboxAssemblerRedefining.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox-assemblers/src/main/kotlin/ru/yandex/market/mapi/product/snippetassemblers/ProductSnippetDJRecommendAssembler.kt
ya tool ktlint -F market/mapi/feature/product-card/product-card-utils/src/main/kotlin/ru/yandex/market/mapi/product/utils/ProductScrollboxAssemblerUtils.kt
ya tool ktlint -F market/mapi/feature/promo/profile-promocodes/src/main/kotlin/ru/yandex/market/mapi/section/promo/profilepromocodes/divkit/utils/ProfilePromocodesNavigationActionUtils.kt
ya tool ktlint -F market/mapi/feature/socecom/video/src/main/kotlin/ru/yandex/market/mapi/socecomvideo/mapper/SocialVideoFeedItemMapper.kt
ya tool ktlint -F taxi/bdui/libs/components/dsl/src/main/kotlin/ru/yandex/go/bdui/components/dsl/trigger/BaseTriggerConverter.kt
ya tool ktlint -F taxi/bdui/libs/components/dsl/src/main/kotlin/ru/yandex/go/bdui/components/dsl/timer/BaseTimerConverter.kt
ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_timer/BaseTimerConverter.kt
ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_actions/visibility_action/BaseVisibilityActionConverter.kt
ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_actions/action/BaseActionConverter.kt
ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_trigger/BaseTriggerConverter.kt
ya tool ktlint -F taxi/bdui/libs/go-buysell-shared/src/main/kotlin/ru/yandex/go/buysell/shared/utils/state/StateReaderUtils.kt
ya tool ktlint -F taxi/bdui/libs/v3/go-bdui-feed/src/main/kotlin/ru/yandex/go/bdui/feed/snippets/media_adv/common/renderers/MediaAdvCommonRenderer.kt
ya tool ktlint -F taxi/bdui/libs/v3/go-bdui-uikit/src/main/kotlin/ru/yandex/go/uikit/components/button/data/style/ButtonStyleDefault.kt
ya tool ktlint -F bdui/backend/tovarisch/v2/jason-statham/src/main/kotlin/ru/yandex/tovarisch/extension/jasonstatham/extensions/ScenarioSyntaxExtension.kt
```
{% endcut %}
commit_hash:d1630300baefefe03a374d75fd789255131c298d
|
| | | |
| | |
| | |
| | | |
commit_hash:c975063237fb34a806e97350909d01bafb549bd9
|
| | | |
| | |
| | |
| | |
| | | |
Since `Py_UNICODE` is just a typedef for `wchar_t` in Python 3, replace it with `wchar_t` in Cython typedefs, C++ headers, and stringlib macros. Python 2 code paths retain `Py_UNICODE` via #if guards.
commit_hash:7bed62e2231a8fde3adc6317e8a41dd060895e24
|
| | | |
| | |
| | |
| | | |
commit_hash:da4e68326b1c7d58d0ae51eef23764284cbb302d
|
| | | |
| | |
| | |
| | | |
commit_hash:00d392bf0718d86fe821c9c86a8a17ef6d4d81a7
|
| | | |
| | |
| | |
| | | |
commit_hash:ad96dd850bafe1a39637e0298d41f7a7ef7d9549
|
| | | |
| | |
| | |
| | | |
commit_hash:da3595c17e930ef69088c3164f42adc50d57f283
|
| | | |
| | |
| | |
| | | |
commit_hash:059de499f6bcffea959a0edaa732671627225d9a
|
| | | |
| | |
| | |
| | | |
commit_hash:94317d86597690967404beb88d2651ab6f28864f
|
| | | |
| | |
| | |
| | | |
commit_hash:cbc6cbf919a603321e0644ff02326dc4cd2fcfc1
|
| | | |
| | |
| | |
| | |
| | |
| | | |
неизменных зависимостях
commit_hash:140e997f13a190a260effe490921efaaa6f9cec8
|
| | | |
| | |
| | |
| | | |
commit_hash:f9204e2b0489cccf84edf2b3e5a0c4e4b6398cde
|
| | | |
| | |
| | |
| | | |
commit_hash:085a198df25a6f54be316eeb35bf04c557f12540
|