id
int64
393k
2.82B
repo
stringclasses
68 values
title
stringlengths
1
936
body
stringlengths
0
256k
labels
stringlengths
2
508
priority
stringclasses
3 values
severity
stringclasses
3 values
2,583,653,193
tauri
[feat] Improve error message for forbidden paths during dev
### Describe the problem This error message shows in the browser console when an FS operation fails due to a disallowed path: > "forbidden path C:\whatever\..." It turns out I was missing the "fs:allow-exists" permission, but the error message didn't give me any clue about that, and it made me think something elsewhere else was broken 😅 ### Describe the solution you'd like The error message should be more specific: > missing the 'fs:allow-exists' permission for this path: C:\whatever\... ### Alternatives considered _No response_ ### Additional context _No response_
type: feature request
low
Critical
2,583,665,196
yt-dlp
[Twitter] Use full untruncated text for description and title
### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE - [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field ### Checklist - [X] I'm reporting that yt-dlp is broken on a **supported** site - [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels)) - [X] I've checked that all provided URLs are playable in a browser with the same IP and same login details - [X] I've checked that all URLs and arguments with special characters are [properly quoted or escaped](https://github.com/yt-dlp/yt-dlp/wiki/FAQ#video-url-contains-an-ampersand--and-im-getting-some-strange-output-1-2839-or-v-is-not-recognized-as-an-internal-or-external-command) - [X] I've searched [known issues](https://github.com/yt-dlp/yt-dlp/issues/3766) and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues?q=) for similar issues **including closed ones**. DO NOT post duplicates - [X] I've read the [guidelines for opening an issue](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#opening-an-issue) - [X] I've read about [sharing account credentials](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#are-you-willing-to-share-account-details-if-needed) and I'm willing to share it if required ### Region US ### Provide a description that is worded well enough to be understood Current `twitter` extractor implementation reads `full_text` field first, and then falls back on `text` to get value for `description` and `title`. https://github.com/yt-dlp/yt-dlp/blame/d710a6ca7c622705c0c8c8a3615916f531137d5d/yt_dlp/extractor/twitter.py#L1434 I looked at twitterAPI response and observe that `text` actually contains full untruncated value of "long" note tweet: ``` "note_tweet": { "is_expandable": true, "note_tweet_results": { "result": { "id": "Tm90ZVR3ZWV0OjE4NDUxNDgyMDA5NjI4MDk4NTY=", "text": "Джаред Лето на концерте в Белграде решил спросить, сколько в зале людей из Сербии, а сколько из России. Вот что из этого вышло.\n\nЗатем он продолжил общение с фанатами. «Мы так скучаем по вам, ребята! И вот что я вам скажу: однажды, когда эти все проблемы закончатся, мы встретимся с вами на вашей родине. Мы вернёмся в Сербию, мы поедем в Санкт-Петербург, Москву, Киев. Мы будем тусоваться и веселиться. Так должно быть», — сказал артист.", "entity_set": { "user_mentions": [], "urls": [], "hashtags": [], "symbols": [] }, "richtext": { "richtext_tags": [] }, "media": { "inline_media": [] } } } } ``` while `full_text` value is truncated: ``` "legacy": { "bookmark_count": 435, "bookmarked": false, "created_at": "Sat Oct 12 17:03:06 +0000 2024", "conversation_id_str": "1845148201042534603", "display_text_range": [ 0, 280 ], "entities": { "user_mentions": [], "urls": [], "hashtags": [], "symbols": [] }, "favorite_count": 4791, "favorited": false, "full_text": "Джаред Лето на концерте в Белграде решил спросить, сколько в зале людей из Сербии, а сколько из России. Вот что из этого вышло.\n\nЗатем он продолжил общение с фанатами. «Мы так скучаем по вам, ребята! И вот что я вам скажу: однажды, когда эти все проблемы закончатся, мы встретимся", "is_quote_status": true, "lang": "ru", "quote_count": 90, "quoted_status_id_str": "1845148138358624315", "quoted_status_permalink": { "url": "https://t.co/PMB3xqhmTU", "expanded": "https://twitter.com/sna7c4/status/1845148138358624315", "display": "x.com/sna7c4/status/…" }, "reply_count": 91, "retweet_count": 224, "retweeted": false, "user_id_str": "2457390594", "id_str": "1845148201042534603" } } ``` `Text` field parsing was added in this change by @bashonly : https://github.com/yt-dlp/yt-dlp/commit/92315c03774cfabb3a921884326beb4b981f786b#diff-8b22c3c3c6185164ce8c3e82541f91c728397dec66456eef7e05f664d5729103R1349 which adds support for twitter GraphQL API. I believe a better logic would be to parse `text` field first, and then fall back on `full_text`. This way the full tweet text will be captured. Twitter GraphQL response dump: [1845148201042534603_https_-_x.com_i_api_graphql_2ICDjqPd81tulZcYrtpTuQ_TweetResultByRestIdvariables=%7B%22tweetId%22%3A%221845148201042534603%22%2C%22withCommunity%22%3Afalse%2C%22includePromotedContent%2___241dd39518c482b05ff37ce5c788066f.json](https://github.com/user-attachments/files/17353210/1845148201042534603_https_-_x.com_i_api_graphql_2ICDjqPd81tulZcYrtpTuQ_TweetResultByRestIdvariables.7B.22tweetId.22.3A.221845148201042534603.22.2C.22withCommunity.22.3Afalse.2C.22includePromotedContent.2___241dd39518c482b05ff37ce5c788066f.json) Relevant fields filtered: `PS C:\Users\ovgol> cat c:\Users\ovgol\1845148201042534603_https_-_x.com_i_api_graphql_2ICDjqPd81tulZcYrtpTuQ_TweetResultByRestIdvariables=%7B%22tweetId%22%3A%221845148201042534603%22%2C%22withCommunity%22%3Afalse%2C%22includePromotedContent%2___241dd39518c482b05ff37ce5c788066f.json | gron | grep -E '\.text|\.full_text' | gron --ungron` : ```json { "data": { "tweetResult": { "result": { "legacy": { "full_text": "Джаред Лето на концерте в Белграде решил спросить, сколько в зале людей из Сербии, а сколько из России. Вот что из этого вышло.\n\nЗатем он продолжил общение с фанатами. «Мы так скучаем по вам, ребята! И вот что я вам скажу: однажды, когда эти все проблемы закончатся, мы встретимся" }, "note_tweet": { "note_tweet_results": { "result": { "text": "Джаред Лето на концерте в Белграде решил спросить, сколько в зале людей из Сербии, а сколько из России. Вот что из этого вышло.\n\nЗатем он продолжил общение с фанатами. «Мы так скучаем по вам, ребята! И вот что я вам скажу: однажды, когда эти все проблемы закончатся, мы встретимся с вами на вашей родине. Мы вернёмся в Сербию, мы поедем в Санкт-Петербург, Москву, Киев. Мы будем тусоваться и веселиться. Так должно быть», — сказал артист." } } }, "quoted_status_result": { "result": { "legacy": { "full_text": "https://t.co/T3unOLfdOu" } } } } } } } ``` ### Provide verbose output that clearly demonstrates the problem - [X] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`) - [X] If using API, add `'verbose': True` to `YoutubeDL` params instead - [X] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below ### Complete Verbose Output ```shell [debug] Command-line config: ['--dump-json', 'https://x.com/oldLentach/status/1845148201042534603?t=UXfDq5m_LbVwUKp2g2i9kw', '-vU', '--write-pages'] [debug] Encodings: locale cp65001, fs utf-8, pref cp65001, out utf-8, error utf-8, screen utf-8 [debug] yt-dlp version stable@2024.10.07 from yt-dlp/yt-dlp [1a176d874] (win_exe) [debug] Python 3.8.10 (CPython AMD64 64bit) - Windows-10-10.0.22631-SP0 (OpenSSL 1.1.1k 25 Mar 2021) [debug] exe versions: ffmpeg 7.0-essentials_build-www.gyan.dev (setts), ffprobe 7.0-essentials_build-www.gyan.dev [debug] Optional libraries: Cryptodome-3.21.0, brotli-1.1.0, certifi-2024.08.30, curl_cffi-0.5.10, mutagen-1.47.0, requests-2.32.3, sqlite3-3.35.5, urllib3-2.2.3, websockets-13.1 [debug] Proxy map: {} [debug] Request Handlers: urllib, requests, websockets, curl_cffi [debug] Loaded 1838 extractors [debug] Fetching release info: https://api.github.com/repos/yt-dlp/yt-dlp/releases/latest Latest version: stable@2024.10.07 from yt-dlp/yt-dlp yt-dlp is up to date (stable@2024.10.07 from yt-dlp/yt-dlp) [twitter] Extracting URL: https://x.com/oldLentach/status/1845148201042534603?t=UXfDq5m_LbVwUKp2g2i9kw [twitter] 1845148201042534603: Downloading guest token [twitter] Saving request to 1845148201042534603_d41d8cd98f00b204e9800998ecf8427e_https_-_api.x.com_1.1_guest_activate.json.dump [twitter] 1845148201042534603: Downloading GraphQL JSON [twitter] Saving request to 1845148201042534603_https_-_x.com_i_api_graphql_2ICDjqPd81tulZcYrtpTuQ_TweetResultByRestIdvariables=%7B%22tweetId%22%3A%221845148201042534603%22%2C%22withCommunity%22%3Afalse%2C%22includePromotedContent%2___241dd39518c482b05ff37ce5c788066f.dump [debug] [twitter] Extracting from video info: 1845148045161234435 [twitter] 1845148201042534603: Downloading m3u8 information [twitter] Saving request to 1845148201042534603_https_-_video.twimg.com_ext_tw_video_1845148045161234435_pu_pl_GSq902LC6id47L2w.m3u8tag=12_v=f50.dump [debug] [twitter] Extracting from video info: 1845148045161156620 [twitter] 1845148201042534603: Downloading m3u8 information [twitter] Saving request to 1845148201042534603_https_-_video.twimg.com_ext_tw_video_1845148045161156620_pu_pl_lCaghaSIrl3iDzmB.m3u8tag=12_v=af6.dump [download] Downloading playlist: Лентач - Джаред Лето на концерте в Белграде решил спросить, сколько в зале людей из Сербии, а сколько из России. Вот что из этого вышло. Затем он продолжил общение с фанатами. «Мы так скучаем по вам, ребята! И вот что я вам скажу: однажды, когда эти все проблемы закончатся, мы встретимся [twitter] Playlist Лентач - Джаред Лето на концерте в Белграде решил спросить, сколько в зале людей из Сербии, а сколько из России. Вот что из этого вышло. Затем он продолжил общение с фанатами. «Мы так скучаем по вам, ребята! И вот что я вам скажу: однажды, когда эти все проблемы закончатся, мы встретимся: Downloading 2 items of 2 [download] Downloading item 1 of 2 [debug] Sort order given by extractor: res, proto:m3u8, br, size [debug] Formats sorted by: hasvid, ie_pref, res, proto:m3u8(8), br, size, lang, quality, fps, hdr:12(7), vcodec:vp9.2(10), channels, acodec, asr, vext, aext, hasaud, source, id [debug] Default format spec: bestvideo*+bestaudio/best [info] 1845148045161234435: Downloading 1 format(s): hls-780+hls-audio-128000-Audio {"id": "1845148045161234435", "title": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #1", "description": "\u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f", "uploader": "\u041b\u0435\u043d\u0442\u0430\u0447", "timestamp": 1728752586.0, "channel_id": "2457390594", "uploader_id": "oldLentach", "uploader_url": "https://twitter.com/oldLentach", "like_count": 4886, "repost_count": 225, "comment_count": 92, "age_limit": 0, "tags": [], "formats": [{"format_id": "hls-audio-32000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/mp4a/32000/WdKAEccC0QKWQ2ID.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 32, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 32, "format": "hls-audio-32000-Audio - audio only (Audio)"}, {"format_id": "hls-audio-64000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/mp4a/64000/C_gMUcsL4pDQORK7.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 64, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 64, "format": "hls-audio-64000-Audio - audio only (Audio)"}, {"format_id": "hls-audio-128000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/mp4a/128000/dhl--BnJd_RBJCqA.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 128, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 128, "format": "hls-audio-128000-Audio - audio only (Audio)"}, {"url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/vid/avc1/320x568/YYUCSzuDqfhQos-o.mp4?tag=12", "format_id": "http-632", "tbr": 632, "width": 320, "height": 568, "ext": "mp4", "protocol": "https", "resolution": "320x568", "dynamic_range": "SDR", "aspect_ratio": 0.56, "filesize_approx": 1537814, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "vbr": null, "abr": null, "format": "http-632 - 320x568"}, {"format_id": "hls-326", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/avc1/320x568/kAk2WVnSpNmPDoBl.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "tbr": 326.4, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 320, "height": 568, "vcodec": "avc1.4D401E", "acodec": "none", "dynamic_range": "SDR", "resolution": "320x568", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 326.4, "format": "hls-326 - 320x568"}, {"url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/vid/avc1/480x852/PFRJMmDVyUFdlECV.mp4?tag=12", "format_id": "http-950", "tbr": 950, "width": 480, "height": 852, "ext": "mp4", "protocol": "https", "resolution": "480x852", "dynamic_range": "SDR", "aspect_ratio": 0.56, "filesize_approx": 2311587, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "vbr": null, "abr": null, "format": "http-950 - 480x852"}, {"format_id": "hls-481", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/avc1/480x852/pSF5GbK3wiVpwfPc.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "tbr": 481.159, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 480, "height": 852, "vcodec": "avc1.4D401F", "acodec": "none", "dynamic_range": "SDR", "resolution": "480x852", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 481.159, "format": "hls-481 - 480x852"}, {"url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/vid/avc1/720x1280/I8-FV6kF9h8Vt0OS.mp4?tag=12", "format_id": "http-2176", "tbr": 2176, "width": 720, "height": 1280, "ext": "mp4", "protocol": "https", "resolution": "720x1280", "dynamic_range": "SDR", "aspect_ratio": 0.56, "filesize_approx": 5294752, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "vbr": null, "abr": null, "format": "http-2176 - 720x1280"}, {"format_id": "hls-780", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/avc1/720x1280/9C0_LdRDQ-lcCdeA.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "tbr": 780.082, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 720, "height": 1280, "vcodec": "avc1.64001F", "acodec": "none", "dynamic_range": "SDR", "resolution": "720x1280", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 780.082, "format": "hls-780 - 720x1280"}], "subtitles": {"en": [{"url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/s0/B5dQ0u9Tjr8UTMBA.m3u8", "ext": "vtt", "protocol": "m3u8_native"}]}, "thumbnails": [{"id": "thumb", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161234435/pu/img/aDqYGXYHkFw9YkwD.jpg?name=thumb", "width": 150, "height": 150, "resolution": "150x150"}, {"id": "small", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161234435/pu/img/aDqYGXYHkFw9YkwD.jpg?name=small", "width": 383, "height": 680, "resolution": "383x680"}, {"id": "medium", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161234435/pu/img/aDqYGXYHkFw9YkwD.jpg?name=medium", "width": 675, "height": 1200, "resolution": "675x1200"}, {"id": "large", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161234435/pu/img/aDqYGXYHkFw9YkwD.jpg?name=large", "width": 720, "height": 1280, "resolution": "720x1280"}, {"id": "orig", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161234435/pu/img/aDqYGXYHkFw9YkwD.jpg?name=orig", "width": 720, "height": 1280, "resolution": "720x1280"}], "view_count": null, "duration": 19.466, "_format_sort_fields": ["res", "proto:m3u8", "br", "size"], "display_id": "1845148201042534603", "_old_archive_ids": ["twitter 1845148201042534603"], "playlist_count": 2, "playlist": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f", "playlist_id": "1845148201042534603", "playlist_title": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f", "playlist_uploader": "\u041b\u0435\u043d\u0442\u0430\u0447", "playlist_uploader_id": "oldLentach", "playlist_channel": null, "playlist_channel_id": "2457390594", "n_entries": 2, "webpage_url": "https://x.com/oldLentach/status/1845148201042534603?t=UXfDq5m_LbVwUKp2g2i9kw", "webpage_url_basename": "1845148201042534603", "webpage_url_domain": "x.com", "playlist_index": 1, "__last_playlist_index": 2, "extractor": "twitter", "extractor_key": "Twitter", "playlist_autonumber": 1, "thumbnail": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161234435/pu/img/aDqYGXYHkFw9YkwD.jpg?name=orig", "fulltitle": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #1", "duration_string": "19", "upload_date": "20241012", "release_year": null, "requested_subtitles": null, "_has_drm": null, "epoch": 1728795707, "requested_formats": [{"format_id": "hls-780", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/avc1/720x1280/9C0_LdRDQ-lcCdeA.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "tbr": 780.082, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 720, "height": 1280, "vcodec": "avc1.64001F", "acodec": "none", "dynamic_range": "SDR", "resolution": "720x1280", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 780.082, "format": "hls-780 - 720x1280"}, {"format_id": "hls-audio-128000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/mp4a/128000/dhl--BnJd_RBJCqA.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161234435/pu/pl/GSq902LC6id47L2w.m3u8?tag=12&v=f50", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 128, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 128, "format": "hls-audio-128000-Audio - audio only (Audio)"}], "format": "hls-780 - 720x1280+hls-audio-128000-Audio - audio only (Audio)", "format_id": "hls-780+hls-audio-128000-Audio", "ext": "mp4", "protocol": "m3u8_native+m3u8_native", "language": null, "format_note": "Audio", "filesize_approx": null, "tbr": 908.082, "width": 720, "height": 1280, "resolution": "720x1280", "fps": null, "dynamic_range": "SDR", "vcodec": "avc1.64001F", "vbr": 780.082, "stretched_ratio": null, "aspect_ratio": 0.56, "acodec": null, "abr": 128, "asr": null, "audio_channels": null, "_filename": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443\uff1a \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #1 [1845148045161234435].mp4", "filename": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443\uff1a \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #1 [1845148045161234435].mp4", "_type": "video", "_version": {"version": "2024.10.07", "current_git_head": null, "release_git_head": "1a176d874e6772cd898ce507379ea388e96ee3f7", "repository": "yt-dlp/yt-dlp"}} [download] Downloading item 2 of 2 [debug] Sort order given by extractor: res, proto:m3u8, br, size [debug] Formats sorted by: hasvid, ie_pref, res, proto:m3u8(8), br, size, lang, quality, fps, hdr:12(7), vcodec:vp9.2(10), channels, acodec, asr, vext, aext, hasaud, source, id [debug] Default format spec: bestvideo*+bestaudio/best [info] 1845148045161156620: Downloading 1 format(s): hls-676+hls-audio-128000-Audio {"id": "1845148045161156620", "title": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #2", "description": "\u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f", "uploader": "\u041b\u0435\u043d\u0442\u0430\u0447", "timestamp": 1728752586.0, "channel_id": "2457390594", "uploader_id": "oldLentach", "uploader_url": "https://twitter.com/oldLentach", "like_count": 4886, "repost_count": 225, "comment_count": 92, "age_limit": 0, "tags": [], "formats": [{"format_id": "hls-audio-32000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/mp4a/32000/_7r6w0NN9RmDurLJ.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 32, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 32, "format": "hls-audio-32000-Audio - audio only (Audio)"}, {"format_id": "hls-audio-64000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/mp4a/64000/cFZrCtlyGdwP81Pq.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 64, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 64, "format": "hls-audio-64000-Audio - audio only (Audio)"}, {"format_id": "hls-audio-128000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/mp4a/128000/DGjOzrx-2QfbL-vg.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 128, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 128, "format": "hls-audio-128000-Audio - audio only (Audio)"}, {"url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/vid/avc1/320x568/8O0B2r_2mIzSK6Cr.mp4?tag=12", "format_id": "http-632", "tbr": 632, "width": 320, "height": 568, "ext": "mp4", "protocol": "https", "resolution": "320x568", "dynamic_range": "SDR", "aspect_ratio": 0.56, "filesize_approx": 4247988, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "vbr": null, "abr": null, "format": "http-632 - 320x568"}, {"format_id": "hls-287", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/avc1/320x568/snK2Db8sEwp4bKf3.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "tbr": 287.194, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 320, "height": 568, "vcodec": "avc1.4D401E", "acodec": "none", "dynamic_range": "SDR", "resolution": "320x568", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 287.194, "format": "hls-287 - 320x568"}, {"url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/vid/avc1/480x852/VaGx2IDYNgE88vHH.mp4?tag=12", "format_id": "http-950", "tbr": 950, "width": 480, "height": 852, "ext": "mp4", "protocol": "https", "resolution": "480x852", "dynamic_range": "SDR", "aspect_ratio": 0.56, "filesize_approx": 6385425, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "vbr": null, "abr": null, "format": "http-950 - 480x852"}, {"format_id": "hls-413", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/avc1/480x852/5IUVMupykCU6fdlB.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "tbr": 413.348, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 480, "height": 852, "vcodec": "avc1.4D401F", "acodec": "none", "dynamic_range": "SDR", "resolution": "480x852", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 413.348, "format": "hls-413 - 480x852"}, {"url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/vid/avc1/720x1280/DC6nt-S4yR_rYozF.mp4?tag=12", "format_id": "http-2176", "tbr": 2176, "width": 720, "height": 1280, "ext": "mp4", "protocol": "https", "resolution": "720x1280", "dynamic_range": "SDR", "aspect_ratio": 0.56, "filesize_approx": 14625984, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "vbr": null, "abr": null, "format": "http-2176 - 720x1280"}, {"format_id": "hls-676", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/avc1/720x1280/_oqDkZOkjCsCDaZF.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "tbr": 676.541, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 720, "height": 1280, "vcodec": "avc1.64001F", "acodec": "none", "dynamic_range": "SDR", "resolution": "720x1280", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 676.541, "format": "hls-676 - 720x1280"}], "subtitles": {"en": [{"url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/s0/4baoZs052Gm7WPfO.m3u8", "ext": "vtt", "protocol": "m3u8_native"}]}, "thumbnails": [{"id": "thumb", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161156620/pu/img/g93H5I2Q2JbFXmvT.jpg?name=thumb", "width": 150, "height": 150, "resolution": "150x150"}, {"id": "small", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161156620/pu/img/g93H5I2Q2JbFXmvT.jpg?name=small", "width": 383, "height": 680, "resolution": "383x680"}, {"id": "medium", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161156620/pu/img/g93H5I2Q2JbFXmvT.jpg?name=medium", "width": 675, "height": 1200, "resolution": "675x1200"}, {"id": "large", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161156620/pu/img/g93H5I2Q2JbFXmvT.jpg?name=large", "width": 720, "height": 1280, "resolution": "720x1280"}, {"id": "orig", "url": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161156620/pu/img/g93H5I2Q2JbFXmvT.jpg?name=orig", "width": 720, "height": 1280, "resolution": "720x1280"}], "view_count": null, "duration": 53.772, "_format_sort_fields": ["res", "proto:m3u8", "br", "size"], "display_id": "1845148201042534603", "playlist_count": 2, "playlist": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f", "playlist_id": "1845148201042534603", "playlist_title": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f", "playlist_uploader": "\u041b\u0435\u043d\u0442\u0430\u0447", "playlist_uploader_id": "oldLentach", "playlist_channel": null, "playlist_channel_id": "2457390594", "n_entries": 2, "webpage_url": "https://x.com/oldLentach/status/1845148201042534603?t=UXfDq5m_LbVwUKp2g2i9kw", "webpage_url_basename": "1845148201042534603", "webpage_url_domain": "x.com", "playlist_index": 2, "__last_playlist_index": 2, "extractor": "twitter", "extractor_key": "Twitter", "playlist_autonumber": 2, "thumbnail": "https://pbs.twimg.com/ext_tw_video_thumb/1845148045161156620/pu/img/g93H5I2Q2JbFXmvT.jpg?name=orig", "fulltitle": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443: \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #2", "duration_string": "53", "upload_date": "20241012", "release_year": null, "requested_subtitles": null, "_has_drm": null, "epoch": 1728795707, "requested_formats": [{"format_id": "hls-676", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/avc1/720x1280/_oqDkZOkjCsCDaZF.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "tbr": 676.541, "ext": "mp4", "fps": null, "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "width": 720, "height": 1280, "vcodec": "avc1.64001F", "acodec": "none", "dynamic_range": "SDR", "resolution": "720x1280", "aspect_ratio": 0.56, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "video_ext": "mp4", "audio_ext": "none", "abr": 0, "vbr": 676.541, "format": "hls-676 - 720x1280"}, {"format_id": "hls-audio-128000-Audio", "format_note": "Audio", "format_index": null, "url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/mp4a/128000/DGjOzrx-2QfbL-vg.m3u8", "manifest_url": "https://video.twimg.com/ext_tw_video/1845148045161156620/pu/pl/lCaghaSIrl3iDzmB.m3u8?tag=12&v=af6", "language": null, "ext": "mp4", "protocol": "m3u8_native", "preference": null, "quality": null, "has_drm": false, "vcodec": "none", "tbr": 128, "resolution": "audio only", "aspect_ratio": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "audio_ext": "mp4", "video_ext": "none", "vbr": 0, "abr": 128, "format": "hls-audio-128000-Audio - audio only (Audio)"}], "format": "hls-676 - 720x1280+hls-audio-128000-Audio - audio only (Audio)", "format_id": "hls-676+hls-audio-128000-Audio", "ext": "mp4", "protocol": "m3u8_native+m3u8_native", "language": null, "format_note": "Audio", "filesize_approx": null, "tbr": 804.541, "width": 720, "height": 1280, "resolution": "720x1280", "fps": null, "dynamic_range": "SDR", "vcodec": "avc1.64001F", "vbr": 676.541, "stretched_ratio": null, "aspect_ratio": 0.56, "acodec": null, "abr": 128, "asr": null, "audio_channels": null, "_filename": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443\uff1a \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #2 [1845148045161156620].mp4", "filename": "\u041b\u0435\u043d\u0442\u0430\u0447 - \u0414\u0436\u0430\u0440\u0435\u0434 \u041b\u0435\u0442\u043e \u043d\u0430 \u043a\u043e\u043d\u0446\u0435\u0440\u0442\u0435 \u0432 \u0411\u0435\u043b\u0433\u0440\u0430\u0434\u0435 \u0440\u0435\u0448\u0438\u043b \u0441\u043f\u0440\u043e\u0441\u0438\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432 \u0437\u0430\u043b\u0435 \u043b\u044e\u0434\u0435\u0439 \u0438\u0437 \u0421\u0435\u0440\u0431\u0438\u0438, \u0430 \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438. \u0412\u043e\u0442 \u0447\u0442\u043e \u0438\u0437 \u044d\u0442\u043e\u0433\u043e \u0432\u044b\u0448\u043b\u043e. \u0417\u0430\u0442\u0435\u043c \u043e\u043d \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u043b \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0441 \u0444\u0430\u043d\u0430\u0442\u0430\u043c\u0438. \u00ab\u041c\u044b \u0442\u0430\u043a \u0441\u043a\u0443\u0447\u0430\u0435\u043c \u043f\u043e \u0432\u0430\u043c, \u0440\u0435\u0431\u044f\u0442\u0430! \u0418 \u0432\u043e\u0442 \u0447\u0442\u043e \u044f \u0432\u0430\u043c \u0441\u043a\u0430\u0436\u0443\uff1a \u043e\u0434\u043d\u0430\u0436\u0434\u044b, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u0438 \u0432\u0441\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0430\u0442\u0441\u044f, \u043c\u044b \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f #2 [1845148045161156620].mp4", "_type": "video", "_version": {"version": "2024.10.07", "current_git_head": null, "release_git_head": "1a176d874e6772cd898ce507379ea388e96ee3f7", "repository": "yt-dlp/yt-dlp"}} [download] Finished downloading playlist: Лентач - Джаред Лето на концерте в Белграде решил спросить, сколько в зале людей из Сербии, а сколько из России. Вот что из этого вышло. Затем он продолжил общение с фанатами. «Мы так скучаем по вам, ребята! И вот что я вам скажу: однажды, когда эти все проблемы закончатся, мы встретимся ```
site-bug,triage
low
Critical
2,583,692,187
rust
Clippy gets rebuilt twice on every change, and rustdoc also gets rebuilt
Something seems wrong with the rebuild tracking for clippy in x.py, making working on clippy in the rustc repo (e.g. when fixing breakage from a rustc change) quite slow due to the multi-minute edit-compile cycle: ``` ./x.py test clippy --stage 2 --bless -- local # change something in clippy_lints ./x.py test clippy --keep-stage 0 --stage 2 --bless -- local ``` The last command does ``` Building stage0 tool lld-wrapper (x86_64-unknown-linux-gnu) Finished `release` profile [optimized + debuginfo] target(s) in 0.15s Building stage1 library artifacts (x86_64-unknown-linux-gnu) Finished `release` profile [optimized + debuginfo] target(s) in 0.06s Building compiler artifacts (stage1 -> stage2, x86_64-unknown-linux-gnu) Finished `release` profile [optimized + debuginfo] target(s) in 0.28s Creating a sysroot for stage2 compiler (use `rustup toolchain link 'name' build/host/stage2`) Building stage1 tool lld-wrapper (x86_64-unknown-linux-gnu) Finished `release` profile [optimized + debuginfo] target(s) in 0.14s Uplifting library (stage1 -> stage2) Uplifting rustc (stage1 -> stage3) Building tool clippy-driver (stage2 -> stage3, x86_64-unknown-linux-gnu) Compiling clippy_lints v0.1.83 (/home/r/src/rust/rustc/src/tools/clippy/clippy_lints) Compiling clippy v0.1.83 (/home/r/src/rust/rustc/src/tools/clippy) Finished `release` profile [optimized + debuginfo] target(s) in 1m 16s Building tool rustdoc (stage1 -> stage2, x86_64-unknown-linux-gnu) Compiling rustdoc v0.0.0 (/home/r/src/rust/rustc/src/librustdoc) Compiling rustdoc-tool v0.0.0 (/home/r/src/rust/rustc/src/tools/rustdoc) Finished `release` profile [optimized + debuginfo] target(s) in 54.20s Testing clippy (stage2 -> stage3, x86_64-unknown-linux-gnu) Compiling clippy_config v0.1.83 (/home/r/src/rust/rustc/src/tools/clippy/clippy_config) Compiling clippy_utils v0.1.83 (/home/r/src/rust/rustc/src/tools/clippy/clippy_utils) Compiling clippy_lints v0.1.83 (/home/r/src/rust/rustc/src/tools/clippy/clippy_lints) Compiling clippy v0.1.83 (/home/r/src/rust/rustc/src/tools/clippy) Finished `release` profile [optimized + debuginfo] target(s) in 1m 24s Running unittests src/driver.rs (build/x86_64-unknown-linux-gnu/stage2-tools/x86_64-unknown-linux-gnu/release/deps/clippy_driver-11f2fd5bded4b22e) ``` That's a lot more `Compiling ...` lines than I would expect, and the entire thing takes so long (>4 minutes, which is longer than it takes my machine to build all of rustc!) to make iteration and testing painful. The most surprising part is that rustdoc gets rebuilt?!? But building clippy twice also seems like something went wrong somewhere.
T-bootstrap,C-bug,A-contributor-roadblock,A-clippy
low
Critical
2,583,704,309
neovim
`TSNode:field()` returns only first node instead of all
### Problem Reference: rest-nvim/rest.nvim#485 `TSNode:field()` api doesn't return the all children nodes matching given field id. Stable version (`v0.10.2`) returns all children nodes but nightly doesn't seem to have same behavior and I can't find any document about this change from `:help news`. ### Steps to reproduce 1. `nvim --clean test.lua` 2. write `test.lua` file like this: ```lua function foo(a,b,c) end ``` 3. place cursor at `(` character 4. Run `:=vim.treesitter.get_node():field("name")` 5. See the command prints `{ <userdata 1> }` ### Expected behavior The expected output is `{ <userdata 1>, <userdata 2>, <userdata 3> }` ### Nvim version (nvim -v) NVIM v0.11.0-dev-965+gfb74fd295 ### Vim (not Nvim) behaves the same? no ### Operating system/version aarch64 ubuntu 22.04 ### Terminal name/version blink shell ### $TERM environment variable xterm-256color ### Installation build from repo / nix
bug,has:repro,bug-regression,treesitter
low
Major
2,583,726,521
rust
ICE: `region variables should not be hashed`
<!-- Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for how to create smaller examples. http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/ --> ### Code `rustc l.rs -Cincremental=.` ```Rust fn main() { unsafe { std::mem::transmute::<usize, extern "C-cmse-nonsecure-call" fn(&'a ())>(5); } } ``` ### Meta <!-- If you're using the stable version of the compiler, you should also check if the bug also exists in the beta or nightly versions. --> `rustc --version --verbose`: ``` rustc 1.83.0-nightly (6b9676b45 2024-10-12) binary: rustc commit-hash: 6b9676b45431a1e531b9c5f7bd289fc36a312749 commit-date: 2024-10-12 host: x86_64-unknown-linux-gnu release: 1.83.0-nightly LLVM version: 19.1.1 ``` ### Error output ``` error[E0261]: use of undeclared lifetime name `'a` --> l.rs:3:78 | 3 | unsafe { std::mem::transmute::<usize, extern "C-cmse-nonsecure-call" fn(&'a ())>(5); } | ^^ undeclared lifetime | = note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomicon/hrtb.html help: consider making the type lifetime-generic with a new `'a` lifetime | 3 | unsafe { std::mem::transmute::<usize, for<'a> extern "C-cmse-nonsecure-call" fn(&'a ())>(5); } | +++++++ help: consider introducing lifetime `'a` here | 2 | fn main<'a>() { | ++++ error[E0658]: C-cmse-nonsecure-call ABI is experimental and subject to change --> l.rs:3:50 | 3 | unsafe { std::mem::transmute::<usize, extern "C-cmse-nonsecure-call" fn(&'a ())>(5); } | ^^^^^^^^^^^^^^^^^^^^^^^ | = note: see issue #81391 <https://github.com/rust-lang/rust/issues/81391> for more information = help: add `#![feature(abi_c_cmse_nonsecure_call)]` to the crate attributes to enable = note: this compiler was built on 2024-10-12; consider upgrading it if it is out of date ``` <!-- Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your environment. E.g. `RUST_BACKTRACE=1 cargo build`. --> <details><summary><strong>Backtrace</strong></summary> <p> ``` thread 'rustc' panicked at /rustc/6b9676b45431a1e531b9c5f7bd289fc36a312749/compiler/rustc_type_ir/src/region_kind.rs:238:17: region variables should not be hashed: '?0 stack backtrace: 0: 0x724fa79ca41a - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::h8b2043b14ab05304 1: 0x724fa82034a6 - core::fmt::write::hf9887d457cdbc966 2: 0x724fa941e951 - std::io::Write::write_fmt::ha659b10ba83556c4 3: 0x724fa79ca272 - std::sys::backtrace::BacktraceLock::print::hf85affc2cf4419f7 4: 0x724fa79cc746 - std::panicking::default_hook::{{closure}}::hde5089a7c4039350 5: 0x724fa79cc590 - std::panicking::default_hook::hf6b38aee6b14f9c5 6: 0x724fa6a249ff - std[b9c4ef606f74e7a3]::panicking::update_hook::<alloc[8572a0bce597bd99]::boxed::Box<rustc_driver_impl[e627dad8a5ad147c]::install_ice_hook::{closure#0}>>::{closure#0} 7: 0x724fa79cce58 - std::panicking::rust_panic_with_hook::hafbd7f0e47ba5b9a 8: 0x724fa79ccc2a - std::panicking::begin_panic_handler::{{closure}}::heb41764772c3697f 9: 0x724fa79ca8c9 - std::sys::backtrace::__rust_end_short_backtrace::hcc198f67593013e0 10: 0x724fa79cc8ec - rust_begin_unwind 11: 0x724fa53758b0 - core::panicking::panic_fmt::hd2428fc03641ffed 12: 0x724fa83b3e87 - <rustc_type_ir[b367b32ea2ea77f7]::ty_info::WithCachedTypeInfo<rustc_type_ir[b367b32ea2ea77f7]::ty_kind::TyKind<rustc_middle[3e2c59a537b514a7]::ty::context::TyCtxt>> as rustc_data_structures[d65d6190c281c564]::stable_hasher::HashStable<rustc_query_system[2162b26b9e1c67a3]::ich::hcx::StableHashingContext>>::hash_stable 13: 0x724fa87ca803 - rustc_query_system[2162b26b9e1c67a3]::query::plumbing::try_execute_query::<rustc_query_impl[5ae70715c347e1a5]::DynamicConfig<rustc_query_system[2162b26b9e1c67a3]::query::caches::DefaultCache<rustc_middle[3e2c59a537b514a7]::ty::ParamEnvAnd<rustc_middle[3e2c59a537b514a7]::ty::Ty>, rustc_middle[3e2c59a537b514a7]::query::erase::Erased<[u8; 16usize]>>, false, true, false>, rustc_query_impl[5ae70715c347e1a5]::plumbing::QueryCtxt, true> 14: 0x724fa87c9b29 - rustc_query_impl[5ae70715c347e1a5]::query_impl::layout_of::get_query_incr::__rust_end_short_backtrace 15: 0x724fa911295e - rustc_middle[3e2c59a537b514a7]::query::plumbing::query_get_at::<rustc_query_system[2162b26b9e1c67a3]::query::caches::DefaultCache<rustc_middle[3e2c59a537b514a7]::ty::ParamEnvAnd<rustc_middle[3e2c59a537b514a7]::ty::Ty>, rustc_middle[3e2c59a537b514a7]::query::erase::Erased<[u8; 16usize]>>> 16: 0x724fa8b042e0 - <dyn rustc_hir_analysis[b8eef9b6240b8e77]::hir_ty_lowering::HirTyLowerer>::lower_fn_ty 17: 0x724fa8b0a4bf - <dyn rustc_hir_analysis[b8eef9b6240b8e77]::hir_ty_lowering::HirTyLowerer>::lower_ty 18: 0x724fa82b539e - <<rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::instantiate_value_path::CtorGenericArgsCtxt as rustc_hir_analysis[b8eef9b6240b8e77]::hir_ty_lowering::GenericArgsLowerer>::provided_kind 19: 0x724fa82ad3e1 - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::instantiate_value_path 20: 0x724fa82a16d0 - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::check_expr_path 21: 0x724fa8e74092 - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args 22: 0x724fa8e75d77 - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args 23: 0x724fa8e6f6aa - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::check_block_with_expected 24: 0x724fa8e76923 - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args 25: 0x724fa8e6f78a - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::check_block_with_expected 26: 0x724fa8e76923 - <rustc_hir_typeck[fded10133472f41e]::fn_ctxt::FnCtxt>::check_expr_with_expectation_and_args 27: 0x724fa8b91a26 - rustc_hir_typeck[fded10133472f41e]::check::check_fn 28: 0x724fa8b86761 - rustc_hir_typeck[fded10133472f41e]::typeck 29: 0x724fa8b860cf - rustc_query_impl[5ae70715c347e1a5]::plumbing::__rust_begin_short_backtrace::<rustc_query_impl[5ae70715c347e1a5]::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle[3e2c59a537b514a7]::query::erase::Erased<[u8; 8usize]>> 30: 0x724fa85ffbd7 - rustc_query_system[2162b26b9e1c67a3]::query::plumbing::try_execute_query::<rustc_query_impl[5ae70715c347e1a5]::DynamicConfig<rustc_query_system[2162b26b9e1c67a3]::query::caches::VecCache<rustc_span[6af807c565a72bbf]::def_id::LocalDefId, rustc_middle[3e2c59a537b514a7]::query::erase::Erased<[u8; 8usize]>>, false, false, false>, rustc_query_impl[5ae70715c347e1a5]::plumbing::QueryCtxt, true> 31: 0x724fa85da854 - rustc_query_impl[5ae70715c347e1a5]::query_impl::typeck::get_query_incr::__rust_end_short_backtrace 32: 0x724fa85fbb61 - <rustc_middle[3e2c59a537b514a7]::hir::map::Map>::par_body_owners::<rustc_hir_analysis[b8eef9b6240b8e77]::check_crate::{closure#4}>::{closure#0} 33: 0x724fa85f9a9b - rustc_hir_analysis[b8eef9b6240b8e77]::check_crate 34: 0x724fa85f64d7 - rustc_interface[a3bf963724784d96]::passes::run_required_analyses 35: 0x724fa8f6a65e - rustc_interface[a3bf963724784d96]::passes::analysis 36: 0x724fa8f6a631 - rustc_query_impl[5ae70715c347e1a5]::plumbing::__rust_begin_short_backtrace::<rustc_query_impl[5ae70715c347e1a5]::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle[3e2c59a537b514a7]::query::erase::Erased<[u8; 1usize]>> 37: 0x724fa92d530d - rustc_query_system[2162b26b9e1c67a3]::query::plumbing::try_execute_query::<rustc_query_impl[5ae70715c347e1a5]::DynamicConfig<rustc_query_system[2162b26b9e1c67a3]::query::caches::SingleCache<rustc_middle[3e2c59a537b514a7]::query::erase::Erased<[u8; 1usize]>>, false, false, false>, rustc_query_impl[5ae70715c347e1a5]::plumbing::QueryCtxt, true> 38: 0x724fa92d4dfa - rustc_query_impl[5ae70715c347e1a5]::query_impl::analysis::get_query_incr::__rust_end_short_backtrace 39: 0x724fa8f7b0de - rustc_interface[a3bf963724784d96]::interface::run_compiler::<core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>, rustc_driver_impl[e627dad8a5ad147c]::run_compiler::{closure#0}>::{closure#1} 40: 0x724fa90244d4 - std[b9c4ef606f74e7a3]::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface[a3bf963724784d96]::util::run_in_thread_with_globals<rustc_interface[a3bf963724784d96]::util::run_in_thread_pool_with_globals<rustc_interface[a3bf963724784d96]::interface::run_compiler<core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>, rustc_driver_impl[e627dad8a5ad147c]::run_compiler::{closure#0}>::{closure#1}, core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>>::{closure#0}, core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>> 41: 0x724fa90248e8 - <<std[b9c4ef606f74e7a3]::thread::Builder>::spawn_unchecked_<rustc_interface[a3bf963724784d96]::util::run_in_thread_with_globals<rustc_interface[a3bf963724784d96]::util::run_in_thread_pool_with_globals<rustc_interface[a3bf963724784d96]::interface::run_compiler<core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>, rustc_driver_impl[e627dad8a5ad147c]::run_compiler::{closure#0}>::{closure#1}, core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>>::{closure#0}, core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>>::{closure#0}::{closure#0}, core[208fe08024603fa1]::result::Result<(), rustc_span[6af807c565a72bbf]::ErrorGuaranteed>>::{closure#1} as core[208fe08024603fa1]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} 42: 0x724fa90253ab - std::sys::pal::unix::thread::Thread::new::thread_start::h0e0386f9f8272e66 43: 0x724faa67739d - <unknown> 44: 0x724faa6fc49c - <unknown> 45: 0x0 - <unknown> error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/tmp/im/rustc-ice-2024-10-13T07_13_22-625025.txt` to your bug report note: compiler flags: -C incremental=[REDACTED] query stack during panic: panicked at /rustc/6b9676b45431a1e531b9c5f7bd289fc36a312749/compiler/rustc_type_ir/src/region_kind.rs:238:17: thread panicked while processing panic. aborting. [2] 625025 IOT instruction rustc l.rs -Cincremental=. ``` </p> </details>
I-ICE,T-compiler,A-incr-comp,C-bug,F-cmse_nonsecure_entry,S-has-mcve,S-has-bisection
low
Critical
2,583,729,822
neovim
TUI: segfault when using extmark with very long URL
### Problem TUI segfaults when using extmark with very long URL. ASAN log: ``` ================================================================= ==280569==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x531000012630 at pc 0x5b8b676bd084 bp 0x7ffc40542f10 sp 0x7ffc405426d0 WRITE of size 100019 at 0x531000012630 thread T0 #0 0x5b8b676bd083 in __asan_memcpy (**/build/bin/nvim+0xd29083) (BuildId: 51d9302e21cef8c7d563cf75b16d50cc87897e8c) #1 0x5b8b68c04bf8 in out **/src/nvim/tui/tui.c:1844:3 #2 0x5b8b68c183ed in update_attrs **/src/nvim/tui/tui.c:815:7 #3 0x5b8b68c22b8b in print_cell **/src/nvim/tui/tui.c:855:3 #4 0x5b8b68c1f833 in print_cell_at_pos **/src/nvim/tui/tui.c:1038:3 #5 0x5b8b68c25769 in tui_raw_line **/src/nvim/tui/tui.c:1672:3 #6 0x5b8b68c63a1c in ui_client_event_raw_line **/src/nvim/ui_client.c:275:3 #7 0x5b8b6848b009 in parse_msgpack **/src/nvim/msgpack_rpc/channel.c:251:11 #8 0x5b8b68480c71 in receive_msgpack **/src/nvim/msgpack_rpc/channel.c:213:5 #9 0x5b8b67e28fbc in read_event **/src/nvim/event/rstream.c:180:23 #10 0x5b8b67e2898d in invoke_read_cb **/src/nvim/event/rstream.c:232:3 #11 0x5b8b67e25b9d in read_cb **/src/nvim/event/rstream.c:135:3 #12 0x5b8b690a424a in uv__read **/.deps/build/src/libuv/src/unix/stream.c:1148:7 #13 0x5b8b690a1b7c in uv__stream_io **/.deps/build/src/libuv/src/unix/stream.c:1208:5 #14 0x5b8b690adcd1 in uv__io_poll **/.deps/build/src/libuv/src/unix/linux.c:1570:11 #15 0x5b8b6908f405 in uv_run **/.deps/build/src/libuv/src/unix/core.c:458:5 #16 0x5b8b67e12cd9 in loop_uv_run **/src/nvim/event/loop.c:61:3 #17 0x5b8b67e128e4 in loop_poll_events **/src/nvim/event/loop.c:82:26 #18 0x5b8b68c61ac9 in ui_client_run **/src/nvim/ui_client.c:176:5 #19 0x5b8b681fef6d in main **/src/nvim/main.c:354:5 #20 0x7c8dc1170e07 in __libc_start_call_main /usr/src/debug/glibc/glibc/csu/../sysdeps/nptl/libc_start_call_main.h:58:16 #21 0x7c8dc1170ecb in __libc_start_main /usr/src/debug/glibc/glibc/csu/../csu/libc-start.c:360:3 #22 0x5b8b675d4d24 in _start (**/build/bin/nvim+0xc40d24) (BuildId: 51d9302e21cef8c7d563cf75b16d50cc87897e8c) 0x531000012630 is located 0 bytes after 73264-byte region [0x531000000800,0x531000012630) allocated by thread T0 here: #0 0x5b8b676c1149 in calloc (**/build/bin/nvim+0xd2d149) (BuildId: 51d9302e21cef8c7d563cf75b16d50cc87897e8c) #1 0x5b8b683c473d in xcalloc **/src/nvim/memory.c:159:15 #2 0x5b8b68c012d2 in tui_start **/src/nvim/tui/tui.c:164:18 #3 0x5b8b68c6194b in ui_client_run **/src/nvim/ui_client.c:163:3 #4 0x5b8b681fef6d in main **/src/nvim/main.c:354:5 #5 0x7c8dc1170e07 in __libc_start_call_main /usr/src/debug/glibc/glibc/csu/../sysdeps/nptl/libc_start_call_main.h:58:16 #6 0x7c8dc1170ecb in __libc_start_main /usr/src/debug/glibc/glibc/csu/../csu/libc-start.c:360:3 #7 0x5b8b675d4d24 in _start (**/build/bin/nvim+0xc40d24) (BuildId: 51d9302e21cef8c7d563cf75b16d50cc87897e8c) SUMMARY: AddressSanitizer: heap-buffer-overflow (**/build/bin/nvim+0xd29083) (BuildId: 51d9302e21cef8c7d563cf75b16d50cc87897e8c) in __asan_memcpy Shadow bytes around the buggy address: 0x531000012380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x531000012400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x531000012480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x531000012500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0x531000012580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 =>0x531000012600: 00 00 00 00 00 00[fa]fa fa fa fa fa fa fa fa fa 0x531000012680: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa 0x531000012700: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa 0x531000012780: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa 0x531000012800: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa 0x531000012880: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa Shadow byte legend (one shadow byte represents 8 application bytes): Addressable: 00 Partially addressable: 01 02 03 04 05 06 07 Heap left redzone: fa Freed heap region: fd Stack left redzone: f1 Stack mid redzone: f2 Stack right redzone: f3 Stack after return: f5 Stack use after scope: f8 Global redzone: f9 Global init order: f6 Poisoned by user: f7 Container overflow: fc Array cookie: ac Intra object redzone: bb ASan internal: fe Left alloca redzone: ca Right alloca redzone: cb ==280569==ABORTING ``` ### Steps to reproduce 1. Run `nvim --clean` 2. Source the following Lua file: ```lua local ns = vim.api.nvim_create_namespace('test') vim.api.nvim_buf_set_lines(0, 0, -1, true, { 'foobar' }) vim.api.nvim_buf_set_extmark(0, ns, 0, 0, { end_col = 3, url = ('a'):rep(99999) }) ``` 3. Segfault ### Expected behavior No segfault ### Nvim version (nvim -v) v0.11.0-dev-965+gfb74fd2954 ### Vim (not Nvim) behaves the same? N/A ### Operating system/version Arch Linux ### Terminal name/version kitty 0.36.4 ### $TERM environment variable xterm-kitty ### Installation build from repo
tui,bug-crash
low
Critical
2,583,738,303
ui
[bug]: Module not found: Error: Can't resolve '@/components/ui/button'...
### Describe the bug I am using create react app and encountering the above error: Module not found: Error: Can't resolve '@/lib/utils' The above doesn't happen if I write the following "../../lib/utils" // tsconfig.json { "compilerOptions": { "target": "ES2020", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, "baseUrl": ".", "paths": { "@/*": ["./src/*"] }, "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true }, "include": ["src"] } //components.jsons { "$schema": "https://ui.shadcn.com/schema.json", "style": "new-york", "rsc": true, "tsx": true, "tailwind": { "config": "tailwind.config.js", "css": "src/index.css", "baseColor": "slate", "cssVariables": true, "prefix": "" }, "aliases": { "components": "@/components", "utils": "@/lib/utils" } } ### Affected component/components Button,... ### How to reproduce npx shadcn-ui@0.8.0 init shadcn@latest add button npm start ### Codesandbox/StackBlitz link _No response_ ### Logs _No response_ ### System Info ```bash Create React App ``` ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues
bug
low
Critical
2,583,781,416
vscode
[regression] Most `"configurationDefaults"` settings no longer work on VSCode reload
most settings in `"configurationDefaults"` no longer seem to work when restarting VSCode with a file loaded this affects 22 built-in [extensions](https://github.com/search?q=repo%3Amicrosoft%2Fvscode%20path%3Aextensions%2F**%2Fpackage.json%20%22configurationDefaults%22&type=code) https://github.com/microsoft/vscode/blob/104d04f3c581d8fd575389cbbdd67cf6a4002c91/extensions/json-language-features/package.json#L130-L143 Steps to Reproduce: 1. Paste snippet into `settings.json` file ```jsonc { "" } ``` 3. type `foo` inside the double quotes `""` 4. notice quick suggestions pop up ✅ 5. accept completion suggestion 6. notice code completion worked correctly ✅ 7. Restart VSCode (and wait for everything to load) 8. repeat steps 1-5 9. notice quick suggestions no longer pop up automatically ❌ 10. notice code completion incorrectly left a double quote at the end ❌ please do not skip any steps thank you https://github.com/user-attachments/assets/00c4cd66-a203-45f2-aaab-9c93c75414c1 notice that I have to manually press ctrl+space to bring up completions and the text after the cursor is not replaced This was working correctly in 1.93.0 but broke in 1.94.0 Does this issue occur when all extensions are disabled?: Yes - VS Code Version: 1.96.0 - OS Version: Windows 11
bug
low
Major
2,583,797,740
vscode
revertAndCloseActiveEditor doesn't work on notebooks
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid creating duplicates. --> <!-- 🧪 Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ --> <!-- 💡 Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. --> <!-- 🔧 Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Relevant for VSCode Notebooks <!-- 🪓 If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. --> <!-- 📣 Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. --> - Version: 1.94.2 (Universal) - Commit: 384ff7382de624fb94dbaf6da11977bba1ecd427 - Date: 2024-10-09T16:08:44.566Z (3 days ago) - Electron: 30.5.1 - ElectronBuildId: 10262041 - Chromium: 124.0.6367.243 - Node.js: 20.16.0 - V8: 12.4.254.20-electron.0 - OS: Darwin x64 23.1.0 Steps to Reproduce: 1. Do a change in a notebook (add a cell, change a cell, etc) 2. Run workbench.action.revertAndCloseActiveEditor 3. Open the notebook again 4. The change that you have made, is now saved (not reverted) in the notebook.
bug,notebook-workflow
low
Critical
2,583,802,166
PowerToys
PowerToys Run not copy value
### Microsoft PowerToys version 0.85.1 ### Installation method Microsoft Store ### Running as admin Yes ### Area(s) with issue? PowerToys Run ### Steps to reproduce [PowerToysReport_2024-10-13-16-51-54.zip](https://github.com/user-attachments/files/17354988/PowerToysReport_2024-10-13-16-51-54.zip) ![Image](https://github.com/user-attachments/assets/631a6c9b-81d7-455a-85e5-efc34bed63a2) ### ✔️ Expected Behavior copy value success ### ❌ Actual Behavior copy error ,report exception, after reinstalling the software ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Critical
2,583,824,605
vscode
Unknown configuration setting `notebook.controller2TypeBindings` appears in exported profiles and User/sync/globalState
Type: <b>Bug</b> It may be caused by an outdated setting so I can't reproduce it. I only want to ***safely delete this setting*** since the directory `envs/d2l` in the content is not valid now, and I think some bugs are related with it. The following are exported `code-profile` file: [default profile.zip](https://github.com/user-attachments/files/17355097/default.profile.zip) VS Code version: Code 1.94.2 (384ff7382de624fb94dbaf6da11977bba1ecd427, 2024-10-09T16:08:44.566Z) OS version: Windows_NT x64 10.0.22000 Modes: <details> <summary>System Info</summary> |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz (12 x 2208)| |GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled<br>webnn: disabled_off| |Load (avg)|undefined| |Memory (System)|7.85GB (1.84GB free)| |Process Argv|--log ms-python.python=trace --crash-reporter-id deaad0bf-2897-480e-b8cf-04d2a61dc2e3 --log ms-python.python=trace --crash-reporter-id deaad0bf-2897-480e-b8cf-04d2a61dc2e3| |Screen Reader|no| |VM|0%| </details><details><summary>Extensions (9)</summary> Extension|Author (truncated)|Version ---|---|--- black-formatter|ms-|2024.4.0 debugpy|ms-|2024.10.0 flake8|ms-|2023.10.0 python|ms-|2024.16.1 vscode-pylance|ms-|2024.10.1 datawrangler|ms-|1.10.0 jupyter|ms-|2024.9.1 jupyter-renderers|ms-|1.0.19 tensorboard|ms-|2023.10.1002992421 </details><details> <summary>A/B Experiments</summary> ``` vsliv368:30146709 vspor879:30202332 vspor708:30202333 vspor363:30204092 vscod805cf:30301675 binariesv615:30325510 vsaa593:30376534 py29gd2263:31024239 c4g48928:30535728 azure-dev_surveyone:30548225 962ge761:30959799 pythongtdpath:30769146 pythonnoceb:30805159 asynctok:30898717 pythonmypyd1:30879173 h48ei257:31000450 pythontbext0:30879054 accentitlementst:30995554 cppperfnew:31000557 dsvsc020:30976470 pythonait:31006305 dsvsc021:30996838 0ee40948:31013168 a69g1124:31058053 dvdeprecation:31068756 dwnewjupyter:31046869 impr_priority:31102340 nativerepl1:31139838 refactort:31108082 pythonrstrctxt:31112756 wkspc-onlycs-t:31132770 wkspc-ranged-t:31151552 cf971741:31144450 defaultse:31146405 iacca1:31156133 notype1cf:31157160 showbadge:31153266 5fd0e150:31155592 ``` </details> <!-- generated by issue reporter -->
debt
low
Critical
2,583,848,071
vscode
Retrying opening a file with a custom editor always gives the same error
Type: <b>Bug</b> - Create a file that VSCode opens with a custom editor (I tried this with both the [NBT Viewer](https://marketplace.visualstudio.com/items?itemName=Misodee.vscode-nbt) extension and the [custom-editor-sample](https://github.com/microsoft/vscode-extension-samples/tree/main/custom-editor-sample) extension) - Open the file with the custom editor - Close VSCode - Rename the file - Open VSCode again - An error will be shown when loading the custom editor for the file, because the file could not be found - Rename the file back to its original name - Click the "Try again" button Expected behaviour: The file should now be read by VSCode and opened with the custom editor, since it is available in the file system again Actual behaviour: Opening the file always gives the same error that was given the first time VSCode tried to open it. This persists until the window is reloaded. VS Code version: Code 1.94.2 (384ff7382de624fb94dbaf6da11977bba1ecd427, 2024-10-09T16:08:44.566Z) OS version: Windows_NT x64 10.0.19045 Modes: <details> <summary>System Info</summary> |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-4810MQ CPU @ 2.80GHz (8 x 2794)| |GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: unavailable_off<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled<br>webnn: disabled_off| |Load (avg)|undefined| |Memory (System)|15.88GB (7.85GB free)| |Process Argv|--crash-reporter-id 4efcda03-7d5c-4622-bde5-e0749e30e6a5| |Screen Reader|no| |VM|40%| </details><details><summary>Extensions (22)</summary> Extension|Author (truncated)|Version ---|---|--- vscode-sqlite|ale|0.14.1 tasks-shell-input|aug|1.12.4 vscode-eslint|dba|3.0.10 ev3dev-browser|ev3|1.2.1 vscode-nbt|Mis|0.9.2 debugpy|ms-|2024.10.0 isort|ms-|2023.10.1 python|ms-|2024.16.1 jupyter|ms-|2024.9.1 jupyter-keymap|ms-|1.1.2 jupyter-renderers|ms-|1.0.19 vscode-jupyter-cell-tags|ms-|0.1.9 vscode-jupyter-slideshow|ms-|0.1.6 vsliveshare|ms-|1.0.5941 commandcrafter|Pap|0.1.0 inline-html|pus|0.3.10 binary-viewer|Qia|1.1.1 rust-analyzer|rus|0.3.2137 shader|sle|1.1.5 vscode-mc-shader|Str|0.9.9 lua|sum|3.11.1 vscode-lldb|vad|1.11.0 </details><details> <summary>A/B Experiments</summary> ``` vsliv368:30146709 vspor879:30202332 vspor708:30202333 vspor363:30204092 vscod805cf:30301675 binariesv615:30325510 vsaa593:30376534 py29gd2263:31024239 vscaat:30438848 c4g48928:30535728 azure-dev_surveyone:30548225 a9j8j154:30646983 962ge761:30959799 pythongtdpath:30769146 pythonnoceb:30805159 asynctok:30898717 pythonmypyd1:30879173 h48ei257:31000450 pythontbext0:30879054 accentitlementsc:30995553 cppperfnew:31000557 dsvsc020:30976470 pythonait:31006305 dsvsc021:30996838 f3je6385:31013174 a69g1124:31058053 dvdeprecation:31068756 dwnewjupytercf:31046870 impr_priority:31102340 nativerepl1:31139838 refactort:31108082 pythonrstrctxt:31112756 wkspc-onlycs-t:31132770 nativeloc2:31134642 wkspc-ranged-t:31151552 cf971741:31144450 defaultse:31146405 iacca2:31156134 notype1:31157159 controlgs:31153265 5fd0e150:31155592 ``` </details> <!-- generated by issue reporter -->
bug,custom-editors
low
Critical
2,583,885,020
flutter
Add a `TextInputAction` property to `DropdownMenu`
I usually use `DropdownMenu` as my go-to widget when I need a `TextField` with a dropdown where I can search for items. I use it in a form where there is at least one other form field (usually `TextFormField`) coming after it. It would be such a nice feature for `DropdownMenu` to have a `textInputAction` property so we can use something like `TextInputAction.next` to go to the next form field. Right now, it can only be `TextInputAction.done` (as a default value for the internal `TextField` it uses) which is not really helpful. <img src="https://github.com/user-attachments/assets/183a7876-5678-4216-9ae3-9126a0078209" width="300" />
a: text input,c: new feature,framework,f: material design,c: proposal,P3,workaround available,team-design,triaged-design
low
Minor
2,583,893,986
ui
[bug]: Dialog / AlertDialog not styled properly
### Describe the bug **Description:** I am encountering an issue with the styling of `Dialog` and `AlertDialog` components in my project. Despite following the documentation, the components do not render as expected, and the styling appears to be broken or missing. I am unsure of the root cause and have tried to troubleshoot without success. ```js import { Button } from "@/lib/shadcn/ui/button"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from "@/lib/shadcn/ui/dialog"; export const AlertDialog = () => { return ( <Dialog> <DialogTrigger asChild> <Button variant="outline">Edit Profile</Button> </DialogTrigger> <DialogContent className="sm:max-w-[425px]"> <DialogHeader> <DialogTitle>Edit profile</DialogTitle> <DialogDescription> Make changes to your profile here. Click save when you're done. </DialogDescription> </DialogHeader> <DialogFooter> <Button type="submit">Save changes</Button> </DialogFooter> </DialogContent> </Dialog> ); }; ``` ![image](https://github.com/user-attachments/assets/7d298fc5-ce90-4666-9cef-657f16e07870) **Expected Behavior:** `Dialog` and `AlertDialog` should render with the proper styling as documented. **Actual Behavior:** The styling for `Dialog` and `AlertDialog` is either missing or broken. The components render with incorrect or no styles applied. ### Affected component/components Dialog, AlertDialog ### How to reproduce **Steps to Reproduce:** 1. Install ShadCN components as per the documentation. 2. Import and use `Dialog` or `AlertDialog` in a project. 3. Observe that the components do not have the correct or expected styling. ### Codesandbox/StackBlitz link https://ui.shadcn.com/docs/components/dialog ### Logs _No response_ ### System Info ```bash **Environment:** - **Framework:** Next.js@14.2.15 - **Browser:** Chrome / Brave - **OS:** Windows - **Node.js version:** 20.14.0 ``` ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues
bug
low
Critical
2,583,931,000
vscode
Unicode highlight: No explanations nor setting-adjustment shortcuts anymore when hovering highlighted characters
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid creating duplicates. --> <!-- 🧪 Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ --> <!-- 💡 Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. --> <!-- 🔧 Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes <!-- 🪓 If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. --> <!-- 📣 Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. --> - VS Code Version: Version: 1.94.1 Commit: e10f2369d0d9614a452462f2e01cdc4aa9486296 Date: 2024-10-05T05:44:32.189Z Electron: 30.5.1 ElectronBuildId: 10262041 Chromium: 124.0.6367.243 Node.js: 20.16.0 V8: 12.4.254.20-electron.0 - OS Version: OS: Linux x64 5.15.0-122-generic Xubuntu 20 Steps to Reproduce: 1. Type characters subjected to the “Unicode Highlight” rules. 2. Check that they are indeed highlighted (check or reset your relevant settings otherwise). 3. Hover over the highlighted characters with the mouse cursor. **Expected result:** The explanations that there used to be there (I think?), giving the U+xxxx code of the character and what it can be mistaken with (if ambiguous) and “Adjust settings” options, etc. **Actual result:** Nothing appears on hover, and no code actions are available. Tried completely resetting my `settings.json` and disabling all extensions, but still nothing. Tried in multiple filetypes (AsciiDoc, Shell script). Maybe my memories about how this worked in the past are slightly mistaken, but still: in many old issues regarding Unicode highlight, I see people mentioning the possibility of hovering over them to get info and to “adjust settings”. Other, unrelated hover-based features still seem OK. Here’s a GIF in which I type and try to inspect a capital α, a capital β, and U+00a0 / U+202f no-break spaces: ![Image](https://github.com/user-attachments/assets/550d9019-36f8-4b0f-a8ea-fefaa8847b77)
bug,unicode-highlight
low
Critical
2,583,938,514
rust
ICE: `cycle detected when computing function signature`
<!-- ICE: Rustc ./a.rs '' 'error: internal compiler error[E0391]: cycle detected when computing function signature of `IntFactory::stream`', 'error: internal compiler error[E0391]: cycle detected when computing function signature of `IntFactory::stream`' File: /tmp/im/a.rs --> auto-reduced (treereduce-rust): ````rust #![feature(return_type_notation)] trait IntFactory { fn stream(self) -> impl IntFactory<stream(..): Send>; } fn main() {} ```` original: ````rust #![feature(return_type_notation)] trait IntFactory { fn stream(self) -> impl IntFactory<stream(..): Send>; } trait SendIntFactory: IntFactory<stream(..): Send> + Send {} fn main() {} ```` Version information ```` rustc 1.83.0-nightly (ecf2d1fa4 2024-10-13) binary: rustc commit-hash: ecf2d1fa4bd8166c696883b10f483122b1fe98a3 commit-date: 2024-10-13 host: x86_64-unknown-linux-gnu release: 1.83.0-nightly LLVM version: 19.1.1 ```` Command: `/home/matthias/.rustup/toolchains/master/bin/rustc ` <!-- Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your environment. E.g. `RUST_BACKTRACE=1 cargo build`. --> <details><summary><strong>Program output</strong></summary> <p> ``` warning: trait `IntFactory` is never used --> /tmp/icemaker_global_tempdir.Y5oQaABbYFFD/rustc_testrunner_tmpdir_reporting.Lfitn4m1Yb8Y/mvce.rs:3:7 | 3 | trait IntFactory { | ^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: 1 warning emitted note: no errors encountered even though delayed bugs were created note: those delayed bugs will now be shown as internal compiler errors error: internal compiler error[E0391]: cycle detected when computing function signature of `IntFactory::stream` --> /tmp/icemaker_global_tempdir.Y5oQaABbYFFD/rustc_testrunner_tmpdir_reporting.Lfitn4m1Yb8Y/mvce.rs:4:5 | 4 | fn stream(self) -> impl IntFactory<stream(..): Send>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | note: ...which requires looking up late bound vars inside `IntFactory::stream`... --> /tmp/icemaker_global_tempdir.Y5oQaABbYFFD/rustc_testrunner_tmpdir_reporting.Lfitn4m1Yb8Y/mvce.rs:4:5 | 4 | fn stream(self) -> impl IntFactory<stream(..): Send>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ note: ...which requires resolving lifetimes for `IntFactory::stream`... --> /tmp/icemaker_global_tempdir.Y5oQaABbYFFD/rustc_testrunner_tmpdir_reporting.Lfitn4m1Yb8Y/mvce.rs:4:5 | 4 | fn stream(self) -> impl IntFactory<stream(..): Send>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = note: ...which again requires computing function signature of `IntFactory::stream`, completing the cycle note: cycle used when checking that `IntFactory` is well-formed --> /tmp/icemaker_global_tempdir.Y5oQaABbYFFD/rustc_testrunner_tmpdir_reporting.Lfitn4m1Yb8Y/mvce.rs:3:1 | 3 | trait IntFactory { | ^^^^^^^^^^^^^^^^ = note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information note: delayed at compiler/rustc_query_system/src/query/job.rs:596:16 - disabled backtrace --> /tmp/icemaker_global_tempdir.Y5oQaABbYFFD/rustc_testrunner_tmpdir_reporting.Lfitn4m1Yb8Y/mvce.rs:4:5 | 4 | fn stream(self) -> impl IntFactory<stream(..): Send>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: rustc 1.83.0-nightly (ecf2d1fa4 2024-10-13) running on x86_64-unknown-linux-gnu query stack during panic: end of query stack ``` </p> </details> <!-- query stack: --> @rustbot label +F-return_type_notation
I-ICE,E-needs-test,T-compiler,C-bug,S-bug-has-test,F-return_type_notation
low
Critical
2,583,957,260
tensorflow
Aborted (core dumped) due to Overflow : `tf.raw_ops.IRFFT2D`
### Issue type Bug ### Have you reproduced the bug with TensorFlow Nightly? Yes ### Source source ### TensorFlow version tf2.17.0 tf2.16.1 ### Custom code Yes ### OS platform and distribution Linux Ubuntu 20.04 ### Mobile device _No response_ ### Python version 3.11 ### Bazel version _No response_ ### GCC/compiler version _No response_ ### CUDA/cuDNN version _No response_ ### GPU model and memory _No response_ ### Current behavior? Since the value in fft_length is a maximum value, it will cause abort ### Standalone code to reproduce the issue ```shell import tensorflow as tf input = tf.constant(0, shape=[1,4,10,0,0] ,dtype=tf.complex64) fft_length = tf.constant(2147483647, shape=[2], dtype=tf.int32) tf.raw_ops.IRFFT2D(input=input, fft_length=fft_length) ``` ### Relevant log output ```shell 2024-10-13 12:59:11.295197: F tensorflow/core/framework/tensor_shape.cc:607] Non-OK-status: RecomputeNumElements() Status: INVALID_ARGUMENT: Shape [1,4,10,2147483647,2147483647] results in overflow when computing number of elements Aborted (core dumped) ```
stat:awaiting tensorflower,type:bug,comp:ops,2.17
medium
Critical
2,583,958,982
tensorflow
Aborted (core dumped) due to Overflow : `tf.raw_ops.IRFFT3D`
### Issue type Bug ### Have you reproduced the bug with TensorFlow Nightly? Yes ### Source source ### TensorFlow version tf2.17.0 tf2.16.1 ### Custom code Yes ### OS platform and distribution Linux Ubuntu 20.04 ### Mobile device _No response_ ### Python version 3.11 ### Bazel version _No response_ ### GCC/compiler version _No response_ ### CUDA/cuDNN version _No response_ ### GPU model and memory _No response_ ### Current behavior? If the value contained in fft_length is the maximum value, it will cause an abort ### Standalone code to reproduce the issue ```shell import tensorflow as tf input = tf.constant(0, shape=[2,0,0,0] ,dtype=tf.complex64) fft_length = tf.constant(1879048192, shape=[3], dtype=tf.int32) tf.raw_ops.IRFFT3D(input=input, fft_length=fft_length) ``` ### Relevant log output ```shell 2024-10-13 13:04:53.308156: F tensorflow/core/framework/tensor_shape.cc:607] Non-OK-status: RecomputeNumElements() Status: INVALID_ARGUMENT: Shape [2,1879048192,1879048192,1879048192] results in overflow when computing number of elements Aborted (core dumped) ```
stat:awaiting tensorflower,type:bug,comp:ops,2.17
medium
Critical
2,583,991,919
PowerToys
Constant notification pop-up when starting app
### Microsoft PowerToys version 0.81.1 ### Installation method Microsoft Store ### Running as admin None ### Area(s) with issue? General ### Steps to reproduce When I open the application there is a constant computer notification pop-up on PC. A new one will pop-up every second. When clicked it doesn't open the application but keeps on notifying until I start the application from the windows menu and disable "Show notifications for new updates" and "Show the release notes after an update". ### ✔️ Expected Behavior Should only have one notification and not repeat every second. ### ❌ Actual Behavior _No response_ ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,583,996,275
rust
false positive for `unused_parens` in a let-else
### Code ```rs fn main() { macro_rules! x { () => { None::<i32> }; } let Some(_x) = (x! {}) else { return }; } ``` ### Current output ``` warning: unnecessary parentheses around assigned value --> src/main.rs:6:20 | 6 | let Some(_x) = (x! {}) else { return }; | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 6 - let Some(_x) = (x! {}) else { return }; 6 + let Some(_x) = x! {} else { return }; | warning: 1 warning emitted ``` ### Desired output nothing ### Rationale and extra context _No response_ ### Other cases _No response_ ### Rust Version rustc 1.83.0-nightly (6b9676b45 2024-10-12) binary: rustc commit-hash: 6b9676b45431a1e531b9c5f7bd289fc36a312749 commit-date: 2024-10-12 host: aarch64-apple-darwin release: 1.83.0-nightly LLVM version: 19.1.1 ### Anything else? This was an issue on a nightly from 7th of August as well
A-lints,A-diagnostics,T-compiler,L-unused_parens
low
Minor
2,584,004,361
neovim
Wrong commentstring in builtin commenting with `injection.combined`
### Problem When tree-sitter injection queries are written with `injection.combined` and there are multiple nodes in the same document, effective `commentstring` in comment plugin is from injected language in between these nodes. I don't know if it's possible to discern correct language in this case, but the actual result from the user point of view is unexpected. ### Steps to reproduce `minimal_init.lua`: ```lua -- Begin vim.cmd([[ " some " text ]]) vim.treesitter.query.set("lua", "injections", [[ ((function_call name: (_) @_vimcmd_identifier arguments: (arguments (string content: _ @injection.content))) (#set! injection.language "vim") (#any-of? @_vimcmd_identifier "vim.cmd" "vim.api.nvim_command" "vim.api.nvim_command" "vim.api.nvim_exec2") (#set! injection.combined)) ((function_call name: (_) @_vimcmd_identifier arguments: (arguments (string content: _ @injection.content) .)) (#set! injection.language "query") (#any-of? @_vimcmd_identifier "vim.treesitter.query.set" "vim.treesitter.query.parse") (#set! injection.combined)) ]]) local function test() local a = 1 local b = 2 return a + b end vim.cmd([[ " some " more " text ]]) vim.treesitter.query.set("lua", "test", [[ [ "goto" "in" "local" ] @keyword ]]) local function test2() local a = 1 local b = 2 return a + b end ``` 1. Run: `nvim --clean -u minimal_init.lua minimal_init.lua`. 2. Try commenting/uncommenting lines with `gcc`. Effective commentstring between two `vim.cmd` commands is `"` from vim language. When removing first `vim.cmd` block, then effective commentstring between two `vim.treesitter.query.set` function is `;` from query language. Function `test2` always has correct commentstring because it's after last injection. ### Expected behavior Correct commentstring (`--`, `"` or `;`) depending on the actual language of the line. ### Nvim version (nvim -v) NVIM v0.11.0-dev-965+gfb74fd295 ### Vim (not Nvim) behaves the same? — ### Operating system/version Debian 11 ### Terminal name/version Windows Terminal + tmux ### $TERM environment variable tmux-256color ### Installation nvim.appimage
bug,treesitter,comment
low
Minor
2,584,039,910
godot
```icon_hover_pressed_color```⁠ not working for Buttons
### Tested versions Reproducable in 4.3.stable ### System information Godot v4.3.stable - macOS 14.1.0 - Vulkan (Forward+) - integrated Apple M3 Max - Apple M3 Max (14 Threads) ### Issue description Using ⁠ ```icon_hover_pressed_color``` either as a theme override or part of a theme itself does not work. I have a toggleable button in my scene that I've attached an icon to and every time its pressed state changes to true it becomes impossible to notice a colour change upon hovering it even though I have a value set for ⁠ ```icon_hover_pressed_color```. ### Steps to reproduce 1.⁠ ⁠Add a Button node to a scene 2.⁠ ⁠Attach an icon to the Button 3.⁠ ⁠Set an ```icon_hover_pressed_color``` theme override 4.⁠ ⁠Play the scene and try hovering over the button to notice a colour change ### Minimal reproduction project (MRP) N/A
bug,topic:gui
low
Minor
2,584,044,421
flutter
automatically apply ListTile - `isThreeLine` flag depending on the list tile content.
### Use case The material spec defines https://m3.material.io/components/lists/overview#0d2dff28-83e1-4c09-94b6-d750db2b9911 ``` Alignment: Elements in a list item are middle-aligned unless it is at or above 88dp (such as when a list item contains three lines of text) at which point everything is top aligned ``` I was expecting that `ListTile` automatically applies alignment depending on the amount of lines as far as M3 docs specify this behavior Reproduction of behavior ```dart import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), home: const MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { int _counter = 0; void _incrementCounter() { setState(() { _counter++; }); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: Text(widget.title), ), body: ListView( children: [ ListTile( leading: Checkbox(value: true, onChanged: (_){}), title: Text('Title'), subtitle: Text( 'subtitle' ), ), ListTile( leading: Checkbox(value: true, onChanged: (_){}), title: Text('Three line with maxLines: 2'), subtitle: Text( 'subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle', maxLines: 2, ), ), ListTile( leading: Checkbox(value: true, onChanged: (_){}), title: Text('Three line'), subtitle: Text( 'subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle subtitle', ), ), ], ), floatingActionButton: FloatingActionButton( onPressed: _incrementCounter, tooltip: 'Increment', child: const Icon(Icons.add), ), ); } } ``` <img width="334" alt="image" src="https://github.com/user-attachments/assets/4cc02e93-fd49-4e00-8fe5-2f57c9c5fbff"> ### Proposal We could automatically apply `isThreeLine` or maybe add example in docs how to handle it cause implementation could introduce breaking changes.
framework,f: material design,c: proposal,P3,team-design,triaged-design
low
Major
2,584,058,693
TypeScript
Typescript 5.6.3 throwing error "The inferred type of X cannot be named without a reference to Y. This is likely not portable. A type annotation is necessary."
### 🔎 Search Terms "inferred type" "portable" "type annotation is necessary" "cannot be named without a reference to" ### 🕗 Version & Regression Information - This changed between versions 5.5.4 and 5.6.3 ### ⏯ Playground Link https://github.com/livingforjesus/typescript-inferred-type-bug-repro ### 💻 Code ```ts // Your code here import { makeStyles } from "tss-react/mui"; // this doesn't work const PPCTableStyle = makeStyles()({}); export default PPCTableStyle; ``` ### 🙁 Actual behavior We have been using typescript `v5.5.4` in our project and I wanted to upgrade to `v5.6.3`(latest). On attempt, the code sample above had a typescript error "The inferred type of 'PPCTableStyle' cannot be named without a reference to '../node_modules/tss-react/types'. This is likely not portable. A type annotation is necessary." This has been working previously but since 5.5.4->5.6.*, it stopped working and threw this error. ### 🙂 Expected behavior I'm expecting this code snippet to work since it has been previously working on earlier versions ### Additional information about the issue We are working in a monorepo and use pnpm version manager. However I was able to repro via yarn in a non-monorepo environment. Below is the tsconfig ```json { "compilerOptions": { "allowJs": false, "composite": true, "declarationMap": true, "esModuleInterop": true, "incremental": true, "inlineSources": true, "isolatedModules": true, "noImplicitOverride": true, "module": "ESNext", "moduleResolution": "Bundler", "noEmitOnError": true, "noFallthroughCasesInSwitch": true, "tsBuildInfoFile": "./dist/.tsbuildinfo", "outDir": "./dist", "resolveJsonModule": true, "rootDir": ".", "noEmit": true, "skipLibCheck": true, "sourceMap": true, "strict": false, "target": "ES6", "jsx": "preserve", "lib": ["DOM", "ESNext"] }, "exclude": [ "./dist", "./node_modules", "./out", "./.next", "./dist", "./node_modules" ], "include": ["./next-env.d.ts", "./**/*.ts", "./**/*.tsx"] } ```
Needs More Info
low
Critical
2,584,063,018
godot
Trying to inspect a node with a script that contains typed dictionary that has entries with custom class as a key will cause errors.
### Tested versions Godot v4.4.dev3 ### System information Godot v4.4.dev3 - Windows 10.0.22631 - Single-window, 2 monitors - Vulkan (Forward+) - dedicated GeForce RTX 2070 SUPER ### Issue description Cannot inspect a node on a remote tab if a node's script contains typed dictionary (non typed dictionary is fine), and the dictionary contains an entry that has a Node object as a key. - Custom class object inheriting Node as a key -> Error. - Custom class object inheriting Node as a key, but dictionary is not typed -> Fine. - Custom class object inheriting Node as a value -> Fine. - Custom class object inheriting Resource as a key -> Fine. ### Steps to reproduce See Above, check MRP. ### Minimal reproduction project (MRP) [errorscriptgeneration.zip](https://github.com/user-attachments/files/17356188/errorscriptgeneration.zip)
bug,topic:core,topic:gdscript,topic:editor
low
Critical
2,584,082,440
godot
Referencing other custom class from inner class will generate same custom class script as a built in script, and replace other custom class nodes' scripts with that built in script.
### Tested versions Reproducible in : Godot v4.4.dev3 Not reproducible in : Godot_v4.3 stable ### System information Godot v4.4.dev3 - Windows 10.0.22631 - Single-window, 2 monitors - Vulkan (Forward+) - dedicated GeForce RTX 2070 SUPER ### Issue description Just reference other custom class at any point in inner class (var b:B, b = b as B) will generate the same script as the custom class as a built in script. Then Godot will replace the original script with the built in script in the scene. ### Steps to reproduce In the MRP, remove inner class in Node A. When you save, it will generate built in script that replaces Node B's script. ### Minimal reproduction project (MRP) [errorscriptgeneration.zip](https://github.com/user-attachments/files/17356235/errorscriptgeneration.zip)
bug,topic:gdscript,topic:editor,regression
low
Critical
2,584,089,124
rust
Returning bare trait from an async function gives subpar suggestion
### Code ```rust trait Trait {} async fn fun() -> Trait { todo!() } fn main() {} ``` ### Current output ``` error[E0782]: expected a type, found a trait --> src/main.rs:3:19 | 3 | async fn fun() -> Trait { | ^^^^^ | help: you can add the `dyn` keyword if you want a trait object | 3 | async fn fun() -> dyn Trait { | +++ help: you might have meant to write a bound here | 1 | : Trait { | ~ ``` ### Desired output ``` error[E0782]: expected a type, found a trait --> src/main.rs:3:19 | 3 | async fn fun() -> Trait { | ^^^^^ | help: use `impl Trait` to return an opaque type, as long as you return a single underlying type | 3 | async fn fun() -> impl Trait { | ++++ help: alternatively, you can return an owned trait object | 3 | async fn fun() -> Box<dyn Trait> { | +++++++ + ``` ### Rationale and extra context _No response_ ### Other cases _No response_ ### Rust Version rustc 1.83.0-dev binary: rustc commit-hash: ecf2d1fa4bd8166c696883b10f483122b1fe98a3 commit-date: 2024-10-13 host: x86_64-unknown-linux-gnu release: 1.83.0-dev LLVM version: 19.1.1 ### Anything else? Originally reported in https://github.com/rust-lang/rust/issues/127691#issuecomment-2400169110 The non-async case was fixed in #131239 <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"hirschenberger"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->
A-diagnostics,T-compiler,A-async-await,D-invalid-suggestion
low
Critical
2,584,094,124
godot
Movie Writer does not work on Web Editor export
### Tested versions 4.3 web ### System information firefox ### Issue description On chromium, it would hang the entire system, on firefox, it at least complete and respond to the movie_quit_on_finish So, basicaly, i tried several folders of the virtual filesystem, and none works. There is no file being written. And, the terminal does not output any text regarding the movie being writen and stoped by the movie_quit_on_finish So, the movie writer Is or Is Not implemented on the web editor (editor.godotengine.org)? ----------- Actualy, looking at the console, this is outputed: ![image](https://github.com/user-attachments/assets/c3bf41e4-4cd2-4ef5-b921-11e93f3148e3) ### Steps to reproduce Run the project on the online editor. ### Minimal reproduction project (MRP) [Movie Writer Bug.zip](https://github.com/user-attachments/files/17356337/Movie.Writer.Bug.zip)
bug,platform:web,topic:editor,needs testing
low
Critical
2,584,095,413
godot
Packet Loss in unreliable UDP localhost
### Tested versions - Reproducible in 4.4 dev3 (and probably earlier versions) ### System information Godot v4.4.dev (0a9ad8f9d) - Artix Linux #1 SMP PREEMPT_DYNAMIC on Tty - X11 display driver, Multi-window, 1 monitor - OpenGL 3 (Compatibility) - NVIDIA GeForce GTX 1050 Ti (nvidia; 560.35.03) - AMD Ryzen 5 2600 Six-Core Processor (12 threads) ### Issue description I use an RPC with `"unreliable"` or `"unreliable_ordered"` mode. The channel doesn't matter. The bug is that sometimes, some RPCs aren't received (aka packets are lost) Now, that is normal because of UDP, but I am uncertain if this is the case because this is localhost. As in, I have no LAN or wifi connected, and send just integers. I searched if UDP packets can drop at localhost and https://stackoverflow.com/questions/7968566/what-would-cause-udp-packets-to-be-dropped-when-being-sent-to-localhost#7968907 users claim yes at MB/s to overflow the buffer, but this isn't even 1 KB/s Granted, packets dropping at localhost are rare, but it got me to wonder and at least want to report it in case there is some ENET initialization bug or something, given it often happens near the start of joining. So feel free to close this issue without warning, as it is very likely a false flag. As for my testing, this is a tldr video https://github.com/user-attachments/assets/778794fc-a8b3-4dfe-870b-8ea6d13be1d8 of the MRP. And I have to admit it takes like 5+ boots to get it to happen. ### Steps to reproduce 1. Open the MRP 2. Press F5/F6 3. Host as server 4. Join as client 5. Await a few seconds, if no errors, F8, repeat step 2 until you get an error. ### Minimal reproduction project (MRP) (The MRP is a tweak of a very old MRP made by @Mathis-Z) [mrp.zip](https://github.com/user-attachments/files/17356345/mrp.zip) Its code is just 1 class with this code, posted below by filtering away the host/join code: ```gdscript extends Node var peer: ENetMultiplayerPeer = null var last_tick: int = 0 func _process(delta: float): if peer and not multiplayer.is_server() and peer.get_connection_status() == ENetMultiplayerPeer.CONNECTION_CONNECTED: last_tick += 1 set_num.rpc(last_tick) @rpc("any_peer", "call_remote", "unreliable") func set_num(tick: int): if tick != last_tick + 1: if tick < last_tick: push_error("SHUFFLED! Received tick %s while last tick is %s" % [tick, last_tick]) else: push_error("Received tick %s while last tick is %s" % [tick, last_tick]) last_tick = tick if multiplayer.is_server(): print(tick) ```
discussion,needs testing,topic:multiplayer
low
Critical
2,584,119,350
godot
Unable to right click menu on the VR Android editor
### Tested versions - Reproducible on https://github.com/V-Sekai/godot/commits/groups-4.4 which the earliest mainline commit is https://github.com/godotengine/godot/commit/92e51fca7247c932f95a1662aefc28aca96e8de6 - Reproducibile on the Meta Quest 3 app store app for the Godot Engine Editor ### System information Meta Quest 3 ### Issue description On a new Godot Engine editor, on the Meta Quest 3 there is no way I can find to right click menu on the godot engine scene tree (tree) to toggle make a child scene node editable children. ### Steps to reproduce 1. Download meta app for Godot Engine 2. Create a new project 3. Create a new scene B and save 4. Create a new scene A 5. On the right side of the screen on the node tree tree attach the B scene as a child 6. There is no uiux for making the B scene editable. 7. There is no uiux to trigger the scene tree right click menu Note I may have missed a binding. Help! ### Minimal reproduction project (MRP) N/A The reproduction steps are not project dependent (e.g. the bug is visible in a brand new project).
bug,topic:editor,topic:xr
low
Critical
2,584,123,372
terminal
Organization.md has room for improvement
<!-- Briefly describe which document needs to be corrected and why. --> The [terminal](https://github.com/microsoft/terminal/tree/main)/[doc](https://github.com/microsoft/terminal/tree/main/doc)/ORGANIZATION.md file doesn't speak about folders like .config .github etc which may be necessary for someone who is new to this repository. Also it is a bit outdated like it talks about /src/host/tools but it doesn't exist currently. Thus it can be worked upon and can be improved
Help Wanted,Issue-Docs,Product-Meta,Needs-Tag-Fix
low
Minor
2,584,135,094
kubernetes
In a CRD's schema, invalid schemas for array elements are accepted
### What happened? I accidentally wrote an invalid OpenAPI v3.0 schema for the elements of an array in a CRD's schema. `kubectl create --validate=strict` accepted my CRD definition without complaint, and silently discarded my invalid schema property. I have attached two files that demonstrate the problem. test1.yaml.txt gets rejected, while test2.yaml.txt is accepted but the `{propertyNames: {pattern: foo}}` gets silently transformed to `{}`. [test2.yaml.txt](https://github.com/user-attachments/files/17356492/test2.yaml.txt) [test1.yaml.txt](https://github.com/user-attachments/files/17356493/test1.yaml.txt) ### What did you expect to happen? I expected my schema to be implemented or rejected. ### How can we reproduce it (as minimally and precisely as possible)? Shown above. ### Anything else we need to know? _No response_ ### Kubernetes version <details> ```console $ kubectl version Client Version: v1.29.2 Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3 Server Version: v1.29.2 ``` </details> ### Cloud provider <details> none </details> ### OS version <details> MacOS 15.0.1 container runtime is docker in Rancher Desktop. Inside the VM guest, `/etc/os-release` says: ``` NAME="Alpine Linux" ID=alpine VERSION_ID=3.20.3 PRETTY_NAME="Alpine Linux v3.20" HOME_URL="https://alpinelinux.org/" BUG_REPORT_URL="https://gitlab.alpinelinux.org/alpine/aports/-/issues" BUILD_ID="v0.2.39.rd4" VARIANT_ID="rd" ``` </details> ### Install tools <details> kind v0.22.0 </details> ### Container runtime (CRI) and version (if applicable) <details> docker in Rancher Desktop; client v27.2.1-rd; server engine 26.1.5, containerd v1.7.17, runc 1.1.14, docker-init 0.19.0 </details> ### Related plugins (CNI, CSI, ...) and versions (if applicable) <details> </details>
kind/bug,sig/api-machinery,priority/important-longterm,triage/accepted
low
Critical
2,584,181,154
neovim
vim.on_key does not expose a way to only trigger on completion of a valid action
### Problem I am trying to collect keystroke statistics like [somebody did in emacs](http://xahlee.info/emacs/emacs/command-frequency.html), however, there is no way to make actions like `ci[` to be sent to `vim.on_key` together. Instead, the function will be triggered 3 times, with `c`, `i` and `[`. ### Expected behavior The ability to write ```lua vim.on_key(f, { ns = nil, on_action_complete = true }) ``` ... and get `ci[` sent to `f`!
enhancement,input,multicursor,mappings
low
Minor
2,584,233,167
godot
When the "maximise" button is pressed on the window the contents of the window do not scale
### Tested versions Godot Engine v4.2.2.stable.mono.official.15073afe3 ### System information Windows10 Vulkan API 1.3.280 - Forward+ - Using Vulkan Device #0: NVIDIA - NVIDIA GeForce GTX 1660 Ti ### Issue description When pressing the maximise button on a window it's contents do not scale no mater the scaleing settings ### Steps to reproduce make a simple scene set the scale to ignore and viewport then run it and maximise the window ### Minimal reproduction project (MRP) N/A
bug,needs testing,topic:gui
low
Minor
2,584,239,640
go
proposal: x/pkgsite, go/doc: un-name result parameters starting with an underscore in docs
Using a defer func to read/modify a function's results is convenient, except that it requires that you name the results, often unnecessarily, violating the style norms as documented at https://go.dev/wiki/CodeReviewComments#named-result-parameters, adding distracting repetition. I was complaining about this with @ianlancetaylor @griesemer et al, and me saying how I wished there was a way to reference result parameters without naming them. It was then counter-proposed that instead of changing the language, we could just change the pkgsite/godoc text+HTML-ifier to hide the named results based on a heuristic, such as names starting with an underscore. Concretely, the proposal is that functions like: ```go func ExportedFoo(x int) (_node *Node, _err error) { ... } func ExportedBar() (_err error) { ... } ``` ... be instead rendered in godoc (either plaintext or HTML) as: ```go func ExportedFoo(x int) (*Node, error) { ... } func ExportedBar() error { ... } ``` The alternative is either putting up with ugly docs, or writing this boilerplate: ```go func ExportedFoo(x int) (*Node, error) { return actualFoo(x) } func actualFoo(x int) (node *Node, err error) { ... } ```
Proposal
low
Critical
2,584,243,780
Python
Add Edmonds' Blossom Algorithm for Maximum Matching in Graphs
### Feature description ## Description I would like to propose adding an implementation of Edmonds' Blossom Algorithm to our codebase. This algorithm efficiently finds the maximum matching in general graphs, including those with odd-length cycles, by contracting blossoms and searching for augmenting paths. ## Rationale The current implementation of graph algorithms in our codebase lacks a robust solution for finding maximum matchings in arbitrary graphs. Implementing Edmonds' Blossom Algorithm would provide a powerful tool for users who need to solve matching problems, such as: Graph Theory Applications: Providing solutions to problems involving bipartite and non-bipartite graphs. Real-World Applications: Solving problems in job assignments, network flows, and matching problems in social networks. Potential Impact Adding this feature would: Enhance Functionality: Expand our library’s capabilities for graph algorithms, making it more versatile for users. Improve Performance: Offer an efficient solution for maximum matching, especially in dense graphs or graphs with odd cycles. Encourage Adoption: Attract users who require advanced graph algorithms, potentially increasing the library's user base. Additional Information Dependencies: Review any dependencies required for implementing the algorithm, such as data structures or external libraries. Testing: Develop unit tests and examples demonstrating the algorithm's performance and use cases. Documentation: Ensure comprehensive documentation is provided, including usage examples and performance benchmarks. ## Proposed Implementation Language: Java (or specify another language as needed) Algorithm: Edmonds' Blossom Algorithm Basic structure: Define the algorithm in a dedicated class (e.g., EdmondsBlossomAlgorithm). Implement methods for finding maximum matchings, updating matches, and handling blossoms. Include comments and documentation for clarity. ## Conclusion Implementing the Edmonds' Blossom Algorithm will significantly improve our graph algorithm toolkit and provide users with a powerful resource for solving complex matching problems. I believe this addition aligns with our project goals and enhances our offerings.
enhancement
medium
Major
2,584,251,744
deno
--watch-exclude doesn't work
Version: Deno 2.0.0 ```sh echo 'console.log(new Date());' > date.js touch a.txt deno run --watch=. --watch-exclude=a.txt date.js ``` Steps to reproduce: 1. Run the above command. 2. Edit `a.txt` Actual result: The script `date.js` is run again when editing `a.txt`. Expected result: The script should not run again, since `--watch-exclude=a.txt` was specified.
bug,--watch
low
Minor
2,584,277,087
godot
Incorrect parsing error 'Cannot use subscript operator on a base of type "null"'
### Tested versions - Reproducible in: v4.3.stable.mono.official [77dcf97d8] ### System information Windows 10.0.19045 - GLES3 (Compatibility) - AMD Radeon RX 7800 XT (Advanced Micro Devices, Inc.; 31.0.24019.1006) - AMD Ryzen 7 1700 Eight-Core Processor (16 Threads) ### Issue description Godot is in some circumstances incorrectly determining that a value is "null" at parsing time. It seems to be related to using higher-order functions in conditions - Godot seems to be assuming that the function returned by the high-order function always returns `false`, though that doesn't entirely explain it. When this occurs, the project refuses to run, (`'Cannot use subscript operator on a base of type "null"'`) though the code is correct. My full source code is included in "Steps to reproduce" As an aside, I'm using the GDscript language server, and you can also see the error within VS code ![image](https://github.com/user-attachments/assets/68001e71-bc4b-46fe-845e-32680ddb8309) ### Steps to reproduce Created a new project, created a single Node2D, added a script to it. Script is below: ```gdscript extends Node2D func returns_callable(): var f = func(): return true return f func uses_returns_callable(): if returns_callable().call(): # Always true return [1, 2, 3] return null func _ready(): var value = uses_returns_callable() print(value) # prints [1, 2, 3] # Though the following line should work, if uncommented it results in an error during parsing # 'Cannot use subscript operator on a base of type "null".gdscript(-1)' # if value: print(value[0]) # Curiously, if I actually replace 'var value = uses_returns_callable()` with `var value = null` # no parsing error is produced ``` ### Minimal reproduction project (MRP) [minimal-parser-bug-example.zip](https://github.com/user-attachments/files/17357093/minimal-parser-bug-example.zip)
bug,topic:gdscript
low
Critical
2,584,315,377
PowerToys
Add ability to set darkmode to specific window (or application)
### Description of the new feature / enhancement Add ability to set darkmode to specific window (or application) ### Scenario when this would be used? You use an old app that doesn't have dark mode yet ... and is not maintained anymore ### Supporting information darkmodeanyapp and windowtop has similar ability
Needs-Triage
low
Minor
2,584,327,939
godot
_unhandled_key_input's 'event' argument does not have InputEventKey as its type
### Tested versions 4.3 ### System information Window 11 ### Issue description _unhandled_key_input's event has a type of InputEvent, but shouldn't it use InputEventKey? To get the correct auto-complete, you have to use a workaround like var _event: InputEventKey = event. Unless I am mistaken, event in this method should always be InputEventKey, so there is no reason to use the parent InputEvent instead. event's type cannot otherwise be overridden. ### Steps to reproduce Use _unhandled_key_input. ### Minimal reproduction project (MRP) N/A
discussion,topic:core
low
Minor
2,584,328,872
vscode
Add `deno.lock` as default nesting pattern for package.json
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Add `deno.lock` as default nesting pattern for package.json
feature-request,file-nesting
low
Major
2,584,374,382
deno
Typechecking fails unexpectedly when using manual nodeModulesDir
Version: Deno 2.0.0 clone [this repo](https://github.com/redabacha/react-deno-typecheck-error) and run `deno check test.tsx`. the command fails with the error: ``` error: Failed resolving types. [ERR_TYPES_NOT_FOUND] Could not find types for 'file:///home/reda/Documents/Projects/react-deno-typecheck-error/node_modules/.deno/react-dom@18.3.1/node_modules/react-dom/client.js' imported from 'file:///home/reda/Documents/Projects/react-deno-typecheck-error/test.tsx' at file:///home/reda/Documents/Projects/react-deno-typecheck-error/test.tsx:1:28 ``` which is strange as when you run the same command with `--node-modules-dir=none` or `--node-modules-dir=auto` it works normally. output when running with `RUST_BACKTRACE=1`: ``` ❯ RUST_BACKTRACE=1 deno check test.tsx error: Failed resolving types. [ERR_TYPES_NOT_FOUND] Could not find types for 'file:///home/reda/Documents/Projects/react-deno-typecheck-error/node_modules/.deno/react-dom@18.3.1/node_modules/react-dom/client.js' imported from 'file:///home/reda/Documents/Projects/react-deno-typecheck-error/test.tsx' at file:///home/reda/Documents/Projects/react-deno-typecheck-error/test.tsx:1:28 Stack backtrace: 0: anyhow::error::<impl core::convert::From<E> for anyhow::Error>::from 1: deno_core::error::custom_error 2: <core::iter::adapters::flatten::FlatMap<I,U,F> as core::iter::traits::iterator::Iterator>::next 3: deno::graph_util::graph_valid 4: deno::module_loader::ModuleLoadPreparer::prepare_module_load::{{closure}} 5: deno::graph_container::MainModuleGraphContainer::check_specifiers::{{closure}} 6: deno::spawn_subcommand::{{closure}} 7: <deno_unsync::tokio::task::MaskFutureAsSend<F> as core::future::future::Future>::poll 8: tokio::runtime::task::raw::poll 9: deno::main 10: std::sys_common::backtrace::__rust_begin_short_backtrace 11: std::rt::lang_start::{{closure}} 12: std::rt::lang_start_internal 13: main 14: __libc_start_call_main 15: __libc_start_main_alias_1 16: _start ```
bug,tsc,2.0 feedback
low
Critical
2,584,391,980
rust
Duplicated primitive in search results
### Location In the search pages when looking for primitive items in the std/core documentation. ### Summary If you search for `str` for example, you will see: ![Image](https://github.com/user-attachments/assets/67c3120c-34e4-4410-a46b-e5279fa60715) cc @notriddle
T-rustdoc,A-docs,A-rustdoc-search,T-rustdoc-frontend
low
Minor
2,584,405,007
yt-dlp
[Youtube] .jpg thumbnails are actually better than .webp (?)
### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE - [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field ### Checklist - [X] I'm requesting a site-specific feature - [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels)) - [X] I've checked that all provided URLs are playable in a browser with the same IP and same login details - [X] I've searched [known issues](https://github.com/yt-dlp/yt-dlp/issues/3766) and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues?q=) for similar issues **including closed ones**. DO NOT post duplicates - [X] I've read the [guidelines for opening an issue](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#opening-an-issue) - [X] I've read about [sharing account credentials](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#are-you-willing-to-share-account-details-if-needed) and I'm willing to share it if required ### Region Germany ### Example URLs Any ### Provide a description that is worded well enough to be understood Maybe I'm missing something ... but for some time now I've noticed that .jpg thumbnails, although having far more artifacts, tend to retain more detail than .webp. I'm not sure what's causing this, but I'm pretty convinced that .jpg is the superior choice for thumbnails. Would be nice if someone who is familiar with this kind of stuff could confirm this. To me it looks like youtube did a conversion of `original image -> .jpg -> .webp`. Just to clarify, .jpg looks worse at first glance, but if you compare closely, you can see that the best .jpg has details that the best .webp thumbnail misses, which is more visible in lower quality uploads. At the end of the day, this is nitpicking and doesn't really matter, but it would be nice to have the best version possible, so that's why I'm asking this question anyway. Not a tech guy, this "-vU flag" and verbose stuff is giving me a headache, hopefully you can let it slide? Instead, here is my configuration file, some batch script I copied from stackoverflow. (probably unnecessary for this issue, but maybe someone reading this will find it useful) ``` @echo off set "url=%~1" if not defined url set /p "url=Enter URL: " yt-dlp ^ --output "D:/xyz/%%(upload_date)s %%(title).100s %%(id)s.%%(ext)s"^ --download-archive "xyz.txt"^ --embed-metadata --embed-thumbnail --embed-chapters --embed-subs --sub-langs all,-live_chat^ --xattrs --merge-output-format mkv^ %url% 2>>log.txt timeout 5 ``` ### Provide verbose output that clearly demonstrates the problem - [X] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`) - [ ] If using API, add `'verbose': True` to `YoutubeDL` params instead - [X] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below ### Complete Verbose Output ```shell grtrf ```
site-enhancement,discussion/announcement,site:youtube
low
Critical
2,584,426,018
pytorch
TORCH_COMPILE_CPROFILE does not work for python 3.12
### 🐛 Describe the bug this simple code: ```python import torch def fn(x): a = torch.cos(x) b = torch.sin(a) return b new_fn = torch.compile(fn, backend="inductor") input_tensor = torch.randn(10000).to(device="cuda:0") a = new_fn(input_tensor) ``` does not work for python 3.12: `torch._dynamo.exc.InternalTorchDynamoError: Another profiling tool is already active` might be related: https://github.com/python/cpython/issues/110770 changing python versions to less than 3.12 works. ### Versions python 3.12 + pytorch 2.4 cc @ezyang @chauhang @penguinwu @zou3519
needs reproduction,triaged,oncall: pt2,vllm-compile
low
Critical
2,584,505,313
flutter
[Impeller] Impeller performs worse than skia in power consumption 5%.
### Steps to reproduce 1.Open the application 2.Slide the page Catch the capture with Renderdoc I found that the events of Impeller are more than skia with opengles or vulkan. **skia + opengles** ![image](https://github.com/user-attachments/assets/0250f0ef-8041-4dbc-b573-dc8648373af4) impeller + vulkan ![image](https://github.com/user-attachments/assets/ae11424a-9a2b-463f-ba9a-884660d8a189) impeller + opengles ![image](https://github.com/user-attachments/assets/4f54e503-5572-4146-b1d4-4f9762dd248b) By using systrace ,the duration of GPU Completion of Impeller is always more than skia. ![image](https://github.com/user-attachments/assets/fb762284-6173-4a74-b033-66b8665d12b8) I have put the power consumption data into a table for reference. In this demo,as we can see,the power consumption of impeller is always higher than skia. ![image](https://github.com/user-attachments/assets/1913038e-b3f9-4761-bbb0-69757f5e49e5) ### Code sample <details open><summary>Code sample</summary> ```dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { const title = 'scroll list demo'; return MaterialApp( title: title, home: Scaffold( appBar: AppBar( title: const Text(title), ), body: Container( margin: const EdgeInsets.symmetric(vertical: 20), height: 2000, child: ListView( scrollDirection: Axis.vertical, children: <Widget>[ Container( height: 200, color: Colors.blueAccent, ), Container( height: 200, color: Colors.grey, ), Container( height: 200, color: Colors.white38, ), Container( height: 200, color: Colors.grey, ), Container( height: 200, color: Colors.lightBlueAccent, ), Container( height: 200, color: Colors.blueAccent, ), Container( height: 200, color: Colors.grey, ), Container( height: 200, color: Colors.white38, ), Container( height: 200, color: Colors.grey, ), Container( height: 200, color: Colors.lightBlueAccent, ), ], ), ), ), ); } } ``` </details> ### What target platforms are you seeing this bug on? Android ### OS/Browser name and version | Device information Device:Xiaomi 14 8+256G OS:Xiaomi Hyperos(Android) Snapdragon qualcomm 8Gen3 ### Does the problem occur on emulator/simulator as well as on physical devices? Unknown ### Logs <details open><summary>Logs</summary> ```console [Paste your logs here] ``` </details> ### Flutter Doctor output <details open><summary>Doctor output</summary> ```console [✓] Flutter (Channel stable, 3.22.3, on Ubuntu 24.04.1 LTS 6.8.0-45-generic, locale zh_CN.UTF-8) • Flutter version 3.22.3 on channel stable at /home/mi/workspace/devkit/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision b0850beeb2 (3 个月前), 2024-07-16 21:43:41 -0700 • Engine revision 235db911ba • Dart version 3.4.4 • DevTools version 2.34.3 [!] Android toolchain - develop for Android devices (Android SDK version 35.0.0) • Android SDK at /home/mi/Android/Sdk • Platform android-35, build-tools 35.0.0 • Java binary at: /home/mi/.local/share/JetBrains/Toolbox/apps/android-studio/jbr/bin/java • Java version OpenJDK Runtime Environment (build 17.0.11+0-17.0.11b1207.24-11852314) ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses [✓] Chrome - develop for the web • Chrome at google-chrome [✗] Linux toolchain - develop for Linux desktop ✗ clang++ is required for Linux development. It is likely available from your distribution (e.g.: apt install clang), or can be downloaded from https://releases.llvm.org/ • cmake version 3.28.3 ✗ ninja is required for Linux development. It is likely available from your distribution (e.g.: apt install ninja-build), or can be downloaded from https://github.com/ninja-build/ninja/releases • pkg-config version 1.8.1 ✗ GTK 3.0 development libraries are required for Linux development. They are likely available from your distribution (e.g.: apt install libgtk-3-dev) [✓] Android Studio (version 2024.2) • Android Studio at /home/mi/.local/share/JetBrains/Toolbox/apps/android-studio • Flutter plugin version 81.1.3 • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 17.0.11+0-17.0.11b1207.24-11852314) [✓] IntelliJ IDEA Ultimate Edition (version 2024.2) • IntelliJ at /home/mi/.local/share/JetBrains/Toolbox/apps/intellij-idea-ultimate • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart [✓] VS Code (version 1.93.1) • VS Code at /usr/share/code • Flutter extension version 3.98.0 [✓] Connected device (3 available) • 23127PN0CC (mobile) • 25552ddd • android-arm64 • Android 15 (API 35) • Linux (desktop) • linux • linux-x64 • Ubuntu 24.04.1 LTS 6.8.0-45-generic • Chrome (web) • chrome • web-javascript • Google Chrome 129.0.6668.70 [✓] Network resources • All expected network resources are available. ``` </details>
engine,c: performance,perf: energy,P2,e: impeller,team-engine,triaged-engine
low
Critical
2,584,529,392
pytorch
[Perf]The delay between inference request impact the performance
### 🐛 Describe the bug The delay between inference request will impact the performance of latency. If the delay is 0 second, the performance of bs=1 is best. If the delay is 2s, the performance of bs=1 will reduced. If same in following cases: 1. both CPU and CUDA 2. eager and [torch.compile()]([url](url)) mode. 3. Jemalloc. I draft an example code and get the following log on CPU: ``` latency: 0.019783496856689453 sleep 0 latency: 0.01930999755859375 sleep 0 latency: 0.019414663314819336 sleep 0 latency: 0.01890277862548828 sleep 0 latency: 0.019414663314819336 sleep 0 latency: 0.018809795379638672 sleep 0 latency: 0.01901698112487793 sleep 0 latency: 0.018945693969726562 sleep 0 latency: 0.01931285858154297 sleep 0 avg latency 0.01921232541402181 sleep 0 ``` ``` latency: 0.023831844329833984 sleep 2 latency: 0.02048492431640625 sleep 2 latency: 0.024386167526245117 sleep 2 latency: 0.026789426803588867 sleep 2 latency: 0.026439666748046875 sleep 2 latency: 0.027832984924316406 sleep 2 latency: 0.028536081314086914 sleep 2 latency: 0.028757095336914062 sleep 2 latency: 0.0296633243560791 sleep 2 avg latency 0.02630239062839084 sleep 2 ``` on CUDA V100 ``` latency: 0.004566669464111328 sleep 0 latency: 0.0043337345123291016 sleep 0 latency: 0.0042057037353515625 sleep 0 latency: 0.004201173782348633 sleep 0 latency: 0.004255771636962891 sleep 0 latency: 0.004193544387817383 sleep 0 latency: 0.0042057037353515625 sleep 0 latency: 0.004158973693847656 sleep 0 latency: 0.004200458526611328 sleep 0 avg latency 0.004257970386081272 sleep 0 ``` ``` latency: 0.0038862228393554688 sleep 2 latency: 0.0036373138427734375 sleep 2 latency: 0.0035004615783691406 sleep 2 latency: 0.004335165023803711 sleep 2 latency: 0.005205392837524414 sleep 2 latency: 0.006509542465209961 sleep 2 latency: 0.008309125900268555 sleep 2 latency: 0.004138946533203125 sleep 2 latency: 0.009718179702758789 sleep 2 avg latency 0.005471150080362956 sleep 2 ``` Reproduce: run the attachment script: ``` python delay_perf.py 0 python delay_perf.py 2 ``` delay_perf.py for CPU ``` import torchvision.models as tv_models import torch import os import time import sys class Infer(): def __init__(self, inter=4, intra=4): self.inter=inter self.intra=intra self.model = tv_models.resnet50(pretrained=True) self.model.eval() self.model = torch.compile(self.model) # torch.no_grad() os.environ['CUDA_VISIBLE_DEVICES'] = '-1' os.environ["KMP_BLOCKTIME"] = "1" os.environ["KMP_SETTINGS"] = "0" os.environ["KMP_AFFINITY"] = "granularity=fine,compact,1,0" os.environ["OMP_NUM_THREADS"] = str(self.intra) def predict(self): input_batch = torch.rand(1,3,244,244) infer_time = self.infer_perf_run(input_batch) return infer_time def infer_perf_run(self, input_batch): bt = time.time() with torch.no_grad(): output = self.model(input_batch) et = time.time() latency = (et - bt) #self.handle_output(output) #print('latency:', latency) return latency if __name__=='__main__': inter=4 intra=4 infer = Infer(inter, intra) sleep_time = int(sys.argv[1]) if len(sys.argv)>1 else 0 res_list = [] for i in range(10): res = infer.predict() if i>0: print('latency:', res, "sleep", sleep_time) time.sleep(sleep_time) res_list.append(res) res_list = res_list[1:] print("avg latency", sum(res_list)/len(res_list), "sleep", sleep_time) ``` for CUDA ``` import torchvision.models as tv_models import torch import os import time import sys class Infer(): def __init__(self, inter=4, intra=4, device="cuda"): self.inter=inter self.intra=intra self.model = tv_models.resnet50(pretrained=True).to(device) self.model.eval() self.model = torch.compile(self.model) self.device = device # torch.no_grad() os.environ['CUDA_VISIBLE_DEVICES'] = '0' os.environ["KMP_BLOCKTIME"] = "1" os.environ["KMP_SETTINGS"] = "0" os.environ["KMP_AFFINITY"] = "granularity=fine,compact,1,0" os.environ["OMP_NUM_THREADS"] = str(self.intra) def predict(self): input_batch = torch.rand(1,3,244,244).to(self.device) infer_time = self.infer_perf_run(input_batch) return infer_time def infer_perf_run(self, input_batch): bt = time.time() with torch.no_grad(): output = self.model(input_batch) et = time.time() latency = (et - bt) #self.handle_output(output) #print('latency:', latency) return latency if __name__=='__main__': inter=4 intra=4 infer = Infer(inter, intra) sleep_time = int(sys.argv[1]) if len(sys.argv)>1 else 0 res_list = [] for i in range(10): res = infer.predict() if i>0: print('latency:', res, "sleep", sleep_time) time.sleep(sleep_time) res_list.append(res) res_list = res_list[1:] print("avg latency", sum(res_list)/len(res_list), "sleep", sleep_time) ``` ### Versions CUDA: ``` pytorch-triton 3.1.0+cf34004b8a torch 2.4.1+cu124 torchaudio 2.4.1+cu124 torchvision 0.19.1+cu124 ``` CPU: ``` python collect_env.py Collecting environment information... PyTorch version: 2.4.1+cpu Is debug build: False CUDA used to build PyTorch: None ROCM used to build PyTorch: N/A OS: Ubuntu 22.04.3 LTS (x86_64) GCC version: (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0 Clang version: 14.0.0-1ubuntu1.1 CMake version: version 3.28.4 Libc version: glibc-2.35 Python version: 3.10.14 | packaged by conda-forge | (main, Mar 20 2024, 12:45:18) [GCC 12.3.0] (64-bit runtime) Python platform: Linux-5.15.0-94-generic-x86_64-with-glibc2.35 Is CUDA available: False CUDA runtime version: No CUDA CUDA_MODULE_LOADING set to: N/A GPU models and configuration: No CUDA Nvidia driver version: No CUDA cuDNN version: No CUDA HIP runtime version: N/A MIOpen runtime version: N/A Is XNNPACK available: True CPU: Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 52 bits physical, 57 bits virtual Byte Order: Little Endian CPU(s): 64 On-line CPU(s) list: 0-63 Vendor ID: GenuineIntel Model name: Intel(R) Xeon(R) Gold 6346 CPU @ 3.10GHz CPU family: 6 Model: 106 Thread(s) per core: 2 Core(s) per socket: 16 Socket(s): 2 Stepping: 6 CPU max MHz: 3600.0000 CPU min MHz: 800.0000 BogoMIPS: 6200.00 Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 invpcid_single ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect wbnoinvd dtherm ida arat pln pts avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid fsrm md_clear pconfig flush_l1d arch_capabilities Virtualization: VT-x L1d cache: 1.5 MiB (32 instances) L1i cache: 1 MiB (32 instances) L2 cache: 40 MiB (32 instances) L3 cache: 72 MiB (2 instances) NUMA node(s): 2 NUMA node0 CPU(s): 0-15,32-47 NUMA node1 CPU(s): 16-31,48-63 Vulnerability Gather data sampling: Vulnerable: No microcode Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Vulnerable: Clear CPU buffers attempted, no microcode; SMT vulnerable Vulnerability Retbleed: Not affected Vulnerability Spec rstack overflow: Not affected Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected Versions of relevant libraries: [pip3] numpy==1.26.3 [pip3] torch==2.4.1+cpu [pip3] torchaudio==2.4.1+cpu [pip3] torchvision==0.19.1+cpu [conda] No relevant packages ``` cc @msaroufim
module: performance,triaged
low
Critical
2,584,536,894
transformers
Request more specific info from bug reporters when opening deepspeed issues
### Feature request Hi! I would like the bug reporters to be prompted (or have section to fill in the reports template) to provide `ds_report` info and `zero3` config when opening a bug report related to deepspeed integration (maybe it could be more general). Anything to make sure these bits of info are more likely to included upfront would make some of these issues much more actionable. ### Motivation I've been looking at some deepspeed integration bugs lately (#28808,#29348,#31867), I noticed that often more deepspeed info has to be requested. I was wondering if some specific (and maybe **BOLDED**) guidelines about what info to provide would go a long way when opening bug reports. I think a reminder to include `zero configs` and `ds_report` might be helpful. I believe this is particularily a pitfall for stuff that is often parsed in (configs, etc). Something like: ### Reproduction Please provide a code sample that reproduces the problem you ran into. It can be a Colab link or just a code snippet. If you have code snippets, error messages, stack traces please provide them here as well. Important! Use code tags to correctly format your code. See https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting Do not use screenshots, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code. *If you are opening an issue related to one of the following please ensure the this info is included in your reproduction script: Deepspeed - zero3 config, ds_report output, Trainer - your trainer config file, etc.* @ArthurZucker @amyeroberts
Feature request
low
Critical
2,584,568,507
pytorch
TORCH_LOGS=cache only reports on remote cache, but it should report local cache too
### 🐛 Describe the bug You can tell because it's ``` register_log( "cache", ("torch._inductor.remote_cache", "torch._inductor.fb.remote_cache") ) ``` @masnesral is this easy to fix for you? cc @chauhang @penguinwu @oulgen ### Versions main
module: logging,triaged,oncall: pt2
low
Critical
2,584,573,522
pytorch
TORCH_LOGS=+inductor spams too much information about cache
### 🐛 Describe the bug The cache logs are extremely long and involve things like ``` V1013 19:33:50.459000 2627268 torch/_inductor/codecache.py:821] [8/0] [4ti6faxqet4l7zbjc2ovkfelze6usgng2xzzy4disiquolmsoyx] example_inputs[154] : TensorMetadata(dtype=torch.float32, shape=torch.Size([384]), stride=(1,), device=device(type='cuda', index=0), layout=torch.strided, memory_f ormat=torch.contiguous_format, storage_offset=0, storage_bytes=None, requires_grad=False, is_quantized=False, is_conj=False, is_neg=False, is_i nference=False, is_sparse=False, is_coalesced=None, dense_dim=None, sparse_dim=None) V1013 19:33:50.459000 2627268 torch/_inductor/codecache.py:821] [8/0] [4ti6faxqet4l7zbjc2ovkfelze6usgng2xzzy4disiquolmsoyx] example_inputs[155] : TensorMetadata(dtype=torch.float32, shape=torch.Size([384]), stride=(1,), device=device(type='cuda', index=0), layout=torch.strided, memory_f ormat=torch.contiguous_format, storage_offset=0, storage_bytes=None, requires_grad=False, is_quantized=False, is_conj=False, is_neg=False, is_i nference=False, is_sparse=False, is_coalesced=None, dense_dim=None, sparse_dim=None) ``` over and over again. These would be more appropriately done as dedicated artifacts that are not included in the DEBUG log. cc @chauhang @penguinwu @masnesral @oulgen ### Versions main
triaged,oncall: pt2,compile-cache
low
Critical
2,584,582,966
transformers
Differential Attention implementation for BERT.
### Feature request The paper "Differential Transformers" implements a differential attention mechanism which calculates the attention scores as the difference between two separate softmax attention maps leading to better long-context modeling and key information retrieval. LINK : [Paper](https://arxiv.org/pdf/2410.05258) ### Motivation Although the paper focuses on decoder only models, I think this differential attention mechanism might be helpful with encoder only models as well. ### Your contribution I can work on this feature, if the HuggingFace team considers it as a valuable addition.
Feature request
low
Minor
2,584,641,908
kubernetes
Scheduling Problems Caused by Definition of Persistent Volumes and Ephemeral Volumes
### What would you like to be added? k8s version is 1.28.1. In the same sts, a 10 GB persistent volume and a 10 MB ephemeral volume are defined. ephemeral volume: ``` - ephemeral: volumeClaimTemplate: metadata: creationTimestamp: null spec: accessModes: - ReadWriteOnce resources: requests: storage: 10Mi storageClassName: localcsi volumeMode: Filesystem name: share ``` persistent volume : ``` volumes: - name: search-pod-pvc persistentVolumeClaim: claimName: search-pod-pvc-pod-0 ``` In normal cases, the two volumes can be created and scheduled. ``` ns pod-0-share Bound pvc-2cb4b639-9d8a-4f44-af7a-16692ff4e7dd 10Mi RWO localcsi 6h42m ns search-pod-pvc-pod-0 Bound pvc-32195605-0fa6-4ee2-b1fb-a90a8a7a6b1e 10Gi RWO localcsi 6h42m ``` However, in some small resource scenarios, if the ephemeral volume is scheduled before the persistent volume, the persistent volume may fail to be scheduled due to insufficient resource. ``` ns pod-0-share Bound pvc-39836b73-3f85-4660-a890-2eaa75cee4c0 10Mi RWO localcsi 3d1h ns search-pod-pvc-pod-0 Pending localcsi 3d1h ``` ### Why is this needed? Is there any optimization solution for this scheduling problem in the community?
sig/scheduling,sig/storage,kind/feature,lifecycle/stale,needs-triage
low
Minor
2,584,671,776
excalidraw
AppState type inconsistency: "`collaborators.forEach` is not a function"
The API documentation, built in types, and inspection of the react state all say that the type of `initialData.appState.collaborators` should be an object. However, the code `collaborators.forEach` is also being used, causing a crash when passing in a saved `appState` object to the `initialData` prop on the `<Excalidraw />` element. Steps to reproduce: 1. Save the app state using the imperative API and see that the collaborators entry is "{}": ```tsx const appState = excalidrawApi.getAppState(); console.log(JSON.stringify(appState)); ``` 2. Parse and use this app state in the `initialData` prop: ```tsx <Excalidraw initialData={{ appState: JSON.parse(appState), }} /> ``` This will cause a crash because `collaborators.forEach` is not a function on an object.
bug
low
Critical
2,584,739,418
kubernetes
Pods that consume "devices" via Device Plugin always fail when Node reboots even if it implements `plugins_registry` interface
### What happened? When node reboots, Pods that consume **devices** via Device Plugin always fail. Even if I implement device plugin with ability to use `/var/lib/kubelet/plugins_registry` directory, it fails too. Below is my flow of inspection to understand current implementation of `kubelet` related to the device plugin interface. *** I tested below cases: - Only `kubelet` restarts - Only `containerd` restarts - Both `kubelet` and `containerd` restart All of 3 cases do not make any error. It only happens when node reboots. *** Device Health status is provided using `healthDevices`. - [When `kubelet` starts, it restores from checkpoint, but both `healthDevices` and `unhealthyDevices` set to empty set.](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/cm/devicemanager/manager.go#L506-L532) - [`healthyDevices` will be supplied through this code block.](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/cm/devicemanager/manager.go#L259-L318) - Right now, there is no other code block that supplies `healthyDevices`. About Device Plugin Registration - [Device Plugin can be registered to `kubelet` through this code block.](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/cm/devicemanager/plugin/v1beta1/handler.go#L41-L44) - Plugin sends request to `kubelet`. - After registration, dedicated client will be created and [run at another goroutine](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/cm/devicemanager/plugin/v1beta1/handler.go#L78-L80). - [As I mentioned above, `healthyDevices` can only be injected through this code block](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/cm/devicemanager/manager.go#L271-L318). - However, initialization always happens at the beginning of this code block. - To summarize it, **there is no way to supply health devices before device plugin registration**. *** About `PluginManager` and `plugins_registry` > `pluginmanager` runs a set of asynchronous loops that figure out which plugins need to be registered/unregistered based on this node and makes it so. - [`plugins_registry` is used at `PluginManager`. The first usage can be found here](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/kubelet.go#L848-L851). - [In `PluginManager`, registration of Device Plugin watcher (NOT the DEVICE PLUGIN) happens.](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/kubelet.go#L1581-L1582) - [For device plugin, this code block implements Device Plugin watcher interface.](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go#L40-L45) - [After registration of watcher, `PluginManager` runs.](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/pluginmanager/plugin_manager.go#L108-L124) - Inside that code block, we can find `go pm.reconciler.Run(stopCh)`. We can jump to [this section](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/pluginmanager/reconciler/reconciler.go#L85-L91). - [In the `reconcile()`](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/pluginmanager/reconciler/reconciler.go#L111-L165), it syncs `desiredStateOfWorld` and `actualStateOfWorld`. - [In this code block, all unix sockets exist in the `/var/lib/kubelet/plugins_registry` are managed through `AddOrUpdatePlugin()` method.](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go#L187-L200) All of above steps are executed BEFORE entering `syncLoop()`. *** So my thought was, If I implement device plugin to deal with `plugins_registry`, it can be registered to `kubelet` before other pod run. - [`GetInfo(...)`](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go#L91) and [`NotifyRegistrationStatus(...)`](https://github.com/kubernetes/kubernetes/blob/release-1.31/pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go#L166) GRPC interface have to be implemented. However, even if I implemented above things, same problem happens. - When node reboots, all containers are in stopped state. - `kubelet` is in charge of re-run stopped containers in that node. - Before entering `syncLoop()`, 2 GRPC interface will be called. - However, because device plugin pod is in stopped state, above GRPC call fails. - Due to failure of above GRPC call, device plugin registration before entering `syncLoop()` also fails too. To solve this problem, I have to run the device plugin using other method (e.g. systemd daemon), that can't be managed by kubelet. ### What did you expect to happen? To be honest, I know the current problem but don't know the nice solution. ### How can we reproduce it (as minimally and precisely as possible)? Prepare device plugin (e.g. [`NVIDIA/k8s-device-plugin`](https://github.com/NVIDIA/k8s-device-plugin)) and run any Pod consumes that device (e.g. NVIDIA GPU). After Pod successfully created and run without any problem, DO node reboot (e.g. just type `sudo reboot`). After node reboots, you can see error message like below. ``` Allocate failed due to no healthy devices present; cannot allocate unhealthy devices nvidia.com/gpu, which is unexpected ``` ### Anything else we need to know? This issue has been discussed in [this Slack thread](https://kubernetes.slack.com/archives/C0BP8PW9G/p1709610711920639). ### Kubernetes version <details> ```console $ kubectl version Client Version: v1.30.4 Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3 Server Version: v1.30.5 ``` </details> ### Cloud provider <details> Bare Metal </details> ### OS version <details> ```console # On Linux: $ cat /etc/os-release PRETTY_NAME="Ubuntu 22.04.5 LTS" NAME="Ubuntu" VERSION_ID="22.04" VERSION="22.04.5 LTS (Jammy Jellyfish)" VERSION_CODENAME=jammy ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" UBUNTU_CODENAME=jammy $ uname -a Linux MS03-CEO-008 6.8.0-45-generic #45~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Sep 11 15:25:05 UTC 2 x86_64 x86_64 x86_64 GNU/Linux ``` </details> ### Install tools <details> kubeadm version: &version.Info{Major:"1", Minor:"30", GitVersion:"v1.30.5", GitCommit:"74e84a90c725047b1328ff3d589fedb1cb7a120e", GitTreeState:"clean", BuildDate:"2024-09-12T00:17:07Z", GoVersion:"go1.22.6", Compiler:"gc", Platform:"linux/amd64"} </details> ### Container runtime (CRI) and version (if applicable) <details> containerd containerd.io 1.7.22 7f7fdf5fed64eb6a7caf99b3e12efcf9d60e311c </details> ### Related plugins (CNI, CSI, ...) and versions (if applicable) <details> </details>
kind/bug,sig/node,triage/accepted,wg/device-management
low
Critical
2,584,763,899
flutter
When connecting to device, `StateError: Bad sate: Stream has already been listened to`
Since 3.24.0 On 3.24.3, affects 1% of all clients that have reported a crash (current overall crash rate is ~1%) Occurs exclusively on `flutter attach` ``` StateError: Bad state: Stream has already been listened to. at _StreamController._subscribe(stream_controller.dart:686) at _ControllerStream._createSubscription(stream_controller.dart:837) at _StreamImpl.listen(stream_impl.dart:497) at new _ForwardingStreamSubscription(stream_pipe.dart:114) at _ForwardingStream._createSubscription(stream_pipe.dart:86) at _ForwardingStream.listen(stream_pipe.dart:81) at FlutterDevice.connect(resident_runner.dart:267) at ResidentRunner.connectToServiceProtocol(resident_runner.dart:1404) at HotRunner.attach(run_hot.dart:236) at AttachCommand._attachToDevice(attach.dart:403) at <asynchronous gap>(async) at AttachCommand.runCommand(attach.dart:265) at <asynchronous gap>(async) at FlutterCommand.run.<anonymous closure>(flutter_command.dart:1408) at <asynchronous gap>(async) at AppContext.run.<anonymous closure>(context.dart:153) at <asynchronous gap>(async) at CommandRunner.runCommand(command_runner.dart:212) at <asynchronous gap>(async) at FlutterCommandRunner.runCommand.<anonymous closure>(flutter_command_runner.dart:420) at <asynchronous gap>(async) at AppContext.run.<anonymous closure>(context.dart:153) at <asynchronous gap>(async) at FlutterCommandRunner.runCommand(flutter_command_runner.dart:364) at <asynchronous gap>(async) at run.<anonymous closure>.<anonymous closure>(runner.dart:130) at <asynchronous gap>(async) at AppContext.run.<anonymous closure>(context.dart:153) at <asynchronous gap>(async) at main(executable.dart:93) at <asynchronous gap>(async) ```
c: crash,P2,team-tool,triaged-tool
low
Critical
2,584,889,040
deno
deno info: support resolving npm specifiers when nodeModules: manual
Version: Deno 2.0.0 I think it's quite common need to check what concrete version of a dependency is installed. When using node.js/npm I would normally use `npm ls <package>` which I think has deno equivalent in `deno info`, but unfortunatelly it doesn't work without explicitly specifying `-node-modules-dir=auto` which could be confusing for newcommers.
feat,2.0 feedback,deno info
low
Minor
2,584,926,207
PowerToys
Workspaces: Skype App captured but not launched
### Microsoft PowerToys version 0.85.0 ### Installation method PowerToys auto-update ### Running as admin None ### Area(s) with issue? Workspaces ### Steps to reproduce I've created a Workspace in which i have captured Skype (the App version, not the Desktop one). When relaunching the workspace, Skype does not start. ### ✔️ Expected Behavior Start Skype App when launching a workspace which contains it. ### ❌ Actual Behavior Everything else is launched except Skype App. ### Other Software _No response_
Issue-Bug,Needs-Triage,Needs-Team-Response,Product-Workspaces
low
Minor
2,584,951,840
angular
Selectors are not available in documentation
### Describe the problem that you experienced Selectors for built in directives and components, and the name of pipes are not described in the new documentation. ### Enter the URL of the topic with the problem https://angular.dev/api/common/DecimalPipe ### Describe what you were looking for in the documentation I'd like to see these information in the new documentation, just like in the old one. ### Describe the actions that led you to experience the problem _No response_ ### Describe what you want to experience that would fix the problem _No response_ ### Add a screenshot if that helps illustrate the problem https://v17.angular.io/api/common/DecimalPipe ![Image](https://github.com/user-attachments/assets/1ec020ab-3ec7-4db7-8e4b-d81908106f90) https://angular.dev/api/common/DecimalPipe ![Image](https://github.com/user-attachments/assets/3a853d31-1bca-4e8d-ae87-a1ae233cebf5) ### If this problem caused an exception or error, please paste it here _No response_ ### If the problem is browser-specific, please specify the device, OS, browser, and version _No response_ ### Provide any additional information here in as much as detail as you can These information are really useful, like the `DecimalPipe` class has a different name, so people need to dig into the tutorial to see how to use them.
area: docs-infra
low
Critical
2,584,959,921
react
[DevTools Bug]: React Devtools do not show source position for host component
### Website or app none ### Repro steps <img width="1715" alt="image" src="https://github.com/user-attachments/assets/86400e7a-d653-4ee5-a9c7-f7287931a224"> As you see, it should show source filed ### How often does this bug happen? Every time ### DevTools package (automated) _No response_ ### DevTools version (automated) _No response_ ### Error message (automated) _No response_ ### Error call stack (automated) _No response_ ### Error component stack (automated) _No response_ ### GitHub query string (automated) _No response_
Type: Bug,Status: Unconfirmed,Component: Developer Tools
medium
Critical
2,585,017,891
PowerToys
Fancy zones - application on full screen show in selected zone only
### Description of the new feature / enhancement In case application is switched to full screen (e.g. vide from web page) it is shoved on real full screen. Would it be possible to single fancy zones windows be used to show this full screen application and block complete monitor ? ### Scenario when this would be used? click on full screen button inside video on web page ### Supporting information _No response_
Needs-Triage
low
Minor
2,585,061,811
rust
Closure breaks function with higher-ranked trait bound
I tried this code: ```rust pub fn f<T>() where for<'a> &'a T:, { || {}; } ``` I expected this to compile, perhaps with warnings. Instead, I get this error: ```rust error: `T` does not live long enough --> src\lib.rs:5:5 | 5 | || {}; | ^^^^^ ``` Rust version: rustc 1.84.0-nightly (27861c429 2024-10-13) As best as I can tell, this happens when a generic is involved in a higher-ranked trait bound, and a closure is defined inside the function. It seems like since the closure is somewhat generic over `T`, the closure needs to satisfy something about the bound. Things that also exhibit the issue: - Adding more bounds - Using the HRTB with a GAT, e.g. `T: for<'a> Trait<Item<'a> = &'a ()>` - Adding arguments or a return to the closure - Using or calling the closure (calling the closure adds another error on the call expression) - Replacing the closure with an async block Things that don't exhibit the issue: - A HRTB with a trait generic over a lifetime: `T: for<'a> Trait<'a>` or `for<'a> T: Trait<'a>` - A HRTB on a concrete type: `for<'a> &'a ():` - Defining the closure inside a function inside `f` This is probably the same as #102540 but that issue misidentified the problem and is old. I did some quick checking of old versions and this compiles in 1.20.0 and 1.30.1, throws ICE in 1.40.0, and gives an error in 1.50.0 and 1.60.0. The 1.60.0 error has a little more info. ```rust error: higher-ranked lifetime error --> src\lib.rs:5:5 | 5 | || {}; | ^^^^^ | = note: could not prove for<'a, 'r> &'a T: 'r ``` The ICE from 1.40.0 looks similar to #59311 (weirdly, predates 1.30) and #71546 and looks like this: ```rust error: internal compiler error: broken MIR in DefId(0:12 ~ rusttest[7b76]::f[0]) (NoSolution): could not prove Binder(OutlivesPredicate(&'a T, ReEmpty)) --> src\lib.rs:5:5 | 5 | || {}; | ^^^^^ ```
A-closures,T-compiler,C-bug,T-types,A-higher-ranked
low
Critical
2,585,095,422
ollama
Model Push Successful but Ignored by Ollama Registry - Cannot Pull Model After Push
### What is the issue? After successfully pushing a model to the Ollama registry using `ollama push`, the model seems to be ignored by the Ollama service. I cannot pull the model from the registry, and the service reports that "**No models have been pushed**" when accessing the registry URL. This issue persists even though the push operation completes successfully. When attempting to pull the model afterward, the following error occurs: ``` Error: pull model manifest: file does not exist ``` ### Steps to Reproduce: 1. **Pushing a Model:** I pushed the model using the following command: ```bash ollama push bona/bge_m3_korean:latest ``` The push operation completed successfully: ``` retrieving manifest pushing 61bb0c982884... 100% ▕█████████████████████████████████████████████████████████████████████▏ 1.2 GB pushing 578a2e81f706... 100% ▕█████████████████████████████████████████████████████████████████████▏ 95 B ``` 2. **Listing Models Locally:** After the push, I confirmed the model exists locally using `ollama list`: ```bash ollama list ``` Output: ``` NAME ID SIZE MODIFIED bona/bge_m3_korean:latest 949236422f50 1.2 GB 2 minutes ago ``` 3. **Pulling the Model from the Registry:** When trying to pull the model after pushing it: ```bash ollama pull bona/bge_m3_korean:latest ``` I get the following error: ``` Error: pull model manifest: file does not exist ``` 4. **Checking the Model on the Ollama Registry:** When I visit the registry URL (https://ollama.com/bona/bge-m3-korean), it shows: ``` No models have been pushed. ``` ### Environment: - **Ollama version:** 0.3.12 HOW CAN I SOLVE IT? ### OS WSL2 ### GPU AMD, Other ### CPU Intel ### Ollama version 0.3.12
bug,ollama.com
low
Critical
2,585,141,001
go
runtime: provide a way to opt in to stack trace printing for process-terminating signals in secure-mode binaries on Unix OSes
### Go version go version go1.23.1 linux/amd64 ### Output of `go env` in your module/workspace: ```shell n/a ``` ### What did you do? Consider two trivial go programs. First, `sleep.go`: ``` //go:build ignore package main import "time" func main() { time.Sleep(time.Hour) } ``` Second, `panic.go`: ``` //go:build ignore package main func main() { panic("asdf") } ``` First, run `sleep.go` and then interrupt it by hitting `C-\` (SIGQUIT): ``` $ rm -f sleep && go build -o sleep sleep.go && ./sleep ^\SIGQUIT: quit PC=0x46c46e m=0 sigcode=128 goroutine 0 gp=0x50da00 m=0 mp=0x50e660 [idle]: ... lots of stack trace elided... rflags 0x246 cs 0x33 ``` Next, run `panic.go` in the same way: ``` $ rm -f panic && go build -o panic panic.go && ./panic panic: asdf goroutine 1 [running]: main.main() /home/caleb/w/_scratch/x/panic.go:6 +0x25 ``` All normal stuff. Now let's do the same thing but with a binary that has `CAP_SYS_ADMIN`: ``` $ rm -f sleep && go build -o sleep sleep.go && sudo setcap 'cap_sys_admin+ep' ./sleep && ./sleep ^\SIGQUIT: quit ``` ``` $ rm -f panic && go build -o panic panic.go && sudo setcap 'cap_sys_admin+ep' ./panic && ./panic panic: asdf ``` In both cases (SIGQUIT and a normal panic), printing stack traces is suppressed by the Go runtime. This is a [security measure](https://pkg.go.dev/runtime#hdr-Security) implemented last year in #60272. If I want to bypass this stack trace suppression anyway, I can do so for panics by calling `runtime/debug.SetTraceback`. For example, If I add the line debug.SetTraceback("single") to `panic.go`, then it restores the normal unprivileged panic stack trace printing behavior: ``` $ rm -f panic && go build -o panic panic.go && sudo setcap 'cap_sys_admin+ep' ./panic && ./panic panic: asdf goroutine 1 [running]: main.main() /home/caleb/w/_scratch/x/panic.go:9 +0x32 ``` However, as far as I know, there is no equivalent way to opt in to the default signal-handling stack trace printing behavior. If I want to print stack traces on SIGQUIT, I'd have to listen for the signal and do it myself. ### What did you see happen? No way to turn on stack trace printing for process-terminating signals for this `CAP_SYS_ADMIN` binary. ### What did you expect to see? I believe there should be a way to ask the runtime to print stack traces on SIGQUIT when running in secure mode. One way to to this would be to piggyback on `debug.SetTraceback` and restore the signal stack trace printing behavior when `SetTraceback` is called with some value other than "none" (or perhaps only when called with "all" or "single", or perhaps only when called with "all"). Alternatively, we can provide a new API such as `runtime/debug.SetSignalTraceback(bool)`. cc: * @golang/security * @rolandshoemaker who implemented this security measure * @ianlancetaylor who made a related comment over at https://github.com/golang/go/issues/62474#issuecomment-1709314643
NeedsInvestigation,FeatureRequest,compiler/runtime
low
Critical
2,585,165,714
tauri
[bug] After updating to 2.0, AppImage crashes on startup
### Describe the bug After updating tauri from 1.* to 2.0.3, the AppImage package crashes when launched.The deb package runs normally, but the file name under /usr/bin changes from lowercase eco-paste to uppercase EcoPaste, and the desktop file name also changes ### Reproduction _No response_ ### Expected behavior _No response_ ### Full `tauri info` output ```text > eco-paste@0.2.0-beta.2 tauri /home/witt/codes/open-source/EcoPaste > tauri "info" [✔] Environment - OS: Manjaro 24.1.1 x86_64 (X64) ✔ webkit2gtk-4.1: 2.44.4 ✔ rsvg2: 2.58.4 ✔ rustc: 1.81.0 (eeb90cda1 2024-09-04) ✔ cargo: 1.81.0 (2dbb1af80 2024-08-20) ✔ rustup: 1.27.1 (2024-05-07) ✔ Rust toolchain: stable-x86_64-unknown-linux-gnu (default) - node: 22.9.0 - pnpm: 9.12.1 - yarn: 1.22.22 - npm: 10.8.3 [-] Packages - tauri 🦀: 2.0.3 - tauri-build 🦀: 2.0.1 - wry 🦀: 0.46.0 - tao 🦀: 0.30.3 - @tauri-apps/api : 2.0.2 - @tauri-apps/cli : 2.0.2 (outdated, latest: 2.0.3) [-] Plugins - tauri-plugin-fs 🦀: 2.0.1 - @tauri-apps/plugin-fs : 2.0.0 - tauri-plugin-window-state 🦀: 2.0.1 - @tauri-apps/plugin-window-state : not installed! - tauri-plugin-dialog 🦀: 2.0.1 - @tauri-apps/plugin-dialog : 2.0.0 - tauri-plugin-autostart 🦀: 2.0.1 - @tauri-apps/plugin-autostart : 2.0.0 - tauri-plugin-os 🦀: 2.0.1 - @tauri-apps/plugin-os : 2.0.0 - tauri-plugin-process 🦀: 2.0.1 - @tauri-apps/plugin-process : 2.0.0 - tauri-plugin-global-shortcut 🦀: 2.0.1 - @tauri-apps/plugin-global-shortcut : 2.0.0 - tauri-plugin-single-instance 🦀: 2.0.1 - @tauri-apps/plugin-single-instance : not installed! - tauri-plugin-log 🦀: 2.0.1 - @tauri-apps/plugin-log : 2.0.0 - tauri-plugin-sql 🦀: 2.0.1 - @tauri-apps/plugin-sql : 2.0.0 - tauri-plugin-updater 🦀: 2.0.2 - @tauri-apps/plugin-updater : 2.0.0 - tauri-plugin-shell 🦀: 2.0.1 - @tauri-apps/plugin-shell : 2.0.0 [-] App - build-type: bundle - CSP: unset - frontendDist: ../dist - devUrl: http://localhost:1420/ - framework: React - bundler: Vite ``` ### Stack trace ```text Gtk-Message: 16:04:31.992: Failed to load module "xapp-gtk3-module" Gtk-Message: 16:04:31.994: Failed to load module "appmenu-gtk-module" Gtk-Message: 16:04:32.091: Failed to load module "appmenu-gtk-module" [2024-10-14][08:04:32][async_io::driver][TRACE] sleeping for 10000 us Gtk-Message: 16:04:32.385: Failed to load module "xapp-gtk3-module" Gtk-Message: 16:04:32.388: Failed to load module "appmenu-gtk-module" [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . Gtk-Message: 16:04:32.428: Failed to load module "appmenu-gtk-module" [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][INFO] Set previous window -> Tauri App(0x8600003) [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> Tauri App(0x8600003) [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> Tauri App(0x8600003) [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> Tauri App(0x8600003) [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> Tauri App(0x8600003) [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> Tauri App(0x8600003) [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> Tauri App(0x8600003) Gtk-Message: 16:04:32.962: Failed to load module "xapp-gtk3-module" Gtk-Message: 16:04:32.964: Failed to load module "appmenu-gtk-module" [2024-10-14][08:04:32][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x8600004 . Gtk-Message: 16:04:32.991: Failed to load module "appmenu-gtk-module" [2024-10-14][08:04:33][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x8600004 . [2024-10-14][08:04:33][sqlx::query][DEBUG] summary="PRAGMA foreign_keys = ON; …" db.statement="\n\nPRAGMA foreign_keys = ON;\n" rows_affected=0 rows_returned=0 elapsed=4.993334ms elapsed_secs=0.004993334 [2024-10-14][08:04:33][sqlx::query][DEBUG] summary="CREATE TABLE IF NOT …" db.statement="\n\nCREATE TABLE IF NOT EXISTS history (\n id TEXT PRIMARY KEY,\n type TEXT,\n [group] TEXT,\n value TEXT,\n search TEXT,\n count INTEGER,\n width INTEGER,\n height INTEGER,\n favorite INTEGER DEFAULT 0,\n createTime TEXT,\n note TEXT\n);\n" rows_affected=0 rows_returned=0 elapsed=3.43098ms elapsed_secs=0.00343098 [2024-10-14][08:04:33][sqlx::query][DEBUG] summary="UPDATE history SET type …" db.statement="\n\nUPDATE\n history\nSET\n type = ?\nWHERE\n type = ?;\n" rows_affected=0 rows_returned=0 elapsed=624.198µs elapsed_secs=0.000624198 [2024-10-14][08:04:33][sqlx::query][DEBUG] summary="PRAGMA table_info(history)" db.statement="" rows_affected=0 rows_returned=11 elapsed=49.69µs elapsed_secs=4.969e-5 [2024-10-14][08:04:33][sqlx::query][DEBUG] summary="PRAGMA table_info(history)" db.statement="" rows_affected=0 rows_returned=11 elapsed=41.866µs elapsed_secs=4.1866e-5 [2024-10-14][08:04:33][sqlx::query][DEBUG] summary="PRAGMA table_info(history)" db.statement="" rows_affected=0 rows_returned=11 elapsed=37.618µs elapsed_secs=3.7618e-5 [2024-10-14][08:04:33][sqlx::query][DEBUG] summary="SELECT * FROM history …" db.statement="\n\nSELECT\n *\nFROM\n history\nORDER BY\n createTime DESC;\n" rows_affected=0 rows_returned=848 elapsed=5.050968ms elapsed_secs=0.005050968 [2024-10-14][08:04:33][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x8600004 . [2024-10-14][08:04:33][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x8600004 . [2024-10-14][08:04:33][tauri_plugin_eco_paste::commands::linux][INFO] Set previous window -> ecopaste(0x460000c) [2024-10-14][08:04:33][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> ecopaste(0x460000c) [2024-10-14][08:04:33][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring same window -> ecopaste(0x460000c) [2024-10-14][08:04:33][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . [2024-10-14][08:04:34][hyper_util::client::legacy::pool][TRACE] checkout waiting for idle connection: ("https", ecopaste-updater.ayangweb.cn) [2024-10-14][08:04:34][reqwest::connect][DEBUG] starting new connection: https://ecopaste-updater.ayangweb.cn/ [2024-10-14][08:04:34][hyper_util::client::legacy::connect::http][TRACE] Http::connect; scheme=Some("https"), host=Some("ecopaste-updater.ayangweb.cn"), port=None [2024-10-14][08:04:34][hyper_util::client::legacy::connect::dns][DEBUG] resolve; host=ecopaste-updater.ayangweb.cn [2024-10-14][08:04:34][tracing::span][TRACE] -- resolve; [2024-10-14][08:04:34][hyper_util::client::legacy::connect::dns][DEBUG] resolving host="ecopaste-updater.ayangweb.cn" [2024-10-14][08:04:34][hyper_util::client::legacy::connect::http][DEBUG] connecting to 198.18.0.38:443 [2024-10-14][08:04:34][hyper_util::client::legacy::connect::http][DEBUG] connected to 198.18.0.38:443 thread 'main' panicked at /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libappindicator-sys-0.9.0/src/lib.rs:41:5: Failed to load ayatana-appindicator3 or appindicator3 dynamic library /usr/lib/libayatana-ido3-0.4.so.0: undefined symbol: g_once_init_leave_pointer /usr/lib/libappindicator3.so.1: undefined symbol: g_once_init_leave_pointer /usr/lib/libayatana-ido3-0.4.so.0: undefined symbol: g_once_init_leave_pointer /usr/lib/libappindicator3.so: undefined symbol: g_once_init_leave_pointer note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace thread 'main' panicked at library/core/src/panicking.rs:221:5: panic in a function that cannot unwind stack backtrace: 0: 0x63b2c4f49275 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::h1b9dad2a88e955ff 1: 0x63b2c4f7769b - core::fmt::write::h4b5a1270214bc4a7 2: 0x63b2c4f44baf - std::io::Write::write_fmt::hd04af345a50c312d 3: 0x63b2c4f4a711 - std::panicking::default_hook::{{closure}}::h96ab15e9936be7ed 4: 0x63b2c4f4a3ec - std::panicking::default_hook::h3cacb9c27561ad33 5: 0x63b2c4f4ad71 - std::panicking::rust_panic_with_hook::hfe205f6954b2c97b 6: 0x63b2c4f4aba3 - std::panicking::begin_panic_handler::{{closure}}::h6cb44b3a50f28c44 7: 0x63b2c4f49739 - std::sys::backtrace::__rust_end_short_backtrace::hf1c1f2a92799bb0e 8: 0x63b2c4f4a864 - rust_begin_unwind 9: 0x63b2c3d15335 - core::panicking::panic_nounwind_fmt::h4c4dc67d0bbc166c 10: 0x63b2c3d153c2 - core::panicking::panic_nounwind::hb98133c151c787e4 11: 0x63b2c3d15506 - core::panicking::panic_cannot_unwind::he9511e6e72319a3e 12: 0x63b2c3f6d018 - webkit2gtk::auto::web_context::WebContextExt::register_uri_scheme::callback_func::hed0a6f2b6efa71a4 13: 0x7a6a130fe11f - <unknown> 14: 0x7a6a12feac6b - <unknown> 15: 0x7a6a12feae02 - <unknown> 16: 0x7a6a12bfac92 - <unknown> 17: 0x7a6a12bed844 - <unknown> [2024-10-14][08:04:34][tauri_plugin_eco_paste::commands::linux][TRACE] Ignoring empty window: 0x460000d . 18: 0x7a6a12f30e0b - <unknown> 19: 0x7a6a130001ec - <unknown> 20: 0x7a6a12f279c5 - <unknown> 21: 0x7a6a12f281f3 - <unknown> 22: 0x7a6a111119fd - <unknown> 23: 0x7a6a11171eed - <unknown> 24: 0x7a6a11172833 - <unknown> 25: 0x7a6a0f910c44 - g_main_context_dispatch 26: 0x7a6a0f9662b8 - <unknown> 27: 0x7a6a0f90e3e3 - g_main_context_iteration 28: 0x7a6a11c48e15 - gtk_main_iteration_do 29: 0x63b2c4de56bb - gtk::auto::functions::main_iteration_do::h7541efd08e9187c7 30: 0x63b2c400c3ad - glib::main_context::<impl glib::auto::main_context::MainContext>::with_thread_default::h6405e8c8914ca731 31: 0x63b2c3f99292 - tao::platform_impl::platform::event_loop::EventLoop<T>::run::h9fb77a922c70da90 32: 0x63b2c3fbfc9b - tauri::app::App<R>::run::h73fc0f4519adc766 33: 0x63b2c3d69a62 - eco_paste_lib::run::h9b8a408153ac76cc 34: 0x63b2c3d15de3 - std::sys::backtrace::__rust_begin_short_backtrace::h8a60e01a37547afb 35: 0x63b2c3d15dd9 - std::rt::lang_start::{{closure}}::hce8534108b64b78e 36: 0x63b2c4f3bf80 - std::rt::lang_start_internal::h5e7c81cecd7f0954 37: 0x63b2c3d15e35 - main 38: 0x7a6a0f4bfe08 - <unknown> 39: 0x7a6a0f4bfecc - __libc_start_main 40: 0x63b2c3d15d05 - _start 41: 0x0 - <unknown> thread caused non-unwinding panic. aborting. zsh: IOT instruction (core dumped) ./EcoPaste_3c4964a_amd64.AppImage ``` ### Additional context _No response_
type: bug,platform: Linux,status: needs triage
low
Critical
2,585,176,227
transformers
TimeSeriesTransformerModel: add no time lags option
### Feature request `TimeSeriesTransformerModel` has no option to insert no lags in the model. Setting `lags_sequence = []` in the `config` will return an error. An alternative to circumvent the problem, i.e. `lags_sequence = [0]` will result in having two identical copies of the temporal input (`lagged_sequence` and `time_feat`) to be concatenated in the `temporal_input`. ### Motivation Would make the model more user-friendly in cases where no additional lag is needed. ### Your contribution A simple implementation would entail adding an `if len(lags_sequence) > 0` clause prior to adding the subsequences to the input tensor [here](https://github.com/huggingface/transformers/blob/7434c0ed21a154136b0145b0245ae9058005abac/src/transformers/models/time_series_transformer/modeling_time_series_transformer.py#L1292).
Feature request
low
Critical
2,585,253,716
react
Bug: eslint-plugin-react-hooks treats a non-react `use` function the same way as `React.use`
React version: 18.3.1 eslint-plugin-react-hooks: 5.0.0 ## Steps To Reproduce 1. install eslint-plugin-react-hooks 5.0.0 2. write this code ``` function smth(use: () => void) { use(); } ``` 3. get an error `React Hook "use" is called in function "smth" that is neither a React function component nor a custom React Hook function. React component names must start with an uppercase letter. React Hook names must start with the word "use".eslint[react-hooks/rules-of-hooks](https://reactjs.org/docs/hooks-rules.html)` We got this error with `use` function in the callback of playwright's `test.extend()` ``` const test = base.extend<{ track: E2EGeneratedTrackFragment }>({ track: async ({}, use) => { // --------------^ local `use` function const track = await generateTestTrack('e2e'); await addTrackToArcade(track.id); await use(track); // -----^ the error is here await deleteTestTrack(track.id); }, }); ``` Link to code example: - ## The current behavior any custom `use` function is treated like `React.use` ## The expected behavior only `use()` function from react is linted by those rules ## Additional There is no error with eslint-plugin-react-hooks v4.6.2
Component: ESLint Rules
low
Critical
2,585,271,055
pytorch
Take device of input tensor into consideration for torch::data::transforms::Normalize and possibly other transformations
### 🚀 The feature, motivation and pitch Currently if used on a tensor that is on a device different from `CPU` `torch::data::transforms::Normalize` results in an exception > Normalization of input tensor failed: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! > > Exception raised from compute_types at C:\actions-runner\_work\pytorch\pytorch\builder\windows\pytorch\aten\src\ATen\TensorIterator.cpp:503 (most recent call first): ... Looking at the implementation (found in `include\torch\csrc\api\include\torch\data\transforms\tensor.h`) ```cpp template <typename Target = Tensor> struct Normalize : public TensorTransform<Target> { /// Constructs a `Normalize` transform. The mean and standard deviation can be /// anything that is broadcastable over the input tensors (like single /// scalars). Normalize(ArrayRef<double> mean, ArrayRef<double> stddev) : mean(torch::tensor(mean, torch::kFloat32) .unsqueeze(/*dim=*/1) .unsqueeze(/*dim=*/2)), stddev(torch::tensor(stddev, torch::kFloat32) .unsqueeze(/*dim=*/1) .unsqueeze(/*dim=*/2)) {} torch::Tensor operator()(Tensor input) override { return input.sub(mean).div(stddev); } torch::Tensor mean, stddev; }; ``` the transformation clearly ignores the device that `input` is on and assumes that it is on CPU since both `mean` and `stddev` are created by default on CPU. **Proposal:** any auxiliary tensor that is created in order to apply a given transformation (not only `Normalize`) should be moved to the device where the input tensor(s) are located. ### Alternatives - Move the input tensor to CPU, apply normalization and then move back to original device **Drawbacks:** possibly additional memory transfers, decrease in performance if other device faster for given operation(s) - Custom implementation of the specific transformation **Drawbacks:** does not really help improve the code base that is shipped with a libtorch setup. ### Additional context _No response_ cc @andrewkho @divyanshk @SsnL @VitalyFedyunin @dzhulgakov
module: dataloader,triaged
low
Critical
2,585,272,108
vscode
Error in console when mouse move out of the browser
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid creating duplicates. --> <!-- 🧪 Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ --> <!-- 💡 Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. --> <!-- 🔧 Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes <!-- 🪓 If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. --> <!-- 📣 Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. --> - VS Code Version: 1.94.2 - OS Version: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko/20100101 Firefox/131.0 Steps to Reproduce: 1. Write text 2. Select this text with mouse but mouse click is still pressed 3. Move cursor out of the browser window 4. Error in console is displayed https://github.com/user-attachments/assets/709a28ea-71ef-4161-a320-83af36db00e2 ``` ERR s is null: z@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:9098 doHitTest@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:10183 oCi/this.hitTestResult<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:131:18333 get value@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:30:52549 get target@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:131:18081 g@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:1841 createMouseTarget@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:1602 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49272 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 FrameRequestCallback*dr@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15172 s@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49639 s/this.f<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:132:49665 execute@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:14784 n@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15027 dr/<@https://main.vscode-cdn.net/insider/6cf71eaab2600e2e1db3642aea3ad91aa6be3f7f/out/vs/workbench/workbench.web.main.internal.js:32:15199 ```
bug,editor-core
low
Critical
2,585,334,077
tensorflow
argsort incorrectly handles very small floating-point numbers and -0.0 compared to other libraries (PyTorch and JAX)
### Issue type Bug ### Have you reproduced the bug with TensorFlow Nightly? No ### Source source ### TensorFlow version 2.16.1 ### Custom code Yes ### OS platform and distribution windows ### Mobile device _No response_ ### Python version _No response_ ### Bazel version _No response_ ### GCC/compiler version _No response_ ### CUDA/cuDNN version _No response_ ### GPU model and memory _No response_ ### Current behavior? When using TensorFlow's argsort function on an array containing small floating-point numbers and both 0.0 and -0.0, the sort order is incorrect compared to other deep learning libraries such as PyTorch and JAX. TensorFlow incorrectly places 1.401298464324817e-45 (a very small positive number) before 0.0 and -0.0. Expected behavior is that both 0.0 and -0.0 should be treated as equivalent and placed before any positive number, including very small ones like 1.401298464324817e-45. However, TensorFlow does not follow this behavior, whereas PyTorch correctly handles this. ``` import numpy as np import torch import tensorflow as tf import jax.numpy as jnp def test_argsort(): # Input data, hardcoded as float32 input_data = np.array([ -0.0, 1.401298464324817e-45, 1.100000023841858, -0.0, 5.960464477539063e-08, -2.0000100135803223, 1000000.0, 722801.375, 0.0, -1.100000023841858 ], dtype=np.float32) # PyTorch argsort pytorch_result = torch.argsort(torch.tensor(input_data, dtype=torch.float32)).numpy() print(f"PyTorch argsort result: {pytorch_result}") # TensorFlow argsort tensorflow_result = tf.argsort(input_data).numpy().astype(np.int32) print(f"TensorFlow argsort result: {tensorflow_result}") # JAX argsort jax_result = jnp.argsort(input_data).astype(np.int32) print(f"JAX argsort result: {jax_result}") if __name__ == "__main__": test_argsort() ``` ### Standalone code to reproduce the issue ```shell PyTorch argsort result: [5 9 0 3 8 1 4 2 7 6] TensorFlow argsort result: [5 9 0 1 3 8 4 2 7 6] JAX argsort result: [5 9 0 1 3 8 4 2 7 6] ``` Expected Behavior: TensorFlow's argsort should place 0.0 and -0.0 before any positive number, including very small values like 1.401298464324817e-45. PyTorch demonstrates the correct behavior by treating 0.0 and -0.0 as equal and placing them in the correct order relative to other values. Standalone Code to Reproduce the Issue: The above Python code demonstrates the issue. It uses the same input data for PyTorch, TensorFlow, and JAX to show the difference in behavior. TensorFlow and JAX produce incorrect results by misplacing the small positive value before 0.0, while PyTorch produces the correct order. Relevant Log Output: No error logs are generated, but the incorrect behavior is clearly shown in the sorting results. ``` ### Relevant log output _No response_
type:bug,TF 2.16
medium
Critical
2,585,436,256
vscode
Add 'Enter' and 'Leave' Types to NotebookEditorSelectionChangeEvent
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> I’m encountering an issue where the NotebookEditorSelectionChangeEvent triggers twice, making it challenging to determine the current selection. Specifically, it seems that the event triggers both for the change "from" a selection and "to" a selection, but without clear differentiation between the two. Would it be possible to add event types like "leave" or "enter" to better identify the context of each selection change?
bug,notebook-api
low
Minor
2,585,457,237
go
cmd/trace: add absolute (system) timestamp
### Proposal Details Runtime traces don't contain (or display) an absolute timestamp for events. This would be useful for comparing traces with other (tracing) tools, logs et cetera. An example would be combining a Go runtime trace with [perf sched](https://www.brendangregg.com/blog/2017-03-16/perf-sched.html) events. This would allow better investigation of kernel scheduling events and how they impact the latency of goroutines. IIRC, runtime traces currently use a relative (monotonic) timestamps for performance reasons. It's fine to keep this as-is. But it would be helpful if (e.g.) the start of a trace batch could contain an absolute system time (perhaps something lie nanoseconds since the UNIX epoch) together with the relative timestamp it was derived from. Tools like `go tool trace` could then adjust all the relative timestamps post-hoc, or at least display the trace start and end time. cc @mknyszek
NeedsFix,FeatureRequest,compiler/runtime
medium
Major
2,585,469,567
flutter
[ios] Either AppLifecycleState or url_launcher fails to show correct screen after app is updated from Appstore
### Steps to reproduce 1) Install app on physical device, using a `version` which is older than the one deployed on AppStore 2) Show to user a `UpdateScreen` with an `updateButton` to update app (see pic attached below). ``` // Open app on AppStore / GooglePlay final url = Platform.isIOS ? AppConfig.appStoreLink : AppConfig.googlePlayLink; await launchUrl(Uri.parse(url), mode: LaunchMode.externalApplication); ``` 3) User is navigated to AppStore page and taps the `updateButton`. 4) App is updated and user taps "Open" button on Appstore page. 5) App is opened showing a strange "cached" version of `UpdateScreen`. More info inside Code section. We think this is a regression because we didn't have this issue long time ago. ### Expected results If user taps "Open" button on AppStore page (after updating app), app should be opened as a fresh launch and display the initial Home screen, not showing any cached screen. ### Actual results If user taps "Open" button on AppStore page (after updating app), app is opened back showing a sort of cached screen. Developer can do nothing with it. We tried to force navigating user to a different screen from `didChangeAppLifecycleState` state `resumed` but flutter won't show this different screen. It is like app is stuck in the screen showed to user before user tapped the `updateButton`. ### Code sample <details open><summary>Code sample</summary> Given the peculiarity of the issue, we can share only a snippet of our code (a sample would require a sample app deployed on AppStore). But we tried to provide more details here and inside the Screenshots section. 1) Install app on physical device, using a `version` which is older than the one deployed on AppStore 2) Show to user a `UpdateScreen` with an `updateButton` to update app (see pic attached below). ``` // Open app on AppStore / GooglePlay final url = Platform.isIOS ? AppConfig.appStoreLink : AppConfig.googlePlayLink; await launchUrl(Uri.parse(url), mode: LaunchMode.externalApplication); ``` 3) User is navigated to AppStore page and taps the `updateButton`. 4) App is updated and user taps "Open" button on Appstore page. 5) App is opened showing a strange "cached" version of `UpdateScreen`. We say "cached" version because: - if we navigate users to `HomeScreen` before they tapped the Update button, the `UpdateScreen` is still the one displayed to users when app is opened back from AppStore - if we remove the `UpdateScreen` and put the `updateButton` inside a Dialog Panel, the old no-more-used `UpdateScreen` is still the one displayed to users when app is opened back from AppStore (as it were cached by flutter engine or the system and displayed anyway even if it is no longer used at all). </details> ### Screenshots or Video This is the screen with the `updateButton`. As mentioned, if user taps "Open" button on AppStore page, the app is opened back and will always show IMG1 screen even if: - we navigate user from `UpdateScreen` to `HomeScreen` "before" navigating user to AppStore - we change the state of this screen (ie. changed the texts), the screen with old texts will be displayed to user when app is opened back from AppStore (as if screen were cached by either flutter or the system) - we remove this screen, clean the build, install app from scratch and put the `updateButton` inside a dialog panel (see IMG2), IMG1 is the screen that is still displayed when app is opened back from AppStore. This makes us think that there should occur something at iOS level which flutter should try to workaround somehow to avoid this issue (?). - we navigate user to a different screen from `didChangeAppLifecycleState` state `resumed` but IMG1 is the screen that is still be displayed to user. ### IMG1: ![IMG_9787](https://github.com/user-attachments/assets/9ce964f5-25d6-4309-bfbb-a1d06284594e) ### IMG2: ![IMG_9821](https://github.com/user-attachments/assets/dbb4f248-8a8b-4917-b7d3-479024ded9e6) </details> ### Logs <details open><summary>Logs</summary> ```console [Paste your logs here] ``` </details> ### Flutter Doctor output <details open><summary>Doctor output</summary> ```console Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel master, 3.27.0-1.0.pre.31, on macOS 14.2.1 23C71 darwin-arm64, locale en-IT) [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 15.2) [✓] Chrome - develop for the web [✓] Android Studio (version 2024.1) [✓] Connected device (4 available) [✓] Network resources ``` </details>
platform-ios,engine,P2,team-ios,triaged-ios
low
Major
2,585,496,293
deno
http2 server closing stream exception
Version: deno 2.0.0 (stable, release, aarch64-apple-darwin) As part of investigation into https://github.com/denoland/deno/issues/24845, I wrote a test that exposed another (seemingly unrelated) issue. If an http2 server closes the stream while a client is connected an exception is thrown: ``` error: Uncaught (in promise) Http: error reading a body from connection: stream closed because of a broken pipe at async Object.pull (ext:deno_web/06_streams.js:938:27) ``` To reproduce the issue see https://github.com/TobyEalden/deno-http2-stream-test I can't see a way to easily catch or avoid this error other than using a setTImout as shown [here](https://github.com/TobyEalden/deno-http2-stream-test/blob/main/stream-test.mjs#L88), and in any case the same code running under nodejs works as expected.
bug,node compat
low
Critical
2,585,507,563
tensorflow
argmax returns incorrect result for input containing Minimum number (TensorFlow 2.x)
### Issue type Bug ### Have you reproduced the bug with TensorFlow Nightly? No ### Source source ### TensorFlow version 2.16.1 ### Custom code Yes ### OS platform and distribution _No response_ ### Mobile device _No response_ ### Python version _No response_ ### Bazel version _No response_ ### GCC/compiler version _No response_ ### CUDA/cuDNN version _No response_ ### GPU model and memory _No response_ ### Current behavior? Current Behavior: When using tf.math.argmax on an input array that contains -0.0, the result is incorrect. Specifically, the function returns 1 (the index of -0.0) as the position of the maximum value, while the actual maximum value is 1.401298464324817e-45 at index 2. The same behavior is observed in Keras and JAX, as both use TensorFlow internally for the argmax function. Expected Behavior: tf.math.argmax should return 2, as the value at index 2 (1.401298464324817e-45) is greater than both -1.0 and -0.0. ``` import numpy as np import torch import tensorflow as tf import jax.numpy as jnp from tensorflow import keras def test_argmax(): # Input data input_data = np.array([-1.0, -0.0, 1.401298464324817e-45], dtype=np.float32) # PyTorch argmax pytorch_result = torch.argmax(torch.tensor(input_data, dtype=torch.float32)).item() print(f"PyTorch argmax result: {pytorch_result}") # TensorFlow argmax tensorflow_result = tf.math.argmax(input_data).numpy() print(f"TensorFlow argmax result: {tensorflow_result}") # Keras argmax (Keras internally uses TensorFlow, so should be the same) keras_result = keras.backend.argmax(input_data).numpy() print(f"Keras argmax result: {keras_result}") # JAX argmax jax_result = jnp.argmax(input_data) print(f"JAX argmax result: {jax_result}") if __name__ == "__main__": test_argmax() ``` ### Standalone code to reproduce the issue ```shell PyTorch argmax result: 2 TensorFlow argmax result: 1 Keras argmax result: 1 JAX argmax result: 1 ``` ``` ### Relevant log output _No response_
type:bug,comp:ops,TF 2.16
low
Critical
2,585,541,527
go
proposal: x/tools/go/analysis/passes/appends: check for incorrect slice length initialization
### Proposal Details The following code exists in many projects, and developers actually want [0 1 2], but due to the initialization error of slice, the final result is [0 0 0 0 1 2] ```go package main import "fmt" func main() { sli := make([]int, 3) for i := range 3 { sli = append(sli, i) } fmt.Println(sli) // the result is [0 0 0 0 1 2] } ``` The online demo: https://go.dev/play/p/q1BcVCmvidW Over the past few months, I have conducted extensive research and analysis, and also submitted pull requests to fix issues in many well-known Go projects such as prometheus, zap, vitess. Below are some pull requests submitted by me and others related to this problem. Due to limitations in search skills and time, I only checked records of such issues in the past few months. The history of more such issues has not been traced back. But I think it's already enough I would like to propose adding a new analyzer to go vet that can detect such situations, thereby avoiding these issues in the future. Now I have already completed an initial version of the code, and if the proposal is approved, I would be happy to refine it and add the necessary test cases. The merged pr: https://github.com/prometheus/prometheus/pull/14702#issuecomment-2302569768 https://github.com/uber-go/zap/pull/1461 https://github.com/uber/cadence/pull/6293 https://github.com/prometheus/prometheus/pull/15026 https://github.com/vitessio/vitess/pull/16674 https://github.com/kedacore/keda/pull/6179 https://github.com/external-secrets/external-secrets/pull/3964 https://github.com/brianvoe/gofakeit/pull/365 https://github.com/fission/fission/pull/3018 https://github.com/DataDog/datadog-agent/pull/29744 https://github.com/superseriousbusiness/gotosocial/pull/3382 https://github.com/ccfos/nightingale/pull/2169 https://github.com/gookit/color/pull/97 https://github.com/vdaas/vald/pull/2672 https://github.com/supabase/auth/pull/1788 https://github.com/pufferpanel/pufferpanel/pull/1367 https://github.com/juju/juju/pull/18176 https://github.com/go-spatial/tegola/commit/0f3131fbe428368012757aecfe38f57ec1844c6a https://github.com/lxc/incus/pull/1285 https://github.com/yunionio/cloudpods/pull/21346 https://github.com/taubyte/tau/pull/253 https://github.com/fleetdm/fleet/pull/22608 https://github.com/antrea-io/antrea/pull/6715 https://github.com/tdewolff/canvas/pull/315 https://github.com/Consensys/gnark/pull/1288 https://github.com/superfly/flyctl/pull/3982 https://github.com/bazelbuild/rules_go/pull/4133 https://github.com/zitadel/oidc/pull/658 https://github.com/jhump/protoreflect/pull/629 https://github.com/apache/rocketmq-client-go/pull/1171 https://github.com/edgexfoundry/edgex-go/pull/4938 https://github.com/dolthub/doltgresql/pull/812 https://github.com/apache/trafficcontrol/pull/8091 https://github.com/pingcap/tidb-operator/pull/5755 https://github.com/botlabs-gg/yagpdb/pull/1734 https://github.com/Altinity/clickhouse-backup/pull/1019 https://github.com/openshift/installer/pull/9072 https://github.com/GoogleCloudPlatform/magic-modules/pull/11919 https://github.com/openmeterio/openmeter/pull/1615 https://github.com/target/goalert/pull/4090 https://github.com/kubeovn/kube-ovn/pull/4579 https://github.com/syyongx/php2go/pull/49 https://github.com/fluid-cloudnative/fluid/pull/4335 https://github.com/akuity/kargo/pull/2648 https://github.com/kubernetes/kubernetes/pull/127785 https://github.com/apache/dubbo-go/pull/2734 https://github.com/letsencrypt/boulder/pull/7725 https://github.com/cortexproject/cortex/pull/6237 https://github.com/kubeedge/kubeedge/pull/5895 https://github.com/grafana/mimir/pull/9449 https://github.com/rocboss/paopao-ce/pull/581 https://github.com/authelia/authelia/pull/7720 https://github.com/cilium/cilium/pull/35164 https://github.com/git-lfs/git-lfs/pull/5874 https://github.com/hashicorp/nomad/pull/24109/files https://github.com/cosmos/ibc-go/pull/6444 https://github.com/minio/minio/pull/19567 https://github.com/VictoriaMetrics/VictoriaMetrics/pull/6897 https://github.com/hyperledger/fabric/pull/4956 https://github.com/grafana/pyroscope/pull/3600 https://github.com/cosmos/cosmos-sdk/pull/21494#pullrequestreview-2274005038 https://github.com/anchore/grype/pull/2133 https://github.com/ethereum-optimism/optimism/pull/11542/files https://github.com/libp2p/go-libp2p/pull/2938/files https://github.com/stashapp/stash/pull/5327 https://github.com/trufflesecurity/trufflehog/pull/3293 https://github.com/c9s/bbgo/pull/1724#issuecomment-2322959753 https://github.com/cosmos/cosmos-sdk/pull/22006 https://github.com/FerretDB/FerretDB/pull/4598 https://github.com/dagger/dagger/pull/8612 https://github.com/letsencrypt/boulder/pull/7731 https://github.com/Layr-Labs/eigenda/pull/767 https://github.com/wal-g/wal-g/pull/1800 https://github.com/VictoriaMetrics/VictoriaMetrics/pull/7161 https://github.com/harmony-one/harmony/pull/4767 https://github.com/stackrox/stackrox/pull/13028 https://github.com/stefanprodan/timoni/pull/430 https://github.com/Altinity/clickhouse-operator/pull/1523 https://github.com/iotexproject/iotex-core/pull/4412 ane more in review process.
Proposal
medium
Critical
2,585,600,064
transformers
Add support for Florence-2
### Feature request Add support for [Florence-2](https://huggingface.co/microsoft/Florence-2-large) ### Motivation Currently requires `trust_remote_code=True` ### Your contribution I can submit a PR.
New model,Feature request
low
Minor
2,585,600,308
godot
Changing Selected StyleBox BG Color in Tree hides guide line on the first column when Select Mode is Row
### Tested versions - Reproducible in: 4.3.stable ### System information Godot v4.3.stable.mono - Windows 10.0.22631 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 4070 (NVIDIA; 32.0.15.6094) - 13th Gen Intel(R) Core(TM) i5-13500 (20 Threads) ### Issue description When using a Tree node with multiple columns, with Select Mode in Row and Draw Guides on, if you override the Background Color of the StyleBox for Selected and/or Selected Focus, the selected row will hide the guideline, under the first column only. The expected behaviour is to not hide the guideline at all. <img width="579" alt="tree guide bug" src="https://github.com/user-attachments/assets/61ccdadd-a10e-454e-af3e-a66aeff4cf83"> ### Steps to reproduce 1. Create a new project 2. Add a Tree node 3. Set Columns to more than 1 and Select Mode to Row 4. Set Draw Guides to more than 0 5. Add a StyleBox to Selected or Selected Focus and override its BG Color 6. Attach a script to the Tree node and call ```create_item()``` in ```_ready()``` To visualize it more easily, change Guide Color and the StyleBox BG Color to get contrast between them. ### Minimal reproduction project (MRP) N/A
bug,topic:gui
low
Critical
2,585,667,018
storybook
[Bug]: Zooming and scaling must not be disabled
### Describe the bug AXE DevTools finds a critical error when ran against Storybook: ``` Ensure <meta name="viewport"> does not disable text scaling and zooming ``` This is due to the `viewport` meta tag in the `<head>` element: ```html <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> ``` For accessibility reasons, zooming and scaling should be allowed in order to avoid violation of [1.4.4 Resize Text](https://www.w3.org/WAI/WCAG21/Understanding/resize-text.html). ### Reproduction link https://carbon.sage.com/?path=/story/welcome--welcome-page ### Reproduction steps 1. Open a Storybook 2. Run Axe DevTools 3. Note the zooming and scaling failure ### System Storybook Environment Info: System: OS: macOS 14.6.1 CPU: (12) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz Shell: 5.9 - /bin/zsh Binaries: Node: 20.18.0 - ~/.nvm/versions/node/v20.18.0/bin/node npm: 10.5.2 - ~/git/carbon/node_modules/.bin/npm <----- active Browsers: Edge: 129.0.2792.89 Safari: 17.6 npmPackages: @storybook/addon-a11y: ^8.2.6 => 8.2.6 @storybook/addon-actions: ^8.2.6 => 8.2.6 @storybook/addon-controls: ^8.2.6 => 8.2.6 @storybook/addon-docs: ^8.2.6 => 8.2.6 @storybook/addon-toolbars: ^8.2.6 => 8.2.6 @storybook/addon-viewport: ^8.2.6 => 8.2.6 @storybook/addon-webpack5-compiler-swc: ^1.0.4 => 1.0.5 @storybook/components: ^8.2.6 => 8.2.6 @storybook/manager-api: ^8.2.6 => 8.2.6 @storybook/preview-api: ^8.2.6 => 8.2.6 @storybook/react: ^8.2.6 => 8.2.6 @storybook/react-webpack5: ^8.2.6 => 8.2.6 @storybook/theming: ^8.2.6 => 8.2.6 @storybook/types: ^8.2.6 => 8.2.6 chromatic: ^6.17.4 => 6.24.1 storybook: ^8.2.6 => 8.2.6 ### Additional context _No response_
bug,accessibility
low
Critical
2,585,692,204
vscode
Behavior changed for middle click window title in gnome
**ENVIRONMENT:** linux ubuntu 24.04 gnome 46.0 (with wayland) vscode 1.94.2 **WHAT USED TO WORK:** I use the mouse middle click (on a window's titlebar) to lower the window - so I can easily cycle through open windows. This setting is set via the shell, or the gnome tweaks tool. I did not set `"window.titleBarStyle"`. **HOW IT WORKS NOW:** That changed in either the latest update or when upgrading to gnome 46. It doesn't honor that gnome setting anymore. So a middle click on the vscode titlebar does nothing. This is identical to a bug from a [few years ago](https://github.com/microsoft/vscode/issues/92346), but since resolved. Maybe there's a similar resolution this time too.
upstream,linux,titlebar,upstream-issue-linked
low
Critical
2,585,725,492
PowerToys
File download manager
### Description of the new feature / enhancement I was thinking of a file download manager where you can specify a name, a path, and select from the available file extensions on the user's system. If the criteria match the desired file extension(s), the manager will automatically download those files to the specified folder. Users should be able to create as many rules as they like, or there could be predefined rules, and once activated, the background service would handle the file downloads accordingly. ### Scenario when this would be used? This would be useful every single time someone downloads a file. Often, files land in the wrong folder because the system uses the last saved location as the default for new downloads, regardless of the file type. For example, if I download pictures, future downloads may default to the "Pictures" folder. It’s frustrating when unrelated files end up in the wrong place. This feature would allow users to set consistent rules based on file extensions, preventing such issues and keeping downloads organized automatically. ### Supporting information - User Flexibility: This feature would give users control over where their files are saved based on file types. Currently, Windows uses the last-used folder as the default download location, which can lead to disorganization and confusion. A file download manager that lets users define custom rules would greatly enhance productivity and file management. - Background Service: The download manager could operate as a background service, monitoring file downloads and applying rules without interrupting the user's workflow. - PowerToys Alignment: Since PowerToys already focuses on enhancing Windows functionality and user experience, this download manager fits well with the existing set of tools designed to streamline productivity. - Customization: Users would be able to create custom rules for different file extensions and download destinations, helping them keep their workspace organized and reducing the manual task of moving files around.
Needs-Triage
low
Minor
2,585,794,514
terminal
Allow conhost to be replaced with OpenConsole
# Description of the new feature/enhancement conhost can lack behind OpenConsole by several (if not many) years. This brings 2 problems: * People preferring conhost's look and feel cannot get updates for many years. * We (the maintainers) cannot test new features and changes for many years. In other words, not being able to replace conhost is a lose-lose situation. # Proposed technical implementation details (optional) * Ship a conhost package in the store that replaces the system conhost, just like how notepad does it. * Consider doing the same for the Windows Terminal Canary package so that we can get a slightly better usage coverage.
Issue-Feature,Product-Conhost,Needs-Tag-Fix
low
Major
2,585,800,515
pytorch
Inconsistent digamma result with other frameworks (1e-6 difference)
### 🐛 Describe the bug Description: The digamma function in PyTorch produces a result that differs by 1e-6 compared to TensorFlow, Chainer, and JAX for the same input. Expected Behavior: The digamma result should match across different frameworks as the calculation should be consistent. However, PyTorch's result differs slightly. ```python import numpy as np import torch import tensorflow as tf import chainer.functions as F import jax.numpy as jnp import jax.scipy.special as jsp def test_digamma(): # Input data input_data = np.array([0.10000000149011612], dtype=np.float32) # PyTorch digamma pytorch_result = torch.digamma(torch.tensor(input_data, dtype=torch.float32)).numpy().astype(np.float32) print(f"PyTorch digamma result: {pytorch_result}") # TensorFlow digamma tensorflow_result = tf.math.digamma(input_data).numpy().astype(np.float32) print(f"TensorFlow digamma result: {tensorflow_result}") # Chainer digamma chainer_result = F.digamma(chainer.Variable(input_data)).data.astype(np.float32) print(f"Chainer digamma result: {chainer_result}") # JAX digamma (using jax.scipy.special) jax_result = jsp.digamma(input_data).astype(np.float32) print(f"JAX digamma result: {jax_result}") if __name__ == "__main__": test_digamma() ``` ``` PyTorch digamma result: [-10.423756] TensorFlow digamma result: [-10.423755] Chainer digamma result: [-10.423755] JAX digamma result: [-10.423755] ``` ### Versions sys.platform: win32 Python version: 3.9.19 | packaged by conda-forge | (main, Mar 20 2024, 12:38:46) [MSC v.1929 64 bit (AMD64)] Locale: ('zh_CN', 'cp936') PyTorch version: 2.2.1+cpu CUDA available: False Installed packages: absl-py==2.1.0 astunparse==1.6.3 attrs==23.2.0 black==24.3.0 blinker==1.7.0 build==1.1.1 CacheControl==0.14.0 certifi==2024.2.2 chainer==7.8.1 charset-normalizer==3.3.2 cleo==2.1.0 click==8.1.7 cloudpickle==3.0.0 colorama==0.4.6 coverage==7.4.4 crashtest==0.4.1 dash==2.16.1 dash-core-components==2.0.0 dash-html-components==2.0.0 dash-table==5.0.0 decorator==5.1.1 distlib==0.3.8 dm-tree==0.1.8 dulwich==0.21.7 exceptiongroup==1.2.0 fastjsonschema==2.19.1 filelock==3.13.1 Flask==3.0.2 flatbuffers==24.3.7 fsspec==2024.3.0 gast==0.5.4 google-pasta==0.2.0 graphviz==0.20.1 grpcio==1.62.1 h5py==3.10.0 hypofuzz==24.2.3 hypothesis==6.99.9 hypothesmith==0.3.3 idna==3.6 importlib_metadata==7.0.2 iniconfig==2.0.0 installer==0.7.0 itsdangerous==2.1.2 jaraco.classes==3.3.1 jax==0.4.26 jaxlib==0.4.26 Jinja2==3.1.3 keras==3.2.0 keyring==24.3.1 lark==1.1.9 libclang==16.0.6 libcst==1.2.0 Markdown==3.6 markdown-it-py==3.0.0 MarkupSafe==2.1.5 mdurl==0.1.2 ml-dtypes==0.3.1 more-itertools==10.2.0 mpmath==1.3.0 msgpack==1.0.8 mypy-extensions==1.0.0 namex==0.0.7 nest-asyncio==1.6.0 networkx==3.2.1 numpy==1.26.4 opt-einsum==3.3.0 optree==0.11.0 packaging==24.0 pathspec==0.12.1 pexpect==4.9.0 pkginfo==1.10.0 platformdirs==4.2.0 plotly==5.20.0 pluggy==1.4.0 poetry==1.8.2 poetry-core==1.9.0 poetry-plugin-export==1.7.1 protobuf==4.25.3 psutil==5.9.8 ptyprocess==0.7.0 Pygments==2.17.2 pyproject_hooks==1.0.0 pytest==8.1.1 python-dateutil==2.9.0.post0 pytz==2024.1 pywin32-ctypes==0.2.2 PyYAML==6.0.1 rapidfuzz==3.7.0 requests==2.31.0 requests-toolbelt==1.0.0 retrying==1.3.4 rich==13.7.1 scipy==1.13.1 shellingham==1.5.4 six==1.16.0 sortedcontainers==2.4.0 sympy==1.12 tenacity==8.2.3 tensorboard==2.16.2 tensorboard-data-server==0.7.2 tensorflow==2.16.1 tensorflow-intel==2.16.1 tensorflow-io-gcs-filesystem==0.31.0 tensorflow-probability==0.24.0 termcolor==2.4.0 tf_keras==2.16.0 Theano==1.0.5 tomli==2.0.1 tomlkit==0.12.4 torch==2.2.1 torchaudio==2.2.1 torchvision==0.17.1 trove-classifiers==2024.3.3 typing-inspect==0.9.0 typing_extensions==4.11.0 tzdata==2024.1 urllib3==2.2.1 virtualenv==20.25.1 Werkzeug==3.0.1 wrapt==1.16.0 zipp==3.18.1 cc @mruberry @kshitij12345
triaged,module: special
low
Critical
2,585,921,190
deno
deno run throw Bus error (core dumped) after fresh install in crostini/arch chrome OS
Hi guys, I'm trying to run deno 2.0 on my linux container inside chromeOS, I'm getting this error: Bus error (core dumped) when I try to run these commands deno run https://deno.land/std/examples/welcome.ts deno run <any .ts file> deno repl deno lint and fmt works I tried install an older version, I get the same error, I tried also install this using dvm (deno version manager) and I get the same error I check and I've the deno executable under ~/.deno/bin...if I try to run this using `strace ./deno` I get this logs ``` strace ./deno execve("./deno", ["./deno"], 0x7ffeb9d36a00 /* 56 vars */) = 0 brk(NULL) = 0x573424e17000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=60851, ...}) = 0 mmap(NULL, 60851, PROT_READ, MAP_PRIVATE, 3, 0) = 0x78e5d4d32000 close(3) = 0 openat(AT_FDCWD, "/usr/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=14280, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x78e5d4d30000 mmap(NULL, 16400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x78e5d4d2b000 mmap(0x78e5d4d2c000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x78e5d4d2c000 mmap(0x78e5d4d2d000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x78e5d4d2d000 mmap(0x78e5d4d2e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x78e5d4d2e000 close(3) = 0 openat(AT_FDCWD, "/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=915712, ...}) = 0 mmap(NULL, 184808, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x78e5d4cfd000 mmap(0x78e5d4d01000, 147456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x78e5d4d01000 mmap(0x78e5d4d25000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x78e5d4d25000 mmap(0x78e5d4d29000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2b000) = 0x78e5d4d29000 close(3) = 0 openat(AT_FDCWD, "/usr/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=14352, ...}) = 0 mmap(NULL, 16400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x78e5d4cf8000 mmap(0x78e5d4cf9000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x78e5d4cf9000 mmap(0x78e5d4cfa000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x78e5d4cfa000 mmap(0x78e5d4cfb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x78e5d4cfb000 close(3) = 0 openat(AT_FDCWD, "/usr/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=14288, ...}) = 0 mmap(NULL, 16400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x78e5d4cf3000 mmap(0x78e5d4cf4000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x78e5d4cf4000 mmap(0x78e5d4cf5000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x78e5d4cf5000 mmap(0x78e5d4cf6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x78e5d4cf6000 close(3) = 0 openat(AT_FDCWD, "/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=973144, ...}) = 0 mmap(NULL, 975176, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x78e5d4c04000 mmap(0x78e5d4c12000, 536576, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x78e5d4c12000 mmap(0x78e5d4c95000, 376832, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x91000) = 0x78e5d4c95000 mmap(0x78e5d4cf1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xec000) = 0x78e5d4cf1000 close(3) = 0 openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340_\2\0\0\0\0\0"..., 832) = 832 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 fstat(3, {st_mode=S_IFREG|0755, st_size=2014520, ...}) = 0 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 mmap(NULL, 2034616, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x78e5d4a13000 mmap(0x78e5d4a37000, 1511424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x78e5d4a37000 mmap(0x78e5d4ba8000, 319488, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x195000) = 0x78e5d4ba8000 mmap(0x78e5d4bf6000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e3000) = 0x78e5d4bf6000 mmap(0x78e5d4bfc000, 31672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x78e5d4bfc000 close(3) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x78e5d4a11000 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x78e5d4a0e000 arch_prctl(ARCH_SET_FS, 0x78e5d4a0f340) = 0 set_tid_address(0x78e5d4a0f610) = 8927 set_robust_list(0x78e5d4a0f620, 24) = 0 rseq(0x78e5d4a0fc60, 0x20, 0, 0x53053053) = 0 mprotect(0x78e5d4bf6000, 16384, PROT_READ) = 0 mprotect(0x78e5d4cf1000, 4096, PROT_READ) = 0 mprotect(0x78e5d4cf6000, 4096, PROT_READ) = 0 mprotect(0x78e5d4cfb000, 4096, PROT_READ) = 0 mprotect(0x78e5d4d29000, 4096, PROT_READ) = 0 mprotect(0x78e5d4d2e000, 4096, PROT_READ) = 0 mprotect(0x573423331000, 2535424, PROT_READ) = 0 mprotect(0x78e5d4d75000, 8192, PROT_READ) = 0 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 munmap(0x78e5d4d32000, 60851) = 0 gettid() = 8927 gettid() = 8927 gettid() = 8927 gettid() = 8927 poll([{fd=0, events=0}, {fd=1, events=0}, {fd=2, events=0}], 3, 0) = 0 (Timeout) rt_sigaction(SIGPIPE, {sa_handler=SIG_IGN, sa_mask=[PIPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x78e5d4a501d0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 getrandom("\x9f\xbe\x4e\xdb\x06\xd6\x8e\xf5", 8, GRND_NONBLOCK) = 8 brk(NULL) = 0x573424e17000 brk(0x573424e38000) = 0x573424e38000 openat(AT_FDCWD, "/proc/self/maps", O_RDONLY|O_CLOEXEC) = 3 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 read(3, "57341c6f4000-57341f8b0000 r--p 0"..., 1024) = 1024 read(3, "libc.so.6\n78e5d4bfc000-78e5d4c04"..., 1024) = 1024 read(3, "e5d4cf9000 r--p 00000000 00:2d 6"..., 1024) = 1024 read(3, "8e5d4d2c000-78e5d4d2d000 r-xp 00"..., 1024) = 1024 close(3) = 0 sched_getaffinity(8927, 32, [0 1 2 3]) = 8 rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGSEGV, {sa_handler=0x573420f2aad0, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK|SA_SIGINFO, sa_restorer=0x78e5d4a501d0}, NULL, 8) = 0 rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 rt_sigaction(SIGBUS, {sa_handler=0x573420f2aad0, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK|SA_SIGINFO, sa_restorer=0x78e5d4a501d0}, NULL, 8) = 0 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x78e5d4d3e000 mprotect(0x78e5d4d3e000, 4096, PROT_NONE) = 0 sigaltstack({ss_sp=0x78e5d4d3f000, ss_flags=0, ss_size=8192}, NULL) = 0 prlimit64(0, RLIMIT_NOFILE, NULL, {rlim_cur=1024, rlim_max=1024*1024}) = 0 prlimit64(0, RLIMIT_NOFILE, {rlim_cur=1024*1024, rlim_max=1024*1024}, NULL) = 0 getrandom("\xf2\x56\x55\x84\x03\x58\xdc\x87\x62\xa3\x61\x1e\xb4\x8f\xf2\x7b", 16, GRND_INSECURE) = 16 epoll_create1(EPOLL_CLOEXEC) = 3 eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK) = 4 epoll_ctl(3, EPOLL_CTL_ADD, 4, {events=EPOLLIN|EPOLLRDHUP|EPOLLET, data={u32=0, u64=0}}) = 0 fcntl(3, F_DUPFD_CLOEXEC, 3) = 5 socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0, [6, 7]) = 0 fcntl(6, F_DUPFD_CLOEXEC, 3) = 8 epoll_ctl(5, EPOLL_CTL_ADD, 8, {events=EPOLLIN|EPOLLRDHUP|EPOLLET, data={u32=1, u64=1}}) = 0 write(4, "\1\0\0\0\0\0\0\0", 8) = 8 readlink("/proc/self/exe", "/home/demo/.deno/bin/deno", 256) = 25 openat(AT_FDCWD, "/home/demo/.deno/bin/deno", O_RDONLY|O_CLOEXEC) = 9 lseek(9, -12, SEEK_END) = 146644548 read(9, "\0\0\0\0\0\0\0\0\0\0\0\0", 12) = 12 close(9) = 0 brk(0x573424e68000) = 0x573424e68000 brk(0x573424e9c000) = 0x573424e9c000 brk(0x573424ebe000) = 0x573424ebe000 brk(0x573424ebd000) = 0x573424ebd000 brk(0x573424edf000) = 0x573424edf000 brk(0x573424ede000) = 0x573424ede000 brk(0x573424f04000) = 0x573424f04000 brk(0x573424f01000) = 0x573424f01000 brk(0x573424f22000) = 0x573424f22000 brk(0x573424f47000) = 0x573424f47000 brk(0x573424f6c000) = 0x573424f6c000 brk(0x573424f03000) = 0x573424f03000 gettid() = 8927 openat(AT_FDCWD, "/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 9 read(9, "0-3\n", 1024) = 4 close(9) = 0 gettid() = 8927 gettid() = 8927 uname({sysname="Linux", nodename="archlinux", ...}) = 0 pkey_alloc(0, PKEY_DISABLE_WRITE) = -1 EINVAL (Invalid argument) rt_sigaction(SIGRT_1, {sa_handler=0x78e5d4aa42b0, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK|SA_RESTART|SA_SIGINFO, sa_restorer=0x78e5d4a501d0}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x78e5d420d000 mprotect(0x78e5d420e000, 8388608, PROT_READ|PROT_WRITE) = 0 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x78e5d4a0d990, parent_tid=0x78e5d4a0d990, exit_signal=0, stack=0x78e5d420d000, stack_size=0x7ff380, tls=0x78e5d4a0d6c0} => {parent_tid=[8928]}, 88) = 8928 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 futex(0x573424e24658, FUTEX_WAKE_PRIVATE, 1) = 1 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x78e5cf7ff000 mprotect(0x78e5cf800000, 8388608, PROT_READ|PROT_WRITE) = 0 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x78e5cffff990, parent_tid=0x78e5cffff990, exit_signal=0, stack=0x78e5cf7ff000, stack_size=0x7ff380, tls=0x78e5cffff6c0} => {parent_tid=[8929]}, 88) = 8929 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 futex(0x573424e24188, FUTEX_WAKE_PRIVATE, 1) = 1 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x78e5ceffe000 mprotect(0x78e5cefff000, 8388608, PROT_READ|PROT_WRITE) = 0 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x78e5cf7fe990, parent_tid=0x78e5cf7fe990, exit_signal=0, stack=0x78e5ceffe000, stack_size=0x7ff380, tls=0x78e5cf7fe6c0} => {parent_tid=[8930]}, 88) = 8930 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 futex(0x573424e234f8, FUTEX_WAKE_PRIVATE, 1) = 1 mprotect(0x5734235aa000, 4096, PROT_READ) = 0 gettid() = 8927 gettid() = 8927 gettid() = 8927 gettid() = 8927 openat(AT_FDCWD, "/dev/urandom", O_RDONLY) = 9 fstat(9, {st_mode=S_IFCHR|0666, st_rdev=makedev(0x1, 0x9), ...}) = 0 ioctl(9, TCGETS, 0x7ffc1d435050) = -1 EINVAL (Invalid argument) read(9, "s\222\356\21U\24a\34Y\276d\367\177\7\252\254T\\{\364\311\277\2037\225K\2\216\275X\17\342"..., 4096) = 4096 close(9) = 0 gettid() = 8927 mmap(NULL, 524288, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x78e5d418d000 madvise(0x78e5d418d000, 524288, MADV_DONTFORK) = 0 mprotect(0x78e5d418d000, 16384, PROT_READ|PROT_WRITE) = 0 gettid() = 8927 mmap(0x3b1800000000, 68719472640, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x3b1800000000 madvise(0x3b1800000000, 68719472640, MADV_DONTFORK) = 0 munmap(0x3b2000000000, 34359734272) = 0 ioctl(2, TCGETS, {c_iflag=BRKINT|ICRNL|IMAXBEL, c_oflag=NL0|CR0|TAB0|BS0|VT0|FF0|OPOST|ONLCR, c_cflag=B38400|CS8|CREAD, c_lflag=ISIG|ICANON|ECHO|ECHOE|ECHOK|IEXTEN|ECHOCTL|ECHOKE, ...}) = 0 getcwd("/home/demo/.deno/bin", 512) = 21 statx(AT_FDCWD, "/home/demo/.deno/bin", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_ALL|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFDIR|0755, stx_size=8, ...}) = 0 openat(AT_FDCWD, "/home/demo/.deno/bin/deno.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/.deno/bin/deno.jsonc", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/.deno/bin/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/.deno/deno.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/.deno/deno.jsonc", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/.deno/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/deno.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/deno.jsonc", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/deno.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/deno.jsonc", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/deno.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/deno.jsonc", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/package.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/demo/.npmrc", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) readlink("/home", 0x7ffc1d437a20, 1023) = -1 EINVAL (Invalid argument) readlink("/home/demo", 0x7ffc1d437a20, 1023) = -1 EINVAL (Invalid argument) readlink("/home/demo/.cache", 0x7ffc1d437a20, 1023) = -1 EINVAL (Invalid argument) readlink("/home/demo/.cache/deno", 0x7ffc1d437a20, 1023) = -1 EINVAL (Invalid argument) readlink("/home/demo/.cache/deno/npm", 0x7ffc1d437a20, 1023) = -1 EINVAL (Invalid argument) openat(AT_FDCWD, "/proc/self/cgroup", O_RDONLY|O_CLOEXEC) = 9 statx(9, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0444, stx_size=0, ...}) = 0 lseek(9, 0, SEEK_CUR) = 0 read(9, "11:name=systemd:/user.slice/user"..., 128) = 128 read(9, "user@1000.service\n9:perf_event:/", 32) = 32 read(9, "\n8:net_cls,net_prio:/\n7:memory:/"..., 96) = 96 read(9, "er:/\n4:devices:/user.slice\n3:cpu"..., 256) = 69 read(9, "", 187) = 0 close(9) = 0 statx(AT_FDCWD, "/sys/fs/cgroup/cpu/", AT_STATX_SYNC_AS_STAT, STATX_ALL, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=STATX_ATTR_MOUNT_ROOT, stx_mode=S_IFDIR|0775, stx_size=0, ...}) = 0 openat(AT_FDCWD, "/sys/fs/cgroup/cpu/cpu.cfs_quota_us", O_RDONLY|O_CLOEXEC) = 9 statx(9, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=0, ...}) = 0 lseek(9, 0, SEEK_CUR) = 0 read(9, "-1\n", 32) = 3 read(9, "", 17) = 0 close(9) = 0 openat(AT_FDCWD, "/sys/fs/cgroup/cpu/cpu.cfs_period_us", O_RDONLY|O_CLOEXEC) = 9 statx(9, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0644, stx_size=0, ...}) = 0 lseek(9, 0, SEEK_CUR) = 0 read(9, "100000\n", 32) = 7 read(9, "", 13) = 0 close(9) = 0 sched_getaffinity(0, 128, [0 1 2 3]) = 8 mmap(NULL, 2101248, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x78e5cedfd000 mprotect(0x78e5cedfe000, 2097152, PROT_READ|PROT_WRITE) = 0 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x78e5ceffd990, parent_tid=0x78e5ceffd990, exit_signal=0, stack=0x78e5cedfd000, stack_size=0x1ff380, tls=0x78e5ceffd6c0} => {parent_tid=[8931]}, 88) = 8931 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 futex(0x78e5ceffd670, FUTEX_WAKE_PRIVATE, 1) = 1 mmap(NULL, 2101248, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x78e5cebfc000 mprotect(0x78e5cebfd000, 2097152, PROT_READ|PROT_WRITE) = 0 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x78e5cedfc990, parent_tid=0x78e5cedfc990, exit_signal=0, stack=0x78e5cebfc000, stack_size=0x1ff380, tls=0x78e5cedfc6c0} => {parent_tid=[8932]}, 88) = 8932 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 futex(0x78e5cedfc670, FUTEX_WAKE_PRIVATE, 1) = 1 pipe2([13, 14], O_CLOEXEC) = 0 pipe2([16, 17], O_CLOEXEC) = 0 fcntl(14, F_DUPFD_CLOEXEC, 3) = 19 fcntl(17, F_DUPFD_CLOEXEC, 3) = 20 mmap(NULL, 2101248, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x78e5ce9fb000 mprotect(0x78e5ce9fc000, 2097152, PROT_READ|PROT_WRITE) = 0 rt_sigprocmask(SIG_BLOCK, ~[], [], 8) = 0 clone3({flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, child_tid=0x78e5cebfb990, parent_tid=0x78e5cebfb990, exit_signal=0, stack=0x78e5ce9fb000, stack_size=0x1ff380, tls=0x78e5cebfb6c0} => {parent_tid=[8933]}, 88) = 8933 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 openat(AT_FDCWD, "/proc/self/cgroup", O_RDONLY|O_CLOEXEC) = 25 statx(25, "", AT_STATX_SYNC_AS_STAT|AT_EMPTY_PATH, STATX_ALL, {stx_mask=STATX_BASIC_STATS|STATX_MNT_ID, stx_attributes=0, stx_mode=S_IFREG|0444, stx_size=0, ...}) = 0 lseek(25, 0, SEEK_CUR) = 0 read(25, "11:name=systemd:/user.slice/user"..., 128) = 128 read(25, "user@1000.service\n9:perf_event:/", 32) = 32 +++ killed by SIGBUS (core dumped) +++ Bus error (core dumped) ``` I can see many messages like this openat(AT_FDCWD, "/home/demo/.deno/bin/deno.json", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) not sure if this could be the problem hope this report can be helpful, thank you guys, let me know if you need more details and info
bug
low
Critical
2,585,928,697
PowerToys
Should add the feature like scrcpy
### Description of the new feature / enhancement It would be great to have a marvelous feature in the power toys, scrcpy (screen copy) was a project from genymotion and very handy to use to copy the screen of the android phone or ios phone into the windows PC. I think it would be great if that project gets an GUI into this project and have several options to work on like, operate via PC's keyboard mouse, OTG support and many other. ### Scenario when this would be used? When ever a user wants to control there phone from the PC or like watching videos, play games or any other events. It would be helpful for them to use this tool. I think I would be the charge up the powerToys. ### Supporting information Here is the GitHub link for the scrcpy https://github.com/Genymobile/scrcpy
Needs-Triage
low
Minor
2,585,954,852
vscode
Jupyter Notebook rendering error
Type: <b>Bug</b> If a shell with 28+ lines of code is ended with indentation, vscode doesn't render text fully. VS Code version: Code 1.94.2 (384ff7382de624fb94dbaf6da11977bba1ecd427, 2024-10-09T16:08:44.566Z) OS version: Windows_NT x64 10.0.22631 Modes: <details> <summary>System Info</summary> |Item|Value| |---|---| |CPUs|11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (8 x 2803)| |GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled<br>webnn: disabled_off| |Load (avg)|undefined| |Memory (System)|15.68GB (5.73GB free)| |Process Argv|--crash-reporter-id 00ea5999-5ac9-44da-9ad4-ea0284323771| |Screen Reader|no| |VM|0%| </details><details><summary>Extensions (29)</summary> Extension|Author (truncated)|Version ---|---|--- vscode-eslint|dba|3.0.10 gitlens|eam|15.6.0 vscode-html-css|ecm|2.0.10 vsc-material-theme|Equ|34.7.5 vsc-material-theme-icons|equ|3.8.8 prettier-vscode|esb|11.0.0 auto-close-tag|for|0.5.15 copilot|Git|1.238.0 copilot-chat|Git|0.21.1 vscode-pull-request-github|Git|0.98.0 vsc-python-indent|Kev|1.18.0 vscode-gutter-preview|kis|0.31.2 vscode-language-pack-ko|MS-|1.94.2024100909 debugpy|ms-|2024.10.0 python|ms-|2024.16.1 vscode-pylance|ms-|2024.10.1 jupyter|ms-|2024.9.1 jupyter-keymap|ms-|1.1.2 jupyter-renderers|ms-|1.0.19 vscode-jupyter-cell-tags|ms-|0.1.9 vscode-jupyter-slideshow|ms-|0.1.6 remote-wsl|ms-|0.88.4 live-server|ms-|0.4.15 indent-rainbow|ode|8.3.1 vscode-gitignore-generator|pio|1.0.3 material-icon-theme|PKi|5.11.1 gitmoji-vscode|sea|1.2.5 pdf|tom|1.2.2 JavaScriptSnippets|xab|1.8.0 (1 theme extensions excluded) </details><details> <summary>A/B Experiments</summary> ``` vsliv368:30146709 vspor879:30202332 vspor708:30202333 vspor363:30204092 vscod805cf:30301675 binariesv615:30325510 vsaa593:30376534 py29gd2263:31024239 c4g48928:30535728 azure-dev_surveyone:30548225 962ge761:30959799 pythongtdpath:30769146 pythonnoceb:30805159 asynctok:30898717 pythonmypyd1:30879173 h48ei257:31000450 pythontbext0:30879054 cppperfnew:31000557 dsvsc020:30976470 pythonait:31006305 dsvsc021:30996838 0ee40948:31013168 a69g1124:31058053 dvdeprecation:31068756 dwnewjupyter:31046869 impr_priority:31102340 nativerepl1:31139838 refactort:31108082 pythonrstrctxt:31112756 wkspc-onlycs-t:31132770 nativeloc2:31134642 wkspc-ranged-t:31151552 cf971741:31144450 defaultse:31146405 iacca1:31156133 notype1:31157159 5fd0e150:31155592 ``` </details> ### Example ![Image](https://github.com/user-attachments/assets/61eb9dfb-8bc0-4d67-9a6a-70b2baab318a) <!-- generated by issue reporter -->
bug,notebook-layout
low
Critical
2,586,016,350
godot
Reading from a 2 dimensional array in multiple threads results in values that are not in the array
### Tested versions - Reproducible in: 4.3.stable ### System information Godot v4.3.stable (77dcf97d8) - Gentoo 2.15 - Wayland - Vulkan (Forward+) - integrated AMD Radeon Graphics (RADV RENOIR) - AMD Ryzen 5 5600U with Radeon Graphics (12 Threads) ### Issue description When reading a 2 dimensional array with multiple threads, some values read are not values that are in the original array. ### Steps to reproduce 1. Create 2 dimensional of at least size 2 (i.e. `[[], []]`) 2. Create multiple threads 3. Print values in 2d array 4. Notice values being printed that are not in the original array. ### Minimal reproduction project (MRP) [MRP.zip](https://github.com/user-attachments/files/17364430/MRP.zip)
topic:gdscript,needs testing
low
Major
2,586,035,710
svelte
Improve typing on `children` property in `HTMLAttributes`
### Describe the bug The elements in `'svelte/elements'` extend the following type: ```typescript export interface DOMAttributes<T extends EventTarget> { // Implicit children prop every element has // Add this here so that libraries doing `let { ...props }: HTMLButtonAttributes = $props()` don't need a separate interface children?: import('svelte').Snippet; } ``` The `children` property on the interface is intended to allow uses case like these: ```svelte <script lang='ts'> import type { HTMLButtonAttributes } from 'svelte/elements'; const { children, ...restProps }: HTMLButtonAttributes = $props(); </script> <button {...restProps}>{@render children?.()}</button> ``` But inadvertently now prevents uses like these: ```svelte <script lang='ts'> import type { HTMLButtonAttributes } from 'svelte/elements'; import type { Snippet } from 'svelte'; interface Props /* <-- error */ extends HTMLButtonAttributes { children: Snippet<[string]> } const { children, ...restProps }: Props = $props(); </script> <button {...restProps}>{@render children?.('foo')}</button> ``` With the error being: ``` Interface 'Props' incorrectly extends interface 'HTMLButtonAttributes'. Types of property 'children' are incompatible. Type 'Snippet<[string]>' is not assignable to type 'Snippet<[]>'. Target signature provides too few arguments. Expected 1 or more, but got 0. ``` It would be nice if this supported both patterns of usage. That said, it is _possible_ to use in its current state, though not great. ```typescript interface Props extends Omit<HTMLButtonAttributes, 'children'> { children: Snippet<[string]> } ``` ### Reproduction N/A ### Logs _No response_ ### System Info ```shell svelte: ^5.0.0-next.264 => 5.0.0-next.264 ``` ### Severity annoyance
types / typescript
low
Critical
2,586,035,795
three.js
Playground: adding a texture and using it as "normal" slot input results in exceptions
### Description Adding a texture and using it as "normal" slot input results in exceptions. I'm not sure if I'm expected to swizzle it down to three components – but I think at least there shouldn't be renderloop-breaking exceptions when not doing that. ### Reproduction steps 1. Drop a texture (any texture) into https://threejs.org/playground 2. Add a "Texture" node 3. Connect the output of "Texture" to the "normal" slot 4. Note exceptions in console **EDIT:** Looks like as a workaround, a UV node can be added – in other node-based shader editors UV0 is implicit, so I didn't expect that. <img width="623" alt="image" src="https://github.com/user-attachments/assets/2ab389f5-89d8-4cdc-b6b5-631ce2ca8524"> ### Code - ### Live example https://threejs.org/playground/ ### Screenshots <img width="1510" alt="image" src="https://github.com/user-attachments/assets/37e557e5-de03-420d-8f87-0ee77ee6e1b3"> ### Version latest ### Device Desktop ### Browser Chrome ### OS Windows, MacOS
Nodes
low
Minor
2,586,041,098
deno
Deno compile ERR_MODULE_NOT_FOUND
Version: Deno 2.0.0 I created a script with ```ts import pl from "npm:nodejs-polars@0.16.0"; ``` and it runs with ```sh deno run ``` (on Windows) but when I use ```sh deno compile ``` and then try to run the compiled exe it complains ```sh error: [ERR_MODULE_NOT_FOUND] Cannot find module '/node_modules/localhost/nodejs-polars/0.16.0/index.js' ```
bug,compile
low
Critical
2,586,041,543
rust
Diagnostic does not fire on marker trait that requires static
### Code ```rust #[diagnostic::on_unimplemented( message = "Arguments to embassy tasks must be 'static", label = "Not 'static", note = "See https://embassy.dev/... for more details on sharing", )] trait SecretStatic { } // // Option A impl<T: 'static> SecretStatic for T { } // // // Option B // impl SecretStatic for i8 // { // } // impl SecretStatic for u16 // { // } // impl SecretStatic for u32 // { // } // fn expanded_func<T, U, V>(t: T, u: U, v: V) where T: SecretStatic, U: SecretStatic, V: SecretStatic, { todo!() } struct Example { x: u32, } fn main() { expanded_func(1i8, 2u16, 3u32); let x = Example { x: 123 }; expanded_func::<&Example, u16, u32>(&x, 2u16, 3u32); } ``` ### Current output ``` error[E0597]: `x` does not live long enough --> src/main.rs:45:41 | 44 | let x = Example { x: 123 }; | - binding `x` declared here 45 | expanded_func::<&Example, u16, u32>(&x, 2u16, 3u32); | ------------------------------------^^------------- | | | | | borrowed value does not live long enough | argument requires that `x` is borrowed for `'static` 46 | } | - `x` dropped here while still borrowed For more information about this error, try `rustc --explain E0597`. ``` ### Desired output ``` error[E0277]: Arguments to embassy tasks must be 'static --> src/main.rs:45:21 | 45 | expanded_func::<&Example, u16, u32>(&x, 2u16, 3u32); | ^^^^^^^^ Not 'static | = help: the trait `SecretStatic` is not implemented for `&Example` = note: See https://embassy.dev/... for more details on sharing = help: the following other types implement trait `SecretStatic`: i8 u16 u32 note: required by a bound in `expanded_func` --> src/main.rs:31:8 | 29 | fn expanded_func<T, U, V>(t: T, u: U, v: V) | ------------- required by a bound in this function 30 | where 31 | T: SecretStatic, | ^^^^^^^^^^^^ required by this bound in `expanded_func` ``` ### Rationale and extra context We want to use a marker trait in macro expanded code for the embassy executor so that all arguments to tasks are 'static. This is a limitation of the executor, and is a common stumbling block for users. We wanted to use diagnostics for this to reduce the amount of work required in a proc macro to get good spans and errors, but noticed that diagnostics did not fire at all. They DO fire when we manually add impls for the type instead of using a blanket impl (this is not practical to support for arbitrary user types ### Other cases _No response_ ### Rust Version Tested with 1.81.0 stable and 1.82.0-beta.6, same output ### Anything else? _No response_
A-diagnostics,T-compiler,D-diagnostic-infra
low
Critical
2,586,058,695
Python
Adding Elliptic Curve Cryptography in Blockchain Directory
### Feature description ## Objective: Add a Python module named elliptic_curve_cryptography.py to the Blockchain directory, implementing the core principles of Elliptic Curve Cryptography (ECC) for securing blockchain transactions. ## Details: - The module will include functions for generating ECC key pairs (public and private keys). - It will demonstrate how ECC can be used to sign and verify transactions within the blockchain. - Provide examples of using ECC for encryption and decryption processes. - Ensure compatibility with other cryptographic mechanisms already present in the blockchain project. ## Benefits: - Strengthens the security of blockchain transactions using lightweight cryptography. - Enhances the ability to integrate with other blockchain features like digital signatures and smart contracts. - This feature will help optimize security with less computational overhead compared to other cryptographic methods. Can you assign it to me under the `hacktoberfest-accepted` label? I would like to work on this any many other blockchain related techs which I know about!
enhancement
medium
Minor
2,586,091,339
material-ui
Grid component not working for JoyUI
### Steps to reproduce Link to live example: (required) https://codesandbox.io/embed/f4kt4q?module=/src/Demo.tsx&fontsize=12 Steps: 1. Go to https://mui.com/joy-ui/react-grid/#basics 2. Open the code in CodeSandbox: https://cloud.pivonka.io/BbCvPyXM 3. See the Grid not working for JoyUI ### Current behavior The Grid is not working as expected for the JoyUI. The Grid component adds only padding around each child grid component, without any other sizing. ### Expected behavior JoyUIs Grid component should work like the MaterialUI component does, i.e. here: https://codesandbox.io/embed/9xswhw?module=/src/Demo.tsx&fontsize=12 ### Context _No response_ ### Your environment <details> <summary><code>npx @mui/envinfo</code></summary> ``` System: OS: Linux 6.10 Debian GNU/Linux 12 (bookworm) 12 (bookworm) Binaries: Node: 22.9.0 - /usr/local/bin/node npm: 10.8.3 - /usr/local/bin/npm pnpm: Not Found Browsers: Chrome: Not Found npmPackages: @emotion/react: ^11.13.3 => 11.13.3 @emotion/styled: ^11.13.0 => 11.13.0 @mui/base: 5.0.0-beta.40 @mui/core-downloads-tracker: 5.16.7 @mui/icons-material: ^6.1.0 => 6.1.2 @mui/joy: 5.0.0-beta.48 @mui/material: ^5.3.1 => 5.16.7 @mui/material-nextjs: ^6.1.0 => 6.1.2 @mui/private-theming: 5.16.6 @mui/styled-engine: 5.16.6 @mui/system: 5.16.7 @mui/types: 7.2.17 @mui/utils: 5.16.6 @types/react: ^18.3.5 => 18.3.5 react: ^18.3.1 => 18.3.1 react-dom: ^18.3.1 => 18.3.1 typescript: ^5.1.6 => 5.1.6 ``` </details> **Search keywords**: grid, joy
on hold,component: Grid,package: joy-ui
low
Minor
2,586,165,101
vscode
Folders in explorer disappear when clicked
Type: <b>Bug</b> 1. Clone FRRouting master branch: https://github.com/FRRouting/frr (d1433ee9a8fa374ee653dcf1fe6e852481b17119) 2. Try to open directories like bgpd, bfdd etc. VS Code version: Code 1.94.2 (384ff7382de624fb94dbaf6da11977bba1ecd427, 2024-10-09T16:08:44.566Z) OS version: Darwin arm64 24.0.0 Modes: <details> <summary>System Info</summary> |Item|Value| |---|---| |CPUs|Apple M1 Max (10 x 2400)| |GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled<br>webnn: disabled_off| |Load (avg)|3, 5, 5| |Memory (System)|32.00GB (1.17GB free)| |Process Argv|| |Screen Reader|no| |VM|0%| </details><details><summary>Extensions (34)</summary> Extension|Author (truncated)|Version ---|---|--- markdown-preview-github-styles|bie|2.1.0 ruff|cha|2024.50.0 gitlens|eam|15.6.0 EditorConfig|Edi|0.16.4 prettier-vscode|esb|11.0.0 dependi|fil|0.7.10 remotehub|Git|0.64.0 vscode-github-actions|git|0.27.0 vscode-pull-request-github|Git|0.98.0 go|gol|0.42.1 fluent-icons|mig|0.0.18 symbols|mig|0.0.20 vscode-docker|ms-|1.29.3 debugpy|ms-|2024.10.0 python|ms-|2024.16.1 vscode-pylance|ms-|2024.10.1 jupyter|ms-|2024.9.1 jupyter-keymap|ms-|1.1.2 jupyter-renderers|ms-|1.0.19 vscode-jupyter-cell-tags|ms-|0.1.9 vscode-jupyter-slideshow|ms-|0.1.6 remote-containers|ms-|0.388.0 remote-ssh|ms-|0.115.0 remote-ssh-edit|ms-|0.87.0 remote-wsl|ms-|0.88.4 vscode-remote-extensionpack|ms-|0.25.0 azure-repos|ms-|0.40.0 live-server|ms-|0.4.15 remote-explorer|ms-|0.4.3 remote-repositories|ms-|0.42.0 remote-server|ms-|1.5.2 rust-analyzer|rus|0.3.2146 jinjahtml|sam|0.20.0 even-better-toml|tam|0.19.2 (1 theme extensions excluded) </details> <!-- generated by issue reporter -->
bug,file-explorer
low
Critical
2,586,200,431
three.js
MaterialX: TextureNode does not have nodeType set
### Description When using the MaterialXLoader with TiledImage MaterialX nodes, three creates TextureNodes, however I do not see the output type of the TiledImage as the nodeType of the TextureNode as I'd expect. Typically there is a ConvertNode parenting the TextureNode with the correct type, however I've encountered a situation where the TextureNode is parented by a MathNode in which in1 has type color3 but the TextureNode should export a float type, here it's impossible to know which type should be used. This is an issue when exporting three nodes ### Solution When reading the tiledImage node from the MaterialX file, put the output type as the nodeType on the TextureNode ### Alternatives If there is some reason for this, or if I'm totally missing where this type can be found, please let me know! ### Additional context StackBlitz : https://stackblitz.com/edit/three-mtlx-ptdcen?file=main.js,mtlx%2Fbrick.mtlx&terminal=dev ![Screenshot 2024-10-14 at 11 57 32](https://github.com/user-attachments/assets/e875bad9-0c88-4b98-8a9f-b581bab5fbcf) _No response_
Nodes
low
Minor
2,586,220,763
PowerToys
Hosts File Editor: when deleting an entry, the editor should not jump to the top of the screen (e.g. scroll up automatically), but remember its context
### Microsoft PowerToys version 0.85.1 ### Installation method GitHub ### Running as admin No ### Area(s) with issue? Hosts File Editor ### Steps to reproduce Scroll down Delete an entry a couple of screens down and delete the entry. ### ✔️ Expected Behavior Edit stays in the same (scrolled down) position. Usage case for the expected behaviour: If you want to delete multiple entries, it is very cumbersome to (once you are scrolled down to the section that contains the deletion candidates), to scroll down after every deletion, and finding the location that you were at. ### ❌ Actual Behavior Editor jumps / scrolls to the top of the screen. ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,586,225,070
godot
Some meshes in scene file do not get updated when changing source file - other meshes do
### Tested versions - Reproducable in Godot v4.3.stable.official [77dcf97d8] ### System information Windows 11 - Godot v4.3.stable.official ### Issue description Godot is not updating prefabs correctly. The intended update architecture is: .blend (raw meshes) -> .tscn (set up scene) -> .tscn (scene variant) When editing a bodyshape of a 3d model the set up scene updates and SOME of the scene variants. Some just keep the old mesh shape. I even tried to add a cube to the blendfile which appeared in ALL the scenes. The bodyshape however was still only updated in some scenes. <img width="707" alt="godot_prefab_problem" src="https://github.com/user-attachments/assets/8cbe8c4d-76aa-4501-abf4-3388121a8665"> ### Steps to reproduce There are files for a giraffe and a racoon with different variants. The racoon should have a clearer half-moon-shaped head. The giraffe should have a thicker tongue. The screenshot shows the folder structure and the variants that do get updated an the ones that don't. Updating other objects like accessoires works however. It seems to be the body object only. ![godot_prefab_problem_folder_structure](https://github.com/user-attachments/assets/73ff0ed0-57d2-4a6b-9033-d0ae96311427) ### Minimal reproduction project (MRP) [prefab_bug_project.zip](https://github.com/user-attachments/files/17365371/prefab_bug_project.zip)
bug,topic:editor,needs testing,topic:import
low
Critical
2,586,238,779
flutter
regression in worst frame raster time on iOS for tiles_scroll_perf_ios__timeline_summary
On the engine roll here https://github.com/flutter/engine/compare/20369c5d2b93...66d397dff87a https://flutter-flutter-perf.skia.org/e/?begin=1726190651&end=1728888985&keys=X84a0007b39fb2fa1be1fc8a84f115bd1&requestType=0&selected=commit%3D42806%26name%3D%252Carch%253Dintel%252Cbranch%253Dmaster%252Cconfig%253Ddefault%252Cdevice_type%253DiPhone_11%252Cdevice_version%253Dnone%252Chost_type%253Dmac%252Csub_result%253Dworst_frame_rasterizer_time_millis%252Ctest%253Dtiles_scroll_perf_ios__timeline_summary%252C&xbaroffset=42806
P2,team-engine,triaged-engine
low
Minor
2,586,254,512
yt-dlp
https://watch.thechosen.tv/
### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE - [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field ### Checklist - [X] I'm reporting a new site support request - [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github.com/yt-dlp/yt-dlp#update-channels)) - [X] I've checked that all provided URLs are playable in a browser with the same IP and same login details - [X] I've checked that none of provided URLs [violate any copyrights](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#is-the-website-primarily-used-for-piracy) or contain any [DRM](https://en.wikipedia.org/wiki/Digital_rights_management) to the best of my knowledge - [X] I've searched [known issues](https://github.com/yt-dlp/yt-dlp/issues/3766) and the [bugtracker](https://github.com/yt-dlp/yt-dlp/issues?q=) for similar issues **including closed ones**. DO NOT post duplicates - [X] I've read the [guidelines for opening an issue](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#opening-an-issue) - [X] I've read about [sharing account credentials](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#are-you-willing-to-share-account-details-if-needed) and am willing to share it if required ### Region _No response_ ### Example URLs https://watch.thechosen.tv/video/184683594341 ### Provide a description that is worded well enough to be understood generic extractors do not work ### Provide verbose output that clearly demonstrates the problem - [X] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`) - [ ] If using API, add `'verbose': True` to `YoutubeDL` params instead - [X] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below ### Complete Verbose Output ```shell [debug] Command-line config: ['-vU', '-F', 'https://watch.thechosen.tv/video/184683594341'] [debug] Encodings: locale UTF-8, fs utf-8, pref UTF-8, out utf-8, error utf-8, screen utf-8 [debug] yt-dlp version nightly@2024.10.13.232959 from yt-dlp/yt-dlp-nightly-builds [cba786850] (pip) [debug] Python 3.12.3 (CPython x86_64 64bit) - Linux-6.8.0-45-generic-x86_64-with-glibc2.39 (OpenSSL 3.0.13 30 Jan 2024, glibc 2.39) [debug] exe versions: ffmpeg 6.1.1 (setts), ffprobe 6.1.1 [debug] Optional libraries: Cryptodome-3.20.0, brotli-1.1.0, certifi-2023.11.17, mutagen-1.46.0, requests-2.32.3, secretstorage-3.3.3, sqlite3-3.45.1, urllib3-2.0.7, websockets-13.1 [debug] Proxy map: {} [debug] Request Handlers: urllib, requests, websockets [debug] Loaded 1838 extractors [debug] Fetching release info: https://api.github.com/repos/yt-dlp/yt-dlp-nightly-builds/releases/latest Latest version: nightly@2024.10.13.232959 from yt-dlp/yt-dlp-nightly-builds yt-dlp is up to date (nightly@2024.10.13.232959 from yt-dlp/yt-dlp-nightly-builds) [generic] Extracting URL: https://watch.thechosen.tv/video/184683594341 [generic] 184683594341: Downloading webpage WARNING: [generic] Falling back on generic information extractor [generic] 184683594341: Extracting information [debug] Looking for embeds ERROR: Unsupported URL: https://watch.thechosen.tv/video/184683594341 Traceback (most recent call last): File "/home/chris/.local/lib/python3.12/site-packages/yt_dlp/YoutubeDL.py", line 1626, in wrapper return func(self, *args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/chris/.local/lib/python3.12/site-packages/yt_dlp/YoutubeDL.py", line 1761, in __extract_info ie_result = ie.extract(url) ^^^^^^^^^^^^^^^ File "/home/chris/.local/lib/python3.12/site-packages/yt_dlp/extractor/common.py", line 741, in extract ie_result = self._real_extract(url) ^^^^^^^^^^^^^^^^^^^^^^^ File "/home/chris/.local/lib/python3.12/site-packages/yt_dlp/extractor/generic.py", line 2533, in _real_extract raise UnsupportedError(url) yt_dlp.utils.UnsupportedError: Unsupported URL: https://watch.thechosen.tv/video/184683594341 ```
site-request,triage
low
Critical
2,586,255,562
godot
Alpha to coverage doesn't work in Compatibility Renderer
### Tested versions Tested in Godot 4.3 Stable (arch linux) ### System information Godot v4.3.stable unknown - Manjaro Linux #1 SMP PREEMPT_DYNAMIC Thu Oct 10 19:03:24 UTC 2024 - X11 - Vulkan (Mobile) - dedicated NVIDIA GeForce RTX 3060 (nvidia; 560.35.03) - Intel(R) Core(TM) i5-8600K CPU @ 3.60GHz (6 Threads) ### Issue description When enabling the alpha anti-aliasing settings in a standard material or custom shader with MSAA enabled, no change shows when in the compatibility renderer, bumping up to the mobile renderer shows proper alpha anti-aliasing with alpha to coverage or alpha to coverage and 1 This is extremely unfortunate as the compatibility renderer is currently preferred for standalone XR use cases (inlcuding webXR) and heavy aliasing caused by alpha test materials is visually distracting and intrusive in VR. Ideally the alpha to coverage could be properly supported in the compatibility renderer so that it could be used for these cases. Even better would be to make sure it works for WebXR as well (where performance targets are even tighter and the use of textured alpha planes is vital to making anything that will look good and perform at a decent level) ### Steps to reproduce enable 4x MSAA for 2d and 3d in project settings set to compatibility renderer create multiple intersecting planes with a material with transparency as such ![image](https://github.com/user-attachments/assets/2b6caee0-1426-4678-bda1-6fb253985b9f) set editor to half resolution to better see anti-aliasing effects notice that there is heavy aliasing switch to mobile renderer notice aliasing is now solved properly through alpha to coverage ### Minimal reproduction project (MRP) see above. If you are unable to reproduce I can trim down my project and include here.
topic:rendering,documentation,topic:3d
low
Major
2,586,314,724
ui
[bug]: ⨯ ./node_modules/@tiptap/extension-bullet-list/dist/index.js:3:1 Module not found: Can't resolve '@tiptap/extension-text-style'
### Describe the bug I was trying to run the editor and I know well that I installed tiptap very well ### Affected component/components Button ### How to reproduce Go to "..." ### Codesandbox/StackBlitz link _No response_ ### Logs _No response_ ### System Info ```bash Nothing about browsers, everything is going well ``` ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues
bug
low
Critical