Support packed VSTS mask granularity#910
Conversation
There was a problem hiding this comment.
Code Review
This pull request adds support and validation for the PK_B64 and PK4_B32 distributions, mapping them to the b32 mask granularity. It also introduces corresponding LIT tests to verify valid and invalid configurations. The review feedback suggests simplifying the conditional logic in getVstsMaskGranularityOverride by combining the checks for PK_B32, PK_B64, and PK4_B32 since they all return the same value.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| if (dist == "PK_B32") | ||
| return StringRef("b32"); | ||
| if (dist == "PK_B64") | ||
| return StringRef("b32"); | ||
| if (dist == "PK4_B32") | ||
| return StringRef("b32"); |
There was a problem hiding this comment.
Codex Review该评论由 review 机器人自动更新。
SummaryReview failed at stage Findings未生成结构化 findings,因为 review 过程提前失败。 Log Tail |
7124cc2 to
d108117
Compare
d108117 to
e4e7020
Compare
Summary
Validation