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,605,934,815
TypeScript
bug: error message says 0n is truthy
### ๐Ÿ”Ž Search Terms falsey, truthy, bigint, PseudoBigInt, TS Error 2872, TS Error 2873, unnecessary condition, constant condition ### ๐Ÿ•— Version & Regression Information - This changed between versions 5.5.4 and 5.6.3, - https://github.com/microsoft/TypeScript/pull/59217 ([playground](https://www.typescriptlang.org/play/?target=99&ts=5.6.0-pr-59217-23#code/JYMwBAFADAdglGA3mFAoAvkA)) ### โฏ Playground Link https://www.typescriptlang.org/play/?target=99&ts=5.7.0-dev.20241022#code/JYMwBAFADAdglGA3mFAoAvkA ### ๐Ÿ’ป Code `0n` is falsy. ```ts if (0n) { // won't happen } ``` ### ๐Ÿ™ Actual behavior TS 2872: This kind of expression is always truthy. ### ๐Ÿ™‚ Expected behavior TS 2873: This kind of expression is always falsy. ### Additional information about the issue I am presuming that this is due to this function, which always reports `BigIntLiteral` as `PredicateSemantics.Always`, rather than checking for `0n`. https://github.com/microsoft/TypeScript/blob/c07da583afbfbb68930448b781832c74b3f713e6/src/compiler/checker.ts#L44498-L44532 Looks like this has been present since the always-truthy/always-falsey check was initially created: https://github.com/microsoft/TypeScript/pull/59217/files#diff-d9ab6589e714c71e657f601cf30ff51dfc607fc98419bf72e04f6b0fa92cc4b8R44293 I'd be happy to drop a PR if this is accepted and that's the issue.
Bug
low
Critical
2,605,964,822
PowerToys
Unable to remap CAPS, strange behavior
### Microsoft PowerToys version 0.85.1 ### Installation method GitHub ### Running as admin Yes ### Area(s) with issue? Keyboard Manager ### Steps to reproduce Issue 1 Remap CAPS to Ctrl+C Issue 2 Remap CAPS to Alt+Shift ### โœ”๏ธ Expected Behavior Issue 1 Remap and work perfectly, with CAPSLOCK completely disabled Issue 2 Allow me to remap CAPS to Alt+Shift ### โŒ Actual Behavior Issue 1 When press CAPS, it causes lag and trigger CAPS, and sometimes it also trigger Ctrl+C Issue 2 It suggest a third key in combo. But Alt+Shift itself is already language change shortcut ### Other Software ![Image](https://github.com/user-attachments/assets/b7c2406d-ed21-48d7-84fe-fe8238768f6d)
Issue-Bug,Needs-Triage
low
Minor
2,605,986,434
vscode
"Experimental" setting hover takes a surprisingly long time to show up
Testing #231887 I don't recall seeing a hover take as long as this one does to show up. I have not configured the default hover delay, are we using something custom here?
bug,settings-editor,confirmation-pending
low
Major
2,605,990,626
godot
Properties Defined in _GetPropertyList Revert to Default Values When Rebuilding Project
### Tested versions - Reproducible in: v4.3.stable.mono.official [77dcf97d8] ### System information Godot v4.3.stable.mono - Windows 11 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 3080 (NVIDIA; 31.0.15.3640) - Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz (12 Threads) ### Issue description Properties of nodes that are defined using `_GetPropertyList` will revert to their default values as defined by `_PropertyGetRevert` whenever the project is rebuilt under the following conditions: - The node does not have a field with the same name as the property (for example, if a `Dictionary` or array is being used to generate properties) - A change has been made to the C# code - The node is visible in the scene tree of any open editor tab (whether it's directly instantiated in the scene or is instantiated in another scene that's been added to the open one and that scene has it's "editable children" flag set) ### Steps to reproduce 1. Create a node with an attached C# script, and add a field to that script that represents a set of properties, such as a dictionary or array. 2. Override `_GetPropertyList` and use the field defined above to generate a set of properties (make sure to also override `_Get`, `_Set`, `_PropertyCanRevert`, and, most importantly, `_PropertyGetRevert` to make sure editing the property in the editor works properly). 3. Build the project, then change any of the properties corresponding to the field from step 1. 4. Make any change to the C# script (such as overriding `_Ready` to print out one of the property values), then rebuild, keeping the test node open in the editor. The property values set at the beginning of this step will change back to whatever `_PropertyGetRevert` returns for them. The attached MRP has already done steps 1 and 2. ### Minimal reproduction project (MRP) [getpropertylistrevertbug.zip](https://github.com/user-attachments/files/17479670/getpropertylistrevertbug.zip)
bug,needs testing,topic:dotnet
low
Critical
2,605,997,410
angular
docs: Feature roadmap
### Which @angular/* package(s) are relevant/related to the feature request? _No response_ ### Description It's often that I ask myself when a particular feature was introduced/released to the Angular framework. Just searching for it on Angular docs website or Googling usually does not provide an immediate answer. ### Proposed solution * Create a page similar to what can be seen here: https://www.angular.courses/caniuse. This would provide a good summary page. * The dedicated API page for the new feature should have the information about dates as well - when it was an experiment, when it was released to stable... * The experiment should have links to the relevant RFC if available * Stable feature should have a link to the relevant API docs page ![Image](https://github.com/user-attachments/assets/97a7942e-2542-4d0b-8656-9b0fa238125a) ### Alternatives considered none
area: docs
low
Major
2,606,020,182
flutter
[web:a11y] VoiceOver (and maybe others) ignores aria-selected
`aria-selected` is ignored by VoiceOver (and potentially other screen readers). To reproduce, `flutter run -d chrome` the [a11y test app](https://github.com/flutter/flutter/tree/master/dev/a11y_assessments). And try any of the nav bar and tab demos.
a: accessibility,platform-web,P1,team-web,triaged-web
medium
Minor
2,606,035,573
neovim
LSP completion: wrong startcol if label is not a keyword
### Problem For a snippet `/** */` labeled with `/**` I get `/**/** */` after completion at the end of line containing `/**` (see repros). ### Steps to reproduce I have prepared both the test case and the repro to manual usage (extracted from existing tests). Test case: ```lua it('starts in correct place if label is not a keyword', function() local completion_list = { isIncomplete = false, items = { { label = '/**', insertText = '/** ${1:hello} */', insertTextFormat = 2, }, }, } exec_lua(function() vim.o.completeopt = 'menuone,noselect' end) create_server(completion_list) feed('0i/<c-x><c-o>') retry(nil, nil, function() eq( 1, exec_lua(function() return vim.fn.pumvisible() end) ) end) feed('<C-n><C-y>') eq( { true, { '/** ${1:hello} */' } }, exec_lua(function() return { vim.snippet.active({ direction = 1 }), vim.api.nvim_buf_get_lines(0, 0, -1, true), } end) ) -- this assertion fails feed('<tab>') eq( #'/** hello */', exec_lua(function() return vim.api.nvim_win_get_cursor(0)[2] end) ) end) ``` init.lua: ```lua local function create_server(opts) opts = opts or {} local server = {} server.messages = {} function server.cmd(dispatchers) local closing = false local handlers = opts.handlers or {} local srv = {} function srv.request(method, params, callback) table.insert(server.messages, { method = method, params = params, }) local handler = handlers[method] if handler then handler(method, params, callback) elseif method == 'initialize' then callback(nil, { capabilities = opts.capabilities or {}, }) elseif method == 'shutdown' then callback(nil, nil) end local request_id = #server.messages return true, request_id end function srv.notify(method, params) table.insert(server.messages, { method = method, params = params, }) if method == 'exit' then dispatchers.on_exit(0, 15) end end function srv.is_closing() return closing end function srv.terminate() closing = true end return srv end return server end local completion_result = { isIncomplete = false, items = { { label = '/**', insertText = '/** ${1:hello} */', insertTextFormat = 2, kind = 15, detail = 'Snippet with non-word label', }, }, } local server = create_server({ capabilities = { completionProvider = {}, }, handlers = { ['textDocument/completion'] = function (_, _, callback) callback(nil, completion_result) end, }, }) -- vim.o.completeopt = 'menuone,noinsert' vim.o.completeopt = 'menuone,noselect' vim.fn.complete = vim.schedule_wrap(vim.fn.complete) vim.api.nvim_create_autocmd('UIEnter', { callback = function () vim.lsp.start({ name = 'dummy', cmd = server.cmd, on_attach = function (client, bufnr0) vim.lsp.completion.enable(true, client.id, bufnr0, {}) end, }) end }) ``` (start Insert mode, type `/` and complete with `<C-x><C-o><C-n><C-y>`). ### Expected behavior Provide the correct `startcol` to vim.fn.complete. I have doubts whether this problem is solvable. ### Nvim version (nvim -v) v0.11.0-dev-1013+gc8e47f648-dirty (dirty because of added test case only) ### Vim (not Nvim) behaves the same? no ### Operating system/version Debian Sid ### Terminal name/version alacritty 0.15.0-dev (6dbd785b) ### $TERM environment variable alacritty ### Installation from repo
bug,lsp
low
Minor
2,606,041,473
ui
[bug]: Cannot install sidebar-09
### Describe the bug Not able to install and use sidebar-09 ### Affected component/components Sidebar ### How to reproduce `npx shadcn@latest add sidebar-09` ### Codesandbox/StackBlitz link _No response_ ### Logs _No response_ ### System Info ```bash MacOS, Chrome ``` ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues
bug
low
Critical
2,606,089,514
deno
ERR_UNSUPPORTED_DIR_IMPORT when importing npm package
Version: Deno 2.0.2 Just try to use node-hue-api in Deno. And I see that it yield in ERR_UNSUPPORTED_DIR_IMPORT. Seems like it is due to the the way how .js/.ts/.mjs extension are handled in the file. Is there a way to pass --experimental-specifier-resolution=node to import to fix this. `deno install npm:node-hue-api ` `main.ts` file: `import * as hue from 'npm:node-hue-api'` `deno run main.ts ` Got the following errors from the console. `error: [ERR_UNSUPPORTED_DIR_IMPORT] Directory import 'file:///<project_dir>/node_modules/.deno/node-hue-api@5.0.0-beta.16/node_modules/node-hue-api/dist/esm/api/discovery' is not supported resolving ES modules imported from 'file:///<project_dir>/node_modules/.deno/node-hue-api@5.0.0-beta.16/node_modules/node-hue-api/dist/esm/index.js' `
upstream
low
Critical
2,606,110,372
vscode
[css] CSS intellisense for @starting-style
Type: <b>Bug</b> ```css .example { @starting-style { opacity: 0; } } ``` This css should not throw a syntax error, but @starting-style is not recognized, giving me the error `Unknown at rule @starting-stylecss(unknownAtRules)` Let me know if you need any more info VS Code version: Code 1.94.2 (384ff7382de624fb94dbaf6da11977bba1ecd427, 2024-10-09T16:08:44.566Z) OS version: Windows_NT x64 10.0.22631 Modes: Remote OS version: Linux x64 5.15.153.1-microsoft-standard-WSL2 <details><summary>Extensions (13)</summary> Extension|Author (truncated)|Version ---|---|--- 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 remote-explorer|ms-|0.4.3 remote-server|ms-|1.5.2 vscode-eslint|dba|3.0.10 gitlens|eam|15.6.2 prettier-vscode|esb|11.0.0 vscode-docker|ms-|1.29.3 psi-header|psi|1.23.1 code-spell-checker|str|3.0.1 (1 theme extensions excluded) </details><details> <summary>A/B Experiments</summary> ``` vsliv368:30146709 vspor879:30202332 vspor708:30202333 vspor363:30204092 vswsl492cf:30256860 vscod805:30301674 binariesv615:30325510 vsaa593:30376534 py29gd2263:31024239 vscaac:30438847 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 da93g388:31013173 dvdeprecation:31068756 dwnewjupyter:31046869 impr_priority:31102340 nativerepl2:31139839 refactort:31108082 pythonrstrctxt:31112756 wkspc-onlycs-t:31132770 nativeloc1:31134641 wkspc-ranged-t:31151552 cf971741:31144450 defaultse:31146405 iacca2:31156134 notype1:31157159 5fd0e150:31155592 dwcopilotcf:31162479 iconenabled:31158251 ``` </details> <!-- generated by issue reporter -->
help wanted,feature-request,css-less-scss
low
Critical
2,606,130,421
flutter
[cocoon] update createBranch for monorepo
`CreateBranch` is called from <TODO> with `branch` and `engine` parameters for branch name and engine sha. This does a search on gerrit commits in `flutter/recipes` looking for the commit nearest (`<=`) the engine sha commit and then creates the branch. ```dart '/api/create-branch': CreateBranch( branchService: branchService, config: config, authenticationProvider: authProvider, ), ``` If this isn't needed anymore in a monorepo, remove the code at a later date. If it is needed, then we're reverse searching gerrit for the `flutter/flutter` sha. This could be done via query parameter, adding an optional `monorepo`.
monorepo
low
Minor
2,606,151,623
TypeScript
Partial Mode: IntelliSense not available for Typescript
<!-- โš ๏ธโš ๏ธ 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, commit 384ff7382de - OS Version: Windows 22H2, WSL2 Ubuntu 22.04.5 LTS **I have the project open inside WSL in VSCode.** ### Steps to reproduce - Clone [this project](https://github.com/bhoov/vscode-manim), which is a vscode extension under development. - Run `npm install --save-dev` - Go to `extension.ts`. Write `vscode.window.` and don't get nice IntelliSense. - In the status bar, TypeScript shows: `Partial Mode โ€” Project Wide IntelliSense not available`. - The output from `TypeScript` is the same as in issue microsoft/vscode#191441 but without the last line ``` TSServer exited. Code: null. Signal: SIGTERM ``` When I manually restart the TSServer, I also get this line. ### What I tried to fix this - Reload without extensions -> same problem. - Run `npm clean-install` and `npm cache verify`. Also manually deleted `node_modules/` folder and ran `npm install --save-dev` again. - Check that built-in TypeScript/JavaScript is not disabled as described in issue microsoft/vscode#179589. - TypeScript Log. I added `"typescript.tsserver.log": "verbose"` to my `settings.json`, then visited the TypeScript file again. The log is as follows: <details> <summary>See full TypeScript log</summary> ``` Info 0 [17:52:28.235] Starting TS Server Info 1 [17:52:28.237] Version: 5.6.3 Info 2 [17:52:28.237] Arguments: C:\Users\domin\AppData\Local\Programs\Microsoft VS Code\Code.exe c:\Users\domin\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js --useInferredProjectPerProjectRoot --enableTelemetry --cancellationPipeName C:\Users\domin\AppData\Local\Temp\vscode-typescript\9dd41fe1d00c6981b53f\tscancellation-acc4ebec8c3b9042e090.tmp* --logVerbosity verbose --logFile c:\Users\domin\AppData\Roaming\Code\logs\20241022T174555\window2\exthost\vscode.typescript-language-features\tsserver-log-7sMOR4\tsserver.log --locale en --noGetErrOnBackgroundUpdate --canUseWatchEvents --validateDefaultNpmLocation --useNodeIpc Info 3 [17:52:28.237] Platform: win32 NodeVersion: v20.16.0 CaseSensitive: false Info 4 [17:52:28.237] ServerMode: undefined hasUnknownServerMode: undefined Info 5 [17:52:28.245] Binding... Info 6 [17:52:28.265] request: { "seq": 0, "type": "request", "command": "configure", "arguments": { "hostInfo": "vscode", "preferences": { "providePrefixAndSuffixTextForRename": true, "allowRenameOfImportPath": true, "includePackageJsonAutoImports": "auto", "excludeLibrarySymbolsInNavTo": true }, "watchOptions": {} } } Info 7 [17:52:28.265] Host information vscode Info 8 [17:52:28.266] Host watch options changed to undefined, it will be take effect for next watches. Info 9 [17:52:28.266] response: {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true} Perf 10 [17:52:28.266] 0::configure: async elapsed time (in milliseconds) 1.6583 Info 11 [17:52:28.267] request: { "seq": 1, "type": "request", "command": "compilerOptionsForInferredProjects", "arguments": { "options": { "module": "ESNext", "moduleResolution": "Bundler", "target": "ES2022", "jsx": "react", "allowImportingTsExtensions": true, "strictNullChecks": true, "strictFunctionTypes": true, "sourceMap": true, "allowJs": true, "allowSyntheticDefaultImports": true, "allowNonTsExtensions": true, "resolveJsonModule": true } } } Perf 12 [17:52:28.267] 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 0.4578 Info 13 [17:52:28.267] response: {"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true} Info 14 [17:52:28.267] request: { "seq": 2, "type": "request", "command": "updateOpen", "arguments": { "changedFiles": [], "closedFiles": [], "openFiles": [ { "file": "^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts", "fileContent": "import * as vscode from 'vscode';\nimport { window } from 'vscode';\n\nconst PREVIEW_COMMAND = `\\x0C checkpoint_paste()`; // \\x0C is Ctrl + L\n\n/**\n * Whether the extension is currently executing a Manim command.\n * \n * Note that this is not capturing whether the `checkpoint_paste()` command is\n * still running. Instead, it only captures whether reading/writing to clipboard\n * is currently happening to prevent unpredictable behavior.\n * \n * We don't need to capture the state of `checkpoint_paste()` because users\n * might actually want to preview a cell (or another one) again from the start\n * even though the animation is still running. With the new VSCode terminal\n * shell integration, it will automatically send a `Ctrl + C` to the terminal\n * when a new command is sent, so the previous command will be interrupted.\n */\nlet isExecuting = false;\n\n/**\n * Interactively previews the given Manim code by means of the\n * `checkpoint_paste()` method from Manim.\n * \n * This workflow is described in [1] and was adapted from Sublime to VSCode by\n * means of this extension. The main features are discussed in [2]. A demo\n * is shown in the video \"How I animate 3Blue1Brown\" by Grant Sanderson [3],\n * with the workflow being showcased between 3:32 and 6:48.\n * \n * [1] https://github.com/3b1b/videos#workflow\n * [2] https://github.com/ManimCommunity/manim/discussions/3954#discussioncomment-10933720\n * [3] https://youtu.be/rbu7Zu5X1zI\n *\n * @param code The code to preview (e.g. from a Manim cell or from a custom selection).\n */\nexport async function previewCode(code: string): Promise<void> {\n if (isExecuting) {\n vscode.window.showInformationMessage('Please wait a few seconds, then try again.');\n return;\n }\n isExecuting = true;\n\n try {\n const clipboardBuffer = await vscode.env.clipboard.readText();\n await vscode.env.clipboard.writeText(code);\n\n // Send command to interactive IPython shell\n // See the new Terminal shell integration API (from VSCode release 1.93)\n // https://code.visualstudio.com/updates/v1_93#_terminal-shell-integration-api\n const terminal = vscode.window.activeTerminal || vscode.window.createTerminal();\n if (terminal.shellIntegration) {\n terminal.shellIntegration.executeCommand(PREVIEW_COMMAND);\n } else {\n terminal.sendText(PREVIEW_COMMAND);\n }\n\n // Restore original clipboard content\n const timeout = vscode.workspace.getConfiguration(\"vscode-manim\").clipboardTimeout;\n setTimeout(async () => {\n await vscode.env.clipboard.writeText(clipboardBuffer);\n }, timeout);\n } catch (error) {\n vscode.window.showErrorMessage(`Error: ${error}`);\n } finally {\n isExecuting = false;\n }\n}\n", "scriptKindName": "TS" } ] } } Info 15 [17:52:28.269] getConfigFileNameForFile:: File: ^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts ProjectRootPath: undefined:: Result: undefined Info 16 [17:52:28.274] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info 17 [17:52:28.321] DirectoryWatcher:: Added:: WatchInfo: c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info 18 [17:52:28.322] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":1,"path":"c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules","recursive":true}} Info 19 [17:52:28.322] Elapsed:: 0.6050999999999931ms DirectoryWatcher:: Added:: WatchInfo: c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info 20 [17:52:28.329] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 21 [17:52:28.329] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":2,"path":"C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/node_modules","recursive":true}} Info 22 [17:52:28.329] Elapsed:: 0.13769999999999527ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 23 [17:52:28.331] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 24 [17:52:28.331] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":3,"path":"C:/Users/domin/AppData/Local/Programs/node_modules","recursive":true}} Info 25 [17:52:28.331] Elapsed:: 0.15390000000002146ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 26 [17:52:28.332] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 27 [17:52:28.332] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":4,"path":"C:/Users/domin/AppData/Local/node_modules","recursive":true}} Info 28 [17:52:28.333] Elapsed:: 0.14949999999998909ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 29 [17:52:28.334] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 30 [17:52:28.334] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":5,"path":"C:/Users/domin/AppData/node_modules","recursive":true}} Info 31 [17:52:28.334] Elapsed:: 0.26699999999993906ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 32 [17:52:28.990] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 33 [17:52:28.990] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":6,"path":"C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/^","recursive":true,"ignoreUpdate":true}} Info 34 [17:52:28.991] Elapsed:: 0.14400000000000546ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 35 [17:52:28.991] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 36 [17:52:28.991] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":7,"path":"C:/Users/domin/AppData/Local/Programs","recursive":false,"ignoreUpdate":true}} Info 37 [17:52:28.991] Elapsed:: 0.08600000000001273ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 38 [17:52:28.991] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 39 [17:52:28.991] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":8,"path":"C:/Users/domin/AppData/Local","recursive":false,"ignoreUpdate":true}} Info 40 [17:52:28.991] Elapsed:: 0.06970000000001164ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 41 [17:52:28.991] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 42 [17:52:28.991] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":9,"path":"C:/Users/domin/AppData","recursive":false,"ignoreUpdate":true}} Info 43 [17:52:28.991] Elapsed:: 0.08690000000001419ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 44 [17:52:28.999] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 45 [17:52:28.999] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":10,"path":"C:/Users/domin/AppData/Local/Programs/Microsoft VS Code","recursive":false,"ignoreUpdate":true}} Info 46 [17:52:28.999] Elapsed:: 0.11110000000007858ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info 47 [17:52:28.999] FileWatcher:: Added:: WatchInfo: c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info 48 [17:52:28.999] event: {"seq":0,"type":"event","event":"createFileWatcher","body":{"id":11,"path":"c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/package.json"}} Info 49 [17:52:29.000] FileWatcher:: Added:: WatchInfo: C:\Users\domin\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info 50 [17:52:29.000] event: {"seq":0,"type":"event","event":"createFileWatcher","body":{"id":12,"path":"C:\\Users\\domin\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\extensions\\node_modules\\typescript\\package.json"}} Info 51 [17:52:29.001] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 52 [17:52:29.001] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":13,"path":"C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/node_modules/@types","recursive":true,"ignoreUpdate":true}} Info 53 [17:52:29.001] Elapsed:: 0.05749999999989086ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/Microsoft VS Code/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 54 [17:52:29.001] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 55 [17:52:29.001] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":14,"path":"C:/Users/domin/AppData/Local/Programs/node_modules/@types","recursive":true,"ignoreUpdate":true}} Info 56 [17:52:29.001] Elapsed:: 0.04039999999986321ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/Programs/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 57 [17:52:29.001] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 58 [17:52:29.001] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":15,"path":"C:/Users/domin/AppData/Local/node_modules/@types","recursive":true,"ignoreUpdate":true}} Info 59 [17:52:29.001] Elapsed:: 0.040199999999913416ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/Local/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 60 [17:52:29.001] DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 61 [17:52:29.001] event: {"seq":0,"type":"event","event":"createDirectoryWatcher","body":{"id":16,"path":"C:/Users/domin/AppData/node_modules/@types","recursive":true,"ignoreUpdate":true}} Info 62 [17:52:29.001] Elapsed:: 0.03099999999994907ms DirectoryWatcher:: Added:: WatchInfo: C:/Users/domin/AppData/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info 63 [17:52:29.001] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed: 727.0486000000001ms Info 64 [17:52:29.001] Project '/dev/null/inferredProject1*' (Inferred) Info 65 [17:52:29.005] Files (64) c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2021.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.dom.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.dom.iterable.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.dom.asynciterable.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.webworker.importscripts.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.scripthost.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.array.include.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.intl.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.date.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.object.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.string.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.intl.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.intl.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.promise.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.regexp.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.array.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.object.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.string.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.symbol.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2019.intl.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.bigint.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.date.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.promise.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.string.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.intl.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2020.number.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2021.promise.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2021.string.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2021.weakref.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2021.intl.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.array.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.error.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.intl.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.object.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.string.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.regexp.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.decorators.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.decorators.legacy.d.ts c:/Users/domin/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts ^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts Library referenced via 'es5' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts Library referenced via 'es2015' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts Library referenced via 'es2016' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts Library referenced via 'es2017' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts Library referenced via 'es2018' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts Library referenced via 'es2019' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts Library referenced via 'es2020' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2021.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2021.d.ts Library referenced via 'es2021' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts Library referenced via 'es2022' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.dom.d.ts Library referenced via 'dom' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.dom.iterable.d.ts Library referenced via 'dom.iterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.dom.asynciterable.d.ts Library referenced via 'dom.asynciterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.webworker.importscripts.d.ts Library referenced via 'webworker.importscripts' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.scripthost.d.ts Library referenced via 'scripthost' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts Library referenced via 'es2015.core' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts Library referenced via 'es2015.collection' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts Library referenced via 'es2015.generator' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts Library referenced via 'es2015.iterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' Library referenced via 'es2015.iterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts' Library referenced via 'es2015.iterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts' Library referenced via 'es2015.iterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2019.object.d.ts' Library referenced via 'es2015.iterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts Library referenced via 'es2015.promise' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts Library referenced via 'es2015.proxy' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts Library referenced via 'es2015.reflect' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts Library referenced via 'es2015.symbol' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts' Library referenced via 'es2015.symbol' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' Library referenced via 'es2015.symbol' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts' Library referenced via 'es2015.symbol' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts' Library referenced via 'es2015.symbol' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts' Library referenced via 'es2015.symbol' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts Library referenced via 'es2015.symbol.wellknown' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts' Library referenced via 'es2015.symbol.wellknown' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2016.array.include.d.ts Library referenced via 'es2016.array.include' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2016.intl.d.ts Library referenced via 'es2016.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2017.date.d.ts Library referenced via 'es2017.date' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2017.object.d.ts Library referenced via 'es2017.object' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts Library referenced via 'es2017.sharedmemory' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2017.string.d.ts Library referenced via 'es2017.string' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2017.intl.d.ts Library referenced via 'es2017.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts Library referenced via 'es2017.typedarrays' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts Library referenced via 'es2018.asyncgenerator' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts Library referenced via 'es2018.asynciterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts' Library referenced via 'es2018.asynciterable' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2018.intl.d.ts Library referenced via 'es2018.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts' Library referenced via 'es2018.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.intl.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2018.promise.d.ts Library referenced via 'es2018.promise' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2018.regexp.d.ts Library referenced via 'es2018.regexp' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2019.array.d.ts Library referenced via 'es2019.array' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2019.object.d.ts Library referenced via 'es2019.object' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2019.string.d.ts Library referenced via 'es2019.string' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2019.symbol.d.ts Library referenced via 'es2019.symbol' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2019.intl.d.ts Library referenced via 'es2019.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2019.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.bigint.d.ts Library referenced via 'es2020.bigint' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.date.d.ts Library referenced via 'es2020.date' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.promise.d.ts Library referenced via 'es2020.promise' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts Library referenced via 'es2020.sharedmemory' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.string.d.ts Library referenced via 'es2020.string' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts Library referenced via 'es2020.symbol.wellknown' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.string.d.ts' Library referenced via 'es2020.symbol.wellknown' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.intl.d.ts Library referenced via 'es2020.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.bigint.d.ts' Library referenced via 'es2020.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.date.d.ts' Library referenced via 'es2020.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.number.d.ts' Library referenced via 'es2020.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2020.number.d.ts Library referenced via 'es2020.number' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2020.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2021.promise.d.ts Library referenced via 'es2021.promise' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2021.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2021.string.d.ts Library referenced via 'es2021.string' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2021.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2021.weakref.d.ts Library referenced via 'es2021.weakref' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2021.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2021.intl.d.ts Library referenced via 'es2021.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2021.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.array.d.ts Library referenced via 'es2022.array' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.error.d.ts Library referenced via 'es2022.error' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.intl.d.ts Library referenced via 'es2022.intl' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.object.d.ts Library referenced via 'es2022.object' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts Library referenced via 'es2022.sharedmemory' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.string.d.ts Library referenced via 'es2022.string' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.regexp.d.ts Library referenced via 'es2022.regexp' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es2022.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.decorators.d.ts Library referenced via 'decorators' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.decorators.legacy.d.ts Library referenced via 'decorators.legacy' from file 'resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts' resources/app/extensions/node_modules/typescript/lib/lib.es2022.full.d.ts Default library for target 'es2022' ^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts Root file specified for compilation Info 66 [17:52:29.005] ----------------------------------------------- Info 67 [17:52:29.008] Project '/dev/null/inferredProject1*' (Inferred) Info 67 [17:52:29.008] Files (64) Info 67 [17:52:29.008] ----------------------------------------------- Info 67 [17:52:29.008] Open files: Info 67 [17:52:29.008] FileName: ^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts ProjectRootPath: undefined Info 67 [17:52:29.008] Projects: /dev/null/inferredProject1* Perf 67 [17:52:29.008] 2::updateOpen: elapsed time (in milliseconds) 740.6395 Info 68 [17:52:29.008] response: {"seq":0,"type":"response","command":"updateOpen","request_seq":2,"success":true,"performanceData":{"updateGraphDurationMs":727.0486000000001},"body":true} Info 69 [17:52:29.008] event: {"seq":0,"type":"event","event":"typingsInstallerPid","body":{"pid":7012}} Info 70 [17:52:29.009] request: { "seq": 4, "type": "request", "command": "configure", "arguments": { "file": "^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts", "formatOptions": { "tabSize": 4, "indentSize": 4, "convertTabsToSpaces": true, "newLineCharacter": "\n", "insertSpaceAfterCommaDelimiter": true, "insertSpaceAfterConstructor": false, "insertSpaceAfterSemicolonInForStatements": true, "insertSpaceBeforeAndAfterBinaryOperators": true, "insertSpaceAfterKeywordsInControlFlowStatements": true, "insertSpaceAfterFunctionKeywordForAnonymousFunctions": true, "insertSpaceBeforeFunctionParenthesis": false, "insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, "insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false, "insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true, "insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true, "insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false, "insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false, "insertSpaceAfterTypeAssertion": false, "placeOpenBraceOnNewLineForFunctions": false, "placeOpenBraceOnNewLineForControlBlocks": false, "semicolons": "ignore", "indentSwitchCase": true }, "preferences": { "quotePreference": "auto", "importModuleSpecifierEnding": "auto", "jsxAttributeCompletionStyle": "auto", "allowTextChangesInNewFiles": false, "providePrefixAndSuffixTextForRename": true, "allowRenameOfImportPath": true, "includeAutomaticOptionalChainCompletions": true, "provideRefactorNotApplicableReason": true, "generateReturnInDocTemplate": true, "includeCompletionsForImportStatements": true, "includeCompletionsWithSnippetText": true, "includeCompletionsWithClassMemberSnippets": true, "includeCompletionsWithObjectLiteralMethodSnippets": true, "autoImportFileExcludePatterns": [], "autoImportSpecifierExcludeRegexes": [], "preferTypeOnlyAutoImports": false, "useLabelDetailsInCompletionEntries": true, "allowIncompleteCompletions": true, "displayPartsForJSDoc": true, "disableLineTextInReferences": true, "interactiveInlayHints": true, "includeCompletionsForModuleExports": true, "includeInlayParameterNameHints": "none", "includeInlayParameterNameHintsWhenArgumentMatchesName": false, "includeInlayFunctionParameterTypeHints": false, "includeInlayVariableTypeHints": false, "includeInlayVariableTypeHintsWhenTypeMatchesName": false, "includeInlayPropertyDeclarationTypeHints": false, "includeInlayFunctionLikeReturnTypeHints": false, "includeInlayEnumMemberValueHints": false } } } Info 71 [17:52:29.009] Host configuration update for file ^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts Info 72 [17:52:29.009] response: {"seq":0,"type":"response","command":"configure","request_seq":4,"success":true} Perf 73 [17:52:29.009] 4::configure: async elapsed time (in milliseconds) 0.3030 Info 74 [17:52:29.009] request: { "seq": 5, "type": "request", "command": "geterr", "arguments": { "delay": 0, "files": [ { "file": "^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts", "ranges": [ { "startLine": 1, "startOffset": 1, "endLine": 21, "endOffset": 4 } ] } ] } } Perf 75 [17:52:29.010] 5::geterr: async elapsed time (in milliseconds) 0.7549 Info 76 [17:52:29.022] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts","diagnostics":[]}} Info 77 [17:52:29.053] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts","diagnostics":[{"start":{"line":1,"offset":25},"end":{"line":1,"offset":33},"text":"Cannot find module 'vscode' or its corresponding type declarations.","code":2307,"category":"error"},{"start":{"line":2,"offset":24},"end":{"line":2,"offset":32},"text":"Cannot find module 'vscode' or its corresponding type declarations.","code":2307,"category":"error"}]}} Info 78 [17:52:29.055] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts","diagnostics":[{"start":{"line":2,"offset":1},"end":{"line":2,"offset":33},"text":"'window' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}} Info 79 [17:52:29.055] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5,"performanceData":{"diagnosticsDuration":[{"syntaxDiag":0.29919999999992797,"semanticDiag":29.1579999999999,"suggestionDiag":1.6519000000000688,"file":"^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts"}]}}} Info 80 [17:52:31.442] request: { "seq": 6, "type": "request", "command": "definitionAndBoundSpan", "arguments": { "file": "^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts", "line": 22, "offset": 52 } } Perf 81 [17:52:31.444] 6::definitionAndBoundSpan: elapsed time (in milliseconds) 2.2628 Info 82 [17:52:31.444] response: {"seq":0,"type":"response","command":"definitionAndBoundSpan","request_seq":6,"success":true,"body":{"definitions":[]}} Info 83 [17:52:32.732] request: { "seq": 7, "type": "request", "command": "documentHighlights", "arguments": { "file": "^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts", "line": 17, "offset": 50, "filesToSearch": [ "^/vscode-remote/wsl+ubuntu/home/dominic/dev/vscode-manim/src/previewCode.ts" ] } } Perf 84 [17:52:32.733] 7::documentHighlights: elapsed time (in milliseconds) 1.0080 Info 85 [17:52:32.733] response: {"seq":0,"type":"response","command":"documentHighlights","request_seq":7,"success":true,"body":[]} [tsserver - Copy.log](https://github.com/user-attachments/files/17479293/tsserver.-.Copy.log) ``` </details> Note that it probably cannot provide me IntelliSense due to ``` Cannot find module 'vscode' or its corresponding type declarations. ``` I'm also wondering about the `Arguments: ` line at the beginning of the log where it points to a `tsserver.js` in my app data (where VSCode is installed), and not inside WSL. But that might not mean anything since VSCode might load the server from anywhere.
Needs Investigation
low
Critical
2,606,195,174
rust
Unhelpful borrowing suggested when wrongly constructing an unsized type
### Code ```rust fn main() { let _x = &str::from("value"); } ``` ### Current output ``` error[E0277]: the trait bound `str: From<_>` is not satisfied --> src/main.rs:2:15 | 2 | let _x = &str::from("value"); | ^^^ the trait `From<_>` is not implemented for `str` | help: consider borrowing here | 2 | let _x = &&str::from("value"); | + 2 | let _x = &&mut str::from("value"); | ++++ error[E0277]: the size for values of type `str` cannot be known at compilation time --> src/main.rs:2:15 | 2 | let _x = &str::from("value"); | ^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time | = help: the trait `Sized` is not implemented for `str` = note: the return type of a function must have a statically known size For more information about this error, try `rustc --explain E0277`. ``` ### Desired output ``` error[E0277]: the size for values of type `str` cannot be known at compilation time --> src/main.rs:2:15 | 2 | let _x = &str::from("value"); | ^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time | = help: the trait `Sized` is not implemented for `str` = note: the return type of a function must have a statically known size For more information about this error, try `rustc --explain E0277`. ``` ### Rationale and extra context The first suggestion doesn't help and will just suggest stacking `&[mut]`s without solving the problem. It should be removed. ### Other cases _No response_ ### Rust Version ``` 1.84.0-nightly (2024-10-21 4392847410ddd67f6734) ``` ### Anything else? _No response_
A-diagnostics,T-compiler
low
Critical
2,606,206,695
vscode
Should be able to type in account type
Testing #229420, https://github.com/microsoft/vscode/issues/231880 Since I'm able to type in this quick pick, I'd expect to be able to type in the name of an account I'd like to auth with: ![Image](https://github.com/user-attachments/assets/1c91b087-1182-4862-8ef6-b8bdb24d3d8a) ![Image](https://github.com/user-attachments/assets/e6ab30f8-1a2f-4a8b-8053-e457a3479298) ``` Version: 1.95.0-insider (user setup) Commit: 804f450ca900d24db25e7174e8b6dfb3fb2a318c Date: 2024-10-22T13:30:10.100Z Electron: 32.2.1 ElectronBuildId: 10427718 Chromium: 128.0.6613.186 Node.js: 20.18.0 V8: 12.8.374.38-electron.0 OS: Windows_NT x64 10.0.26120 ```
feature-request,authentication
low
Minor
2,606,221,993
godot
`DEPTH` write glitch
### Tested versions godot 4.3 stable ### System information Kubuntu 22.04 ### Issue description In some runs, in some shaders, if you write to the `DEPTH` there will be a glitch happening. This issue will not happen if you don't write to `DEPTH`. By setting albedo to depth i have ensured that no such glitch exists in my shader code. https://github.com/user-attachments/assets/0d52509f-b2f8-414f-9a7c-e562abc0d0aa ### Steps to reproduce Not sure. it sometimes happens in the shader i sent. You just have to make an actual use of writing to DEPTH to end up seeing it. However it's much more likely to happen right after shader recompilation ### Minimal reproduction project (MRP) [depth_write_bug_report.zip](https://github.com/user-attachments/files/17480850/depth_write_bug_report.zip)
discussion
low
Critical
2,606,222,685
ui
[bug]: Inbox scroll area on shadcn-ui homepage Mail demo is too large
### Describe the bug Go to the https://ui.shadcn.com/ website and look at the Mail demo. Try inspecting or scrolling the items in the Inbox column. The scroll area is not fitting within the visible space and cuts off seeing lower down items. Not a great look for the first demo you see! <img width="1383" alt="image" src="https://github.com/user-attachments/assets/5c93ac31-71e9-4883-b3be-e174c7cc526b"> The `ScrollArea` component has a class of `h-screen` added [here](https://github.com/shadcn-ui/ui/blob/0d31293c7b38601e275fd0bc32704071101e0f5a/apps/www/app/(app)/examples/mail/components/mail-list.tsx#L19) which doesn't really make sense here in general. The demo area is smaller than the overall screen so it's already not going to be right height, and the inbox scroll area isn't the full height of the page either so it doesn't make sense even if the UI was full-page. To make this work properly the `div` wrapping that column (I believe generated by `Tabs` component) needs to be a flex column, the `h-screen` on the scroll wrapper needs to be removed and replaced with `min-h-0` which is the trick needed for a flex column child to fill available space without breaking out of flex container. ### Affected component/components Tabs, TabsContent ### How to reproduce Go to the https://ui.shadcn.com/ website and look at the Mail demo. Try inspecting or scrolling the items in the Inbox column. ### Codesandbox/StackBlitz link _No response_ ### Logs _No response_ ### System Info ```bash All OSes and browers tried show same bug since it is a CSS layout issue ``` ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues
bug
low
Critical
2,606,279,019
vscode
Pull > Pull From always give error to set git.config but not solving even set
<!-- โš ๏ธโš ๏ธ 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: Ubuntu 24.04 ```log Version: 1.94.2 Commit: 384ff7382de624fb94dbaf6da11977bba1ecd427 Date: 2024-10-09T16:08:44.566Z Electron: 30.5.1 ElectronBuildId: 10262041 Chromium: 124.0.6367.243 Node.js: 20.16.0 V8: 12.4.254.20-electron.0 OS: Linux x64 6.8.0-47-generic snap ```` Steps to Reproduce: - Open A Multi branched repo in VS Code - go to Source Control and from Source Control - Open the options and whenever I do do `Pull > Pull From ... ` and select any branch to merge that into my curent branch; it failed with below output ```log > git pull --tags origin release From github.com:author/repo-name * branch release -> FETCH_HEAD fatal: Not possible to fast-forward, aborting. ``` I remember once I set something when asked by vs code then set git.pull ff only or some other option; and now remove from that [ff] entry from .git/config file and now when do Pull > Pull From it shows below error ```log > git pull --tags origin release From github.com:author/repo-name * branch release -> FETCH_HEAD hint: You have divergent branches and need to specify how to reconcile them. hint: You can do so by running one of the following commands sometime before hint: your next pull: hint: hint: git config pull.rebase false # merge hint: git config pull.rebase true # rebase hint: git config pull.ff only # fast-forward only hint: hint: You can replace "git config" with "git config --global" to set a default hint: preference for all repositories. You can also pass --rebase, --no-rebase, hint: or --ff-only on the command line to override the configured default per hint: invocation. fatal: Need to specify how to reconcile divergent branches. ``` so I want to know what is equivalent to `git merge <branch> --no-commit`
feature-request,git
low
Critical
2,606,281,883
flutter
Add dependency on androidx.test.uiautomator to integration_test
The [androidx.test.uiautomator](https://developer.android.com/reference/kotlin/androidx/test/uiautomator/package-summary) package provides a lot of necessary functionality: - Screenshots - Finding Android Views - Interaction with Android Views - Notifications - Permissions Today, our `integration_test` plugin on Android does not depend on this package.
platform-android,f: integration_test,P1
medium
Minor
2,606,320,045
ui
[bug]: Form install (React 19/Nextjs 15)
### Describe the bug Unable to install form component due to peer dependency error in React 19. ### Affected component/components Form ### How to reproduce 1. Create new Nextjs v15 project (with React 19) 2. Init shadcn 3. Add form component (error) ### Codesandbox/StackBlitz link _No response_ ### Logs ```bash npm error code ERESOLVE npm error ERESOLVE unable to resolve dependency tree npm error npm error While resolving: timemanager@0.1.0 npm error Found: react@19.0.0-rc-65a56d0e-20241020 npm error node_modules/react npm error react@"19.0.0-rc-65a56d0e-20241020" from the root project npm error npm error Could not resolve dependency: npm error peer react@"^16.8.0 || ^17 || ^18 || ^19" from react-hook-form@7.53.1 npm error node_modules/react-hook-form npm error react-hook-form@"^7.53.1" from the root project npm error peer react-hook-form@"^7.0.0" from @hookform/resolvers@3.9.0 npm error node_modules/@hookform/resolvers npm error @hookform/resolvers@"^3.9.0" from the root project npm error npm error Fix the upstream dependency conflict, or retry npm error this command with --force or --legacy-peer-deps npm error to accept an incorrect (and potentially broken) dependency resolution. ``` ### System Info ```bash macOS 15.0.1 Nodejs v20.18.0 React 19.0.0-rc-65a56d0e-20241020 Nextjs 15.0.0 ``` ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues
bug
low
Critical
2,606,330,586
flutter
Unable to dismiss popup menu in specific iOS devices with voiceover
Copied from Google internal issue b/374241149. See this issue for more context, links, and repro video. Unable to dismiss the popup menu by double tapping outside the menu in voice over mode in specific iOS devices. PopupMenuButton pushes _PopupMenuRoute which extends PopupRoute which extends ModalRoute which uses for rendering the scrim. The double tap to dismiss is handled by the ModalBarrier by calling Navigator.maybePop(). Issue: This particular call is getting stuck in some iPhones (Example: My test device is an iPhone XR with iOS version 15.5). I tested this in the Hello Flutter codelab app. Upon further debugging, its getting stuck at exactly `await lastEntry.route.willPop()`. lastEntry.route here is [_PopupMenuRoute](https://github.com/flutter/flutter/blob/e38eb756bc5a5f9571e9bcef5b795ea0670d768b/packages/flutter/lib/src/material/popup_menu.dart#L851). Tracing the willPop() implementations using debug print statements, I observed the following: - _PopupMenuRoute does not have willPop() implementation. - PopupRoute does not have willPop() implementation. - ModalRoute's willPop() completes and calls super.willPop(). - LocalHistoryRoute's willPop() completes and calls super.willPop(). - ... no other implementations of willPop() in between. - Route's willPop() is called. - But apparently the last call is getting stuck for some reason because `await lastEntry.route.willPop()` is stuck without a return value here: https://github.com/flutter/flutter/blob/1d5087eb30382a763b17ddaff68011383faaa7d4/packages/flutter/lib/src/widgets/navigator.dart#L5335 ### Repro project The bug can be reproduced in any flutter app with the following: ``` PopupMenuButton<int>( // Set tooltip to empty to prevent the screen reader announcing // 'show menu'. tooltip: '', itemBuilder: (context) { return [ PopupMenuItem<int>( value: 1, child: Text('Item 1'), ), PopupMenuItem<int>( value: 2, child: Text('Item 2'), ), PopupMenuItem<int>( value: 3, child: Text('Item 3'), ), ]; }, ), ```
c: regression,platform-android,platform-ios,framework,f: material design,a: accessibility,customer: money (g3),has reproducible steps,P1,team-accessibility,triaged-accessibility,found in release: 3.27
medium
Critical
2,606,368,110
flutter
CVMetalTextureRef created by CVMetalTextureCacheCreateTextureFromImage is released while in use
### Steps to reproduce Originally spotted in: https://github.com/flutter/packages/pull/7466 https://github.com/flutter/packages/pull/7466#issuecomment-2377628306 https://github.com/flutter/packages/pull/7466#issuecomment-2405893042 Try something that uses `FlutterTexture` like `video_player` plugin on macos. For example https://github.com/flutter/packages/tree/main/packages/video_player/video_player_avfoundation/example and in this concrete sample set speed to 1.5 and click play (with some other videos this is not needed, and it is not the cause). Seems this is caused by a bug in the flutter engine. [There](https://developer.apple.com/documentation/corevideo/cvmetaltexturecachecreatetexturefromimage(_:_:_:_:_:_:_:_:_:)?language=objc) is this "You need to maintain a strong reference to textureOut until the GPU finishes execution of commands accessing the texture, because the system doesnโ€™t automatically retain it.". But here is `textureOut` released right after `CVMetalTextureCacheCreateTextureFromImage`: https://github.com/flutter/engine/blob/6f802b39ab0669eb6ba3272dff1d34e85febeb77/shell/platform/darwin/graphics/FlutterDarwinExternalTextureMetal.mm#L233-L249 https://github.com/flutter/engine/blob/6f802b39ab0669eb6ba3272dff1d34e85febeb77/shell/platform/darwin/graphics/FlutterDarwinExternalTextureMetal.mm#L177-L197 I thought that it flashes video frames from the past but I looked closely at video recorded from the screen and for example at one moment for 1/60 of a second it shows a frame from video X frames into the future. Maybe when the underlying `textureOut` is released this memory may be reused and overwritten by `AVPlayer` for decoding following video frames. _(There is also this "Note that Core Video doesnโ€™t explicitly declare any pixel format types as Metal compatible. Specify true for the kCVPixelBufferMetalCompatibilityKey option to create Metal-compatible buffers when creating or requesting Core Video pixel buffers.". Maybe the player should also specify this in `pixBuffAttributes` when creating `AVPlayerItemVideoOutput`?)_ It seems that macOS actually uses some different code path than ios but here it is the same, `cvMetalTexture` is released right after `CVMetalTextureCacheCreateTextureFromImage`: https://github.com/flutter/engine/blob/6f802b39ab0669eb6ba3272dff1d34e85febeb77/shell/platform/darwin/macos/framework/Source/FlutterExternalTexture.mm#L119-L135 https://github.com/flutter/engine/blob/6f802b39ab0669eb6ba3272dff1d34e85febeb77/shell/platform/darwin/macos/framework/Source/FlutterExternalTexture.mm#L77-L97 _(And this is eventually called from `embedder_external_texture_metal.mm` which handles things differently, it does not use flag like `_textureFrameAvailable` like is used in `FlutterDarwinExternalTextureMetal.mm` but instead it nullifies last stored image when is called `textureFrameAvailable` so if `copyPixelBuffer` returns NULL it will not show anything and will periodically call it until it returns non-NULL.)_ For example, changing [relevant lines](https://github.com/flutter/engine/blob/6f802b39ab0669eb6ba3272dff1d34e85febeb77/shell/platform/darwin/macos/framework/Source/FlutterExternalTexture.mm#L134-L135) to this fixes it (where `stored_cvMetalTexture` is for example a member variable in `FlutterExternalTexture`): ``` _textures = {(__bridge FlutterMetalTextureHandle)CVMetalTextureGetTexture(cvMetalTexture)}; //CVBufferRelease(cvMetalTexture); CVBufferRelease(stored_cvMetalTexture); stored_cvMetalTexture = cvMetalTexture; ``` ### Expected results Smooth video playback. ### Actual results Some frames of the video look like they are coming from the future. ### Code sample <details open><summary>Code sample</summary> https://github.com/flutter/packages/tree/main/packages/video_player/video_player_avfoundation/example </details> ### Screenshots or Video <details open> <summary>Screenshots / Video demonstration</summary> https://github.com/user-attachments/assets/43e51437-9e2a-41ab-8e51-50d0b8a29538 https://github.com/user-attachments/assets/09b3083e-7ed9-4f81-b58b-5f13d820ffd7 </details> ### 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.24.3, on macOS 14.5 23F79 darwin-x64) [โœ“] Xcode - develop for iOS and macOS (Xcode 15.4) ``` </details>
engine,platform-mac,a: platform-views,p: video_player,package,P2,team-macos,triaged-macos
low
Critical
2,606,420,574
deno
Error during Deno 2.0 installation on WSL: .deno/enveval: No such file or directory
Version: Deno 2.x.x When installing Deno 2.0 in a WSL (Windows Subsystem for Linux) environment, the following error appears in the terminal upon opening a new Bash session: ```bash -bash: /home/diegot4l/.deno/enveval: No such file or directory ``` After investigating, I found a problematic line in the ~/.bashrc file that was automatically added during the Deno installation: ```bash . "/home/diegot4l/.deno/env"eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" ``` The issue is that the line is malformed. It should be separated into two distinct commands: ```bash . "/home/diegot4l/.deno/env" eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" ``` ### Steps to reproduce the issue: 1. Install Deno 2.0 on a WSL environment using the official installation script (`curl -fsSL https://deno.land/install.sh | sh`) 2. Open a new terminal session in WSL. 3. The aforementioned error appears in the terminal. ### Expected behavior: The installation should correctly configure the `~/.bashrc` file without errors, allowing the use of Deno without additional issues. ### Development environment: * Deno 2.0 * WSL (Windows Subsystem for Linux) * Base operating system: Ubuntu 22.04 jammy ### Possible solution: Update the installation script to ensure the commands are correctly written to the `~/.bashrc` file, avoiding the error.
bug,windows,install
low
Critical
2,606,460,868
flutter
[cocoon] Track CiYaml usages that don't change in monorepo
null
monorepo
low
Minor
2,606,474,057
flutter
[cocoon] post-merge: update validate_all_ci_configs_test.dart to fetch engine ci.yaml from new location.
null
team-infra,P1,triaged-infra,monorepo
medium
Minor
2,606,492,459
flutter
Flutter web iframed doesn't take focus when clicking into it and receives no keyboard events
### Steps to reproduce 1. Requisites a. Accessibility (semantics tree) must not be enabled, and b. Flutter-web app must be iframed. 2. Click on one of the (non-text-field) widgets within the Flutter-web app. 3. Tab through the items using the physical keyboard. ### Expected results It should tab through items within the iframed Flutter-web content. ### Actual results The focus doesn't move into the Flutter-web iframe. Tabbing moves between items on the iframe host (wherever the focus was before clicking into the Flutter-web iframe). ### Code sample https://dartpad.dev/?id=874a9e03abdc675a741cb28e62cc9776 <details open><summary>Code sample</summary> ```dart import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; void main() async { runApp( MaterialApp( theme: ThemeData(useMaterial3: true), title: 'Test', home: Scaffold( body: Row( children: [ IconButton( icon: const Icon(Icons.play_arrow, semanticLabel: 'Play movie'), onPressed: () {}, ), IconButton( icon: const Icon(Icons.play_arrow, semanticLabel: 'Play movie'), onPressed: () {}, ), IconButton( icon: const Icon(Icons.play_arrow, semanticLabel: 'Play movie'), onPressed: () {}, ), ], ), ), ), ); // ISSUE: // 0. Requisites: (a) Accessibility (semantics tree) must not be enabled, and Flutter-web app must be iframed. // 1. Click on one of the buttons (say the middle one). // 2. Tab through the items using the physical keyboard. // // Expected: It should tab through items within the Flutter-web iframe. // Actual: The focus doesn't move into the Flutter-web iframe. Tabbing moves between items on the iframe host. // Uncomment this line to enable the Semantics tree, which makes it work properly. //SemanticsBinding.instance.ensureSemantics(); } ``` </details>
engine,platform-web,f: focus,P2,customer: samehere,team-web,triaged-web
low
Minor
2,606,628,255
pytorch
SDPA 2.5 Issue tracking
# Summary Track and burn down all issues with 2.5 release for sdpa: ## CUDNN backend issues: Mitigated #### Issues 1. https://github.com/pytorch/pytorch/issues/138529 2. https://github.com/huggingface/diffusers/issues/9704 3. https://github.com/pytorch/pytorch/issues/138340 / https://github.com/pytorch/pytorch/pull/138354 4. https://github.com/pytorch/pytorch/issues/139586 In light of the above we are going to make the CuDNN backend Opt-in by default. This can be done easily with the context manager for choosing backends I.e.: ```Python from torch.nn.attention import sdpa_kernel, SDPBackend with sdpa_kernel(SDPBackend.CUDNN_ATTENTION): out = F.scaled_dot_product_attention(q, k, v) ``` #### PRs 1. https://github.com/pytorch/pytorch/pull/138522 2. https://github.com/pytorch/pytorch/pull/139450 Fixes htod sync ## SDPA + Compile Issues: WIP 1. https://github.com/pytorch/pytorch/issues/133974 ##### Fixing PR: https://github.com/pytorch/pytorch/pull/138624. Verified on the repro as well as locally an E2E repro using [benchmark.py](https://github.com/huggingface/pytorch-image-models/blob/main/benchmark.py) Command: `python benchmark.py --model samvit_base_patch16 --torchcompile -b 32 --amp --img-size 256 --num-classes 10 --no-retry` #### 2. Illegal memory access with memory efficient attention https://github.com/pytorch/pytorch/issues/138772 #### Workaround: https://github.com/pytorch/pytorch/blob/0a38c0ec89ab393be91619393063ea30908a5d55/torch/_inductor/config.py#L398 Set this flag to False
triaged,module: sdpa
low
Minor
2,606,652,559
react
[Compiler Bug]: Lint plugin is too strict about passing hooks as values
### What kind of issue is this? - [ ] React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization) - [ ] babel-plugin-react-compiler (build issue installing or using the Babel plugin) - [X] eslint-plugin-react-compiler (build issue installing or using the eslint plugin) - [ ] react-compiler-healthcheck (build issue installing or using the healthcheck script) ### Link to repro https://github.com/adobe/react-spectrum/issues/7220 ### Repro steps In React Aria, we have several instances where we use dependency injection to reduce bundle size impact and allow global configuration. * [RouterProvider](https://react-spectrum.adobe.com/react-aria/routing.html#react-router) accepts a `useHref` prop that allows globally configuring all links in an app. Usually you pass a value directly imported from another library like `react-router-dom`, which should be safe (the function never changes). * Our implementation of [drag and drop](https://react-spectrum.adobe.com/react-aria/ListBox.html#reorderable) is dependency injected to reduce bundle size. Rather than building the entire drag and drop implementation (which can be quite large) into all components that support it and bloating their bundle size even if you aren't using drag and drop, the drag and drop hooks are injected only if you actually use it. Again, since the actual function implementation of these hooks are static and never change, this can be done safely. The new lint plugin now causes errors in these cases for users of our library (see https://github.com/adobe/react-spectrum/issues/7220), which I believe to be safe. The [documentation](https://react.dev/reference/rules/react-calls-components-and-hooks#never-pass-around-hooks-as-regular-values) describes a few reasons why this might be avoided in regular app code, such as debuggability and locality of behavior, but does not describe any reason why this would actually break anything. Swapping to a different function at runtime would be one such case, but if you don't do that I think it is safe. Is it possible to loosen this rule so that the _value_ of the hook that is passed into a component is checked to determine if it is static? For example, if you pass down a function in module scope, or something imported from another module, this should be safe since the value never changes, but if you pass down an unmemoized callback declared within a component as a hook this would not be allowed. ### How often does this bug happen? Every time ### What version of React are you using? N/A ### What version of React Compiler are you using? N/A
Type: Bug,Status: Unconfirmed,Component: Optimizing Compiler
low
Critical
2,606,656,943
pytorch
AOT eager accuracy regression in Segformer in 2.5.0 release
### ๐Ÿ› Describe the bug I noticed a qualitative regression in the inference quality when compiling a segformer-b0 model from the `transformers` library. This regression was introduced in the 2.5.0 release -- previously, the model output was qualitatively identical. The code below segments an example image. In **eager mode**, the segmentation looks like this: ![eager_2 4 1](https://github.com/user-attachments/assets/f8eb4299-d3b0-4bdf-ae78-3c3d0de45e4c) Previously, in 2.4.1, the AOT-inductor output was identical: ![aot_2 4 1](https://github.com/user-attachments/assets/ef4f97c6-79f8-4f7d-94f2-d65efb3b9151) Now, in 2.5.0, in the AOT-inductor output the predicted masks corresponding to sidewalk, car, tree, and lamppost have subtle artifacts: ![aot_2 5 0](https://github.com/user-attachments/assets/6e111976-acdf-4624-b654-2c1e66892e39) The code I used to create the visualization is below. Please let me know if a more minimal or quantitative example is required. Is this a genuine regression, or just a change in the default autotune config? Is there a way I can configure AOT Inductor to produce identical results to eager mode? Thank you! ``` import torch from torch import nn import requests from transformers import AutoImageProcessor, SegformerForSemanticSegmentation from PIL import Image import matplotlib.pyplot as plt import numpy as np from pathlib import Path device = torch.device('cuda') checkpoint = "nvidia/segformer-b0-finetuned-ade-512-512" # Prepare preprocessed input image_processor = AutoImageProcessor.from_pretrained(checkpoint, do_reduce_labels=True) url = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/tasks/segmentation_input.jpg" image = Image.open(requests.get(url, stream=True).raw) encoding = image_processor(image, return_tensors="pt") pixel_values = encoding.pixel_values.to(device) # Load model from huggingface model = SegformerForSemanticSegmentation.from_pretrained(checkpoint) model = model.to(device) with torch.no_grad(): # Export, aot-compile, and aot-load the model exported_model = torch.export.export( model, args=(), kwargs=dict(pixel_values=pixel_values), ) output_path = Path('segformer.so').resolve() compiled_path = torch._inductor.aot_compile( exported_model.module(), args=(), kwargs=dict(pixel_values=pixel_values), options={"aot_inductor.output_path": str(output_path)} ) compiled_model = torch._export.aot_load(str(output_path), device=str(device)) # Plot segmentation masks for each model for model_under_test, name in zip((model, compiled_model), ("Eager Model", "AOT Model")): outputs = model_under_test(pixel_values=pixel_values) logits = outputs.logits.cpu() upsampled_logits = nn.functional.interpolate( logits, size=image.size[::-1], mode="bilinear", align_corners=False, ) pred_seg = upsampled_logits.argmax(dim=1)[0] def ade_palette(): return np.asarray([ [0, 0, 0], [120, 120, 120], [180, 120, 120], [6, 230, 230], [80, 50, 50], [4, 200, 3], [120, 120, 80], [140, 140, 140], [204, 5, 255], [230, 230, 230], [4, 250, 7], [224, 5, 255], [235, 255, 7], [150, 5, 61], [120, 120, 70], [8, 255, 51], [255, 6, 82], [143, 255, 140], [204, 255, 4], [255, 51, 7], [204, 70, 3], [0, 102, 200], [61, 230, 250], [255, 6, 51], [11, 102, 255], [255, 7, 71], [255, 9, 224], [9, 7, 230], [220, 220, 220], [255, 9, 92], [112, 9, 255], [8, 255, 214], [7, 255, 224], [255, 184, 6], [10, 255, 71], [255, 41, 10], [7, 255, 255], [224, 255, 8], [102, 8, 255], [255, 61, 6], [255, 194, 7], [255, 122, 8], [0, 255, 20], [255, 8, 41], [255, 5, 153], [6, 51, 255], [235, 12, 255], [160, 150, 20], [0, 163, 255], [140, 140, 140], [250, 10, 15], [20, 255, 0], [31, 255, 0], [255, 31, 0], [255, 224, 0], [153, 255, 0], [0, 0, 255], [255, 71, 0], [0, 235, 255], [0, 173, 255], [31, 0, 255], [11, 200, 200], [255, 82, 0], [0, 255, 245], [0, 61, 255], [0, 255, 112], [0, 255, 133], [255, 0, 0], [255, 163, 0], [255, 102, 0], [194, 255, 0], [0, 143, 255], [51, 255, 0], [0, 82, 255], [0, 255, 41], [0, 255, 173], [10, 0, 255], [173, 255, 0], [0, 255, 153], [255, 92, 0], [255, 0, 255], [255, 0, 245], [255, 0, 102], [255, 173, 0], [255, 0, 20], [255, 184, 184], [0, 31, 255], [0, 255, 61], [0, 71, 255], [255, 0, 204], [0, 255, 194], [0, 255, 82], [0, 10, 255], [0, 112, 255], [51, 0, 255], [0, 194, 255], [0, 122, 255], [0, 255, 163], [255, 153, 0], [0, 255, 10], [255, 112, 0], [143, 255, 0], [82, 0, 255], [163, 255, 0], [255, 235, 0], [8, 184, 170], [133, 0, 255], [0, 255, 92], [184, 0, 255], [255, 0, 31], [0, 184, 255], [0, 214, 255], [255, 0, 112], [92, 255, 0], [0, 224, 255], [112, 224, 255], [70, 184, 160], [163, 0, 255], [153, 0, 255], [71, 255, 0], [255, 0, 163], [255, 204, 0], [255, 0, 143], [0, 255, 235], [133, 255, 0], [255, 0, 235], [245, 0, 255], [255, 0, 122], [255, 245, 0], [10, 190, 212], [214, 255, 0], [0, 204, 255], [20, 0, 255], [255, 255, 0], [0, 153, 255], [0, 41, 255], [0, 255, 204], [41, 0, 255], [41, 255, 0], [173, 0, 255], [0, 245, 255], [71, 0, 255], [122, 0, 255], [0, 255, 184], [0, 92, 255], [184, 255, 0], [0, 133, 255], [255, 214, 0], [25, 194, 194], [102, 255, 0], [92, 0, 255], ]) color_seg = np.zeros((pred_seg.shape[0], pred_seg.shape[1], 3), dtype=np.uint8) palette = np.array(ade_palette()) for label, color in enumerate(palette): color_seg[pred_seg == label, :] = color color_seg = color_seg[..., ::-1] # convert to BGR img = np.array(image) * 0.5 + color_seg * 0.5 # plot the image with the segmentation map img = img.astype(np.uint8) plt.figure(figsize=(15, 10)) plt.imshow(img) plt.title(f'Segmentation from {name}') plt.savefig(f'{name}.png') ``` ### Versions For 2.5.0 model: ``` Collecting environment information... PyTorch version: 2.5.0 Is debug build: False CUDA used to build PyTorch: 12.1 ROCM used to build PyTorch: N/A OS: Ubuntu 20.04.6 LTS (x86_64) GCC version: (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0 Clang version: Could not collect CMake version: Could not collect Libc version: glibc-2.31 Python version: 3.11.10 | packaged by conda-forge | (main, Oct 16 2024, 01:27:36) [GCC 13.3.0] (64-bit runtime) Python platform: Linux-5.15.0-124-generic-x86_64-with-glibc2.31 Is CUDA available: True CUDA runtime version: 12.1.105 CUDA_MODULE_LOADING set to: LAZY GPU models and configuration: GPU 0: NVIDIA GeForce RTX 4090 Nvidia driver version: 550.120 cuDNN version: Probably one of the following: /usr/lib/x86_64-linux-gnu/libcudnn.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_adv_infer.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_adv_train.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_cnn_infer.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_cnn_train.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_ops_infer.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_ops_train.so.8.9.0 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 Byte Order: Little Endian Address sizes: 48 bits physical, 48 bits virtual CPU(s): 32 On-line CPU(s) list: 0-31 Thread(s) per core: 2 Core(s) per socket: 16 Socket(s): 1 NUMA node(s): 1 Vendor ID: AuthenticAMD CPU family: 25 Model: 97 Model name: AMD Ryzen 9 7950X 16-Core Processor Stepping: 2 Frequency boost: enabled CPU MHz: 3000.000 CPU max MHz: 5879.8818 CPU min MHz: 3000.0000 BogoMIPS: 8999.13 Virtualization: AMD-V L1d cache: 512 KiB L1i cache: 512 KiB L2 cache: 16 MiB L3 cache: 64 MiB NUMA node0 CPU(s): 0-31 Vulnerability Gather data sampling: Not affected Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Reg file data sampling: Not affected Vulnerability Retbleed: Not affected Vulnerability Spec rstack overflow: Mitigation; safe RET 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 / Automatic IBRS; IBPB conditional; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp ibrs_enhanced vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local avx512_bf16 clzero irperf xsaveerptr rdpru wbnoinvd cppc arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid overflow_recov succor smca fsrm flush_l1d Versions of relevant libraries: [pip3] numpy==2.1.2 [pip3] torch==2.5.0 [pip3] torchaudio==2.5.0 [pip3] torchvision==0.20.0 [pip3] triton==3.1.0 [conda] Could not collect ``` For 2.4.1 model: ``` Collecting environment information... PyTorch version: 2.4.1+cu121 Is debug build: False CUDA used to build PyTorch: 12.1 ROCM used to build PyTorch: N/A OS: Ubuntu 20.04.6 LTS (x86_64) GCC version: (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0 Clang version: Could not collect CMake version: Could not collect Libc version: glibc-2.31 Python version: 3.8.10 (default, Sep 11 2024, 16:02:53) [GCC 9.4.0] (64-bit runtime) Python platform: Linux-5.15.0-124-generic-x86_64-with-glibc2.29 Is CUDA available: True CUDA runtime version: 12.1.105 CUDA_MODULE_LOADING set to: LAZY GPU models and configuration: GPU 0: NVIDIA GeForce RTX 4090 Nvidia driver version: 550.120 cuDNN version: Probably one of the following: /usr/lib/x86_64-linux-gnu/libcudnn.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_adv_infer.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_adv_train.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_cnn_infer.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_cnn_train.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_ops_infer.so.8.9.0 /usr/lib/x86_64-linux-gnu/libcudnn_ops_train.so.8.9.0 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 Byte Order: Little Endian Address sizes: 48 bits physical, 48 bits virtual CPU(s): 32 On-line CPU(s) list: 0-31 Thread(s) per core: 2 Core(s) per socket: 16 Socket(s): 1 NUMA node(s): 1 Vendor ID: AuthenticAMD CPU family: 25 Model: 97 Model name: AMD Ryzen 9 7950X 16-Core Processor Stepping: 2 Frequency boost: enabled CPU MHz: 3000.000 CPU max MHz: 5879.8818 CPU min MHz: 3000.0000 BogoMIPS: 8999.13 Virtualization: AMD-V L1d cache: 512 KiB L1i cache: 512 KiB L2 cache: 16 MiB L3 cache: 64 MiB NUMA node0 CPU(s): 0-31 Vulnerability Gather data sampling: Not affected Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Reg file data sampling: Not affected Vulnerability Retbleed: Not affected Vulnerability Spec rstack overflow: Mitigation; safe RET 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 / Automatic IBRS; IBPB conditional; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp ibrs_enhanced vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local avx512_bf16 clzero irperf xsaveerptr rdpru wbnoinvd cppc arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid overflow_recov succor smca fsrm flush_l1d Versions of relevant libraries: [pip3] numpy==1.24.1 [pip3] torch==2.4.1+cu121 [pip3] torchaudio==2.4.1+cu121 [pip3] torchvision==0.19.1+cu121 [pip3] triton==3.0.0 [conda] Could not collect ``` cc @ezyang @gchanan @zou3519 @kadeng @msaroufim @chauhang @penguinwu @voznesenskym @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @ipiszy @yf225 @chenyang78 @muchulee8 @ColinPeppler @amjames @desertfire @aakhundov @bdhirsh @avikchaudhuri @gmagogsfm @zhxchen17 @tugsbayasgalan @angelayi @suo @ydwu4
high priority,triaged,oncall: pt2,module: aotdispatch,module: pt2-dispatcher
low
Critical
2,606,658,147
next.js
Setting a metadata field to undefined prevents falling back to the parent component's metadata value
### Link to the code that reproduces this issue https://codesandbox.io/p/devbox/dark-architecture-go8s7s ### To Reproduce 1. Load the repro application in [Codesandbox](https://codesandbox.io/p/devbox/dark-architecture-go8s7s) 2. View source on the homepage - confirm that the "description" meta tag appears in the document <head> 3. Click the link to visit the About page - confirm that the "description" meta tag appears in the document <head> 4. Click the link to visit the Dashboard page - observe that no "description" meta tag appears in the <head> ### Current vs. Expected behavior Expected behavior: When the "description" field is either absent, or present but undefined in the metadata object, the value rendered on the page will be the fallback parent's "description" field. Actual behavior When the description field is absent from the metadata, the value will use the parent's metadata as expected. But if the field is present but undefined, no fallback will be used, and no description tag will be rendered. ### Provide environment information ```bash Operating System: Platform: linux Arch: x64 Version: #1 SMP PREEMPT_DYNAMIC Sun Aug 6 20:05:33 UTC 2023 Available memory (MB): 4102 Available CPU cores: 2 Binaries: Node: 20.9.0 npm: 9.8.1 Yarn: 1.22.19 pnpm: 8.10.2 Relevant Packages: next: 15.0.1-canary.2 // Latest available version is detected (15.0.1-canary.2). eslint-config-next: N/A react: 19.0.0-rc-69d4b800-20241021 react-dom: 19.0.0-rc-69d4b800-20241021 typescript: 5.3.3 Next.js Config: output: N/A ``` ### Which area(s) are affected? (Select all that apply) Metadata ### Which stage(s) are affected? (Select all that apply) next dev (local), next build (local), next start (local) ### Additional context It seems like a common use case to try to set a metadata field with a possibly undefined value. An example: ```typescript export async function generateMetadata( { params, searchParams }: Props ): Promise<Metadata> { // read route params const id = (await params).id // fetch data const product = await fetch(`https://.../${id}`).then((res) => res.json()) return { title: product.title, // use optional chaining to access the subtitle, which will fall back to undefined if the product is not present // this may also be undefined if subtitle is an optional field description: product?.subtitle } } ``` I would expect that if the value is undefined, the parent metadata value is shown. But instead the field is removed completely from the document. This is unexpected.
bug,Metadata
low
Minor
2,606,661,947
react
make `react-hooks/exhaustive-deps` respect destructuring assignment
I wanna exhaustive-deps will allow destructuring assignment syntax, for example ```ts type Props = { a: string b: number c: any[] } useMemo(() => { const { a, b, c } = props }, [props.a, props.b, props.c]) // <- should pass ideally ``` You might think I can do by this ```ts const { a, b, c } = props useMemo(() => { }, [a, b, c]) ``` But I **don't wanna assign to a new variable in the component-level**, imaging this component have hundred of lines, but also I don't want to write `props.a/b/c` inside hook again and again like this ```ts useMemo(() => { // hard to read code props.a * props.b - props.c + props.a + props.b + props.c }, [props.a, props.b, props.c]) // <- should pass ideally ``` This might related to https://github.com/facebook/react/issues/16265 but I think my issue is slightly different. I think we should still not allowed to call a function inside hook without full `props` as deps ```ts type Props = { a: () => void } useMemo(() => { const { a } = props a() // still not allowed }, [props.a]) // <- ERROR, should be props ```
Status: Unconfirmed
medium
Critical
2,606,677,993
flutter
`flutter <build> <ios>` regenerates plugins multiple times?
To reproduce: ```diff diff --git a/packages/flutter_tools/lib/src/flutter_plugins.dart b/packages/flutter_tools/lib/src/flutter_plugins.dart index 67e9799087..0f543219f5 100644 --- a/packages/flutter_tools/lib/src/flutter_plugins.dart +++ b/packages/flutter_tools/lib/src/flutter_plugins.dart @@ -1011,6 +1011,7 @@ Future<void> refreshPluginsList( bool macOSPlatform = false, bool forceCocoaPodsOnly = false, }) async { + print('>>> refreshPluginList() ::: ${StackTrace.current}'); final List<Plugin> plugins = await findPlugins(project); // Sort the plugins by name to keep ordering stable in generated files. plugins.sort((Plugin left, Plugin right) => left.name.compareTo(right.name)); ``` And then create and run an iOS (and I believe, MacOS) build: ```sh $ flutter create . --platforms ios >>> refreshPluginList() :: refreshPluginsList (package:flutter_tools/src/flutter_plugins.dart:1103:51) #1 FlutterProject.ensureReadyForPlatformSpecificTooling (package:flutter_tools/src/project.dart:373:11) #2 FlutterProject.regeneratePlatformSpecificTooling (package:flutter_tools/src/project.dart:344:12) #3 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:1793:21) >>> refreshPluginList() ::: #0 refreshPluginsList (package:flutter_tools/src/flutter_plugins.dart:1103:51) #1 processPodsIfNeeded (package:flutter_tools/src/macos/cocoapod_utils.dart:29:9) #2 buildXcodeProject (package:flutter_tools/src/ios/mac.dart:280:9) #3 _BuildIOSSubCommand.runCommand (package:flutter_tools/src/commands/build_ios.dart:701:37) ``` As far as I can tell, every `FlutterCommand` regenerates plugins as long as `shouldRunPub` is set, so when the code was added (again) in https://github.com/flutter/flutter/pull/146256 it might have been duplicate work? Defer to the iOS team, maybe they see something I don't. (This complicates conditionally removing the `.flutter-plugins` file which is why I'm bringing it up)
tool,P2,c: tech-debt,team-ios,triaged-ios,fyi-tool
low
Minor
2,606,707,786
godot
[4.4.dev3] Forward+ Vertex Lighting clipping on the bottom of viewport/camera/screen for some resolutions
### Tested versions - reproducable in v4.4.dev3.official [f4af8201b] ### System information Linux (Zorin OS) - Godot v4.4.dev3.official [f4af8201b] - Vulkan (Forward+) ### Issue description When trying the new vertex lighting I noticed an issue with the light clipping along the bottom of my screen. I have been trying to find out the cause and the only real noticable factor is that if I set the resolution of the game to match the project settings viewport width/height, the clipping dissapears. Here is a quick video I took, showing the "clipping" that I'm seeing: https://youtu.be/lCEZt4iT70U Of course I'm also expecting that maybe it's unique to linux but I'm hoping that it's not a significant factor :crossed_fingers: ### Steps to reproduce Below are the specific lines that I use to change the resolution within my settings menu. To reproduce, set the project viewport size to something like "1920x1080" and then use the lines below to set it to something else like "2560x1440" or "1280x720" ``` get_window().set_size(OPTION_LIST_[currentValue]) get_viewport().set_size(OPTION_LIST_[currentValue]) ``` Hope this helps, I am of course here for further assistance. ### Minimal reproduction project (MRP) Here is a small test project I threw together: https://github.com/Momonyaro/vertex-lit-issue There was another issue on my end with the settings menu, making it a bit flakey but it should help show the effect when you play around with the fullscreen/resolution toggle
bug,topic:rendering,needs testing
low
Major
2,606,756,721
three.js
Compute Pipeline - incorrect shader computeProgram bindings returned when using WebGL backend
### Description I've been loving all the great new uses for compute shaders now available, however, I've been battling many issues when using the WebGL backend. When using different, unique buffers inside of unique instances of compute node functions with the webgl backend, it seems that a part of the inner caching system will reuse the same shader program (seemingly like we'd want), but, then also use the same buffer... causing all kinds of weird things to happen as multiple calls to compute with different compute nodes end up targeting only a single bound buffer (usually the first one bound/used). The WebGPU backend handles these situations without any problems and correctly runs the compute program on the correct buffers. I've found a hacky workaround that fixes things - simply naming each compute node something unique. The issue can be shown by logging inside the Pipelines.js file: getForCompute(computeNode, bindings) { const { backend } = this; const data = this.get(computeNode); console.log("WebGL fallback - getForCompute", computeNode, data); // data.pipeline.cacheKey is unique for unique nodes meant to use unique corresponding buffers // however, data.pipeline.computeProgram is reused shader with incorrect buffer binding ### Reproduction steps - use forceWebGL: true, to use WebGL backend - use a loop to create multiple instanced buffers (storage(new StorageInstancedBufferAttribute(count, vecPackingSize), vecPackingType, count) as any;) - create compute Fn using buffers inside loop - view incorrect results (with particles, or geometry, etc) ### Code // Inside of a function eventually called multiple times with different buffers... const positionBuffer = _input.positionBuffer; const parentPositionUniform = this.parentPositionUniform; const count = this.count; const testUpdate = Fn(({ posBuffer, posSetValue }) => { const position = posBuffer.element(instanceIndex); position.x = posSetValue.x; position.y = posSetValue.y; position.z = posSetValue.z; return null; }); const testCompute = testUpdate({ posBuffer: positionBuffer, posSetValue: parentPositionUniform }).compute(count); testCompute.name = "Test"; // Non-unique name ----> Fails! // testCompute.name = "Test" + Helper.generateNewId(); // Unique name ----> Works! physicsManager.registerLateFrameCompute(testCompute); ### Live example (sorry, no live example) ### Screenshots _No response_ ### Version 169 ### Device Desktop ### Browser Chrome ### OS Windows
WebGL Backend
low
Minor
2,606,771,219
electron
Seeing `Hit debug scenario: 4` when loading about:blank into an iframe
### Preflight Checklist - [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. - [x] I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a bug report that matches the one I want to file, without success. ### Electron Version 32.0.0 ### What operating system(s) are you using? macOS ### Operating System Version 14.6.1 ### What arch are you using? arm64 (including Apple Silicon) ### Last Known Working Electron version 31.7.1 ### Expected Behavior I shouldn't see `ERROR:debug_utils` statements in the console when loading `about:blank` into an iframe. ### Actual Behavior I see the following when I set `iframe.src` to `about:blank`. ``` [18853:1022/171735.509459:ERROR:debug_utils.cc(14)] Hit debug scenario: 4 ``` ### Testcase Gist URL https://gist.github.com/fb33dfbc66d4e5ed49cc5801e2338364 ### Additional Information _No response_
platform/windows,platform/macOS,bug :beetle:,has-repro-gist,32-x-y
low
Critical
2,606,814,604
ui
[BUG][CLI]: Generating Tailwind Config Radius
### Describe the bug After generating via the CLI, which adjusts the tailwind.config.js, some characters are not removed, and the character ` remains in the borderRadius section. Example: `tailwind.config.js` ```javascript borderRadius: { lg: '`var(--radius)`', <- contains ` in string md: '`calc(var(--radius) - 4px)`', <- contains ` in string sm: 'calc(var(--radius) - 2px)' }, ``` ### Affected component/components All components using rounded-* ### How to reproduce 1. Generate a new project 2. Initialize shadcn 3. Check `tailwind.config.js` ### Codesandbox/StackBlitz link _No response_ ### Logs _No response_ ### System Info ```bash System: macOS 15.0.1 (24A348) Node: v20.11.0 ``` ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues
bug
low
Critical
2,606,858,034
go
cmd/go: env -changed misses CGO_LDFLAGS, others
### Go version go version go1.23.2 darwin/arm64 ### Output of `go env` in your module/workspace: ```shell GO111MODULE='' GOARCH='arm64' GOBIN='' GOCACHE='/Users/rob/Library/Caches/go-build' GOENV='/Users/rob/Library/Application Support/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='arm64' GOHOSTOS='darwin' GOINSECURE='' GOMODCACHE='/Users/rob/.local/share/go/pkg/mod' GONOPROXY='' GONOSUMDB='' GOOS='darwin' GOPATH='/Users/rob/.local/share/go' GOPRIVATE='' GOPROXY='https://proxy.golang.org,direct' GOROOT='/opt/homebrew/Cellar/go/1.23.2/libexec' GOSUMDB='sum.golang.org' GOTMPDIR='' GOTOOLCHAIN='local' GOTOOLDIR='/opt/homebrew/Cellar/go/1.23.2/libexec/pkg/tool/darwin_arm64' GOVCS='' GOVERSION='go1.23.2' GODEBUG='' GOTELEMETRY='local' GOTELEMETRYDIR='/Users/rob/Library/Application Support/go/telemetry' GCCGO='gccgo' GOARM64='v8.0' AR='ar' CC='cc' CXX='c++' CGO_ENABLED='1' GOMOD='/dev/null' GOWORK='' CGO_CFLAGS='-O2 -g' CGO_CPPFLAGS='' CGO_CXXFLAGS='-O2 -g' CGO_FFLAGS='-O2 -g' CGO_LDFLAGS='-w' PKG_CONFIG='pkg-config' GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/ry/6bttgkt51f14fhb1cwsg_6r00000gp/T/go-build1178049255=/tmp/go-build -gno-record-gcc-switches -fno-common' ``` ### What did you do? Change the default value of `CGO_LDFLAGS`: ```sh go env -w CGO_LDFLAGS=-w ``` Then check what values have changed: ``` go env -changed ``` ### What did you see happen? No output ### What did you expect to see? I expected the output to be: ``` CGO_LDFLAGS='-w' ``` When most env variables are overridden in this way, they correctly show up in the output. Since `CGO_LDFLAGS` is one of the values that shows up in the output of `go env` without any flags, I would also expect it to be reflected with `go env -changed` when the value was non-default. I have tested this with a few other cases and found inconsistent results, including: - Some flags like `CGO_ENABLED`, `GOPATH`, `GOPRIVATE`, and `CGO_CFLAGS` are respected - Other flags like `CGO_LDFLAGS` and `GCCGO` are not respected. It might literally be just these two, but I only tested a handful - `go env -changed` does not seem to report a value if the corresponding environment variable is exported. To reproduce: ``` $ go env -w CGO_ENABLED=0 $ go env -changed CGO_ENABLED='0' $ CGO_ENABLED=0 go env -changed $ CGO_ENABLED=2 go env -changed ``` I could not find anything in the original proposal (#34208) or in the docs (`go help env`) that would suggest why this would be the expected behavior.
NeedsInvestigation,GoCommand
low
Critical
2,606,887,426
rust
Repeated calls to the same `async` fn can cause stack overflow
<!-- Thank you for filing a bug report! ๐Ÿ› Please provide a short summary of the bug, along with any information you feel relevant to replicating the bug. --> I tried this code: ```rust #[tokio::main] async fn main() { test_buf().await; test_buf().await; test_buf().await; // ... Execute n times, do not use for loop } async fn test_buf(){ let buf = [0;65536]; test_buf0(&buf).await; } async fn test_buf0(_buf:&[u8]){} ``` I expected to see this code can work Instead, this happened: > fatal runtime error: stack overflow `rustc --version --verbose`: ``` rustc 1.82.0 (f6e511eec 2024-10-15) binary: rustc commit-hash: f6e511eec7342f59a25f7c0534f1dbea00d01b14 commit-date: 2024-10-15 host: x86_64-apple-darwin release: 1.82.0 LLVM version: 19.1.1 ``` This issue can also be directly reproduced on [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=fd1207e911482b5bf9392e7e7e90fb22), since the stack size on Linux is larger than that on Windows, the `n` times that can reproduce the issue is greater than that on Windows ``` Exited with signal 6 (SIGABRT): abort program Standard Error Compiling playground v0.0.1 (/playground) Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.38s Running `target/debug/playground` thread 'main' has overflowed its stack fatal runtime error: stack overflow ``` The tokio side think this should be a bug of the compiler, https://github.com/tokio-rs/tokio/issues/5909
T-compiler,C-bug,A-async-await
low
Critical
2,606,888,437
excalidraw
Cmd+C and Cmd+V not working on iPadOS
The app seems to work pretty flawlessly on Safari with an attached keyboard (iPadOS 17.4.1, iPad 10th Generation), but Cmd+C and Cmd+V don't seem to be caught by Excalidraw outside of text editing mode. This would be helpful to copy and paste shapes around diagrams, like you can in Safari + Chrome on macOS. I have verified that the key codes that are being sent on iPadOS are the same key codes that are being sent on macOS, so it seems like Excalidraw just isn't catching these keys / key codes out side of text editing mode on iPadOS. ``` Key: Meta, Key Code: 91 Key: c, Key Code: 67 Key: v, Key Code: 86 ``` Is this intentional behavior and is there a workaround if so? Please see the attached screen recordings to see this behavior compared on iPadOS and macOS. https://github.com/user-attachments/assets/9ad5e4d2-f022-4c5e-8fe8-909f5a7513aa https://github.com/user-attachments/assets/8d2730b4-2e59-4d42-9013-4918ce760407 Thanks
bug,safari
low
Minor
2,606,943,669
transformers
LLaMa 3 8B - offloaded_static cache - layer_device_map TypeError
### System Info Transformers Patch release v4.45.2 PyTorch 1.10.1 Python 3.8.0 cuda 11.1 NVIDIA V100 ### Who can help? @gante @zucchini-nlp @Rocketknight1 ### Information - [ ] The official example scripts - [X] My own modified scripts ### Tasks - [X] An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...) - [ ] My own task or dataset (give details below) ### Reproduction Stack trace: ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[19], line 1 ----> 1 outputs = pipe( 2 messages, 3 max_new_tokens=3000, 4 eos_token_id=terminators, 5 do_sample=True, 6 temperature=0.6, 7 top_p=0.9, 8 # cache_implementation="static", 9 cache_implementation="offloaded_static", 10 ) 11 assistant_response = outputs[0]["generated_text"][-1]["content"] 12 print(assistant_response) File python3.8/site-packages/transformers/pipelines/text_generation.py:267, in TextGenerationPipeline.__call__(self, text_inputs, **kwargs) 262 if isinstance( 263 text_inputs, (list, tuple, KeyDataset) if is_torch_available() else (list, tuple) 264 ) and isinstance(text_inputs[0], (list, tuple, dict)): 265 # We have one or more prompts in list-of-dicts format, so this is chat mode 266 if isinstance(text_inputs[0], dict): --> 267 return super().__call__(Chat(text_inputs), **kwargs) 268 else: 269 chats = [Chat(chat) for chat in text_inputs] # ๐Ÿˆ ๐Ÿˆ ๐Ÿˆ File python3.8/site-packages/transformers/pipelines/base.py:1268, in Pipeline.__call__(self, inputs, num_workers, batch_size, *args, **kwargs) 1260 return next( 1261 iter( 1262 self.get_iterator( (...) 1265 ) 1266 ) 1267 else: -> 1268 return self.run_single(inputs, preprocess_params, forward_params, postprocess_params) File python3.8/site-packages/transformers/pipelines/base.py:1275, in Pipeline.run_single(self, inputs, preprocess_params, forward_params, postprocess_params) 1273 def run_single(self, inputs, preprocess_params, forward_params, postprocess_params): 1274 model_inputs = self.preprocess(inputs, **preprocess_params) -> 1275 model_outputs = self.forward(model_inputs, **forward_params) 1276 outputs = self.postprocess(model_outputs, **postprocess_params) 1277 return outputs File python3.8/site-packages/transformers/pipelines/base.py:1175, in Pipeline.forward(self, model_inputs, **forward_params) 1173 with inference_context(): 1174 model_inputs = self._ensure_tensor_on_device(model_inputs, device=self.device) -> 1175 model_outputs = self._forward(model_inputs, **forward_params) 1176 model_outputs = self._ensure_tensor_on_device(model_outputs, device=torch.device("cpu")) 1177 else: File python3.8/site-packages/transformers/pipelines/text_generation.py:370, in TextGenerationPipeline._forward(self, model_inputs, **generate_kwargs) 367 if "generation_config" not in generate_kwargs: 368 generate_kwargs["generation_config"] = self.generation_config --> 370 generated_sequence = self.model.generate(input_ids=input_ids, attention_mask=attention_mask, **generate_kwargs) 371 out_b = generated_sequence.shape[0] 372 if self.framework == "pt": File python3.8/site-packages/torch/autograd/grad_mode.py:28, in _DecoratorContextManager.__call__.<locals>.decorate_context(*args, **kwargs) 25 @functools.wraps(func) 26 def decorate_context(*args, **kwargs): 27 with self.__class__(): ---> 28 return func(*args, **kwargs) File python3.8/site-packages/transformers/generation/utils.py:1921, in GenerationMixin.generate(self, inputs, generation_config, logits_processor, stopping_criteria, prefix_allowed_tokens_fn, synced_gpus, assistant_model, streamer, negative_prompt_ids, negative_prompt_attention_mask, **kwargs) 1915 if ( 1916 inputs_tensor.shape[1] != input_ids_length 1917 and model_input_name == "inputs_embeds" 1918 and not self.config.is_encoder_decoder 1919 ): 1920 max_cache_length += inputs_tensor.shape[1] -> 1921 self._prepare_cache_for_generation( 1922 generation_config, model_kwargs, assistant_model, batch_size, max_cache_length, device 1923 ) 1925 # 8. determine generation mode 1926 generation_mode = generation_config.get_generation_mode(assistant_model) File python3.8/site-packages/transformers/generation/utils.py:1566, in GenerationMixin._prepare_cache_for_generation(self, generation_config, model_kwargs, assistant_model, batch_size, max_cache_length, device) 1561 if generation_config.cache_implementation == "static" and not self._supports_static_cache: 1562 raise ValueError( 1563 "This model does not support `cache_implementation='static'`. Please check the following " 1564 "issue: https://github.com/huggingface/transformers/issues/28981" 1565 ) -> 1566 model_kwargs[cache_name] = self._get_cache( 1567 cache_implementation=generation_config.cache_implementation, 1568 batch_size=max(generation_config.num_beams, generation_config.num_return_sequences) * batch_size, 1569 max_cache_len=max_cache_length, 1570 device=device, 1571 model_kwargs=model_kwargs, 1572 ) 1573 elif generation_config.cache_implementation == "quantized": 1574 if not self._supports_quantized_cache: File python3.8/site-packages/transformers/generation/utils.py:1476, in GenerationMixin._get_cache(self, cache_implementation, batch_size, max_cache_len, device, model_kwargs) 1466 layer_device_map = get_layer_device_map(execution_device_map) 1468 cache_kwargs = { 1469 "config": self.config.get_text_config(), 1470 "max_batch_size": batch_size, (...) 1474 "layer_device_map": layer_device_map, 1475 } -> 1476 self._cache = cache_cls(**cache_kwargs) 1477 if requires_cross_attention_cache: 1478 encoder_kwargs = cache_kwargs.copy() TypeError: __init__() got an unexpected keyword argument 'layer_device_map' ``` Code: ``` from transformers import pipeline import torch cuda_dev_id = 2 model_id = "meta-llama/Meta-Llama-3-8B-Instruct" pipe = pipeline( "text-generation", model=model_id, model_kwargs={"torch_dtype": torch.float16}, # bfloat16 breaks on torch 1.10.1 device="cuda:" + str(cuda_dev_id) ) role = """ You are an AI assistant REDACTED. """ prompt = """Here is the id: """ + "\n" + str(example_id) + "\n\n" + """Here is the cid: """ + "\n" + example_cid + "\n\n" + """Here is the s: """ + "\n"+ example_s + "\n\n" + """Here is the c: """ + "\n" + example_c messages = [ {"role": "system", "content": role}, {"role": "user", "content": prompt}, ] terminators = [ pipe.tokenizer.eos_token_id, pipe.tokenizer.convert_tokens_to_ids("<|eot_id|>") ] outputs = pipe( messages, max_new_tokens=3000, eos_token_id=terminators, do_sample=True, temperature=0.6, top_p=0.9, cache_implementation="offloaded_static", ) assistant_response = outputs[0]["generated_text"][-1]["content"] print(assistant_response) ``` ### Expected behavior assistant_response should be a generated response from the LLaMa model.
Core: Pipeline,WIP,bug,Cache
low
Critical
2,606,950,065
neovim
LSP: `definition` "Cursor position outside of buffer" error
### Problem Following 0083e03d, `vim.lsp.buf.definition` can throw an error: ``` Error executing vim.schedule lua callback: /usr/local/share/nvim/runtime/lua/vim/lsp/buf.lua:102: Cursor position outside buffer stack traceback: [C]: in function 'nvim_win_set_cursor' /usr/local/share/nvim/runtime/lua/vim/lsp/buf.lua:102: in function 'on_response' /usr/local/share/nvim/runtime/lua/vim/lsp/buf.lua:121: in function 'handler' /usr/local/share/nvim/runtime/lua/vim/lsp/client.lua:681: in function '' vim/_editor.lua: in function <vim/_editor.lua:0> ``` This is reproducible with denols and the custom handler for it in nvim-lspconfig. I think this is a neovim core bug considering it was working prior to 0083e03d. ### Steps to reproduce using "nvim -u minimal_init.lua" Handlers are ripped from nvim-lspconfig. `minimal_init.lua`: ```lua --- CHANGE THESE local pattern = { "javascript", "javascriptreact", "javascript.jsx", "typescript", "typescriptreact", "typescript.tsx", } local cmd = { "deno", "lsp" } -- Add files/folders here that indicate the root of a project local root_markers = { "deno.json" } -- Change to table with settings if required local settings = { deno = { enable = true, suggest = { imports = { hosts = { ["https://deno.land"] = true, }, }, }, }, } local function virtual_text_document_handler(uri, res, client) if not res then return nil end local lines = vim.split(res.result, "\n") local bufnr = vim.uri_to_bufnr(uri) local current_buf = vim.api.nvim_buf_get_lines(bufnr, 0, -1, false) if #current_buf ~= 0 then return nil end vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, lines) vim.api.nvim_set_option_value("readonly", true, { buf = bufnr }) vim.api.nvim_set_option_value("modified", false, { buf = bufnr }) vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr }) vim.lsp.buf_attach_client(bufnr, client.id) end local function virtual_text_document(uri, client) local params = { textDocument = { uri = uri, }, } local result = client.request_sync("deno/virtualTextDocument", params) virtual_text_document_handler(uri, result, client) end local function denols_handler(err, result, ctx, config) if not result or vim.tbl_isempty(result) then return nil end local client = vim.lsp.get_client_by_id(ctx.client_id) for _, res in pairs(result) do local uri = res.uri or res.targetUri if uri:match("^deno:") then virtual_text_document(uri, client) res["uri"] = uri res["targetUri"] = uri end end vim.lsp.handlers[ctx.method](err, result, ctx, config) end vim.api.nvim_create_autocmd("FileType", { pattern = pattern, callback = function(args) local match = vim.fs.find(root_markers, { path = args.file, upward = true })[1] local root_dir = match and vim.fn.fnamemodify(match, ":p:h") or nil vim.lsp.start({ name = "bugged-ls", cmd = cmd, root_dir = root_dir, settings = settings, handlers = { ["textDocument/definition"] = denols_handler, ["textDocument/typeDefinition"] = denols_handler, ["textDocument/references"] = denols_handler, }, }) end, }) if false then vim.lsp.set_log_level("debug") end ``` ### Steps 1. `mkdir /tmp/testing && cd /tmp/testing` 2. `touch deno.json && echo '{}' > deno.json` 3. `touch test.ts && echo 'console.log('hello world')' > test.ts` 4. `nvim -u minimal_init.lua test.ts` 5. put cursor over the `log` of `console.log` and run `:lua vim.lsp.buf.definition()` 6. observe error ### Expected behavior Should open the buffer/window at the URI and cursor position returned by denols. This is observable prior to 0083e03d ### Nvim version (nvim -v) NVIM v0.11.0-dev-1028+g6dad1f9f19 ### Language server name/version denols 2.0.2 ### Operating system/version Linux archlinux 6.11.3-arch1-1 ### Log file https://gist.github.com/jamestrew/d9ad40083357a41308f2075bff962623
bug,has:plan,bug-regression,lsp,has:bisected
low
Critical
2,606,987,506
vscode
Link with :lineNumber didn't work on Terminal
<!-- โš ๏ธโš ๏ธ 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/No <!-- ๐Ÿช“ 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: Windows 11 24H2 Steps to Reproduce: ![Image](https://github.com/user-attachments/assets/006d9fd4-46fa-4ab2-8b49-40e44dc40451) As you can see, the :lineNumber wasn't included in the link, so I can't click on the link to go to the file with the line number specified.
bug,help wanted,confirmed,terminal-links
low
Critical
2,607,047,612
PowerToys
PowerRename้€‰ๆ‹ฉ้ป˜่ฎคๅ’ŒไธŠไธ‹ๆ–‡่œๅ•๏ผŒๅณ้”ฎไผšๆ˜พ็คบไธคไธชโ€ไฝฟ็”จPowerRename้‡ๅ‘ฝๅโ€œ
### Microsoft PowerToys version v0.85.1 ### Installation method PowerToys auto-update ### Running as admin Yes ### Area(s) with issue? PowerRename ### Steps to reproduce PowerRename้€‰ๆ‹ฉ้ป˜่ฎคๅ’ŒไธŠไธ‹ๆ–‡่œๅ•๏ผŒๅณ้”ฎไผšๆ˜พ็คบไธคไธชโ€ไฝฟ็”จPowerRename้‡ๅ‘ฝๅโ€œ ### โœ”๏ธ Expected Behavior _No response_ ### โŒ Actual Behavior _No response_ ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,607,047,839
pytorch
dead code in test that can be removed
### ๐Ÿ› Describe the bug In the https://github.com/pytorch/pytorch/blob/main/test/test_proxy_tensor.py, you will find a function block as below, ``` def test_unbacked_unify_dependency_violation(self): def f(x1, x2, x3, y): z1 = x1.item() torch._check(z1 // 9 == 1) z2 = x2.item() z3 = x3.item() torch._check(z1 == z2 + z3) return y * 2 if z2 + z3 == z1: return y * 2 else: return y + 3 ``` as it has returned y*2 already, what is the following code want to do. it seems to be dead code that can not be reached, can we removed? ### Versions it is not related to env. it is in main branch cc @mruberry @ZainRizvi
module: tests,triaged
low
Critical
2,607,112,463
ui
[feat]: Include `sidebar` color schema on customizing theme
### Feature description On the themes page for customizing themes, a sidebar color scheme is not available. I wish there was a sidebar color scheme that complements the rest of the theme. When I use the prompt `npx shadcn@latest add sidebar-08`, the default blue color does not match my color scheme. ### Affected component/components _No response_ ### Additional Context _No response_ ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues and PRs
area: request
low
Minor
2,607,184,339
opencv
Text present in tutorial on Image Thresholding is misleading
### Describe the doc issue The doc https://docs.opencv.org/4.x/d7/d1b/group__imgproc__misc.html#gaa9e58d2860d4afa658ef70a9b1115576 mentions that in simple thresholding, all the pixels greater than the threshold are changed to have the maximum value, whereas all the pixels having pixel value less than the threshold value are changed to 0. <img width="666" alt="Screenshot 2024-10-23 at 9 55 13โ€ฏAM" src="https://github.com/user-attachments/assets/2255da1d-1eee-4e62-b59f-f7c797e8c71b"> However, in the tutorial here - https://github.com/opencv/opencv/blob/4.x/doc/py_tutorials/py_imgproc/py_thresholding/py_thresholding.markdown it is mentioned that " If the pixel value is smaller than the threshold, it is set to 0, otherwise it is set to a maximum value" which is technically wrong as it seems to state that the pixel value having value equal to the threshold will be set to maximum value. ### Fix suggestion _No response_
category: documentation
low
Minor
2,607,260,683
PowerToys
fancy zones will not work
### Microsoft PowerToys version v0.85.1 ### Installation method GitHub ### Running as admin Yes ### Area(s) with issue? FancyZones ### Steps to reproduce i press the ctrl+win+alt+0 and fancy zone appears for a moment and disappears. it will not let me utilize it ### โœ”๏ธ Expected Behavior i press the ctrl+win+alt+0 and it allows me to direct windows to the zones i set up ### โŒ Actual Behavior i press the ctrl+win+alt+0 and fancy zone appears for a moment and disappears. it will not let me utilize it ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,607,314,346
deno
Type-checking fails when enabling the compiler option `isolatedDeclarations`
According to the Deno CLI [config file schema](https://deno.land/x/deno@v2.0.2/cli/schemas/config-file.v1.json?source=#:~:text=isolatedDeclarations), the compiler option [`isolatedDeclarations`](https://www.typescriptlang.org/tsconfig/#isolatedDeclarations) is supported. However, type-checking fails when enabling this option because it requires enabling either [`declaration`](https://www.typescriptlang.org/tsconfig/#declaration) or [`composite`](https://www.typescriptlang.org/tsconfig/#composite), which are both not currently supported by Deno. Type-checking also appears to fail because Deno implicitly enables [`allowJs`](https://www.typescriptlang.org/tsconfig/#allowJs) in this scenario. According to the TypeScript [release notes](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-5.html#using-isolateddeclarations): > ### Using `isolatedDeclarations` > > `isolatedDeclarations` requires that either the `declaration` or `composite` flags are also set. --- Minimal reproducible example: ```txt % deno --version deno 2.0.2 (stable, release, aarch64-apple-darwin) v8 12.9.202.13-rusty typescript 5.6.2 % ls -AF deno.json mod.ts ``` `./deno.json` ```json { "compilerOptions": { "isolatedDeclarations": true } } ``` `./mod.ts` ```ts export function add(a: number, b: number) { return a + b; } ``` Type-checking: ```txt % deno check mod.ts Check file:///Users/deno/example/mod.ts error: TS5053 [ERROR]: Option 'allowJs' cannot be specified with option 'isolatedDeclarations'. TS5069 [ERROR]: Option 'isolatedDeclarations' cannot be specified without specifying option 'declaration' or option 'composite'. Found 2 errors. ``` Disabling `allowJs` and enabling `declaration` seems to have no effect โ€”ย Deno appears to ignore these changes: `./deno.json` ```json { "compilerOptions": { "allowJs": false, "declaration": true, "isolatedDeclarations": true } } ``` ```txt % deno check mod.ts Check file:///Users/deno/example/mod.ts error: TS5053 [ERROR]: Option 'allowJs' cannot be specified with option 'isolatedDeclarations'. TS5069 [ERROR]: Option 'isolatedDeclarations' cannot be specified without specifying option 'declaration' or option 'composite'. Found 2 errors. ``` --- Here is a juxtaposition of the expected behavior โ€” of what happens when type-checking with `tsc` directly โ€” checking **completes** but a diagnostic error is produced because of the elision of an explicit return type: ```txt % ./node_modules/typescript/bin/tsc --version Version 5.6.3 % ls -AF mod.ts package-lock.json tsconfig.json node_modules/ package.json ``` `./package.json` ```json { "name": "example", "version": "0.1.0", "type": "module", "license": "MIT", "devDependencies": { "typescript": "^5.6.3" } } ``` `./tsconfig.json` ```json { "compilerOptions": { "declaration": true, "isolatedDeclarations": true, "noEmit": true } } ``` ```txt % ./node_modules/typescript/bin/tsc mod.ts:1:17 - error TS9007: Function must have an explicit return type annotation with --isolatedDeclarations. 1 export function add(a: number, b: number) { ~~~ mod.ts:1:17 1 export function add(a: number, b: number) { ~~~ Add a return type to the function declaration. Found 1 error in mod.ts:1 ``` --- I think Deno should continue to support this compiler option and make the necessary changes to the CLI/LSP in order to support compatibility.
bug,lsp,tsc
low
Critical
2,607,335,905
pytorch
Fusion causes peak memory increase
### ๐Ÿ› Describe the bug Here is an example that fusion causes peak memory increases with very marginal perf wins. ``` import torch from triton.testing import do_bench @torch.compile def f(a, b, c): return (a @ c).sum(dim=-1) + (b @ c).sum(dim=-1) a = torch.randn(1024 * 32, 16, device="cuda") b = torch.randn(1024 * 32, 16, device="cuda") c = torch.randn(16, 1024 * 32, device="cuda") f(a, b, c) torch.cuda.reset_peak_memory_stats() ms = do_bench(lambda: f(a, b, c)) print(f"{ms=}") peak_mem = torch.cuda.max_memory_allocated() print(f"Peak mem {peak_mem / 1e9:.3f} GB") ``` By default Inductor will fuse these 2 reductions together. This requires the two large 4GB buffer (a@c) and (b@c) to be alive at the same time, which make the peak memory usage about 8GB. But if we don't fuse these 2 reductions, the buffer for (a@c) and (b@c) can be reused. The peak memory usage would be about 4GB. A similar pattern is seen when we chunk the linear-cross-entroy-loss. Metrics with fusion by default: ``` ms=7.721065044403076 Peak mem 8.886 GB ``` Metrics by not fusing the two reductions: ``` ms=7.749417781829834 Peak mem 4.591 GB ``` . cc @ezyang @chauhang @penguinwu @voznesenskym @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @ipiszy @yf225 @chenyang78 @kadeng @muchulee8 @ColinPeppler @amjames @desertfire @aakhundov
triaged,oncall: pt2,module: inductor
low
Critical
2,607,402,664
rust
ICE: `assertion failed: !t.has_escaping_bound_vars()'`
<!-- ICE: Rustc ./CE531F27BAC370E4FA505E07B618FBD85FECBEB77738643B2951F77EBE023A19.rs '' 'thread 'rustc' panicked at compiler/rustc_trait_selection/src/traits/select/mod.rs:643:21: 'assertion failed: !t.has_escaping_bound_vars()'', 'thread 'rustc' panicked at compiler/rustc_trait_selection/src/traits/select/mod.rs:643:21: 'assertion failed: !t.has_escaping_bound_vars()'' File: /home/gh-matthiaskrgr/tmp/im/CE531F27BAC370E4FA505E07B618FBD85FECBEB77738643B2951F77EBE023A19.rs --> auto-reduced (treereduce-rust): ````rust #![feature(non_lifetime_binders)] trait Trait<T: ?Sized> { type Assoc<'a> = i32; } fn produce() -> impl for<T> Trait<(), Assoc = impl Trait<T>> { 16 } ```` original: ````rust #![allow(incomplete_features)] #![feature(non_lifetime_binders)] trait Trait<T: ?Sized> { type Assoc<'a> = i32; fn with_assoc(f: impl FnOnce(Self::Assoc<'_>)) { f(5i32) } } fn produce() -> impl for<T> Trait<(), Assoc = impl Trait<T>> { //~^ ERROR associated type `Assoc` not found for `Trait` //~| ERROR associated type `Assoc` not found for `Trait` //~| the trait bound `{integer}: Trait<()>` is not satisfied 16 } fn main() {} ```` Version information ```` rustc 1.84.0-dev binary: rustc commit-hash: unknown commit-date: unknown host: x86_64-unknown-linux-gnu release: 1.84.0-dev LLVM version: 19.1.1 ```` Command: `/home/gh-matthiaskrgr/.rustup/toolchains/local-debug-assertions/bin/rustc ` <!-- query stack: #0 [evaluate_obligation] evaluating trait selection obligation `{type error}: Trait<T>` #1 [typeck] type-checking `produce` --> @rustbot label +F-non_lifetime_binders
I-ICE,E-needs-test,T-compiler,C-bug,S-has-mcve,requires-debug-assertions,F-non_lifetime_binders
low
Critical
2,607,460,826
yt-dlp
[ximalaya:album] The album listing data is incomplete
### 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 asking a question and **not** reporting a bug or requesting a feature - [X] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#readme) - [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 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 questions **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) ### Please make sure the question is worded well enough to be understood ![ximalaya](https://github.com/user-attachments/assets/69463f7a-e48b-4f98-bb98-534b547e2961) For each album, the number of downloaded videos is always incomplete. The total number was 915, but only 90 were downloaded ### 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: ['-vU', '--cookies', 'cookies.txt', '--dump-single-json', 'https://www.ximalaya.com/album/68192729'] [debug] Encodings: locale UTF-8, fs utf-8, pref UTF-8, out utf-8 (No ANSI), error utf-8, screen utf-8 [debug] yt-dlp version stable@2024.10.22 from yt-dlp/yt-dlp [67adeb7ba] (pip) [debug] Python 3.12.7 (CPython x86_64 64bit) - Linux-5.4.160-3.el7.x86_64-x86_64-with-glibc2.31 (OpenSSL 3.3.2 3 Sep 2024, glibc 2.31) [debug] exe versions: ffmpeg 4.2.7, ffprobe 4.2.7 [debug] Optional libraries: Cryptodome-3.21.0, brotli-1.1.0, certifi-2024.08.30, mutagen-1.47.0, requests-2.32.3, sqlite3-3.46.1, urllib3-2.2.3, websockets-13.1 [debug] Proxy map: {} [debug] Request Handlers: urllib, requests, websockets [debug] Loaded 1839 extractors [debug] Fetching release info: https://api.github.com/repos/yt-dlp/yt-dlp/releases/latest Latest version: stable@2024.10.22 from yt-dlp/yt-dlp yt-dlp is up to date (stable@2024.10.22 from yt-dlp/yt-dlp) [debug] Using fake IP 36.175.239.82 (CN) as X-Forwarded-For [ximalaya:album] Extracting URL: https://www.ximalaya.com/album/68192729 [ximalaya:album] 68192729: Downloading tracks list page 1 [download] Downloading playlist: ็ง€ๆ‰ๅฎถ็š„ๅฐๅจ‡ๅฆป๏ฝœ็”œๅฎ ่ฝปๆพ&็ˆ†็ฌ‘ๅฎ…ๆ–—๏ฝœๅ…่ดนๅคšไบบๆœ‰ๅฃฐๅ‰ง [ximalaya:album] 68192729: Downloading tracks list page 2 [ximalaya:album] 68192729: Downloading tracks list page 3 [ximalaya:album] 68192729: Downloading tracks list page 4 [ximalaya:album] Playlist ็ง€ๆ‰ๅฎถ็š„ๅฐๅจ‡ๅฆป๏ฝœ็”œๅฎ ่ฝปๆพ&็ˆ†็ฌ‘ๅฎ…ๆ–—๏ฝœๅ…่ดนๅคšไบบๆœ‰ๅฃฐๅ‰ง: Downloading 90 items of 90 [debug] The information of all playlist entries will be held in memory [download] Downloading item 1 of 90 ```
site-bug,triage
low
Critical
2,607,478,804
PowerToys
cpu runs up on a remote host when locking rdp client
### Microsoft PowerToys version 0.85.1 ### Installation method PowerToys auto-update ### Running as admin Yes ### Area(s) with issue? General ### Steps to reproduce when locking screen with a remote desktop (which also has PowerToys installed and runing), the cpu runs at 30% usage avg, that's weird on a standby machine. unlock machine with rdp client or exit PowerToys on remote host, everything seems alright. has just updated PowerToys on both machine, when noticed the issue. has telegraf installed, so the issue has be noticed ### โœ”๏ธ Expected Behavior cpu stays cool on rdp host. ### โŒ Actual Behavior _No response_ ### Other Software ![Image](https://github.com/user-attachments/assets/e2c85075-f2f4-4181-b130-33a1e95a78e4) telegraf recorded the strange cpu usage on standby remote host
Issue-Bug,Needs-Triage
low
Minor
2,607,553,927
vscode
After configured `editor.tokenColorCustomizations` , editor rolling type perception error
Does this issue occur when all extensions are disabled?: Yes - VS Code Version: 1.94.2(user setup) - OS Version: Windows NT x64 10.0.19045 Steps to Reproduce: After configured `editor.tokenColorCustomizations` , editor rolling type perception error ```json "editor.tokenColorCustomizations": { "textMateRules": [ { "scope": ["comment", "constant", "storage", "keyword", "function", "entity.name.type", "entity.name.function"], "settings": { "fontStyle": "italic" } } ] } ``` Gif example ![Image](https://github.com/user-attachments/assets/7e67699a-61cd-4e18-b9fc-eac79aed15f4)
bug,typescript,grammar
low
Critical
2,607,604,497
tauri
[bug] setIgnoreCursorEvents( ) not work
### Describe the bug I created a webview window with button click in main window, but can't do mouse click through the webview window with `setIgnoreCursorEvents(true)`, even when the appwindow is also set. I'm working on win10. ### Reproduction 1, In main window, there is a button to open a webview window 2, set webviewwindow to ignore cursor event. ``` <template> <div> <button @click="createChild"> Find Elements</button> </div> </template> ``` ``` <script setup lang=ts> import { appWindow, WebviewWindow } from "@tauri-apps/api/window"; function createChild( ) { const webview= new WebviewWindow('Childwidow',{url:'/page-a',width: 600, height: 400, transparent:true,decorations:false}); webview.once('tauri://created', function(e) { webview.setIgnoreCursorEvents(true); appWindow.setIgnoreCursorEvents(true); }); } </script> ``` In page-a ``` <template> <div> Hello, hello, hello, hello, hello </div </template <script setup lang="ts"> </script> <style> html, body { background-color: transparent; pointer-events: none; } </style> ``` ### Expected behavior Is there workaround to click through the webviewwindow, and at the same time script in webview window can get position of mouse cursor ? ### Full `tauri info` output ```text Can't click through the webview window ``` ### Stack trace _No response_ ### Additional context _No response_
type: bug,status: needs triage
low
Critical
2,607,634,995
vscode
Show minimap Only During Search
<!-- โš ๏ธโš ๏ธ 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. --> Add an option to display the minimap exclusively when a search is active, highlighting results, and hide it during normal editing. Use Case: The minimap is helpful for finding search results in large files but can clutter the workspace when not needed. This feature would keep it hidden by default and show it only during active searches. Benefit: A cleaner, distraction-free interface during regular work, with the minimap automatically appearing for search navigation.
feature-request,editor-minimap
low
Minor
2,607,642,876
kubernetes
The problem with the event recorder is that it runs (sic!) goroutines.
The problem with the event recorder is that it runs (sic!) goroutines. That makes initializing it in the `Run` method more suitable because then there is a proper context for those goroutines (cancellation!). What was problematic with https://github.com/kubernetes/kubernetes/commit/50c12437604b0cd5a73514389409fc2fde8b91bd was that it left the event recorder as field in the controller struct. Usage of that field in the event handler then became a runtime problem instead of a compile-time error. If I were to do this again, I would probably remove the recorder field and turn it into a parameter of the functions called by `Run`. _Originally posted by @pohly in https://github.com/kubernetes/kubernetes/issues/128179#issuecomment-2426723851_
kind/cleanup,sig/node,needs-triage
low
Critical
2,607,690,813
godot
Compatibility mode breaks HDR on windows in exclusive fullscreen mode
### Tested versions Reproducable in: - Godot 4.3 stable - Godot 4.2.2 stable ### System information Godot v4.3.stable - Windows 10.0.19045 - GLES3 (Compatibility) - NVIDIA GeForce RTX 4080 (NVIDIA; 32.0.15.6094) - AMD Ryzen 7 3700X 8-Core Processor (16 Threads) ### Issue description When an Compatibility application is switched do exclusive fullscreen and exited afterwards, Windows HDR will look washed out and is "broken" until it is switched off and on again in the Windows settings. ### Steps to reproduce - Enable HDR in Display Settings in Windows. - Start Godot project - Exit Godot project ### Minimal reproduction project (MRP) [HDR.zip](https://github.com/user-attachments/files/17487459/HDR.zip)
bug,platform:windows,topic:rendering,topic:porting,confirmed,high priority
medium
Critical
2,607,696,294
next.js
Cannot use 'import.meta' outside a module when using next.config.ts
### Link to the code that reproduces this issue https://github.com/hrougier/next15 ### To Reproduce 1. Start the application in development (next dev) 2. See error in the console 3. Open `next.config.ts` to see the failing code. ### Current vs. Expected behavior Following the steps from the previous section, I expected `import.meta.dirname` to be printed in the console (works when using next.config.js in ESM format instead of next.config.ts). ### Provide environment information ```bash Operating System: Platform: darwin Arch: arm64 Binaries: Node: 20.18.0 npm: 10.8.2 Yarn: 1.22.22 pnpm: 9.12.2 Relevant Packages: next: 15.0.1 // Latest available version is detected (15.0.1). eslint-config-next: 15.0.1 react: 19.0.0-rc-69d4b800-20241021 react-dom: 19.0.0-rc-69d4b800-20241021 typescript: 5.6.3 Next.js Config: output: N/A ``` ### Which area(s) are affected? (Select all that apply) Developer Experience, TypeScript ### Which stage(s) are affected? (Select all that apply) next dev (local), next build (local), next start (local) ### Additional context Using `next.config.ts` with a `package.json` containing: ```json { "type": "module" } ```
bug,TypeScript
low
Critical
2,607,720,273
pytorch
dynamic control flow failed
### ๐Ÿ› Describe the bug ``` import torch import numpy as np def test_controlflow(): def is_scaled(val: np.ndarray) -> bool: return np.min(val) >= 0 and np.max(val) <= 1 def process(val): # np.min(val) >= 0 and np.max(val) <= 1 if is_scaled(val): val = val * 255 val = val - np.mean(val, keepdims=True) return val val = np.random.rand(3, 224, 224) output = process(val) process_opt = torch.compile(process, dynamic=True) output_opt = process_opt(val) assert np.allclose(output, output_opt) if __name__ == "__main__": test_controlflow() ``` When I ran the above code, torch compile reported an error that โ€œDynamic control flow is not supported at the momentโ€. But if I call np.min and np.max directly in the process function instead of encapsulating them in the is_scaled function, every thing is okใ€‚How can I resolve this problem? ### Error logs V1023 16:11:40.698000 139837258437760 torch/_dynamo/symbolic_convert.py:534] [0/0] [__graph_breaks] torch._dynamo.exc.UserError: Dynamic control flow is not supported at the moment. Please use functorch.e xperimental.control_flow.cond to explicitly capture the control flow. For more information about this error, see: https://pytorch.org/docs/main/generated/exportdb/index.html#cond-operands ### Minified repro _No response_ ### Versions torch.2.4.1 cc @ezyang @chauhang @penguinwu
triaged,oncall: pt2
low
Critical
2,607,823,587
go
cmd/go: go clean -cache silently ignores GOCACHE relative path
### Go version go version go1.23.1 linux/amd64 ### Output of `go env` in your module/workspace: ```shell GO111MODULE='' GOARCH='amd64' GOBIN='' GOCACHE='/home/mneverov/.cache/go-build' GOENV='/home/mneverov/.config/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='amd64' GOHOSTOS='linux' GOINSECURE='' GOMODCACHE='/home/mneverov/go/pkg/mod' GOOS='linux' GOPATH='/home/mneverov/go' GOPROXY='https://proxy.golang.org,direct' GOROOT='/usr/local/go' GOSUMDB='sum.golang.org' GOTMPDIR='/home/mneverov/tmp' GOTOOLCHAIN='auto' GOTOOLDIR='/usr/local/go/pkg/tool/linux_amd64' GOVCS='' GOVERSION='go1.23.1' GODEBUG='' GOTELEMETRY='on' GOTELEMETRYDIR='/home/mneverov/.config/go/telemetry' GCCGO='gccgo' GOAMD64='v1' AR='ar' CC='gcc' CXX='g++' CGO_ENABLED='1' GOMOD='/home/mneverov/go/src/github.com/mneverov/ingress-nginx/go.mod' GOWORK='/home/mneverov/go/src/github.com/mneverov/ingress-nginx/go.work' CGO_CFLAGS='-O2 -g' CGO_CPPFLAGS='' CGO_CXXFLAGS='-O2 -g' CGO_FFLAGS='-O2 -g' CGO_LDFLAGS='-O2 -g' PKG_CONFIG='pkg-config' GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/home/mneverov/tmp/go-build82578650=/tmp/go-build -gno-record-gcc-switches' ``` ### What did you do? GOCACHE='.cache' go clean --cache ### What did you see happen? No output. Neither default gocache directory nor ".cache" directory cleaned up. ### What did you expect to see? Error or empty `.cache` directory.
NeedsInvestigation,GoCommand
low
Critical
2,607,824,770
vscode
Dragging a view or tab could show grabbing hand
Maybe depends on the platform, but I liked how on GH I get a grabbing cursor when dragging a tab around: ![Image](https://github.com/user-attachments/assets/79821766-d034-4986-93c1-9c80b0a4b461)
feature-request,polish,workbench-dnd
low
Minor
2,607,832,870
tauri
[feat] Can tauri transform mouse event to touch event?
### Describe the problem The software I need to develop may not have a keyboard or mouse, so I need to enable touch events, similar to the mobile emulator of the browser. I saw in electron that it can be enabled by webContents.debugger [https://stackoverflow.com/questions/46295772/can-electron-webview-transform-mouse-event-to-touch-event](url) ### Describe the solution you'd like Provide API or configuration to set the touch event or mouse event of webview ### Alternatives considered _No response_ ### Additional context _No response_
type: feature request
low
Critical
2,607,866,699
PowerToys
folder naming
### Description of the new feature / enhancement Would it be possible to add date characters so that the folder would be created with a specific name, for example {YYYY}{MM}{DD} - ### Scenario when this would be used? Would it be possible to add date characters so that the folder would be created with a specific name, for example {YYYY}{MM}{DD} - ### Supporting information _No response_
Needs-Triage
low
Minor
2,607,908,654
PowerToys
Fancy Zones: Move newly created windows to the current active monitor (Experimental) - Text Extractor.
### Microsoft PowerToys version 0.85.1 ### Installation method PowerToys auto-update ### Running as admin None ### Area(s) with issue? TextExtractor ### Steps to reproduce When activating the following toggle in Fancy Zones: Move newly created windows to the current active monitor (Experimental), the text extractor doens't work anymore. When using multiple screens with multiple scalings, the screens overlap, like it gets confused what was visualized on what screen. ### โœ”๏ธ Expected Behavior _No response_ ### โŒ Actual Behavior _No response_ ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,607,910,369
langchain
DOC: Filter syntax and filter query doc
### URL https://python.langchain.com/docs/how_to/query_constructing_filters/ ### Checklist - [X] I added a very descriptive title to this issue. - [X] I included a link to the documentation page I am referring to (if applicable). ### Issue with current documentation: Filtering results is a core function of any stores. However, the filter syntax in Langchain is very poorly documented. - The langchain doc itself only has a page that gives an example of the usage of `Comparison` objects, with documenting HOW to use them. (Even funnier, `StructuredQuery` is imported but never used in any of the provided sample code, so it leaves to the readers wondering how it is used) - The docs do not tell between the difference of `Comparison` objects and translated syntax (the result after using a `Translator` object). In fact even in the issues in the repo (e.g #10537) and various SO answers seem to suggest only the existence of the translated syntax. So which one is best practice? Which one should be used? - Moreover, the documentation are split between langchain main doc and vector store's own docs. The translated syntax is vectorstore-specific, and the allowed `$...` operators are only listed in the docs of individual vector stores. Therefore it is extremely hard to find any useful information on how to use them. - Only basic usage of filter query is demonstrated. I'd like to filter with a nested condition, like `A and (B or C)`. **No** langchain code I have searched on the internet has given me any example of a nested filter condition. Therefore I have zero idea how to write this condition, besides plain guessing. ### Idea or request for content: _No response_
๐Ÿค–:docs
low
Minor
2,607,918,258
electron
Background color on window is not applied when opening
### Preflight Checklist - [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. - [x] I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a bug report that matches the one I want to file, without success. ### Electron Version 32.2.1 ### What operating system(s) are you using? Windows ### Operating System Version Windows 11 ### What arch are you using? arm64 (including Apple Silicon) ### Last Known Working Electron version _No response_ ### Expected Behavior Setting `backgroundColor` to a window should apply it immediately when opening. ### Actual Behavior The window first opens with white background and then switches to the color: ![Image](https://github.com/user-attachments/assets/7fe10ecb-76af-432f-838f-352dd3ea88b4) ### Testcase Gist URL _No response_ ### Additional Information Code: ```js // Modules to control application life and create native browser window const { app, BrowserWindow } = require('electron') const path = require('node:path') function createWindow () { // Create the browser window. const mainWindow = new BrowserWindow({ width: 800, height: 600, backgroundColor: '#FF0000', webPreferences: { preload: path.join(__dirname, 'preload.js') } }) // and load the index.html of the app. mainWindow.loadFile('index.html') // Open the DevTools. // mainWindow.webContents.openDevTools() } // This method will be called when Electron has finished // initialization and is ready to create browser windows. // Some APIs can only be used after this event occurs. app.whenReady().then(() => { createWindow() app.on('activate', function () { // On macOS it's common to re-create a window in the app when the // dock icon is clicked and there are no other windows open. if (BrowserWindow.getAllWindows().length === 0) createWindow() }) }) // Quit when all windows are closed, except on macOS. There, it's common // for applications and their menu bar to stay active until the user quits // explicitly with Cmd + Q. app.on('window-all-closed', function () { if (process.platform !== 'darwin') app.quit() }) // In this file you can include the rest of your app's specific main process // code. You can also put them in separate files and require them here. ``` //cc @codebytere
platform/windows,bug :beetle:,status/confirmed,32-x-y
low
Critical
2,607,931,085
rust
ICE: not enough bound vars
<!-- ICE: Rustc ./a.rs '' 'thread 'rustc' panicked at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_type_ir/src/binder.rs:320:21: 'Not enough bound vars: '^0.Named(DefId(0:7 ~ a[abce]::IntFactory::stream::'_), "'_") not found in []'', 'thread 'rustc' panicked at /home/gh-matthiaskrgr/vcs/github/rust_debug_assertions/compiler/rustc_type_ir/src/binder.rs:320:21: 'Not enough bound vars: '^0.Named(DefId(0:7 ~ a[abce]::IntFactory::stream::'_), "'_") not found in []'' File: /home/gh-matthiaskrgr/tmp/im/a.rs --> auto-reduced (treereduce-rust): ````rust trait IntFactory { fn stream(&self) -> impl IntFactory<stream(): Send>; } ```` original: ````rust #![feature(return_position_impl_trait_in_trait, return_type_notation)] trait IntFactory { fn stream(&self) -> impl IntFactory<stream(): Send>; } trait SendIntFactory: IntFactory<stream(): Send> + Send {} ```` Version information ```` rustc 1.84.0-dev binary: rustc commit-hash: unknown commit-date: unknown host: x86_64-unknown-linux-gnu release: 1.84.0-dev LLVM version: 19.1.1 ```` Command: `/home/gh-matthiaskrgr/.rustup/toolchains/local-debug-assertions/bin/rustc ` <!-- query stack: #0 [explicit_item_bounds] finding item bounds for `IntFactory::stream::{opaque#0}` #1 [check_well_formed] checking that `IntFactory::stream` is well-formed --> @rustbot label +F-return_position_impl_trait_in_trait +F-return_type_notation
I-ICE,E-needs-test,T-compiler,C-bug,S-has-mcve,requires-debug-assertions,F-return_position_impl_trait_in_trait,F-return_type_notation
low
Critical
2,607,963,573
PowerToys
Pasting from Clipboard history (โŠž + V) crashes apps
### Microsoft PowerToys version 0.85.1 ### Installation method Microsoft Store ### Running as admin No ### Area(s) with issue? Keyboard Manager ### Steps to reproduce 1. Enable **Keyboard Manager** in PowerToys 2. Open any app 3. Press `โŠž + V` to open **Clipboard history** and paste anything into the application 4. App will crash/close Same behavior on two machines: one is Windows 10, second is Windows 11, both are Enterprise. Both are running a standard user account, not an administrator account. Only **Keyboard Manager** module is enabled in PowerToys. When **Keyboard Manager** is disabled, the issue doesn't occur. It seems the issue affects any text field: search fields in **explorer.exe** and **Control Panel** are affected too. Debug log: [PowerToysReport_2024-10-23-12-05-13.zip](https://github.com/user-attachments/files/17488275/PowerToysReport_2024-10-23-12-05-13.zip) Screen recording: https://github.com/user-attachments/assets/fe1f3b03-ab3f-4c26-8fc7-5bd42cc6c98a ### โœ”๏ธ Expected Behavior Pasting from **Clipboard History** `โŠž + V` shouldn't crash/close applications. ### โŒ Actual Behavior Pasting from **Clipboard History** `โŠž + V` into any application - crashes/closes it.
Issue-Bug,Needs-Triage
low
Critical
2,607,994,054
kubernetes
kubelet system-reserved unexpectedly sets memory.max in system-reserved-cgroup under systemd
### What happened? When starting kubelet with config `system-reserved=memory=1.5Gi` as part of [reserved compute resources](https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#system-reserved), running under `systemd`, with a `system-reserved-cgroup=systemreserved` (as per [Recommended Cgroups Setup](system-reserved-cgroup=systemreserved), that cgroup (`systemreserved`) has it's memory.max set to the value of `system-reserved=memory`, away from the default which is `memory.max=max`: *Without* `system-reserved=memory=1.5Gi`: ``` [root@k8s-node1 systemreserved.slice]# pwd /sys/fs/cgroup/systemreserved.slice [root@k8s-node1 systemreserved.slice]# cat memory.max max ``` *With* `system-reserved=memory=1.5Gi`: ``` [root@k8s-node1 systemreserved.slice]# pwd /sys/fs/cgroup/systemreserved.slice [root@k8s-node1 systemreserved.slice]# cat memory.max 1610612736 # 1.5Gi ``` ### What did you expect to happen? When I write `system-reserved=memory=1.5Gi` to the kubelet config, I don't expect that to result in `systemreserved` services (service units within `systemreserved`, such as `sshd`, and any other system service within that cgroup to be collectivly *limmited* with a `memory.max` which sets a [*hard limit*](https://docs.kernel.org/admin-guide/cgroup-v2.html#:~:text=Memory%20usage%20hard%20limit) on these systemreserved services when they previously were not. This feels the *opposite* of what is intended- it should be the inverse (non systemreserved should 'back off' in the face of memory pressure to allow for 1.5G for the `systemreserved` cgroup. Having `memory.max` set that may lead to these `systemreserved` services being *more likely* to be OOM killed since they get altered away from their default `memory.max=max`. ### How can we reproduce it (as minimally and precisely as possible)? Start kubelet with --config (or args) with the following: > Please note you have to restart the entire node to reset (kubelet does not clean up reset `system-reserved=memory=x` back to `max` after removing /restarting kubelet). Apply the config to your kubelet start behaviour: ``` --system-reserved=memory=1.5Gi --enforce-node-allocatable=pods,system-reserved --system-reserved-cgroup=systemreserved ``` Ensure you have created the cgroup `systemreserved`, for example, by adding `Slice=systemreserved` to sshd: File: /usr/lib/systemd/system/sshd.service ``` [Unit] Description=OpenSSH server daemon Documentation=man:sshd(8) man:sshd_config(5) After=network.target sshd-keygen.target Wants=sshd-keygen.target [Service] Type=notify EnvironmentFile=-/etc/sysconfig/sshd ExecStart=/usr/sbin/sshd -D $OPTIONS ExecReload=/bin/kill -HUP $MAINPID Slice=systemreserved.slice KillMode=process Restart=on-failure RestartSec=42s [Install] WantedBy=multi-user.target ``` And reload your systemd daemon/restart sshds etc. (`systemctl daemon-reload && systemctl restart sshd`) Observe memory.max being set: ``` [root@k8s-node1 systemreserved.slice]# cd /sys/fs/cgroup/systemreserved.slice [root@k8s-node1 systemreserved.slice]# cat memory.max 1610612736 # 1.5Gi ``` ### Anything else we need to know? I suspect Kubernetes needs to account for the Allocatable memory somewhere, which might by why `memory.max` is being altered? Chris Down's suggestions may be relvant here, if kubelet *needs* to edit the cgroup, perhaps `memory.low` is more appropriate, and/or perhaps even better allowing more fine grained control over which memory max/min/low get set rather than `--memory=` which doesn't appear to allow that level of expression. > Our ultimate goal here is to keep the workload running ... so what if could could encode that rather than sprinking memory.max everywhere? ... memory.low is a funamental different way about how we've controled memory for the last ~50 years. Instead we should just say how much memory the applications which we want to protect need, and let the system sort it out. ... memory.low hooks into the kernel's reclaiming structure in order to protect some memory for a cgroup. src: https://youtu.be/kPMZYoRxtmg?feature=shared&t=1242 ### Kubernetes version <details> ```console $ kubectl version Server Version: v1.29.3+rke2r1 ``` </details> ### Cloud provider <details> Bare metal / not applicable </details> ### OS version <details> ```console # On Linux: $ cat /etc/os-release NAME="Rocky Linux" VERSION="9.3 (Blue Onyx)" ID="rocky" ID_LIKE="rhel centos fedora" VERSION_ID="9.3" PLATFORM_ID="platform:el9" PRETTY_NAME="Rocky Linux 9.3 (Blue Onyx)" SUPPORT_END="2032-05-31" ROCKY_SUPPORT_PRODUCT="Rocky-Linux-9" ROCKY_SUPPORT_PRODUCT_VERSION="9.3" REDHAT_SUPPORT_PRODUCT="Rocky Linux" REDHAT_SUPPORT_PRODUCT_VERSION="9.3" $ uname -a Linux 5.14.0-362.13.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 13 14:07:45 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux ``` </details> ### Install tools <details> </details> ### Container runtime (CRI) and version (if applicable) <details> </details> ### Related plugins (CNI, CSI, ...) and versions (if applicable) <details> </details>
kind/bug,priority/backlog,sig/node,triage/accepted
low
Critical
2,608,008,807
PowerToys
[WPF] Excessive memory allocation on Windows on ARM64 (Color picker, Run, FZ Editor ... )
### Microsoft PowerToys version 0.85.1 ### Installation method PowerToys auto-update ### Running as admin Yes ### Area(s) with issue? PowerToys Run ### Steps to reproduce On Windows ARM64, i see an excessive memory allocation (~800Mb) for the process PowerToys.PowerLauncher.exe (PowerToys.Run): ![Image](https://github.com/user-attachments/assets/ae210567-f0e3-426f-9b91-ee1077f70184) I cannot see the same behavior on x64: ![Image](https://github.com/user-attachments/assets/a434c234-d15f-43dc-b3d3-4afca49d4551) I have rebooted, and the behavior is consistent. ### โœ”๏ธ Expected Behavior I don't expect this process to allocate 800MB of memory. ### โŒ Actual Behavior On Windows on ARM64 , I would expect a similar memory allocation as on x64; about 12MB ### Other Software _No response_
Issue-Bug,Product-PowerToys Run,FancyZones-Editor,Product-Color Picker,Status-Reproducible
low
Minor
2,608,045,353
rust
Tracking Issue for `bare_link_kind`
<!-- NOTE: For library features, please use the "Library Tracking Issue" template instead. Thank you for creating a tracking issue! ๐Ÿ“œ Tracking issues are for tracking a feature from implementation to stabilisation. Make sure to include the relevant RFC for the feature if it has one. Otherwise provide a short summary of the feature and link any relevant PRs or issues, and remove any sections that are not relevant to the feature. Remember to add team labels to the tracking issue. For a language team feature, this would e.g., be `T-lang`. Such a feature should also be labeled with e.g., `F-my_feature`. This label is used to associate issues (e.g., bugs and design questions) to the feature. --> This is spun off from RFC 1717 (rust-lang/rfcs#1717) which is already implemented for `#[link(name = "...", kind = "dylib")]` The feature gate for the issue is `#![feature(bare_link_kind)]`. ### Summary rust-lang/rfcs#1717 implemented `dllimport` semantics for Windows externs (see the RFC for details). That is, it tells codegen to mark an item as being imported from a DLL: ```rust // kind is "dylib" so dllimport applied to BAR and baz #[link(name="foo", kind="dylib")] extern { static BAR: u32; fn baz(); } ``` This tracking issue is for applying dllimport without knowing the lib name. E.g.: ```rust // the lib is supplied separately // via a build script, the command line, an external build system or even just a separate extern block. #[link(kind = "dylib")] extern { static BAR: u32; fn baz(); } ``` Only "dylib" and "static" kinds are allowed to be used without supplying a name. ### About tracking issues Tracking issues are used to record the overall progress of implementation. They are also used as hubs connecting to other relevant issues, e.g., bugs or open design questions. A tracking issue is however *not* meant for large scale discussion, questions, or bug reports about a feature. Instead, open a dedicated issue for the specific matter and add the relevant feature gate label. Discussion comments will get marked as off-topic or deleted. Repeated discussions on the tracking issue may lead to the tracking issue getting locked. ### Steps <!-- Include each step required to complete the feature. Typically this is a PR implementing a feature, followed by a PR that stabilises the feature. However for larger features an implementation could be broken up into multiple PRs. --> - [ ] Implementation (#131966) - [ ] Adjust documentation ([see instructions on rustc-dev-guide][doc-guide]) - [ ] Formatting for new syntax has been added to the [Style Guide] ([nightly-style-procedure]) - [ ] Stabilization PR ([see instructions on rustc-dev-guide][stabilization-guide]) [stabilization-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#stabilization-pr [doc-guide]: https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#documentation-prs [nightly-style-procedure]: https://github.com/rust-lang/style-team/blob/master/nightly-style-procedure.md [Style Guide]: https://github.com/rust-lang/rust/tree/master/src/doc/style-guide ### Unresolved Questions ### Implementation history - #37973
A-linkage,O-windows,T-lang,T-compiler,S-waiting-on-team,C-tracking-issue,S-blocked
low
Critical
2,608,242,421
ui
[feat]: add native support for deno 2 as a package manager.
### Feature description Deno 2 can be used as a drop in replacement for node and all package managers so please add support for Deno 2 in the CLI. Code within `init` and `add` commands test only for pnpm, yarn, npm, and bun so will not currently support deno. There are other issues as well, such as the dependency upon package.json and tsconfig. React projects can run fine with these constraints so people will slowly start to prefer deno over node, given the increased speed and native support for TypeScript. see https://docs.deno.com/deploy/tutorials/vite/#step-1%3A-create-a-vite-app for a working example of running React without a package.json or tsconfig file. ### Affected component/components CLI ### Before submitting - [X] I've made research efforts and searched the documentation - [X] I've searched for existing issues and PRs
area: request
low
Major
2,608,253,217
transformers
Fast tokenizer for CANINE
### Feature request I have been using [CANINE](https://arxiv.org/pdf/2103.06874) for my experiments and I see that there does not exist a fast version of the tokenizer for the model. CANINE accepts unicode characters as its inputs, so the tokenizer splits the input into unicode characters. It would be great if a fast version of the tokenizer exists for this! ### Motivation I have a large dataset (>1 million rows) that I want to tokenize. The CANINE tokenizer tokenizes at around ~1500 tokens/s for 2048 tokens (which is the max sequence length accepted by CANINE) on my machine (i9 13900HX), which would take about 1 hour and 40 minutes. Even while streaming, I feel like the tokenization speed greatly hampers training time (compared to a model such as xlm-roberta-base, another model I am using for my experiments). If more information is required regarding tokenization time, please do ask, and I shall provide information! ### Your contribution I am quite familiar with the transformers and tokenizers library. I do not have a huge amount of experience with Rust, but I am eager to learn and would love to contribute!
Feature request
low
Major
2,608,388,339
flutter
Flutter Web embed mode not scrolling the hosting page
As reported in other issues, when we embed a flutter view inside another page, either using an iframe or multi-embedding view, the touch scrolling (mainly Android/iOS browsers) is not scrolling the host page In a recent fix it was mention that this will be a follow-up but I could not find an issue for it: > Scrolling using the mouse and the touchpad has landed, which was in the MVP of the feature. Touch-based scrolling can be addressed as a follow-up. _Originally posted by @yjbanov in https://github.com/flutter/flutter/issues/139263#issuecomment-2234803205_ **Expected behavior:** If a user drags up/down inside a non-scrollable flutter view/widget the host page scrolls. This is a major blocker to use Flutter view-embedding. HTML example: ```html <div style="display: flex; flex-direction: column; background-color: #F7F7F7; overflow-y: auto;"> <header style="height: 150px; background-color: rgb(63, 50, 50); color: white; display: flex; align-items: center; justify-content: center;"> <h2>Main header title</h2> </header> <div id="flutter-host"></div> <footer style="height: 300px; background-color: black; color: white; display: flex; align-items: center; justify-content: center;"> <p>Some flutter content</p> </footer> </div> ``` flutter_bootstrap.js ```js _flutter.loader.load({ onEntrypointLoaded: async function(engineInitializer) { let engine = await engineInitializer.initializeEngine({ multiViewEnabled: true, // Enables embedded mode. }); window.flutterApp = await engine.runApp(); const hostElement = document.querySelector('#flutter-host'); if (hostElement) { window.viewId = flutterApp.addView({ hostElement: hostElement, viewConstraints: { minHeight: 300, maxHeight: Infinity, } }); console.log("View added"); } } }); ``` The Flutter app is then a normal flutter app with a fix size (e.g 500px height). You can see on the attached video, how the touch in the header or footer works, but not inside the flutter-view. At the end of the video, you can also see how the mouse-wheel scroll works regardless of where it is hoovered. https://github.com/user-attachments/assets/17d50395-926a-41cd-864b-34864ccb0320
platform-web,has reproducible steps,P2,team-web,triaged-web,found in release: 3.24,found in release: 3.27
low
Major
2,608,400,333
rust
unsafe { &mut *x } vs &mut unsafe { *x }
<!-- Thank you for filing a bug report! ๐Ÿ› Please provide a short summary of the bug, along with any information you feel relevant to replicating the bug. --> I tried this code: ```rust fn main() { let y: &mut [bool] = &mut [false; 2]; let x = unsafe { &mut *(y as *mut [_] as *mut [std::mem::MaybeUninit<_>]) }; let x = &x[0].write(true); println!("{x}"); } ``` which works fine, but if you move the unsafe ever so slightly inwards, like so: ```rust fn main() { let y: &mut [bool] = &mut [false; 2]; let x = &mut unsafe { *(y as *mut [_] as *mut [std::mem::MaybeUninit<_>]) }; let x = &x[0].write(true); println!("{x}"); } ``` you get this error output: ``` error[[E0161]](https://doc.rust-lang.org/stable/error_codes/E0161.html): cannot move a value of type `[MaybeUninit<bool>]` --> src/main.rs:3:18 | 3 | let x = &mut unsafe { *(y as *mut [_] as *mut [std::mem::MaybeUninit<_>]) }; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the size of `[MaybeUninit<bool>]` cannot be statically determined error[[E0508]](https://doc.rust-lang.org/stable/error_codes/E0508.html): cannot move out of type `[MaybeUninit<bool>]`, a non-copy slice --> src/main.rs:3:27 | 3 | let x = &mut unsafe { *(y as *mut [_] as *mut [std::mem::MaybeUninit<_>]) }; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | cannot move out of here | move occurs because value has type `[MaybeUninit<bool>]`, which does not implement the `Copy` trait Some errors have detailed explanations: E0161, E0508. For more information about an error, try `rustc --explain E0161`. error: could not compile `playground` (bin "playground") due to 2 previous errors ``` Version tested is 1.82.0 and current nightly on the [playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=33f7e5b440f81df65b2f8168472b8485)
A-diagnostics,D-terse,A-raw-pointers,C-discussion
low
Critical
2,608,410,082
ollama
launchctl setenv OLLAMA_HOST "0.0.0.0" does not work in version 0.3.14
### What is the issue? launchctl setenv OLLAMA_HOST "0.0.0.0" does not work in version 0.3.14. It still listens to 127.0.0.1 ### OS macOS ### GPU Apple ### CPU Apple ### Ollama version 0.3.14
bug
low
Major
2,608,431,807
tauri
[feat] (AppImage) Offline Build
### Describe the problem Building AppImage in a controlled environment (Offline) controlled. From a security perspective, the CI has no direct internet connection and must get all dependencies from our cached repositories (npm, cargo, etc.). We face an issue now with building AppImage since it tries to get some scripts from GitHub. We would like to build AppImage without the need to depend on remote scripts in Github. ### Describe the solution you'd like Securely build AppImage and I do not depend on scripts from GitHub ### Alternatives considered _No response_ ### Additional context _No response_
type: feature request,platform: Linux,scope: bundler
low
Minor
2,608,480,132
go
proposal: x/crypto/ssh: add support for "webauthn-sk-ecdsa-sha2-nistp256@openssh.com" signature algorithm
### Proposal Details OpenSSH has support for a "webauthn-sk-ecdsa-sha2-nistp256@openssh.com" signature algorithm which was added here: https://github.com/openssh/openssh-portable/commit/bb52e70fa5330070ec9a23069c311d9e277bbd6f The reasoning being that webauthn signatures have a different format to plain FIDO signatures. I don't believe this is currently supported in x/crypto/ssh. It would be useful to have this option for FIDO2 webauthn applications.
Proposal,Proposal-Crypto
low
Major
2,608,498,959
storybook
Revert disabling angular stories
Revert this commit: https://github.com/storybookjs/storybook/commit/d9972f7e1d76bd41fcae5f0405b27978481aeab9
angular,build
low
Minor
2,608,535,784
yt-dlp
[MurrtubeUser] Unable to download JSON metadata: HTTP Error 404 Not Found (caused by <HTTPError 404: Not Found>)
### 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 JP, US, etc ### Provide a description that is worded well enough to be understood [MurrtubeUser] extractor say they don't support URLs. No video is saved. Murrtube.net recently updated their site design so that may be the effect. ### 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 yt-dlp -vU https://murrtube.net/dusk-coyote [debug] Command-line config: ['-vU', 'https://murrtube.net/dusk-coyote'] [debug] Encodings: locale UTF-8, fs utf-8, pref UTF-8, out utf-8, error utf-8, screen utf-8 [debug] yt-dlp version stable@2024.08.06 from yt-dlp/yt-dlp [4d9231208] (pip) [debug] Python 3.11.10 (CPython x86_64 64bit) - macOS-10.15.7-x86_64-i386-64bit (OpenSSL 3.3.2 3 Sep 2024) [debug] exe versions: ffmpeg 6.1.1-tessus (setts), ffprobe 7.0.2, rtmpdump 2.4 [debug] Optional libraries: Cryptodome-3.20.0, brotli-1.1.0, certifi-2024.02.02, mutagen-1.47.0, requests-2.32.3, sqlite3-3.46.1, urllib3-2.2.1, websockets-12.0 [debug] Proxy map: {} [debug] Request Handlers: urllib, requests, websockets [debug] Loaded 1830 extractors [debug] Fetching release info: https://api.github.com/repos/yt-dlp/yt-dlp/releases/latest [debug] Downloading _update_spec from https://github.com/yt-dlp/yt-dlp/releases/latest/download/_update_spec Current version: stable@2024.08.06 from yt-dlp/yt-dlp Latest version: stable@2024.10.22 from yt-dlp/yt-dlp ERROR: You installed yt-dlp with pip or using the wheel from PyPi; Use that to update WARNING: The program functionality for this site has been marked as broken, and will probably not work. [MurrtubeUser] Extracting URL: https://murrtube.net/dusk-coyote [MurrtubeUser] dusk-coyote: Downloading user info ERROR: [MurrtubeUser] dusk-coyote: Unable to download JSON metadata: HTTP Error 404: Not Found (caused by <HTTPError 404: Not Found>) File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 740, in extract ie_result = self._real_extract(url) ^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/murrtube.py", line 140, in _real_extract data = self._download_gql(username, { ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/murrtube.py", line 107, in _download_gql result = self._download_json( ^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 1139, in download_content res = getattr(self, download_handle.__name__)(url_or_request, video_id, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 1099, in download_handle res = self._download_webpage_handle( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 960, in _download_webpage_handle urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal, data=data, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 909, in _request_webpage raise ExtractorError(errmsg, cause=err) File "/usr/local/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 896, in _request_webpage return self._downloader.urlopen(self._create_request(url_or_request, data, headers, query, extensions)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/YoutubeDL.py", line 4165, in urlopen return self._request_director.send(req) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/networking/common.py", line 117, in send response = handler.send(request) ^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/networking/_helper.py", line 208, in wrapper return func(self, *args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/networking/common.py", line 340, in send return self._send(request) ^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/yt_dlp/networking/_requests.py", line 365, in _send raise HTTPError(res, redirect_loop=max_redirects_exceeded) yt_dlp.networking.exceptions.HTTPError: HTTP Error 404: Not Found ```
NSFW,site-bug
low
Critical
2,608,546,569
rust
regression: crate compiles much slower with 1.82
<!-- Thank you for filing a regression report! ๐Ÿ› A regression is something that changed between versions of Rust but was not supposed to. Please provide a short summary of the regression, along with any information you feel is relevant to replicate it. --> Our project takes much longer to compile with Rust 1.82 compared to previous versions. To reproduce, git clone `https://github.com/LemmyNet/lemmy.git` and run `cargo check` (also happens with build or lint). The problem happens specifically with the crate [lemmy_db_views](https://github.com/LemmyNet/lemmy/tree/main/crates/db_views). cargo check with 1.82: 6m 19s cargo check with 1.81: 1m 22s ### Version it worked on <!-- Provide the most recent version this worked on, for example: It most recently worked on: Rust 1.47 --> It most recently worked on:1.81 ### Version with regression <!-- Provide the version you are using that has the regression. --> `rustc --version --verbose`: ``` cargo 1.82.0 (8f40fc59f 2024-08-21) release: 1.82.0 commit-hash: 8f40fc59fb0c8df91c97405785197f3c630304ea commit-date: 2024-08-21 host: x86_64-unknown-linux-gnu libgit2: 1.8.1 (sys:0.19.0 vendored) libcurl: 8.9.0-DEV (sys:0.4.74+curl-8.9.0 vendored ssl:OpenSSL/1.1.1w) ssl: OpenSSL 1.1.1w 11 Sep 2023 os: Manjaro 24.1.1 (Xahea) [64-bit] ``` @rustbot modify labels: +regression-from-stable-to-1.82 -regression-untriaged
I-compiletime,T-compiler,regression-from-stable-to-stable,C-bug
low
Major
2,608,579,691
PowerToys
New Feature: Grid
### Provide a description of requested docs changes I would like to know if it is possible to create an option to display a grid on the screen. Reason: Field alignment. I work with some tools that I need to position fields and I would like to leave them aligned.
Issue-Docs,Needs-Triage
low
Minor
2,608,637,115
TypeScript
[playground] Show transpiled output for JavaScript inputs
### Acknowledgement - [x] I acknowledge that issues using this template may be closed without further explanation at the maintainer's discretion. ### Comment Apologies if this is the wrong repository, I could not find one for the playground. When setting the input language to "JavaScript", the playground does not show the transpiled code on the right. Instead, it shows the input code as-is. You can test it by setting the target to ES2015 and writing `1 ** 2` in the input file: if the language is set to TypeScript you'll see `Math.pow(1, 2)` on the right ([playground](https://www.typescriptlang.org/play/?target=2&module=1&ts=5.6.3&filetype=ts#code/IwAgVGIEwNxA)), while if the language is set to JavaScript you'll see `1 ** 2` ([playground](https://www.typescriptlang.org/play/?target=2&module=1&ts=5.6.3&filetype=js#code/IwAgVGIEwNxA)). Is there a way to see the transpiled code?
Bug,Website
low
Minor
2,608,638,183
next.js
Missing "Link" Header for Critical Resources in Production in Next.js 15
### Link to the code that reproduces this issue https://codesandbox.io/p/devbox/next-js-15-d55c3c ### To Reproduce 1. Run the application in development mode (next dev). 2. Check the response headers: the Link header for critical resources (e.g., fonts, styles) is present. 3. Build the application for production (next build and next start) or deploy it to Vercel in preview or production mode. 4. In production, the Link header is missing. ### Current vs. Expected behavior - Current behavior: In development mode, the Link header correctly includes critical resources to preload, such as fonts and stylesheets. However, in production or preview (e.g., on Vercel), the Link header is not present, and resources are not preloaded in the same way. - Expected behavior: The Link header should also be present in production mode, allowing the browser to preload critical resources and potentially enable optimizations like 103 Early Hints. ### Provide environment information ```bash Operating System: Platform: win32 Arch: x64 Version: Windows 11 Pro Available memory (MB): 32547 Available CPU cores: 20 Binaries: Node: 20.11.1 npm: N/A Yarn: N/A pnpm: N/A Relevant Packages: next: 15.0.1 // Latest available version is detected (15.0.1). eslint-config-next: 15.0.1 react: 19.0.0-rc-69d4b800-20241021 react-dom: 19.0.0-rc-69d4b800-20241021 typescript: 5.6.3 Next.js Config: output: N/A ``` ### Which area(s) are affected? (Select all that apply) Output (export/standalone), Performance ### Which stage(s) are affected? (Select all that apply) next build (local), next start (local), Vercel (Deployed) ### Additional context **The problem also occurs with the default nextjs template, implemented with โ€œnpx create-next-appโ€** I believe I found the logic that handles critical resources in the Link header in the following file: https://github.com/vercel/next.js/blob/51d6e76596f42ea51dad6b4bf6fb7817d91a79ec/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.node.production.js#L5723 The function safelyEmitEarlyPreloads seems to generate the Link header correctly during rendering, but it doesn't appear to be emitted in production. Is there a new option or configuration that needs to be enabled to have these critical resources included in the Link header during production? This would be particularly useful for enabling 103 Early Hints. Thank you for any insights!
bug,Performance
low
Major
2,608,694,519
deno
How do I vendor jsr std modules with Deno v2
With Deno v1 `deno vendor` command I used to build the complete local copy of the project dependencies, then to run it without having to rely on remote access with `deno run --no-remote` flag. Trying to vendoring with Deno v2 where `deno vendor` is removed with the following cli command: `/home/user/.deno/bin/deno install --allow-env --allow-ffi --allow-import --allow-net --allow-read --allow-sys --force --vendor --lock=/home/user/work/djk-sample310/lib/python3.10/site-packages/django_deno/deno/lock.json --entrypoint /home/user/work/djk-sample310/lib/python3.10/site-packages/django_deno/deno/server.ts` it downloads the dependencies successfully, but either these are incomplete or are not always used, because running with `--no-remote` `/home/user/.deno/bin/deno run --allow-env --allow-ffi --allow-import --allow-net --allow-read --allow-sys --config=/home/user/work/djk-sample310/lib/python3.10/site-packages/django_deno/deno/deno.json --no-remote /home/user/work/djk-sample310/lib/python3.10/site-packages/django_deno/deno/server.ts --host=127.0.0.1 --port=8099` produces the following error: ``` error: JSR package manifest for '@std/cli' failed to load. A remote specifier was requested: "https://jsr.io/@std/cli/meta.json", but --no-remote is specified. at file:///home/user/work/djk-sample310/lib/python3.10/site-packages/django_deno/deno/server.ts:3:27 ``` No matter whether I try to use the latest version: ``` import { parseArgs } from "jsr:@std/cli/parse-args"; ``` or fixing the version, in hope it would be used from local cache: ``` import { parseArgs } from "jsr:@std/cli@1.0.6/parse-args"; ```
question
low
Critical
2,608,700,463
angular
Missing SVG as templates in v18, but present in 17
### Describe the problem that you experienced I have a question, why the part of angular v17 documentation section 'SVG as templates' (https://v17.angular.io/guide/svg-in-templates) is missing in v18 (I could not find, there is no link). Is this because is not recommended any more using: templateUrl: './svg.component.svg'. Would be nice to have some explanation of this in v18. ### Enter the URL of the topic with the problem https://v17.angular.io/guide/svg-in-templates ### Describe what you were looking for in the documentation I was looking information, of recommended way of making custom svg repositories. I mean, the components, that I can programmatically bind style as in ordinary components using the power of angular features. ### 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 _No response_ ### 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 _No response_
area: docs
low
Critical
2,608,705,408
flutter
Proposal to get current available clusters on Google Maps
### Use case Currently there is no way to retrieve available clusters on Google Maps. The `GoogleMapsInspectorPlatform` offers a method `getClusters` for testing, but there is no corresponding method in the main `GoogleMapController`. There should be a way to get current cluster data directly from the primary controller managing Google Maps. ### Proposal Add the `getClusters` method directly to GoogleMapController to provide access to clustering data. This would make it easier to handle cluster-related operations within the primary map controller. Or provide another way to get current clustered markers on map or listen to cluster changes.
c: new feature,p: maps,package,c: proposal,team-ecosystem,P2,triaged-ecosystem
low
Minor
2,608,731,996
terminal
Mouse tracking does not respect the system's `rows to scroll` setting
### Windows Terminal version current main ### Windows build number 10.0.19045.4894 ### Other Software WSL + vim ### Steps to reproduce 1. Set the `rows to scroll` system setting to 5. 2. Run ``` wsl bash -c "vim -c :h" ``` 3. Scroll the mouse wheel. Type `:q` and press `Enter` (repeat twice) to quit. ### Expected Behavior The cursor should move at the pace specified in the system-wide settings - 5 rows per 1 wheel step. https://github.com/user-attachments/assets/81ccadb8-454c-44a9-bff6-9a046c0ab1d8 ### Actual Behavior The cursor moves at a speed of one row per mouse wheel step. https://github.com/user-attachments/assets/aad547ef-c99d-4b32-9002-b35f26091c63
Area-Input,Issue-Bug,Area-TerminalControl,Product-Terminal,Priority-3
low
Major
2,608,742,395
PowerToys
Windows Groups (for FancyZones? or as standalone tool โ€œSnap Groups on Steroidesโ€?)
### Description of the new feature / enhancement I would like to be able to **mark multiple windows** to be **members of a single group**. The group should result in **activating** (moving to foreground, above other windows) **all windows in the group** when **any member windows is activated** (by selection by mouse, or from task bar, or through Alt+Tab etc). I.e., the behaviour should be similar to Snap Groups (https://support.microsoft.com/en-us/windows/snap-your-windows-885a9b1e-a983-a3b1-16cd-c531795e6241#WindowsVersion=Windows_11) except these important enhancements: 1. Activation of the whole **group should be triggered by** the activation of **any window-group member by any way**, i.e. by selection the windows by mouse, activating the window from task bar, moving to the window by Alt+Tab shortcut etc. * This should be the most significant improvement over build-in Snap Zones that works only if Snap Zone is specifically activated from task bar (with annoying delay given by the GUI) or activating back through Alt+Tab, but only if no other window was active meanwhile. 2. **Any** two or more **windows should be** markable to be **members of a group**. * I.e., there is no connection with build-in Snap Zones with just few predefined windows layouts and cumbersome user interface. * On the other hand, I would like to primary use it together with FanyZones positioned windows so I expect this could be extremely useful and powerful enhancement of FanyZones tool. 3. **Multiple windows groups** should be possible to define. * I.e., we can active different groups of windows effectively. * There should be no or significantly high (10+?) upper limit on the number or simultaneously existing windows groups. **Effectiveness of the users interface** is expected to be **important for the usability**: 1. I expect there could be a **dashboard** available **on a global shortcut listing** all **windows** allowing me **label** any of **them** as **members** in any **of** the **groups**. Creating a **new group** for adding members should be **just a one click away**. 2. **Another global shortcut** showing simple **popup dialog** for editing **membership of the current active window** in the windows group **should be available**. Form the popup dialog **should be possible** to **create a new window group** and **putting the current window in** it on **one click**. ### Scenario when this would be used? Mainly useful for easily switching between windows groups positioned using FancyZones. For example: 1. I **open two or more windows of MS Word** (the same document opened in the multiple windows to easy seen and edit multiple parts of the document). * I can position them quickly with FancyZones not to overlap. * I **mark** them as **members of the single windows group**. 2. I **open another windows** like MS Excel table, another Word document in one more window, and a web browser with multiple tabs as sources of information for the edited document. * I need these windows **maximalized** to see the numbers in the large table in the context and be able to effectively use the web applications in the browser. 3. I also open **multiple other applications** (calculator, file manager, ...) in **small windows**, probably **positioned to FancyZones** to get quickly ergonomic windows sizes and positions for different applications **not overlapping each other**. * I **mark** them as members of a **different** (second) windows **group**. 4. Now **I can randomly switch beteween apps** like needed but **whenever is a windows-group-member window activated** in any order and **in any way** (taskbar, mouse activation by clicking to the window, going back to the window using Alt+Tab shortcut) also **other windows from the group are moved above other windows**. * Effectively, I am, **with one click**, **switching** between: 1. the **view of the first document** in multiple Word windows positioned with no overlaps, 2. the **view of the โ€œsmall appsโ€** positioned in ergonomic zones and sizes with no overlaps, 3. any **other windows** activated independently. ### Supporting information _No response_
Needs-Triage
low
Major
2,608,743,102
svelte
Manual sync state invalidation does not force update in Svelte 5
### Describe the bug In Svelte 4 you can do something like this to force a DOM update based on state: ```js value = null; value = valueToSet; ``` In Svelte 5, this does not force the update in cases where `value == valueToSet`. Admittedly, this is a bit of a hack. Workaround: ```js value = null; await tick(); value = valueToSet; ``` ### Reproduction [Svelte 5](https://svelte.dev/playground/5b7e3ea168784798bdfa6159a0c3af1a?version=5.0.5) (Runes mode seems to behave the same) [Svelte 4](https://svelte.dev/playground/5b7e3ea168784798bdfa6159a0c3af1a?version=4.2.19) <details> <summary>Code</summary> ```svelte <script> let value = 0; let min = 0; let max = 100; let step = 1; function onInputChanged(event) { const inputElement = event.target; const newValue = inputElement.value; const valueToSet = computeValueToSet(newValue); value = null; // Does nothing in Svelte 5 value = valueToSet; } function computeValueToSet(newValue) { if (newValue === "") return value; const newInt = parseInt(newValue); const isInRange = min <= newInt && newInt <= max; if (!isInRange) return value; return newInt; } </script> <div> <input type=range {min} {max} {step} bind:value /> <br> Type a value outside [{min}, {max}] <input type=number {value} on:input={onInputChanged} {min} {max} {step} /> </div> ``` </summary> ### Logs _No response_ ### System Info ```shell REPL ``` ### Severity annoyance
bug
low
Critical
2,608,768,862
opencv
fitEllipse fails with a certain set of points
### System Information OpenCV python version: 4.10.0 Operating System / Platform: Ubuntu 24.04.1 LTS Python version: 3.12.3 ### Detailed description cv2.fitEllipse function fails to fit an ellipse with a certain set of points. It seems that the returned angle of the ellipse should be around 90 degrees but 0 degree angle is returned instead. I have added four examples: three sets of points for which ellipse fitting fails and one set of points for which ellipse is fitted successfully. I am attaching the output of all four examples. No input is needed to reproduce the code. The points that need to be fitted are marked in red. ![elipse_fit_failed1](https://github.com/user-attachments/assets/efc41fd7-bc5f-474d-b374-d9b745b56cd0) ![elipse_fit_failed2](https://github.com/user-attachments/assets/4281e918-967f-43ed-b88f-08fa790c1705) ![elipse_fit_failed3](https://github.com/user-attachments/assets/ee27e1ae-1f2b-41d2-8a2a-a1da5a5ce628) ![elipse_fit_success](https://github.com/user-attachments/assets/86b83c32-7535-466e-9424-aa8942bacdad) This might be related to issue https://github.com/opencv/opencv/issues/26078 ### Steps to reproduce ```python import numpy as np import cv2 # This is an example where ellipse fitting fails points_to_fit = np.array([[37,111],[37,112],[36,113],[37,114],[37,115],[37,116],[37,117],[37,118],[36,119],[35,120],[34,120],[33,121],[32,121],[31,121],[30,122],[29,123],[28,123],[27,124],[26,124],[25,125],[25,126],[25,127],[25,128],[25,129],[254,121],[255,120],[255,119],[256,118],[256,117],[256,116],[256,115],[256,114],[256,113],[256,112],[256,111],[256,110],[256,109],[256,108],[256,107],[257,106],[257,105],[256,104],[257,103],[257,102],[257,101]]) # This is another example where ellipse fitting fails (subset of points in the first example). Uncomment the line below to check #points_to_fit = np.array([[ 37, 105], [ 38, 106], [ 38, 107], [25,129], [254,121], [257, 103], [257, 102], [257, 101]]) # This is another example where ellipse fitting fails (subset of points in the second example). Uncomment the line below to check # points_to_fit = np.array([[ 37, 105], [ 38, 106], [ 38, 107], [257, 103], [257, 102], [257, 101]]) # This is a different set of point where ellipse is fitted successfully. Uncomment the line below to check # points_to_fit = np.array([[ 30, 105], [ 25, 110], [ 30, 115], [250, 105], [255, 110], [250, 115]]) e = cv2.fitEllipse(np.array(points_to_fit)) print(e) img_tmp = np.ones((300, 300, 3), np.uint8) * 255 img_tmp = cv2.ellipse(img_tmp, e, (0,0,0), 1, cv2.LINE_AA) for point in points_to_fit: img_tmp = cv2.circle(img_tmp, (int(round(point[0])), int(round(point[1]))), 1, (0,0,255), -1) cv2.imshow("ellipse", img_tmp) cv2.waitKey(0) cv2.destroyAllWindows() ``` ### Issue submission checklist - [X] I report the issue, it's not a question - [X] I checked the problem with documentation, FAQ, open issues, forum.opencv.org, Stack Overflow, etc and have not found any solution - [X] I updated to the latest OpenCV version and the issue is still there - [X] There is reproducer code and related data files (videos, images, onnx, etc)
bug
low
Critical
2,608,794,014
rust
`~const` is allowed on structs (and other bad positions) within `const fn`.
We now silently accept `~const Trait` in illegal positions when they're nested in legal positions, because AST validation is not smart enough. I think it would be nice if we made validation more robust; perhaps moving it to ast lowering is the best thing to do. _Originally posted by @compiler-errors in https://github.com/rust-lang/rust/pull/131985#discussion_r1812880692_
T-compiler,C-bug,F-const_trait_impl
low
Critical
2,608,795,468
godot
Uncaught exception of type recursive_mutex lock failed: Invalid argument
### Tested versions Godot v4.4.dev.mono (a852d037f) ### System information Godot v4.4.dev.mono (a852d037f) - Pop!_OS 22.04 LTS on Wayland - X11 display driver, Multi-window, 3 monitors - Vulkan (Forward+) - dedicated Intel(R) Arc(tm) A750 Graphics (DG2) - AMD Ryzen 7 5800X 8-Core Processor (16 threads) ### Issue description Sometimes the game will crash when started from the godot editor. This is what is logged when it crashes: ``` Initialize godot-rust (API v4.4.dev.mono.custom_build, runtime v4.4.dev.mono.custom_build) Initialize godot-rust (API v4.4.dev.mono.custom_build, runtime v4.4.dev.mono.custom_build) Godot Engine v4.4.dev.mono.custom_build.a852d037f (2024-10-23 12:38:10 UTC) - https://godotengine.org MESA-INTEL: warning: cannot initialize blitter engine Vulkan 1.3.274 - Forward+ - Using Device #0: Intel - Intel(R) Arc(tm) A750 Graphics (DG2) [S_API] SteamAPI_Init(): SteamAPI_IsSteamRunning() did not locate a running instance of Steam. [S_API] SteamAPI_Init(): Loaded '/home/tcroc/.local/share/Steam/linux64/steamclient.so' OK. Did Steam initialize?: { "status": 20, "verbal": "Steam not running." } Failed to initialize Steam. Steam not running. ERROR: Cannot get class 'RustAppleLogin'. at: _instantiate_internal (core/object/class_db.cpp:550) MQTT Client: Connecting! MQTT Client: Connected! MQTT Client: Finished async connect! MQTT Client: Subscribed to direct topic! Chat system healthy! State: Connected X connection to :0 broken (explicit kill or server shutdown). X connection to :0 broken (explicit kill or server shutdown). ERROR: BUG: Unreferenced static string to 0: luminance_buffers at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: rb_ssr at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: rb_ssds at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: servers at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: luminance_buffers at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: color_upscaled at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: quarter_texture at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: half_texture at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: sky_buffers at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: rb_ssil at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: reflection at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: final at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: rb_ssao at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: back_color at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: back_depth at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: normal_roughness at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: VRS at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: Fog at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: sdfgi at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: color_upscaled at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: rb_ssil at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: reflection at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: final at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: rb_ssao at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: back_color at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: normal_roughness at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: VRS at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: Fog at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: sdfgi at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: valign at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: Physics2DConstraintSolveIslands at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: Physics2DConstraintSetup at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: _skip_save_ at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: Physics3DConstraintSolveIslands at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: Physics3DConstraintSetup at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: _request_gizmo_for_id at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: use_dynamic_gi at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: use_in_baked_light at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: _enter_world at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: markers at: unref (core/string/string_name.cpp:144) ERROR: BUG: Unreferenced static string to 0: _compression at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: Variant at: unref (core/string/string_name.cpp:142) ERROR: BUG: Unreferenced static string to 0: current_animation_changed at: unref (core/string/string_name.cpp:142) libc++abi: terminating due to uncaught exception of type std::__1::system_error: recursive_mutex lock failed: Invalid argument ERROR: BUG: Unreferenced static string to 0: project_settings_changed at: unref (core/string/string_name.cpp:144) ERROR: Condition "err != VK_SUCCESS && err != VK_SUBOPTIMAL_KHR" is true. Returning: FAILED at: command_queue_execute_and_present (drivers/vulkan/rendering_device_driver_vulkan.cpp:2537) ERROR: BUG: Unreferenced static string to 0: FogVolumeGizmoPlugin at: unref (core/string/string_name.cpp:144) ERROR: BUG: Unreferenced static string to 0: GeometryInstance3DGizmoPlugin at: unref (core/string/string_name.cpp:144) libc++abi: terminating due to uncaught exception of type std::__1::system_error: recursive_mutex lock failed: Invalid argument Error: nu::shell::coredump_error ร— program coredump error โ•ญโ”€[/home/tcroc/dev/BlockyBallOT/submodules/godot-src/godot/godot.nu:142:5] 141 โ”‚ print $"Running godot command: ($config.godot_bin) ($rest | str join ' ')" 142 โ”‚ run-external $config.godot_bin ...$rest ยท โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€ ยท โ•ฐโ”€โ”€ /columns to nushell `Value`invalid e6 143 โ”‚ } โ•ฐโ”€โ”€โ”€โ”€ ``` **NOTE 1** The error ``ERROR: Cannot get class 'RustAppleLogin'`` is expected. **NOTE 2** I'm running godot from a [nushell](https://github.com/nushell/nushell) terminal. Hence the nushell error at the bottom. That part of the log is simply nushell reporting back that the program it started crashed. ### Steps to reproduce I have not yet found a way to consistently reproduce. It seems to happen randomly. ### Minimal reproduction project (MRP) N/A
bug,topic:core,crash
low
Critical
2,608,800,303
pytorch
[CI/CD] Deprecating PyTorchโ€™s official Anaconda channel
### ๐Ÿ› Describe the bug This is umbrella issue related to: https://github.com/pytorch/pytorch/issues/138506 Phase 1 CD Deprecation: - [x] Replace magma-cuda dependency on pytorch/conda-builder Docker image @afrittoli See Magma Cuda Build: https://github.com/pytorch/builder/blob/main/magma/README.md Workflow: https://github.com/pytorch/builder/blob/main/.github/workflows/build-magma-windows.yml - [x] Getting started page nightly instructions - [ ] Documentation, Tutorial - [x] Validation Framework in builder - https://github.com/pytorch/builder/issues/2036 - [ ] Torchbench - [ ] Domains CD visio, audio, data - [ ] Make workflow test-infra no-op - [ ] Replace Miniconda with minforge as option - [ ] PyTorch Core and Builder CD and tests - [ ] PyTorch conda Docker images builds Phase 2 CI Deprecation (WIP Scection): Domains CI: text, vision, audio, tensorrt, data Replace by miniforge and conda-forge usage while pinning versions. Test-Infra CI modifications: Remove conda usage from wheel workflows, and generic linux, macos, windows jobs May check if we can apply changes to CI ourselves. Need to make a list of active projects PyTorch Core CI Torchbench ### Versions 2.6.0 cc @seemethere @malfet @pytorch/pytorch-dev-infra @afrittoli
module: ci,triaged
low
Critical
2,608,871,078
flutter
HapticFeedback doesn't work on IOS except `HapticFeedback.vibrate()`
### Steps to reproduce Run any Flutter project and add one of the following HapticFeedback lines of code ### Expected results I would expect all methods of HapticFeedback to function properly on IOS ### Actual results lightImpact(), mediumImpact(), heavyImpact(), selectionClick() don't work on IOS (on my iphone 11 pro ) but interestingly HapticFeedback.vibrate() works fine. also all methods works on my Samsung S21 ### Code sample <details open><summary>Code sample</summary> ```dart HapticFeedback.lightImpact(), HapticFeedback.mediumImpact(), HapticFeedback.heavyImpact(), HapticFeedback.selectionClick() ``` </details> ### Screenshots or Video <details open> <summary>Screenshots / Video demonstration</summary> [Upload media here] </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 stable, 3.24.3, on macOS 14.7 23H122 darwin-x64, locale fr-CH) [!] Android toolchain - develop for Android devices (Android SDK version 35.0.0) โœ— cmdline-tools component is missing Run path/to/sdkmanager --install "cmdline-tools;latest" See https://developer.android.com/studio/command-line for more details. โœ— Android license status unknown. Run flutter doctor --android-licenses to accept the SDK licenses. See https://flutter.dev/to/macos-android-setup for more details. [โœ“] Xcode - develop for iOS and macOS (Xcode 15.4) [โœ“] Chrome - develop for the web [โœ“] Android Studio (version 2024.1) [โœ“] VS Code (version 1.94.2) [โœ“] Connected device (3 available) [โœ“] Network resources ``` </details>
c: regression,platform-ios,has reproducible steps,P2,team-ios,triaged-ios,found in release: 3.24,found in release: 3.27
low
Major
2,608,904,468
electron
Add support for links `<a>` with `download` attribute
### Preflight Checklist - [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. - [x] I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success. ### Problem Description Click on a `<a download>` link: - Does not trigger download and corresponding `will-download`, but navigates to the link - Triggers `will-navigate`, but doesn't pass any additional information via event to know it was a download link for manual handling As the result, download links works like a general links, and there is no way to handle it from the Electron side. Both limitations require modifying a web-page to handle download link. For example, via ```js // Must be added to the web page document.addEventListener('click', (event) => { const link = event.target.closest('a') if (link && link.hasAttribute('download')) { event.preventDefault() window.IPC.downloadURL(link.href) } }) ``` However, this won't work with a popular download trigger method from JS and used by many libraries: ```js const hiddenElement = document.createElement('a') hiddenElement.download = '' hiddenElement.href = url hiddenElement.click() // Doesn't trigger document click ``` In other words, it is not possible to handle `download` on an app-level in a general case. ### Proposed Solution Click on a `<a download>` link should trigger download that can be handled via `will-download` event. ### Alternatives Considered Event in `will-navigate` should include an information, that is was a download link. For example, via a new `disposition` value. ### Additional Information There is a closed related issue (https://github.com/electron/electron/issues/1909). It was closed by adding the download manager API. However, this API doesn't add actual support for download links. **UPD:** another thing - `download` attribute should be used for filename suggestion in the save dialog like in web-browser. Currently it is non-trivial with `will-download`. You need to provide it from IPC handler to `will-download` handler via some intermediate thing.
enhancement :sparkles:
low
Major
2,608,911,360
excalidraw
Copy-Pasting Text Box Produces `excalidraw/clipboard` JSON Instead of Text
### Translation: When selecting the entire text box and pressing **Ctrl+C** to copy, if you paste while inputting text, it will copy and produce code such as: ```json { "type": "excalidraw/clipboard", "elements": [ { "id": "-6ZwFFIin-0FOClLlKnAB", "type": "rectangle", "x": -65.73259755921458, "y": 1829.8114329095743, "width": 682.436962857252, "height": 336.748421757527, "angle": 0, "strokeColor": "#1e1e1e", "backgroundColor": "transparent", "fillStyle": "solid", "strokeWidth": 4, "strokeStyle": "solid", "roughness": 2, "opacity": 100, "groupIds": [], "frameId": null, "index": "b05", "roundness": { "type": 3 }, "seed": 1273749847, "version": 186, "versionNonce": 571072119, "isDeleted": false, "boundElements": [ { "id": "r1kHf-O2KY0z2rBKYa3O1", "type": "arrow" }, { "id": "uM2gs90e-upH8Ux6rz0Gt", "type": "arrow" } ], "updated": 1729692705745, "link": null, "locked": false } ], "files": {} } ``` I believe this is a bug, and it seems to include some non-styling code.
UX/UI
low
Critical
2,608,962,317
PowerToys
PowerToys prevents Nvidia Control from switching between display modes
### Microsoft PowerToys version 0.85.1 ### Installation method GitHub ### Running as admin No ### Area(s) with issue? General ### Steps to reproduce 1. have program running 2. run a game ### โœ”๏ธ Expected Behavior Nvidia Control Panel able to switch between dedicated and Inegrated gpu ### โŒ Actual Behavior Nvidia can't switch between dedicated and Inegrated gpu, apps preventing: [ PowerToys.exe][PowerToysReport_2024-10-23-14-04-17.zip](https://github.com/user-attachments/files/17494236/PowerToysReport_2024-10-23-14-04-17.zip) ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,608,984,385
bitcoin
RPC: `getblockstats` might not return the *effective* percentile fee rate
One of the responses from the `getblockstats` RPC is `feerate_percentiles`, which returns the following: ```zsh "feerate_percentiles": [ (json array, optional) Feerates at the 10th, 25th, 50th, 75th, and 90th percentile weight unit (in satoshis per virtual byte) n, (numeric) The 10th percentile feerate n, (numeric) The 25th percentile feerate n, (numeric) The 50th percentile feerate n, (numeric) The 75th percentile feerate n (numeric) The 90th percentile feerate ] ``` Currently, the implementation simply appends the fee rates of all transactions in a block along with their corresponding weights to a vector, and then returns the percentile fee rates. https://github.com/bitcoin/bitcoin/blob/ffe4261cb0669b1e1a926638e0498ae5b63f3599/src/rpc/blockchain.cpp#L2027-L2030 However, the fee rate of a transaction at a given percentile may not reflect its *effective* fee rate, as it could be fee-bumped by some descendant transactions. To address this, transactions within a block that are not independent should first be linearized using an ancestor-based linearization algorithm, for example using `MiniMiner`. This approach would be similar to what's done in #30079. Note: MiniMiner will change alot due to #30289, which introduces a new form of linearization. While I assume linearization will still be supported in `MiniMiner` for mempool transactions, I'm unsure about support for linearizing non-mempool transactions. A more efficient approach would be to persist previous block package data. With this approach, I don't see any reason to support linearizing non-mempool transactions in `MiniMiner` for now. While this would increase resource usage, I believe the trade-off is justified when compared to the complexity of linearizing clusters on the fly. Having this package data available from disk would be very helpful for both this issue and #30079.
RPC/REST/ZMQ
low
Minor
2,608,986,344
storybook
[Bug]: Storybook canvas doesn't persist arg from URL
### Describe the bug Storybook canvas doesn't persist an arg from the URL arg when `@storybook/addon-essentials` (docs add-on) is installed and an arg can accept `React.ReactNode` (or other complex type). For example, say I have a Button component with a label prop that accepts a string (`label: string`), I can: 1. Preview the button in storybook 2. Change the label to 'Test' 3. Click "Open canvas in new tab" 4. See the Button with the "Test" label (expected) If I change the TypeScript type for the Button's label prop from `label: string` to `label: React.ReactNode` or `label: string | React.ReactNode`, then 1. Preview the button in storybook 2. Change the label to 'Test' 3. Click "Open canvas in new tab" 4. The Button has the default label, not the new "Test" label (unexpected) If I disable the `@storybook/addon-essentials` add-on, reload storybook and refresh the canvas, then this resolves the issue. If I keep the `@storybook/addon-essentials` add-on enabled, but specifically disable docs, this also resolves the issue: ```js { name: "@storybook/addon-essentials", options: { docs: false, }, }, ``` (note that in the sample repository, when disabling docs, you also need to remove .mdx files from the stories entries so that you don't get an error) ```js stories: ["../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"], ``` Also note that if you disable the docs addon, the Storybook canvas live updates when you type in the Controls field for the Button label - without this you need to tab away. ### Reproduction link https://github.com/penx/storybook-controls-frame-issue ### Reproduction steps 1. ```sh npx storybook@next sandbox npx storybook@latest init ``` 2. Open src/stories/Button.tsx and change ``` label: string; ``` to ``` label: string | React.ReactNode; ``` Follow steps above ### System Storybook Environment Info: System: OS: macOS 15.0 CPU: (12) arm64 Apple M2 Max Shell: 5.9 - /bin/zsh Binaries: Node: 22.9.0 - ~/.nvm/versions/node/v22.9.0/bin/node Yarn: 1.22.22 - ~/.nvm/versions/node/v22.9.0/bin/yarn npm: 10.8.3 - ~/.nvm/versions/node/v22.9.0/bin/npm <----- active pnpm: 9.12.1 - ~/.nvm/versions/node/v22.9.0/bin/pnpm Browsers: Safari: 18.0 npmPackages: @storybook/addon-essentials: ^8.3.6 => 8.3.6 @storybook/addon-interactions: ^8.3.6 => 8.3.6 @storybook/addon-links: ^8.3.6 => 8.3.6 @storybook/addon-onboarding: ^8.3.6 => 8.3.6 @storybook/blocks: ^8.3.6 => 8.3.6 @storybook/react: ^8.3.6 => 8.3.6 @storybook/react-vite: ^8.3.6 => 8.3.6 @storybook/test: ^8.3.6 => 8.3.6 eslint-plugin-storybook: ^0.10.1 => 0.10.1 storybook: ^8.3.6 => 8.3.6 ### Additional context We need to be able to produce links to a canvas in this way so that, during testing, we can create and send a preconfigured canvas URL to a mobile device and then open the URL directly on the device. - possible duplicate of https://github.com/storybookjs/storybook/issues/20951, but this has been closed as a duplicate of https://github.com/storybookjs/storybook/issues/25035, and issue still persists - Relates to https://github.com/storybookjs/storybook/issues/28774
bug,help wanted,args,sev:S3
low
Critical
2,609,014,010
deno
Deno 2.0.2 - compliation for linux on linux - gose outside own project direcotry...
deno -v deno 2.0.2 deno compile --allow-all -L debug --output ./test/appTest app5.ts deno 2 go to all directory outside at compilation on linux for linux: DEBUG RS - deno::standalone::virtual_fs:204 - Adding file '/home/vm/Projekty/gnome-shell/src' DEBUG RS - deno::standalone::virtual_fs:153 - Ensuring directory '/home/vm/Projekty/firebase/sdk' Simple test project located at: pwd /home/vm/Projekty/deno_playground/desktop/dnap app5.ts source code: ``` import { Webview } from "https://deno.land/x/webview@0.7.5/mod.ts"; // HTML content for the GUI const htmlContent = ` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Deno GUI App</title> <style> body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { text-align: center; } button { margin: 10px; padding: 10px 20px; font-size: 16px; cursor: pointer; } </style> </head> <body> <div class="container"> <h1>Deno GUI with Webview</h1> <button onclick="alert('Button 1 clicked!')">Button 1</button> <button onclick="alert('Button 2 clicked!')">Button 2</button> </div> </body> </html> `; // Create a new Webview instance const webview = new Webview(); // Load the HTML content into the Webview webview.navigate(`data:text/html,${encodeURIComponent(htmlContent)}`); // Run the Webview window (opens the window with default settings) webview.run(); ```
needs info
low
Critical