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,771,699,621
godot
Text editor undo/redo representation is very inefficient and slow, and can only store 1024 keypresses by default, also causes bugs
### Tested versions 4.4dev7 but also many other versions of 4.x like 4.3 betas ### System information Godot v4.3.beta2 - Windows 10.0.19045 - GLES3 (Compatibility) - AMD Radeon RX 6800 (Advanced Micro Devices, Inc.; 32.0.12033.1030) - AMD Ryzen 5 7600X 6-Core Processor (12 Threads) ### Issue description When multiple keypress actions are combined into a single logical "operation" in the undo/redo history, rather than being combined into a single undo/redo history item, they're associated together by adding flags to the first and last sub-operations that make up that one undo/redo operation. This means that single characters have their own whole entire linked list item and that undoing large actions is slow. (In my video below you can see a visible delay when undoing one particularly large typing operation. That is not a recording artifact; it is how slow the undo actually is.) This also makes it easier for old inputs to fall off the back of the undo/redo stack, which has a length limit of 1024 by default, and when this happens, buggy stuff happens. For example, redoing after undoing doesn't undo the whole logical operation but rather only a single sub-operation. This is because the oldest accessible sub-operation lacks the "first sub-operation in complex operation" flag. Consecutive sub-operations of the same type should be combined into a single undo/redo list entry as they are created (and not just when the complex meta-operation is finished/committed). Ideally, the system of matching flags for detecting complex operations should be removed entirely or reworked into something else (like a 'multi-operation' operation type, maybe); it is just a bad idea and makes it too easy for undo/redo stack manipulations (e.g. removing the oldest operation) to cause bugs. ### Steps to reproduce Write a lot of text into the text editor (at least 1024 characters), then try undoing it all. Example: https://github.com/user-attachments/assets/eda86934-f1fe-4ca7-8f5f-68e7b978c3e8 ### Minimal reproduction project (MRP) N/A, editor bug
enhancement,discussion,topic:gui,performance
low
Critical
2,771,710,951
ollama
I/O error on POST request for "http://localhost:11434/v1/chat/completions\
### What is the issue? error infomation: { "timestamp": "2025-01-07T01:02:47.506+00:00", "status": 500, "error": "Internal Server Error", "trace": "org.springframework.web.client.ResourceAccessException: I/O error on POST request for \"http://localhost:11434/v1/chat/completions": Read timed out\", "message": "I/O error on POST request for \"http://localhost:11434/v1/chat/completions": Read timed out" } It works fine when I use the old version, but I have this problem when I update to 0.5.4. When using the 0.5.4 version, it works fine in the console, when I use the web for api calls, this problem occurs ### OS macOS ### GPU Apple ### CPU Apple ### Ollama version 0.5.4
bug,needs more info
low
Critical
2,771,718,066
flutter
When '辻󠄀' (double tick) is entered, it only appears as '辻'
### Steps to reproduce 1. The font used is NotoSansJP. (NotoSansJP provides "辻󠄀" and "辻" as separate characters.) 2. Use TextFormField 3. Type '辻󠄀' using a Japanese keyboard. ### Expected results '辻󠄀' is displayed in the TextFormField. ### Actual results '辻' is displayed in the TextFormField. ### Code sample <details open><summary>Code sample</summary> ```dart return TextFormField( onTapOutside: onTapOutside ?? (event) { FocusScope.of(context).unfocus(); }, style: TextStyle( color: isLight ? textColor : textColorDark, fontSize: 16.0, ), focusNode: focusNode, cursorColor: const Color(0xFF3CA3F2), cursorErrorColor: const Color(0xFFFF0099), controller: controller, initialValue: initialValue, cursorWidth: 1.5.w, obscureText: obscureText, enableInteractiveSelection: enableInteractiveSelection, keyboardType: keyboardType, keyboardAppearance: isLight ? Brightness.light : Brightness.dark, decoration: InputDecoration( enabledBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(5).w, borderSide: BorderSide( color: isLight ? const Color(0xFFE6E6E6) : const Color(0xFF222222), width: 0.75.w, ), ), focusedBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(5).w, borderSide: BorderSide( color: isLight ? const Color(0xFF3CA3F2) : const Color(0xFF3CA3F2), width: 0.75.w, ), ), focusedErrorBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(5).w, borderSide: BorderSide( color: const Color(0xFFFF0099), width: 0.75.w, ), ), errorBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(5).w, borderSide: BorderSide( color: const Color(0xFFFF0099), width: 0.75.w, ), ), disabledBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(5).w, borderSide: BorderSide( color: isLight ? const Color(0xFFE6E6E6).withOpacity(0.5) : const Color(0xFF222222), width: 0.75.w, ), ), hintText: hintText, hintStyle: TextStyle( color: hintTextColor, fontSize: 16.0, fontWeight: FontWeight.w400, ), filled: true, fillColor: showBackgroundColor ? isLight ? fillColor : fillColorDark : Colors.transparent, suffixIcon: suffixIconPath != null ? Padding( padding: const EdgeInsets.all(15), child: GestureDetector( onTap: () { if (suffixIconTapEvent != null) { suffixIconTapEvent!(); } }, child: SvgPicture.asset(suffixIconPath!), ), ) : null, ), inputFormatters: effectiveInputFormatters, autovalidateMode: AutovalidateMode.onUserInteraction, validator: validator, onChanged: onChanged, textAlignVertical: textAlignVertical, ); ``` </details> ### Screenshots or Video <details open> <summary>Screenshots / Video demonstration</summary> [Upload media here] </details> ### Logs _No response_ ### Flutter Doctor output <details open><summary>Doctor output</summary> ```console [✓] Flutter (Channel stable, 3.22.2, on macOS 14.3.1 23D60 darwin-arm64, locale ja-JP) [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 15.2) [✓] Chrome - develop for the web [✓] Android Studio (version 2022.2) [✓] VS Code (version 1.88.1) [✓] Connected device (6 available) [✓] Network resources • No issues found! ``` </details>
engine,a: internationalization,dependency: skia,a: typography,has reproducible steps,P3,team-engine,triaged-engine,found in release: 3.27,found in release: 3.28
low
Critical
2,771,727,138
yt-dlp
How to download videos from SnapChat without watermark?
### 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 How to download videos from SnapChat without watermark? yt-dlp -f "bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4] / bv*+ba/b" --output "%(title)+.100B_[%(id)s].%(ext)s" https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYeHRncnFycnhzAZQykON-AZQykMAxAAAAAQ [SnapchatSpotlight] Extracting URL: https://www.snapchat.com/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYeHRncnFycnhzAZQykON-AZQykMAxAAAAAQ [SnapchatSpotlight] W7_EDlXWTBiXAEEniNoMPwAAYeHRncnFycnhzAZQykON: Downloading webpage [info] W7_EDlXWTBiXAEEniNoMPwAAYeHRncnFycnhzAZQykON: Downloading 1 format(s): 0 [download] Destination: Spotlight Snap_[W7_EDlXWTBiXAEEniNoMPwAAYeHRncnFycnhzAZQykON].mp4 [download] 100% of 1.56MiB in 00:00:00 at 5.90MiB/s ![123456](https://github.com/user-attachments/assets/86f84bb6-12eb-49fa-81e9-4254c4786e84) ### Provide verbose output that clearly demonstrates the problem - [X] Run **your** yt-dlp command with **-vU** flag added (`yt-dlp -vU <your command line>`) - [ ] If using API, add `'verbose': True` to `YoutubeDL` params instead - [ ] Copy the WHOLE output (starting with `[debug] Command-line config`) and insert it below ### Complete Verbose Output _No response_
site-enhancement,triage
low
Critical
2,771,734,800
go
runtime: 'fatal error: traceback did not unwind completely' in debugCall
### Go version go1.23.0/amd64 This issue also exists in the latest version. ### Output of `go env` in your module/workspace: ```shell GO111MODULE='on' GOARCH='amd64' GOBIN='' GOCACHE='/Users/ht/Library/Caches/go-build' GOENV='/Users/ht/Library/Application Support/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='amd64' GOHOSTOS='darwin' GOINSECURE='' GOMODCACHE='/Users/ht/go/pkg/mod' GONOPROXY='' GONOSUMDB='' GOOS='darwin' GOPATH='/Users/ht/go' GOPRIVATE='' GOPROXY='https://goproxy.cn' GOROOT='/usr/local/go' GOSUMDB='sum.golang.org' GOTMPDIR='' GOTOOLCHAIN='auto' GOTOOLDIR='/usr/local/go/pkg/tool/darwin_amd64' GOVCS='' GOVERSION='go1.23.1' GODEBUG='' GOTELEMETRY='local' GOTELEMETRYDIR='/Users/ht/Library/Application Support/go/telemetry' GCCGO='gccgo' GOAMD64='v1' AR='ar' CC='clang' CXX='clang++' CGO_ENABLED='1' GOMOD='/Users/ht/lefei/lfapi/go.mod' GOWORK='' CGO_CFLAGS='-O2 -g' CGO_CPPFLAGS='' CGO_CXXFLAGS='-O2 -g' CGO_FFLAGS='-O2 -g' CGO_LDFLAGS='-O2 -g' PKG_CONFIG='pkg-config' GOGCCFLAGS='-fPIC -arch x86_64 -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/42/w71mmjcx7kq4xd94lstqhp_r0000gn/T/go-build225208816=/tmp/go-build -gno-record-gcc-switches -fno-common' ``` ### What did you do? ``` package main import ( "fmt" "time" ) func main() { StartTime := "2025-01-06T12:00:00Z" startTime, err := time.Parse(time.RFC3339, StartTime) if err != nil { return } // The program crashes when I execute this line of code with Evaluate Expression // time.Now().Sub(startTime).Seconds() loacl := time.Now() //However, there is no issue when I execute this line of code with Evaluate Expression. // loacl.Sub(time.Now()).Seconds() fmt.Println(loacl.Sub(startTime).Seconds()) } ``` This is a reproducible piece of code. When I use Evaluate Expression to execute time.Now().Sub(), the program crashes. However, if I create the object in advance, there is no such issue. I suspect that using Evaluate Expression might disrupt the order of method chaining or trigger some strange garbage collection behavior. What's even more bizarre is that the code works perfectly fine when run directly, and the problem only occurs in the Evaluate Expression environment. What I'm concerned about now is whether such an issue could be triggered in a production environment. If it can, that would be really scary. ![image](https://github.com/user-attachments/assets/2404f501-e4c3-444c-a519-b36732719018) ### What did you see happen? ``` runtime: g7: frame.sp=0xc000056f40 top=0xc000056fe0 stack=[0xc000056800-0xc000057000 fatal error: traceback did not unwind completely runtime stack: runtime.throw({0x60bd544?, 0x0?}) /usr/local/go/src/runtime/panic.go:1067 +0x48 fp=0x7ff7baf17430 sp=0x7ff7baf17400 pc=0x6054ea8 runtime.(*unwinder).finishInternal(0x7ff7baf17528) /usr/local/go/src/runtime/traceback.go:566 +0x14a fp=0x7ff7baf17470 sp=0x7ff7baf17430 pc=0x60435ca runtime.(*unwinder).next(0x7ff7baf17528) /usr/local/go/src/runtime/traceback.go:447 +0x265 fp=0x7ff7baf174f8 sp=0x7ff7baf17470 pc=0x60433c5 runtime.(*_panic).nextFrame.func1() /usr/local/go/src/runtime/panic.go:962 +0x96 fp=0x7ff7baf175b0 sp=0x7ff7baf174f8 pc=0x601f176 runtime.systemstack(0x7ff7baf175d8) /usr/local/go/src/runtime/asm_amd64.s:514 +0x4a fp=0x7ff7baf175c0 sp=0x7ff7baf175b0 pc=0x6059cca goroutine 7 gp=0xc0000076c0 m=0 mp=0x6174aa0 [running, locked to thread]: runtime.systemstack_switch() /usr/local/go/src/runtime/asm_amd64.s:479 +0x8 fp=0xc000056e00 sp=0xc000056df0 pc=0x6059c68 runtime.(*_panic).nextFrame(0xc000056e98?) /usr/local/go/src/runtime/panic.go:935 +0x65 fp=0xc000056e40 sp=0xc000056e00 pc=0x601f0a5 runtime.(*_panic).start(0xc000056e98, 0x601e37e, 0xc000056f20) /usr/local/go/src/runtime/panic.go:849 +0x1c5 fp=0xc000056e70 sp=0xc000056e40 pc=0x601ee25 panic({0x60d5fc0?, 0x616ea50?}) /usr/local/go/src/runtime/panic.go:779 +0x12c fp=0xc000056f20 sp=0xc000056e70 pc=0x6054bac runtime.panicmem() /usr/local/go/src/runtime/panic.go:262 +0x3e fp=0xc000056f40 sp=0xc000056f20 pc=0x601e37e runtime.sigpanic() /usr/local/go/src/runtime/signal_unix.go:900 +0x245 fp=0xc000056f70 sp=0xc000056f40 pc=0x60564a5 created by runtime.debugCallWrap in goroutine 6 <autogenerated>:1 +0x1f goroutine 1 gp=0xc0000061c0 m=nil [debug call]: runtime.debugCallWrap(0x60594e0) /usr/local/go/src/runtime/debugcall.go:163 +0x7e fp=0xc000104d80 sp=0xc000104d20 pc=0x5fefd5e runtime.debugCallWrap(0x60594e0) <autogenerated>:1 +0x1f fp=0xc000104d98 sp=0xc000104d80 pc=0x605e13f runtime.debugCallV2() /usr/local/go/src/runtime/asm_amd64.s:1953 +0xbd fp=0xc000104e40 sp=0xc000104d98 pc=0x605bd1d main.main() /Users/ht/lefei/lfapi/apps/aa/main.go:16 +0x146 fp=0xc000104f78 sp=0xc000104e40 pc=0x60b6f86 runtime.main() /usr/local/go/src/runtime/proc.go:272 +0x247 fp=0xc000104fe0 sp=0xc000104f78 pc=0x6022707 runtime.goexit({}) /usr/local/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc000104fe8 sp=0xc000104fe0 pc=0x605bb21 goroutine 2 gp=0xc000006700 m=nil [force gc (idle)]: runtime.gopark(0x60ea970, 0x6173a70, 0x11, 0xa, 0x1) /usr/local/go/src/runtime/proc.go:424 +0xfc fp=0xc000054f80 sp=0xc000054f50 pc=0x6054fbc runtime.goparkunlock(0x6173a70?, 0x0?, 0x0?, 0x0?) /usr/local/go/src/runtime/proc.go:430 +0x25 fp=0xc000054fb0 sp=0xc000054f80 pc=0x6022b65 runtime.forcegchelper() /usr/local/go/src/runtime/proc.go:337 +0xb5 fp=0xc000054fe0 sp=0xc000054fb0 pc=0x6022a55 runtime.goexit({}) /usr/local/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc000054fe8 sp=0xc000054fe0 pc=0x605bb21 created by runtime.init.7 in goroutine 1 /usr/local/go/src/runtime/proc.go:325 +0x1a goroutine 3 gp=0xc000006c40 m=nil [GC sweep wait]: runtime.gopark(0x60ea970, 0x6173be0, 0xc, 0x9, 0x1) /usr/local/go/src/runtime/proc.go:424 +0xfc fp=0xc000055758 sp=0xc000055728 pc=0x6054fbc runtime.goparkunlock(0x6173be0?, 0x0?, 0x0?, 0x0?) /usr/local/go/src/runtime/proc.go:430 +0x25 fp=0xc000055788 sp=0xc000055758 pc=0x6022b65 runtime.bgsweep(0xc00006c000) /usr/local/go/src/runtime/mgcsweep.go:277 +0xa5 fp=0xc0000557c8 sp=0xc000055788 pc=0x600c9a5 runtime.gcenable.gowrap1() /usr/local/go/src/runtime/mgc.go:203 +0x25 fp=0xc0000557e0 sp=0xc0000557c8 pc=0x60006a5 runtime.goexit({}) /usr/local/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc0000557e8 sp=0xc0000557e0 pc=0x605bb21 created by runtime.gcenable in goroutine 1 /usr/local/go/src/runtime/mgc.go:203 +0x66 goroutine 4 gp=0xc000006e00 m=nil [GC scavenge wait]: runtime.gopark(0x60ea970, 0x6173d00, 0xd, 0xa, 0x2) /usr/local/go/src/runtime/proc.go:424 +0xfc fp=0xc000055f48 sp=0xc000055f18 pc=0x6054fbc runtime.goparkunlock(0x6173d00?, 0x1?, 0x3d?, 0xc000006e00?) /usr/local/go/src/runtime/proc.go:430 +0x25 fp=0xc000055f78 sp=0xc000055f48 pc=0x6022b65 runtime.(*scavengerState).park(0x6173d00) /usr/local/go/src/runtime/mgcscavenge.go:425 +0x45 fp=0xc000055fa0 sp=0xc000055f78 pc=0x6009e85 runtime.bgscavenge(0xc00006c000) /usr/local/go/src/runtime/mgcscavenge.go:653 +0x45 fp=0xc000055fc8 sp=0xc000055fa0 pc=0x600a405 runtime.gcenable.gowrap2() /usr/local/go/src/runtime/mgc.go:204 +0x25 fp=0xc000055fe0 sp=0xc000055fc8 pc=0x6000645 runtime.goexit({}) /usr/local/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc000055fe8 sp=0xc000055fe0 pc=0x605bb21 created by runtime.gcenable in goroutine 1 /usr/local/go/src/runtime/mgc.go:204 +0xa5 goroutine 5 gp=0xc000007340 m=nil [finalizer wait]: runtime.gopark(0x60ea6e0, 0x61936e8, 0x10, 0xa, 0x1) /usr/local/go/src/runtime/proc.go:424 +0xfc fp=0xc000054628 sp=0xc0000545f8 pc=0x6054fbc runtime.runfinq() /usr/local/go/src/runtime/mfinal.go:193 +0x107 fp=0xc0000547e0 sp=0xc000054628 pc=0x5fff6e7 runtime.goexit({}) /usr/local/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc0000547e8 sp=0xc0000547e0 pc=0x605bb21 created by runtime.createfing in goroutine 1 /usr/local/go/src/runtime/mfinal.go:163 +0x45 goroutine 6 gp=0xc000007500 m=nil [debug call]: runtime.debugCallWrap(0x60594e0) /usr/local/go/src/runtime/debugcall.go:163 +0x7e fp=0xc000056678 sp=0xc000056618 pc=0x5fefd5e runtime.debugCallWrap(0x60594e0) <autogenerated>:1 +0x1f fp=0xc000056690 sp=0xc000056678 pc=0x605e13f runtime.debugCallV2() /usr/local/go/src/runtime/asm_amd64.s:1953 +0xbd fp=0xc000056738 sp=0xc000056690 pc=0x605bd1d debugCall32() /usr/local/go/src/runtime/asm_amd64.s:2012 +0x22 fp=0xc000056768 sp=0xc000056738 pc=0x6059502 runtime.debugCallWrap2(0x0?) /usr/local/go/src/runtime/debugcall.go:274 +0x6f fp=0xc0000567b0 sp=0xc000056768 pc=0x5ff000f runtime.debugCallWrap1() /usr/local/go/src/runtime/debugcall.go:217 +0x53 fp=0xc0000567e0 sp=0xc0000567b0 pc=0x5feff73 runtime.goexit({}) /usr/local/go/src/runtime/asm_amd64.s:1700 +0x1 fp=0xc0000567e8 sp=0xc0000567e0 pc=0x605bb21 created by runtime.debugCallWrap in goroutine 1 <autogenerated>:1 +0x1f Exiting. ``` ### What did you expect to see? The program crashes when this situation occurs
WaitingForInfo,NeedsInvestigation,compiler/runtime,BugReport
low
Critical
2,771,743,238
ollama
[Model request] alea-institute/kl3m-003-3.7b
https://huggingface.co/alea-institute/kl3m-003-3.7b https://www.kl3m.ai/ KL3M is a family of language models claimed to be trained on clean, legally-permissible data. It has obtained the [Fairly Trained L-Certification](https://www.fairlytrained.org/certifications). `kl3m-003-3.7b` is the latest available model of that family. A similar model, `kl3m-004`, is expected to be released in Q1 2025.
model request
low
Minor
2,771,785,244
godot
`MeshInstance3D`'s auto-initialized `skeleton` property leads to confusing errors when no skeleton is desired
### Tested versions Reproducible in 4.3.stable and 4.4.dev7 ### System information Godot v4.3.stable - Windows 10.0.22631 - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 1660 SUPER (NVIDIA; 32.0.15.6636) - Intel(R) Core(TM) i7-10700F CPU @ 2.90GHz (16 Threads) ### Issue description `MeshInstance3D` automatically and silently assigns its initial parent node as its "skeleton". This happens regardless if the parent is actually a `Skeleton3D` instance, and regardless if a skeleton is even desired (in the vast majority of use cases, it is not). If the user rearranges the `MeshInstance3D` in the edited scene as part of normal editing operations, it will silently retain this initial presumed "skeleton" reference. At runtime, if the `MeshInstance3D` is added to the scene tree and its presumed "skeleton" is not found at the same relative path, it will throw an error, which is extremely confusing for any user who never used a skeleton in the first place, and never explicitly assigned the node reference. It does not help that the error does not mention the presumed `skeleton` reference as being the source of the issue either: ``` E 0:00:02:0081 test.gd:23 @ _show_statue(): Node not found: "../../statue1" (relative to "/root/test/statue2/figure2"). ``` Another confusing error is thrown in the editor itself if the presumed "skeleton" is deleted: ``` core/string/node_path.cpp:263 - Condition "!p_np.is_absolute()" is true. Returning: NodePath() ``` And an even more confusing one is thrown if it is restored with undo: ``` Node not found: "../../statue1" (relative to "/root/@EditorNode@16886/@Panel@13/@VBoxContainer@14/DockHSplitLeftL/DockHSplitLeftR/DockHSplitMain/@VBoxContainer@25/DockVSplitCenter/@VSplitContainer@52/@VBoxContainer@53/@PanelContainer@98/MainScreen/@CanvasItemEditor@9272/@VSplitContainer@9094/@HSplitContainer@9096/@HSplitContainer@9098/@Control@9099/@SubViewportContainer@9100/@SubViewport@9101/test/statue2/figure2"). ``` I'm sure there's some systemic reason for this automatic caching of a presumed "skeleton", but the results are undesirable for the majority. It is also strange that the manual selection UI for the property _prohibits_ the user from selecting non-`Skeleton3D` nodes. So why does the auto-caching code do this? ### Steps to reproduce - Open the attached project/scene. - Context: the `figure` nodes under `statue2` and `statue3` were created by duplicating the one under `statue1`. As such, they erroneously retained `statue1` as their "skeleton", despite now being placed in their own statues. - Delete `statue1`. Note the error that appears in the `Output` tab. - Restore `statue1` with undo. Note the error that appears in the `Output` tab. - Run the project. - Click the "Cycle Statues" button. This will remove a statue from the scene and add the next one. - Note the error that appears when `statue2` or `statue3` are shown. This is because `statue2/figure` and `statue3/figure` are looking for `statue1` as their "skeleton", but `statue1` has been removed from the scene, so it cannot be found. ![Image](https://github.com/user-attachments/assets/bac3c843-bf73-4610-b1ac-392b8f5d1ba4) ### Minimal reproduction project (MRP) [bug-report.zip](https://github.com/user-attachments/files/18326755/bug-report.zip)
bug,topic:animation,topic:3d
low
Critical
2,771,829,509
godot
[4.3 stable] Android gradle build export error
### Tested versions Godot 4.3.stable ### System information Ubuntu 24 Godot4 v4.3stable ### Issue description I am facing this error "execution failed for task ' processdebugresources" while exporting to android with gardle build .... I Don't know what's the reason I installed all sdk java sdk properly..but still facing this error... ### Steps to reproduce ![Image](https://github.com/user-attachments/assets/72047245-90e3-4320-9672-8667fd3fd721) ### Minimal reproduction project (MRP)
bug,platform:android,needs testing,topic:export
low
Critical
2,771,856,874
yt-dlp
Noodle Magazine - Unable to download webpage: HTTP Error 403: Forbidden
### 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 USA ### Provide a description that is worded well enough to be understood I'm trying to download a video from Noodle Magazine. I keep getting a 403 when attempting on my main computer. I have a secondary computer that the URL, and the site, work without issue. ### 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: ['-v', 'https://noodlemagazine.com/watch/-81321808_456239828'] [debug] Encodings: locale UTF-8, fs utf-8, pref UTF-8, out utf-8, error utf-8, screen utf-8 [debug] yt-dlp version [email protected] from yt-dlp/yt-dlp [65cf46cdd] (pip) [debug] Python 3.11.1 (CPython arm64 64bit) - macOS-15.2-arm64-arm-64bit (OpenSSL 1.1.1q 5 Jul 2022) [debug] exe versions: ffmpeg 7.0.2 (setts), ffprobe 7.0.2 [debug] Optional libraries: Cryptodome-3.18.0, brotli-1.0.9, certifi-2023.05.07, mutagen-1.46.0, requests-2.32.3, sqlite3-3.39.4, urllib3-2.0.3, websockets-14.1 [debug] Proxy map: {} [debug] Request Handlers: urllib, requests, websockets [debug] Loaded 1837 extractors [NoodleMagazine] Extracting URL: https://noodlemagazine.com/watch/-81321808_456239828 [NoodleMagazine] -81321808_456239828: Downloading webpage ERROR: [NoodleMagazine] -81321808_456239828: Unable to download webpage: HTTP Error 403: Forbidden (caused by <HTTPError 403: Forbidden>) File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 742, in extract ie_result = self._real_extract(url) ^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/extractor/noodlemagazine.py", line 34, in _real_extract webpage = self._download_webpage(url, video_id) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 1201, in _download_webpage return self.__download_webpage(url_or_request, video_id, note, errnote, None, fatal, *args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 1152, in download_content res = getattr(self, download_handle.__name__)(url_or_request, video_id, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 962, in _download_webpage_handle urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal, data=data, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 911, in _request_webpage raise ExtractorError(errmsg, cause=err) File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/extractor/common.py", line 898, in _request_webpage return self._downloader.urlopen(self._create_request(url_or_request, data, headers, query, extensions)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/YoutubeDL.py", line 4172, in urlopen return self._request_director.send(req) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/networking/common.py", line 117, in send response = handler.send(request) ^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/networking/_helper.py", line 208, in wrapper return func(self, *args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/yt_dlp/networking/common.py", line 340, in send return self._send(request) ^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.11/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 403: Forbidden ```
NSFW,site-bug,triage
low
Critical
2,771,869,507
flutter
`Slider` with transparent track colors and custom `trackHeight` cannot reach the extreme ends
### Steps to reproduce 1. run the example code. 2. long-pressed to the indicator. 3. schroll to best left. ### Expected results i can drag the indicator to the best left and right. ### Actual results i can't drag the indicator to the best left and right. ### Code sample ```dart import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Color Simulation', theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePage(), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key}); @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { double _value = 0.5; @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Colors.black, body: SizedBox( width: MediaQuery.of(context).size.width, child: Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ Container( height: 44, width: 200, alignment: Alignment.centerLeft, child: Stack( alignment: Alignment.centerLeft, children: [ Container( height: 4, decoration: BoxDecoration( gradient: LinearGradient(colors: [ Colors.red, Colors.blue, ]), borderRadius: BorderRadius.circular(2), ), ), SliderTheme( data: SliderThemeData( trackHeight: 44, thumbColor: Colors.white, activeTrackColor: Colors.transparent, inactiveTrackColor: Colors.transparent, thumbShape: RoundSliderThumbShape( enabledThumbRadius: 12, elevation: 4, ), overlayShape: RoundSliderOverlayShape( overlayRadius: 24, ), ), child: Slider( value: _value, onChanged: (newValue) { setState(() { _value = newValue; }); }, ), ), ], ), ), SizedBox( width: 50, child: Text( '${(_value * 100).round()}%', style: TextStyle( color: Colors.white, fontSize: 16, ), textAlign: TextAlign.end, ), ) ], ), ), ); } } ``` ### Screenshots or Video https://github.com/user-attachments/assets/8d7b25fc-1db1-4685-88ac-5e848fd24a77 ### Logs _No response_ ### Flutter Doctor output ``` zengyang@zengyangdeMac-mini lomod % flutter doctor -v [✓] Flutter (Channel stable, 3.24.3, on macOS 14.0 23A344 darwin-arm64, locale en-CN) • Flutter version 3.24.3 on channel stable at /Users/zengyang/fvm/versions/3.24.3 • Upstream repository https://github.com/flutter/flutter.git • Framework revision 2663184aa7 (4 months ago), 2024-09-11 16:27:48 -0500 • Engine revision 36335019a8 • Dart version 3.5.3 • DevTools version 2.37.3 • Flutter download mirror https://storage.flutter-io.cn [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0) • Android SDK at /Users/zengyang/Library/Android/sdk • Platform android-34, build-tools 34.0.0 • ANDROID_HOME = /Users/zengyang/Library/Android/sdk • Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 21.0.3+-79915917-b509.11) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 15.3) • Xcode at /Applications/Xcode.app/Contents/Developer • Build 15E204a • CocoaPods version 1.15.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2024.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 21.0.3+-79915917-b509.11) [✓] VS Code (version 1.96.2) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.102.0 [✓] Connected device (6 available) • aasaaaa 11 aaaa (mobile) • 00008030-0019082236E2802E • ios • iOS 17.6.1 21G93 • qqqqqqq1iPhone (mobile) • 00008030-000171CE1168802E • ios • iOS 18.2 22C152 • iPhone 11 Pro Max (mobile) • 00008030-000224190CE8802E • ios • iOS 18.1.1 22B91 • macOS (desktop) • macos • darwin-arm64 • macOS 14.0 23A344 darwin-arm64 • Mac Designed for iPad (desktop) • mac-designed-for-ipad • darwin • macOS 14.0 23A344 darwin-arm64 • Chrome (web) • chrome • web-javascript • Google Chrome 131.0.6778.205 [✓] Network resources • All expected network resources are available. • No issues found! ```
c: regression,framework,f: material design,has reproducible steps,P2,team-design,triaged-design,found in release: 3.27
low
Major
2,771,899,240
deno
fmt(css): Break custom tailwindcss class
Version: Deno 2.1.4 `ease-[cubic-bezier(0.4,0,0.1,1)]` is a class name. Therefore, if we include spaces, it will not be recognized as a class name. `deno fmt` formats the name and includes spaces. Before formatting ```css .ease-custom { @apply ease-[cubic-bezier(0.4,0,0.1,1)]; } ``` After ```css .ease-custom { @apply ease-[cubic-bezier(0.4, 0, 0.1, 1)]; } ```
bug,deno fmt
low
Minor
2,771,901,295
TypeScript
error TS2835 suggests `.js` extension when `rewriteRelativeImportExtensions` is enabled
### 🔎 Search Terms - error TS2835 - rewriteRelativeImportExtensions - allowImportingTsExtensions - tsconfig - diagnostics ### 🕗 Version & Regression Information - This changed between versions: N/A and 5.7.2 - This changed in commit or PR: N/A - This is the behavior in every version I tried, and I reviewed the FAQ for entries about: rewriting extensions - I was unable to test this on prior versions because: the feature didn't exist yet ### ⏯ Playground Link Playground does not support multiple files to demonstrate the diagnostic ### 💻 Code ```ts //@filename src/foo.ts export const foo = "foo" //@filename src/bar.ts import { foo } from './foo' ``` And in tsconfig: ```jsonc // compiler options "moduleResolution": "nodenext", "allowImportingTsExtensions": true, "rewriteRelativeImportExtensions": true, ``` Though here is my full tsconfig just in case: ```jsonc { "compilerOptions": { // Enable latest features "lib": [ "ESNext", "DOM" ], "target": "ESNext", "module": "NodeNext", "moduleDetection": "force", "jsx": "react-jsx", "allowJs": false, "moduleResolution": "nodenext", "allowImportingTsExtensions": true, "rewriteRelativeImportExtensions": true, "verbatimModuleSyntax": true, "noEmit": true, // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false, // Awesome bundling "isolatedDeclarations": true, "composite": true } } ``` ### 🙁 Actual behavior ``` src/bar.ts:1:21 - error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './foo.js'? 1 import { foo } from "./foo"; ``` The diagnostic suggests a file extension ending in `.js`, even when both `allowImportingTsExtensions` and `rewriteRelativeImportExtensions` are enabled. ### 🙂 Expected behavior ``` src/bar.ts:1:21 - error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './foo.ts'? 1 import { foo } from "./foo"; ``` The suggested import path should probably be `.ts` when these options are enabled. Assuming I had `rewriteRelativeImportExtensions: false`, and given my above settings which is not using bundler mode, it would make sense to suggest `.js`. However, because rewrite is enabled, I think the best option would be to suggest `.ts`. It also seems like tsserver should be able to offer an intellisense fix here in general, but I'm not sure, and that's a bit unrelated. ### Additional information about the issue Additionally, the wiki faq seems slightly outdated now with the addition of `rewriteRelativeImportExtensions`. It currently says the following: ``` ### Module Specifier Rewriting It's explicitly out of scope for TypeScript to modify module specifiers as they appear in emitted JS, e.g [...] [...] This includes things like changing file extensions ```
Suggestion,Awaiting More Feedback
low
Critical
2,771,904,978
ollama
dolphin3 template doesn't support tools
The blurb for the new [dolphin3](https://ollama.com/library/dolphin3) model mentions "function calling" but the template doesn't support it. Replacing it with the template from llama3.1 (the base model) seems to work fine.
model request
low
Minor
2,771,927,177
flutter
WidgetSpan wrong caret position
### Steps to reproduce I'm trying to make TextField which supports custom tag. And I would like to delete a whole tag via backspace, so I use UTF16 private use area( such as U+F0000~U+F0002) to be recognized one character. But I have the bellow problem. It seems that the caret shows wrong position from its actual position. Do you have any idea to resolve it? Thanks. 1. Open code sample scaffold 2. Tap "Tag1" 3. Tap "Tag2" 4. Tap "Tag3" 5. On the software keyboard, pressing space and move caret to between Tag2 and Tag3 6. On the software keyboard, tap backspace button I debug showing caret position and found out sometimes my tag is recognized 2 characters, but sometimes my tag is recognized just 1 character. I guess this is something wrong. But the way how to fix doesn't come up with me. ### Expected results "Tag2" is deleted because the caret is just after "Tag2". ### Actual results "Tag1" is deleted. ### Code sample <details open><summary>Code sample</summary> ```dart import 'package:flutter/material.dart'; class ReproduceScreen extends StatefulWidget { @override State createState() => ReproduceScreenState(); } class ReproduceScreenState extends State<ReproduceScreen> { final TagEditingController _controller = TagEditingController(); int _caretPosition = 0; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text("Tag textfield"), ), body: Column( children: [ TextField( controller: _controller, ), Row( children: [ TextButton( onPressed: () => onTagTapped(_tags[0].runes), child: Text(_tags[0].name)), TextButton( onPressed: () => onTagTapped(_tags[1].runes), child: Text(_tags[1].name)), TextButton( onPressed: () => onTagTapped(_tags[2].runes), child: Text(_tags[2].name)), ], ), TextButton( onPressed: () { final offset = _controller.selection.base.offset; setState(() { _caretPosition = offset; }); }, child: Text("Update caret position")), Text("Caret position: $_caretPosition") ], ), ); } void onTagTapped(int runes) { final offset = _controller.selection.base.offset; print(offset); // final part1 = _controller.text.substring(0,offset); // final part2 = _controller.text.substring(offset); final tagChar = String.fromCharCode(runes); // print("part1: $part1, part2: $part2"); // _controller.text = "$part1$tagChar$part2"; _controller.text = "${_controller.text}$tagChar"; } } class TagEditingController extends TextEditingController { @override TextSpan buildTextSpan({required BuildContext context, TextStyle? style, required bool withComposing}) { final List<InlineSpan> spans = []; text.runes.forEach((int rune) { final char = String.fromCharCode(rune); final foundIndex = _tags.indexWhere((e) => e.runes == rune); if (foundIndex != -1) { final tag = _tags[foundIndex]; spans.add(createTagSpan(tag)); } else { spans.add(TextSpan(text: char, style: TextStyle(color: Colors.black))); } }); return TextSpan(children: spans); } WidgetSpan createTagSpan(Tag tag) { return WidgetSpan( alignment: PlaceholderAlignment.middle, child: Container( padding: EdgeInsets.symmetric(vertical: 4, horizontal: 8), margin: EdgeInsets.symmetric(horizontal: 2), decoration: BoxDecoration( color: Colors.deepOrangeAccent, borderRadius: BorderRadius.circular(4), ), child: IntrinsicWidth( child: Text( tag.name, ), ), )); } } class Tag { int runes; String name; Tag(this.runes, this.name); } final _tags = [ Tag(0xF0000, "Tag1"), Tag(0xF0001, "Tag2"), Tag(0xF0002, "Tag3"), ]; ``` </details> ### Screenshots or Video <details open> <summary>Screenshots / Video demonstration</summary> [Upload media here] https://github.com/user-attachments/assets/7b9cf275-a04d-41c2-aca6-33c523056434 </details> ### Logs <details open><summary>Logs</summary> ```console No any special log. ``` </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.27.1, on macOS 14.5 23F79 darwin-arm64 (Rosetta), locale en-JP) [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 15.4) [✓] Chrome - develop for the web [✓] Android Studio (version 2021.2) [✓] Android Studio (version 2023.1) [✓] IntelliJ IDEA Ultimate Edition (version 2019.1.3) [✓] VS Code (version 1.96.2) [✓] Connected device (6 available) ! Error: Browsing on the local area network for iPhone. Ensure the device is unlocked and attached with a cable or associated with the same local area network as this Mac. The device must be opted into Developer Mode to connect wirelessly. (code -27) ! Error: Browsing on the local area network for TakashiのiPad. Ensure the device is unlocked and attached with a cable or associated with the same local area netwok as this Mac. The device must be opted into Developer Mode to connect wirelessly. (code -27) [✓] Network resources • No issues found! ``` </details>
a: text input,framework,f: material design,has reproducible steps,P2,team-text-input,triaged-text-input,found in release: 3.27,found in release: 3.28
low
Critical
2,771,958,675
PowerToys
[Run] Shell JsonStorage saving multiple times
### Microsoft PowerToys version 0.87.1 ### Installation method GitHub ### Running as admin No ### Area(s) with issue? PowerToys Run ### Steps to reproduce JsonStorage for the shell plugin saves multiple times when changing non-shell related settings. 1. Change a non-shell related setting 2. See logs that JsonStorage saved twice ### ✔️ Expected Behavior save only when a shell related setting is changed, and only save once. ### ❌ Actual Behavior ![Image](https://github.com/user-attachments/assets/a44dbdf9-ede5-4918-a9af-2d4f9df0d7b9) ``` [2025-01-07 13:49:01.5395] [INFO] [D:\a\_work\1\s\src\modules\launcher\PowerLauncher\SettingsReader.cs::69] Settings were changed. Read settings. [2025-01-07 13:49:01.5549] [INFO] [D:\a\_work\1\s\src\modules\launcher\PowerLauncher\SettingsReader.cs::89] Successfully read new settings. retryCount=1 [2025-01-07 13:49:01.5549] [INFO] [D:\a\_work\1\s\src\modules\launcher\Wox.Infrastructure\Storage\JsonStorage`1.cs::141] Saving cached data at <C:\Users\User\AppData\Local\Microsoft\PowerToys\PowerToys Run\Settings\Plugins\Microsoft.Plugin.Shell\ShellPluginSettings.json> [2025-01-07 13:49:01.5549] [INFO] [D:\a\_work\1\s\src\modules\launcher\PowerLauncher\SettingsReader.cs::69] Settings were changed. Read settings. [2025-01-07 13:49:01.5549] [INFO] [D:\a\_work\1\s\src\modules\launcher\PowerLauncher\SettingsReader.cs::89] Successfully read new settings. retryCount=1 [2025-01-07 13:49:01.5549] [INFO] [D:\a\_work\1\s\src\modules\launcher\Wox.Infrastructure\Storage\JsonStorage`1.cs::141] Saving cached data at <C:\Users\User\AppData\Local\Microsoft\PowerToys\PowerToys Run\Settings\Plugins\Microsoft.Plugin.Shell\ShellPluginSettings.json> ``` ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,771,961,006
ollama
Using the Ollama 0.5.4 will cause the pull progress to decrease instead of increase.
### What is the issue? Hi! I created a CPU Instance in HPC-AI.com to pull llama3.3:70b-instruct-fp16 and store it in Shared HighSpeedStorage for subsequent inference in the GPU Instance. The Ollama version installed in the CPU Instance is 0.5.4, as shown below: ![截圖 2025-01-07 13 50 02](https://github.com/user-attachments/assets/0367b5ad-fcda-4372-844a-72fb5eae9145) However, when I pulled the model in CPU Instance, I found that the pull progress decreased instead of increasing, as shown in the following two figures. ![截圖 2024-12-26 14 06 11](https://github.com/user-attachments/assets/b6787d06-3e4c-42a8-a8c5-94363affe9d7) ![截圖 2024-12-26 14 19 26](https://github.com/user-attachments/assets/1f8da0cf-70c9-4a0c-a8f2-0d2a635b46dc) After discussions with HPC-AI.com's technical advisors, HPC-AI.com said there were no issues with their infrastructure, as shown below: ![截圖 2025-01-07 13 44 04](https://github.com/user-attachments/assets/7d2a9dd1-d54e-4da0-9fe8-5e21f08f1b37) ![截圖 2025-01-07 13 44 45](https://github.com/user-attachments/assets/d72402c3-942f-4fde-8b3f-60b40cb1a6b5) ![截圖 2025-01-07 13 45 14](https://github.com/user-attachments/assets/f93b96d3-3b03-4c07-a1a9-7f887a9dd555) ![截圖 2025-01-07 13 45 28](https://github.com/user-attachments/assets/0bab93cd-ac56-4a68-a37e-ee6e4276ce64) I tried to pull llama3.3:70b-instruct-fp16 locally. The pull progress was normal and continued to increase. There was no problem of decreasing the pull progress, as shown in the following two figures. ![截圖 2024-12-31 11 28 45](https://github.com/user-attachments/assets/0c7472dd-d392-432b-81cb-8b962568e41f) ![截圖 2024-12-31 11 29 17](https://github.com/user-attachments/assets/d3f4ac10-725a-41ef-978b-3b1c0d2a1bf3) But the Ollama version installed locally is 0.3.14 ![截圖 2025-01-07 13 49 13](https://github.com/user-attachments/assets/cda54846-389f-4a62-8672-28596559234e) I'm wondering if this is a known bug in Ollama 0.5.4? Looking forward to your reply, thanks. ### OS Linux ### GPU Nvidia ### CPU Intel ### Ollama version 0.5.4
bug,networking
low
Critical
2,771,977,943
langchain
DOC: advanced RAG Retrieval (Reranking, Hierarchical, etc) in Databricks
### URL _No response_ ### 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: I wish to perform advanced RAG using langchain, in Databricks. In the documentation, they tell how to use the vector endpoint url, and index stored in catalogs. But I could not find any advanced RAG algos that are easily implemented in Databricks. Can you please advise me on a step-wise documentation on how I can proceed with this task? I would appreciate if we can implement advanced RAG with minimum reliance on catalogs and endpoints, but rather langchain-exclusive tools that make stuff easier to do ### Idea or request for content: Seperate sections- each with a advanced rag technique, and how to use that in Databricks with minimum reliance on catalogs and endpoints, but rather langchain-exclusive tools that make stuff easier to do.
🤖:docs
low
Minor
2,771,980,772
excalidraw
Arrow does not stay in place when moving around in group
Before moving in group ![Image](https://github.com/user-attachments/assets/c5222c2b-4e0c-44fa-80df-477f01dcd288) After moving the group around, some arrows detach themself and reattach to nothing ![Image](https://github.com/user-attachments/assets/047a848d-5ba9-4ec6-8382-203e2b6cb3fa) Another example, the further I zoom out and moving the group, the worse it gets https://github.com/user-attachments/assets/95b23aa2-54ac-4b3c-99e0-e23d2bf56155
bug
low
Minor
2,772,007,568
tauri
[feat] PDF generation programmatically
### Describe the problem Current web APIs doesn't have simple way to generate pdf from the current webpage. 3rd party libraries doesn't work well - font issues, or some doesn't preserve text selection. The webview's built in html -> pdf render works best but requires user interaction after 'window.print` ### Describe the solution you'd like It will be useful to be able to convert the current page (html to pdf) programmatically by leveraging webview's APIs in wry Since there's no option in js to save the page as pdf ### Alternatives considered _No response_ ### Additional context - Webview2 https://weblog.west-wind.com/posts/2024/Mar/26/Html-to-PDF-Generation-using-the-WebView2-Control - Wkwebview https://digitalbunker.dev/how-to-create-pdf-from-wkwebview/ - Webkit2gtk https://stackoverflow.com/questions/9420494/gtkwebkit-save-html-to-pdf - Android https://stackoverflow.com/questions/26841501/save-pdf-from-webview-on-android
type: feature request
low
Minor
2,772,011,723
rust
DllMain is never run when given stdcall decorated export
I'm creating a Windows DLL in an admittedly goofy fashion: I have an executable that links a DLL and imports `DllMain`, using stdcall decorations (so in reality it's looking for `_DllMain@12`). This causes the DllMain function to not actually run when the DLL is linked. I made a dummy DllMain function that just returns `false` to prevent the linking program from running, making it obvious that my code is running, but the program is starting successfully. It's worth noting that I'm running into this when testing out replacing a C DLL with a new, Rust-based DLL. My C version natively exports `_DllMain@12` Using the common wisdom of using `#[no_mangle]` on `DllMain`, it is failing to link with my executable because it does not export `_DllMain@12`. When modifying the executable to import `DllMain`, my own DllMain function runs, causing the program to fail to start (as intended, in this test case). When testing with a program that instead uses `LoadLibrary()`, my code will run in both cases, indicating that there's different behavior for a DLL being linked and loaded programmatically. I'm not an expert on how DLLs are loaded, but it seems like there's an entrypoint function that is run when the DLL is linked, and the entrypoint will only run DllMain when its symbol is specifically `DllMain` instead of the also valid `_DllMain@12`. I tried this code: ```rust #[unsafe(export_name = "_DllMain@12")] pub extern "stdcall" fn DllMain(_hinst_dll: usize, _fdw_reason: u32, _lp_reserved: usize) -> i32 { 0 } ``` (crate-type is set to `cdylib`) I expected to see this happen: When the DLL is linked, the program fails due to DllMain returning `false` Instead, this happened: The DLL links successfully, with DllMain seemingly returning `true` ### Meta <!-- If you're using the stable version of the compiler, you should also check if the bug also exists in the beta or nightly versions. --> `rustc --version --verbose`: ``` $ rustc --version --verbose rustc 1.83.0 (90b35a623 2024-11-26) binary: rustc commit-hash: 90b35a6239c3d8bdabc530a6a0816f7ff89a0aaf commit-date: 2024-11-26 host: x86_64-pc-windows-msvc release: 1.83.0 LLVM version: 19.1.1 ```
A-linkage,O-windows,C-bug,needs-triage,A-dynamic-library
low
Critical
2,772,012,953
pytorch
[inductor] [dtype propogation] `conv1d,2d,3d` pass the check when handling `uint8,16,32,64` while eager throws the error
### 🐛 Describe the bug related to #144310 ```python import torch import torch.nn.functional as F torch._dynamo.config.recompile_limit = 12 def run_test(dim, dtype): input_shape = [1, 8] + [64] * dim input = torch.randn(input_shape).to(dtype).cuda() kernel_size = 4 stride = 4 padding = 2 conv_kernel = (torch.ones(8, 1, *([kernel_size] * dim)) / (kernel_size ** dim)).cuda() op = F.conv2d if dim == 2 else F.conv1d if dim == 1 else F.conv3d try: output = op(input, conv_kernel, stride=stride, padding=padding, groups=8) print(f"succeed on eager for dim={dim}, dtype={dtype}") except Exception as e: print(f"failed on eager for dim={dim}, dtype={dtype}: {e}") try: cf = torch.compile(op) output = cf(input, conv_kernel, stride=stride, padding=padding, groups=8) print(f"succeed on inductor for dim={dim}, dtype={dtype}") except Exception as e: print(f"failed on inductor for dim={dim}, dtype={dtype}: {e}") for dim in (1, 2, 3): for dtype in (torch.uint8, torch.uint16, torch.uint32, torch.uint64): run_test(dim, dtype) ``` ### Error logs ``` failed on eager for dim=1, dtype=torch.uint8: "conv_depthwise2d_forward_cuda" not implemented for 'Byte' succeed on inductor for dim=1, dtype=torch.uint8 failed on eager for dim=1, dtype=torch.uint16: "conv_depthwise2d_forward_cuda" not implemented for 'UInt16' succeed on inductor for dim=1, dtype=torch.uint16 failed on eager for dim=1, dtype=torch.uint32: "conv_depthwise2d_forward_cuda" not implemented for 'UInt32' succeed on inductor for dim=1, dtype=torch.uint32 failed on eager for dim=1, dtype=torch.uint64: "conv_depthwise2d_forward_cuda" not implemented for 'UInt64' succeed on inductor for dim=1, dtype=torch.uint64 failed on eager for dim=2, dtype=torch.uint8: "conv_depthwise2d_forward_cuda" not implemented for 'Byte' succeed on inductor for dim=2, dtype=torch.uint8 failed on eager for dim=2, dtype=torch.uint16: "conv_depthwise2d_forward_cuda" not implemented for 'UInt16' succeed on inductor for dim=2, dtype=torch.uint16 failed on eager for dim=2, dtype=torch.uint32: "conv_depthwise2d_forward_cuda" not implemented for 'UInt32' succeed on inductor for dim=2, dtype=torch.uint32 failed on eager for dim=2, dtype=torch.uint64: "conv_depthwise2d_forward_cuda" not implemented for 'UInt64' succeed on inductor for dim=2, dtype=torch.uint64 failed on eager for dim=3, dtype=torch.uint8: "conv_depthwise3d" not implemented for 'Byte' succeed on inductor for dim=3, dtype=torch.uint8 failed on eager for dim=3, dtype=torch.uint16: "conv_depthwise3d" not implemented for 'UInt16' succeed on inductor for dim=3, dtype=torch.uint16 failed on eager for dim=3, dtype=torch.uint32: "conv_depthwise3d" not implemented for 'UInt32' succeed on inductor for dim=3, dtype=torch.uint32 failed on eager for dim=3, dtype=torch.uint64: "conv_depthwise3d" not implemented for 'UInt64' succeed on inductor for dim=3, dtype=torch.uint64 ``` ### Versions nightly 20250105 cc @chauhang @penguinwu
oncall: pt2,oncall: cpu inductor
low
Critical
2,772,020,183
godot
When starting the program, set the visible of texturerect or colorrect to true, and a problem occurs
### Tested versions My project needs exe transparency, so I set Transparent and per Pixel Transparency in project-General-Display to true, and my rendering mode is Compatibility. Now I will display some pictures after starting the program, so I set texturerect/colorrect's visible to true, but I found that after setting it to true, the transparency of texturerect/colorrect suddenly changed, and it returned to normal after less than 10 seconds. After testing it several times, I found that if I display the picture after 10 seconds, it will be normal. It seems that the godot engine is initializing something, and it will be fine after initialization (maybe related to rendering), because if I don't set transparent, there is no problem. Can anyone help me and tell me how to deal with it. ### System information Win11,godot4.3 C# ### Issue description https://github.com/user-attachments/assets/577f0e48-7276-429f-9449-e18896410b13 ### Steps to reproduce I just pressed the A key when the program started to make the Icon appear here is my code ```cs public partial class NodeTest : Node { private TextureRect _textureRect; // Called when the node enters the scene tree for the first time. public override void _Ready() { _textureRect = GetNode<TextureRect>("TextureRect"); _textureRect.Texture = GD.Load<Texture2D>("res://icon.svg"); } // Called every frame. 'delta' is the elapsed time since the previous frame. public override void _Process(double delta) { } public override void _Input(InputEvent @event) { if (@event is InputEventKey keyEvent && keyEvent.Pressed) { if (keyEvent.Keycode == Key.A) { GD.Print("A was pressed"); _textureRect.Visible = true; } if (keyEvent.Keycode == Key.S) { GD.Print("S was pressed"); _textureRect.Visible = false; } } } } ``` ### Minimal reproduction project (MRP) see above
needs testing,topic:2d
low
Minor
2,772,026,068
tauri
[bug] Slightly incorrect inner window size when using window shadows + decorations disabled on Windows
### Describe the bug When displaying a window with shadows on and decorations off, the inner size of the window is slightly smaller than it needs to be, creating a black or white border on the bottom and right. See the following examples (you may have to look closely, lol): <table> <tr> <th>No shadows, no decorations (fine)</th> <th>Shadows, decorations (fine)</th> <th>Shadows, no decorations (bugged)</th> </tr> <tr> <td><img src="https://github.com/user-attachments/assets/c92aac4e-a59e-410d-ac32-6ca08ba230ea"/></td> <td><img src="https://github.com/user-attachments/assets/4a636b0a-46fd-4107-9da4-9b2630170169"/></td> <td><img src="https://github.com/user-attachments/assets/91e4efcf-f830-49b9-9eda-0df90b344348"/></td> </tr> <table> Something I believe is related: when "Show the accent color on the following surfaces -> Title bars and window borders" is enabled (which I have set in the above screenshots, the problem persists even with the setting disabled), only the top and left borders show said color. This was partially fixed in https://github.com/tauri-apps/tao/issues/997 so that too may have something to do with it. ### Reproduction ```rust WebviewWindowBuilder::new(app, "main", Url::parse("https://google.com/")) .resizable(true) .decorations(false) .shadow(true) .build()?; ``` (Set Google to dark mode to be able to see the right/bottom better) ### Expected behavior The black/white color on the right and bottom should not be there, and the accent color border should wrap all the way around all four sides (when enabled). ### Full `tauri info` output ```text [✔] Environment - OS: Windows 10.0.19045 x86_64 (X64) ✔ WebView2: 131.0.2903.112 ✔ MSVC: Visual Studio Community 2022 ✔ rustc: 1.81.0 (eeb90cda1 2024-09-04) ✔ cargo: 1.81.0 (2dbb1af80 2024-08-20) ✔ rustup: 1.27.1 (54dd3d00f 2024-04-24) ✔ Rust toolchain: stable-x86_64-pc-windows-msvc (default) - node: 22.11.0 - pnpm: 9.5.0 - yarn: 1.22.19 - npm: 10.9.0 [-] Packages - tauri 🦀: 2.2.0 - tauri-build 🦀: 2.0.4 - wry 🦀: 0.48.0 - tao 🦀: 0.31.1 - tauri-cli 🦀: 2.0.0-beta.16 - @tauri-apps/api : 2.0.0 (outdated, latest: 2.2.0) - @tauri-apps/cli : 2.0.0 (outdated, latest: 2.2.2) [-] Plugins - tauri-plugin-process 🦀: 2.2.0 - @tauri-apps/plugin-process : not installed! - tauri-plugin-fs 🦀: 2.2.0 - @tauri-apps/plugin-fs : not installed! - tauri-plugin-single-instance 🦀: 2.2.0 - @tauri-apps/plugin-single-instance : not installed! - tauri-plugin-window-state 🦀: 2.2.0 - @tauri-apps/plugin-window-state : not installed! - tauri-plugin-http 🦀: 2.2.0 - @tauri-apps/plugin-http : not installed! - tauri-plugin-autostart 🦀: 2.2.0 - @tauri-apps/plugin-autostart : not installed! - tauri-plugin-shell 🦀: 2.0.2 - @tauri-apps/plugin-shell : not installed! [-] App - build-type: bundle - CSP: unset - frontendDist: https://discord.com/app - devUrl: https://discord.com/app - bundler: Vite ``` ### Stack trace ```text N/A ``` ### Additional context https://github.com/SpikeHD/Dorion/issues/268
type: bug,status: needs triage
low
Critical
2,772,043,699
flutter
[file_selector] KeyUpEvent is not Triggered when `getSaveLocation` is invoked
### Steps to reproduce Appears on windows, macos, linux is not tested. 1. Run **Code sample** 2. Press Ctrl + S. (show dialog) 3. Release Ctrl + S ### Expected results 1. Down Ctrl 2. Down KeyS Show Dialog 3. Up KeyS 4. Up Ctrl ### Actual results 1. Down Ctrl 2. Down KeyS Show Dialog ### Code sample <details open><summary>Code sample</summary> ```dart import 'package:file_selector/file_selector.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatefulWidget { const MyApp({super.key}); @override State<MyApp> createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { @override void initState() { HardwareKeyboard.instance.addHandler((event) { print("type: ${event.runtimeType} key: ${event.logicalKey.debugName}"); print("pressedKey: ${HardwareKeyboard.instance.logicalKeysPressed.map( (e) => e.debugName, )}"); return false; }); super.initState(); } @override Widget build(BuildContext context) { return MaterialApp( shortcuts: { const SingleActivator(LogicalKeyboardKey.keyS, control: true): VoidCallbackIntent( () async { await getSaveLocation(); print('SingleActivator(LogicalKeyboardKey.keyS)'); }, ), }, home: const Scaffold( body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [TextField()], ), ), ), ); } } ``` </details> ### Screenshots or Video <details open> <summary>Screenshots / Video demonstration</summary> https://github.com/user-attachments/assets/cf5eca33-1dae-49be-8c3e-eb1db188751a </details> ### Logs _No response_ ### Flutter Doctor output <details open><summary>Doctor output</summary> ```console [√] Flutter (Channel stable, 3.27.1, on Microsoft Windows [Version 10.0.19045.5247], locale en-US) [√] Windows Version (Installed version of Windows is version 10 or higher) [X] Android toolchain - develop for Android devices X Unable to locate Android SDK. Install Android Studio from: https://developer.android.com/studio/index.html On first launch it will assist you in installing the Android SDK components. (or visit https://flutter.dev/to/windows-android-setup for detailed instructions). If the Android SDK has been installed to a custom location, please use `flutter config --android-sdk` to update to that location. [√] Chrome - develop for the web [√] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.10.5) [!] Android Studio (not installed) [√] Connected device (3 available) [!] Network resources X A network error occurred while checking "https://maven.google.com/": The semaphore timeout period has expired. ! Doctor found issues in 3 categories. ``` </details>
a: text input,framework,package,has reproducible steps,P2,p: file_selector,team-text-input,triaged-text-input,found in release: 3.27,found in release: 3.28
low
Critical
2,772,088,224
transformers
AttributeError: 'Config' object has no attribute '_get_non_default_generation_parameters'
### System Info transformers version: 4.47.1 I finetuned the rmbg-2.0 with my own dataset. When I save the model using model.save_pretrained, I got the error as follows: File "/usr/lib/python3.10/site-packages/transformers/modeling_utils.py", line 2815, in save_pretrained misplaced_generation_parameters = model_to_save.config._get_non_default_generation_parameters() AttributeError: 'Config' object has no attribute '_get_non_default_generation_parameters' ### Who can help? _No response_ ### Information - [ ] The official example scripts - [ ] My own modified scripts ### Tasks - [ ] An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...) - [ ] My own task or dataset (give details below) ### Reproduction 1. finetune rmbg-2; 2. save model. ### Expected behavior save the model sucessfully
bug
low
Critical
2,772,129,016
ollama
Allow set the type of K/V cache separately
Allow set the type of K/V cache separately On Qwen2-7B, when K/V cache both `q4_0` produces weird results. when k is `q4_0` and v is `q8_0` produces weird results. when k is `q8_0` and v is `q4_0` produces normal results.
feature request
low
Minor
2,772,129,800
kubernetes
env variables are not expanded in pod lifecycle hooks
### What happened? Hi, variable expansion ( the `$(var_name)` expansion) seem to work to specific places, it is a surprise for me when I use exec trace to find that it didn't work in `spec.containers[].lifecycle.preStop.exec.command` of pod. ### What did you expect to happen? Either explicit documentation on where variable expansion happens, or explicit mention that the lifecycle hooks doesn't honor it. Preferably it can render the template, though. /sig node ### How can we reproduce it (as minimally and precisely as possible)? Simplly have a env "foo"="bar" in container, then have a lifecycle hook with exec configured that includes `$(foo)` ### Anything else we need to know? _No response_ ### Kubernetes version <details> ```console $ kubectl version Client Version: v1.30.3 Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3 Server Version: v1.31.2 ``` </details> ### Cloud provider <details> </details> ### OS version <details> ```console # On Linux: $ cat /etc/os-release # paste output here $ uname -a # paste output here # On Windows: C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture # paste output here ``` </details> ### Install tools <details> </details> ### Container runtime (CRI) and version (if applicable) <details> </details> ### Related plugins (CNI, CSI, ...) and versions (if applicable) <details> </details>
sig/node,kind/feature,needs-triage
low
Minor
2,772,168,431
vscode
Low contrast on test error marker
I really like the test error marker but feel the contrast between background and text is too little: ![Image](https://github.com/user-attachments/assets/68527f6f-f98b-458f-9e5e-301e8d93c4e5) @meganrogge can probably advise
bug,testing
low
Critical
2,772,175,798
vscode
PLEASE let us disable VSCode Copilot Chat extension without disabling Copilot
As the title states. There are several instances (https://github.com/microsoft/vscode-copilot-release/issues/610, https://github.com/orgs/community/discussions/130265, https://github.com/microsoft/vscode-copilot-release/issues/510, https://github.com/orgs/community/discussions/68276, etc.) of this request being made. Sometimes it's been answered previously by others, occasionally in hacky (but apparently effective ways), but none of them work anymore. If you disable or uninstall the Copilot Chat extension, then you disable/uninstall the main Copilot extension. We recently performed a VSCode Extension bisection process because we noticed that VSCode is eating up our dev VM's memory, and causing them to crash. The bisection pointed to the Copilot Chat extension as the culprit. It would be really nice for us to not have to fully disable the entire Copilot functionality though.
feature-request,extensions
low
Critical
2,772,196,834
electron
Invalid TypeScript type for event 'transactions-updated'
### 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.8 ### What operating system(s) are you using? Other (specify below) ### Operating System Version ... ### What arch are you using? x64 ### Last Known Working Electron version _No response_ ### Expected Behavior Expected type: ```ts on(event: 'transactions-updated', listener: (event: Event, transactions: Transaction[]) => void): this; ``` ### Actual Behavior Actual type: ```ts on(event: 'transactions-updated', listener: () => void): this; ``` ### Testcase Gist URL _No response_ ### Additional Information Docs: https://www.electronjs.org/docs/latest/api/in-app-purchase#event-transactions-updated
bug :beetle:,component/typescript,status/confirmed,32-x-y,needs-docs,34-x-y
low
Critical
2,772,199,453
ant-design
Form 设置clearOnDestroy 属性后在StrictMode 下无法正常加载初始值
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/dan-chu-ceng-zhong-de-xin-jian-biao-dan-antd-5-23-0-forked-2xfksq) ### Steps to reproduce 在开发环境下使用StrictMode ``` createRoot(document.getElementById("container")).render( <StrictMode> <Demo /> </StrictMode> ); ``` ### What is expected? 表单的初始值能够正常加载,Radio 的 public 选项被选中 ### What is actually happening? 表单的初始值未能正常加载,Radio 的 public 选项未被选中 ![image](https://github.com/user-attachments/assets/38ebd505-6b8d-4578-b094-10f6b999252e) | Environment | Info | | --- | --- | | antd | 5.23.0 | | React | 18 | | System | MacOS | | Browser | Edge 131 | <!-- generated by ant-design-issue-helper. DO NOT REMOVE -->
unconfirmed
low
Major
2,772,259,692
three.js
Request depth-sensing generates error from 161 onwards
### Description Adding depth-sensing requirement on requestSession generates a getDepthInformation() null error from version 161 onwards ### Reproduction steps 1. Import a jsdeliver versión greater than 160 2. Add depth-sensing on xr.requestSession 3. Load web on recent chrome for an android 14 ### Code ```js Import as THREE from 'https://cdn.jsdelivr.net/npm/[email protected]/+esm'; ``` ### Live example * [jsfiddle-latest-release WebGLRenderer](https://jsfiddle.net/3mrkqyea/) * [jsfiddle-dev WebGLRenderer](https://jsfiddle.net/gcqx26jv/) * [jsfiddle-latest-release WebGPURenderer](https://jsfiddle.net/mnqr9oj0/) * [jsfiddle-dev WebGPURenderer](https://jsfiddle.net/xno7bmw0/) ### Screenshots _No response_ ### Version >r160 ### Device Mobile ### Browser Chrome ### OS Android
WebXR
low
Critical
2,772,278,452
flutter
FormatException: Invalid UTF-8 byte (at offset 60)
### Steps to reproduce Hello, I have encountered a problem. I am using a Chinese made Linux aarch64 architecture computer to run the Flutter project on Android Studio. My Flutter project previously ran well on Windows and Linux x86. However, when I ran the project on a Linux aarch64 architecture computer, I found that the software was garbled in Chinese characters, and the numbers and letters were displayed normally. The computer code for Linux aarch64 architecture is zh_CN.UTF-8, and my project code code is UTF-8. I don't know why the Chinese characters are garbled. Thank you for your help! ### Expected results ``` phm@phm-pc:~/Android/padhelper/padhelper$ flutter doctor -vv [ +28 ms] executing: uname -m [ +11 ms] Exit code 0 from: uname -m [ ] aarch64 [ +89 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ +4 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +7 ms] Flutter assets will be downloaded from https://storage.flutter-io.cn. Make sure you trust this source! [ +102 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +258 ms] executing: /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java -version [ +14 ms] Exit code 2 from: /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java -version [ ] /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 1: ELF: Permission denied /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 2: : Permission denied /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 3: : Permission denied /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 4: Syntax error: word unexpected (expecting ")") [ +32 ms] executing: /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java -version [ +9 ms] Exit code 2 from: /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java -version [ ] /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 1: ELF: Permission denied /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 2: : Permission denied /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 3: : Permission denied /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio/jbr/bin/java: 4: Syntax error: word unexpected (expecting ")") [ +85 ms] executing: [/home/phm/Android/flutterCode/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%ar [ +9 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%ar [ ] 3 周前 [ +336 ms] executing: /home/phm/Android/Sdk/platform-tools/adb devices -l [ +62 ms] [✓] Flutter (Channel stable, 3.27.1, on Kylin V10 SP1 5.4.18-85-generic, locale zh_CN.UTF-8) [ +1 ms] • Flutter version 3.27.1 on channel stable at /home/phm/Android/flutterCode/flutter [ ] • Upstream repository https://github.com/flutter/flutter.git [ ] • Framework revision 17025dd882 (3 周前), 2024-12-17 03:23:09 +0900 [ ] • Engine revision cb4b5fff73 [ ] • Dart version 3.6.0 [ ] • DevTools version 2.40.2 [ ] • Pub download mirror https://pub.flutter-io.cn [ ] • Flutter download mirror https://storage.flutter-io.cn [ +20 ms] [!] Android toolchain - develop for Android devices (Android SDK version 34.0.0) [ ] • Android SDK at /home/phm/Android/Sdk [ ] • Platform android-34, build-tools 34.0.0 [ +11 ms] • Java binary at: /home/phm/Android/FlutterSDK/FlutterSDK/flutter_linux_3.24.5-stable/flutter/bin:/home/phm/Android/flutterCode/flutter/bin:/home/phm/Android/jdk-23_linux-aarch64_bin/jdk-23.0.1/bin :/home/dmdba/dmdbms/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/phm/Android/jdk-23_linux-aarch64_bin/jdk-23.0.1/bin/java [ +9 ms] ✗ Cannot execute /home/phm/Android/FlutterSDK/FlutterSDK/flutter_linux_3.24.5-stable/flutter/bin:/home/phm/Android/flutterCode/flutter/bin:/home/phm/Android/jdk-23_linux-aarch64_bin/jdk-23.0.1/bin :/home/dmdba/dmdbms/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/phm/Android/jdk-23_linux-aarch64_bin/jdk-23.0.1/bin/java to determine the version [ +13 ms] [✗] Chrome - develop for the web (Cannot find Chrome executable at google-chrome) [ ] ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable. [ +320 ms] [✓] Linux toolchain - develop for Linux desktop [ ] • clang version 10.0.0-4kylin1 [ ] • cmake version 3.16.3 [ ] • ninja version 1.10.0 [ ] • pkg-config version 0.29.1 [ +9 ms] [!] Android Studio (version 2024.2) [ ] • Android Studio at /home/phm/Android/android-studio-2024.2.1.12-linux/android-studio [ ] • Flutter plugin version 83.0.3 [ ] • Dart plugin can be installed from: [ ] 🔨 https://plugins.jetbrains.com/plugin/6351-dart [ +1 ms] ✗ Unable to determine bundled Java version. [ ] • Try updating or re-installing Android Studio. [ +9 ms] [✓] VS Code (version 1.96.2) [ ] • VS Code at /usr/share/code [ ] • Flutter extension version 3.102.0 [ +45 ms] [☠] Connected device (the doctor check crashed) [ ] ✗ Due to an error, the doctor check did not complete. If the error message below is not helpful, please let us know about this issue at https://github.com/flutter/flutter/issues. [ +1 ms] ✗ FormatException: Invalid UTF-8 byte (at offset 60) [ ] • #0 _Utf8Decoder.convertChunked (dart:convert-patch/convert_patch.dart:1950:7) [ ] #1 _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:304:28) [ ] #2 _Utf8ConversionSink.add (dart:convert/string_conversion.dart:300:5) [ ] #3 _ConverterStreamEventSink.add (dart:convert/chunked_conversion.dart:69:18) [ ] #4 _SinkTransformerStreamSubscription._handleData (dart:async/stream_transformers.dart:111:24) [ ] #5 _rootRunUnary (dart:async/zone.dart:1422:47) [ ] #6 _CustomZone.runUnary (dart:async/zone.dart:1324:19) [ ] #7 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1233:7) [ ] #8 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:366:11) [ ] #9 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:297:7) [ ] #10 _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:777:19) [ ] #11 _StreamController._add (dart:async/stream_controller.dart:651:7) [ ] #12 _StreamController.add (dart:async/stream_controller.dart:606:5) [ ] #13 _Socket._onData (dart:io-patch/socket_patch.dart:2455:41) [ ] #14 _rootRunUnary (dart:async/zone.dart:1430:13) [ ] #15 _CustomZone.runUnary (dart:async/zone.dart:1324:19) [ ] #16 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1233:7) [ ] #17 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:366:11) [ ] #18 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:297:7) [ ] #19 _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:777:19) [ ] #20 _StreamController._add (dart:async/stream_controller.dart:651:7) [ ] #21 _StreamController.add (dart:async/stream_controller.dart:606:5) [ ] #22 new _RawSocket.<anonymous closure> (dart:io-patch/socket_patch.dart:1942:33) [ ] #23 _NativeSocket.issueReadEvent.issue (dart:io-patch/socket_patch.dart:1385:14) [ ] #24 _microtaskLoop (dart:async/schedule_microtask.dart:40:21) [ ] #25 _startMicrotaskLoop (dart:async/schedule_microtask.dart:49:5) [ ] #26 _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13) [ ] #27 _RawReceivePort._handleMessage (dart:isolate-patch/isolate_patch.dart:185:5) [ +695 ms] [✓] Network resources [ ] • All expected network resources are available. [ ] ! Doctor found issues in 4 categories. [ +18 ms] "flutter doctor" took 2,110ms. [ +134 ms] ensureAnalyticsSent: 110ms [ ] Running 1 shutdown hook [ +1 ms] Shutdown hooks complete [ +10 ms] exiting with code 0 ``` ### Actual results ![2025-01-07_16-52-39](https://github.com/user-attachments/assets/d3a91f24-58e5-4a16-9ec8-109662c40a25) ### Code sample <details open><summary>Code sample</summary> ```dart [Paste your code here] ``` </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 [Paste your output here] ``` </details>
waiting for customer response,in triage
low
Critical
2,772,297,235
vscode
Support extensions.autoRestart setting in stable
Support extensions.autoRestart setting in stable
feature-request,extensions
low
Minor
2,772,312,505
PowerToys
Create a blue screen of death if use peek on a .bat
### Microsoft PowerToys version 0.86.0 ### Installation method Microsoft Store, PowerToys auto-update ### Running as admin No ### Area(s) with issue? Peek ### Steps to reproduce Just use peek on a .bat file ### ✔️ Expected Behavior See what is the content of the .bat ### ❌ Actual Behavior Create a blue screen a make windows repair our hard drive ### Other Software _No response_
Issue-Bug,Needs-Triage,Needs-Team-Response
low
Minor
2,772,322,744
flutter
flutter bugg while running the dart code
### Steps to reproduce * ### Expected results There should be chnges in application but mean while there is nothing that change while we have make a certain changes in code but while debugging code it shown some missleading error ### Actual results Launching lib\main.dart on sdk gphone x86 in debug mode... Support for Android x86 targets will be removed in the next stable release after 3.27. See https://github.com/flutter/flutter/issues/157543 for details. Running Gradle task 'assembleDebug'... ### Code sample <details open><summary>Code sample</summary> ```dart [Paste your code here] ``` </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 [Paste your output here] ``` </details>
waiting for customer response,in triage
low
Critical
2,772,335,471
opencv
Memory leak cv::videoCapture with FFMPEG backend
### System Information Debian 12 OpenCV 4.10 GCC 12.2 ### Detailed description **Memory leak of 300-400 MB at 75 iterations of reading** VideoCapture Backend FFMPEG, Video format .webm, FPS 1, Frame Count 75, codec VP9 This code is golang code using GoCV, but everything related to golang has been tested using a profiler. ### Steps to reproduce ``` func processing(inputPath string) { input, err := gocv.VideoCaptureFile(inputPath) if err != nil { fmt.Print(err) return } defer input.Close() frame := gocv.NewMat() defer frame.Close() for { if !input.Read(&frame) { break } } } ``` ### 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,category: videoio,needs investigation
low
Minor
2,772,355,736
storybook
[Tracking]: Universal State Primitive 📡
## 🧑‍🤝‍🧑 Who: @JReinhold and @valentinpalkovic This is a tracking issue for a project centered around creating a primitive that makes it easier to have state that is synced between some or all "environments". # ⚠️ Problem Storybook consists of multiple "environments" that tie the experience together: - The dev server - One or multiple places in the the manager UI (eg. an addon panel and toolbar dropdown) - The preview UI (ie. in stories) The Channel API can be used to communicate between these environments, but it only solves the _communication_ part, and leaves it up to the consumer to figure out how to keep state in sync between the environments, which is not straight forward. A few use cases that are harder to implement than they should be today are: 1. Sharing state between the dev server and the manager UI. The (experimental) Test addon does this a lot, sharing information between the Vitest instance on the server with the sidebar UI. 2. Sharing state between multiple "slots" in the manager UI, ie. an addon panel that shares information with a toolbar tool. This is hard today because the two components are registered separately without any possibility to instantiate a React context provider or similar way to share information. 3. Sharing state between the preview and the manager UI, ie. an addon panel that needs to show different information based on some logic it is injecting into stories. The most immediate problem we're facing _today_ is inconsistent state in the Test Module. It can quickly get out of sync if the dev server restarts, if the manager has stale state in session storage, or if other tabs changes the state of the server. # 🏁 Goals The high-level goals of this project is to: 1. Construct a low-level primitive API that makes it easier to share state across multiple environments. It must be use-case agnostic, not focusing on any specific environments, eg. it shouldn't _need_ to sync to the server, if the use case is only to sync between manager UI slots. It's still TBD whether or not that API will be a public, non-experimental at the end of the project or not, it might be beneficial to keep it internal/experimental for a period of time before we commit to stabilising it for public use. 2. Use the new API to revamp the state management in the testing addon, eliminating state inconsistencies where possible. There's a high chance this supersedes the current (experimental) testing module API, still TBD. # 📚 Research @JReinhold has done an initial POC on a "UniversalState" API, that can serve as an inspiration or starting point for discussions and initial implementation. The final API might not look like this at all, or it might be a slight modification of this, we'll see. 🤷 The POC is implemented in the [`jeppe/universal-state`](https://github.com/storybookjs/storybook/commit/7bca712b843d2af0e8c374563bb2f3fec816ee66) branch. (note the following videos where originally intended for the Storybook Core team eyes only, so it might require contextual knowledge that you don't have) <details><summary>Demonstration of UniversalState POC from the consumer perspective</summary> https://github.com/user-attachments/assets/34991255-1750-48a6-9563-7da6c2aef28d https://github.com/user-attachments/assets/ac090169-c522-40cb-8866-1f53865d2ec2 </details> <details><summary>Demonstration of how the UniversalState POC is implemented</summary> https://github.com/user-attachments/assets/e39b5fd5-13e6-4b83-b243-78ccf86ff99c </details> The `@chromatic-com/storybook` addon also has a concept of [`SharedState`](https://github.com/chromaui/addon-visual-tests/blob/main/src/utils/SharedState.ts) that is very similar to the UniversalState POC as it needs to solve the same underlying pain-points. # 🚩 Milestones The base idea is currently to create a minimal, low-level abstraction on top of the existing Channel API that handles the syncing of the state - the Channel API already handled _communication_ between the environments, but it doesn't handle anything regarding keeping state in sync. ## Primitive API ```[tasklist] ### Tasks - [x] Discuss confict handling scenarios - [ ] Revive UniversalState POC within `@storybook/core` - [ ] Support a Selector-pattern when subscribing to the state - [ ] Add React-hook in manager UI that handles re-rendering on state change - [ ] Handle conflict resolution when multiple state instances modify state simultaneously - [ ] Handle conflicts when multiple state instances are instantiated simultaneously - [ ] Add persistence hooks for consumers to read/write persisted state ``` ## Use API in testing addon ```[tasklist] ### Tasks - [ ] Use UniversalStore to sync configs (a11y, coverage) - [ ] Use UniversalStore to sync watch mode - [ ] Use UniversalStore to sync running state and triggering runs ```
Tracking
low
Minor
2,772,385,332
flutter
Flutter build appbundle --release Downloads Multiple Android SDK Platforms in CI/CD with Fastlane and Drone
### Type of Request bug ### Infrastructure Environment While running flutter build appbundle --release in a CI/CD pipeline using Fastlane and Drone, the build process triggers the download of multiple Android SDK platforms (e.g., android-28, android-31, android-33, etc.), which causes significant delays and occasional timeouts. Steps to Reproduce: Configure a CI/CD pipeline with Drone and Fastlane to build a Flutter app for Android. Run the flutter build appbundle --release command during the build process. Observe the logs where multiple SDK platforms and build tools are being downloaded. Expected Behavior: The build process should utilize pre-installed SDK components or clearly identify the missing SDK version(s) required, instead of downloading multiple versions unnecessarily. Observed Behavior: The command downloads several Android SDK platforms and tools that seem unrelated to the app's configuration, despite having compileSdkVersion and targetSdkVersion explicitly set in the build.gradle file. Relevant Configurations: - Flutter version: [3.27] - CI/CD tools: Drone, Fastlane - Android build.gradle settings: compileSdkVersion 34 targetSdkVersion 34 minSdkVersion 21 Please check the logs in below attached screen-shot ![Screenshot 2025-01-07 at 1 36 24 PM](https://github.com/user-attachments/assets/a8ad17ba-c71d-4d4b-a974-ed948bf0cad8) ### What is happening? Please be descriptive. ### Steps to reproduce Step 1: Step 2: .. Step n: ### Expected results I expect to see X when Y is finished.
team-infra
low
Critical
2,772,401,189
TypeScript
`RangeError: Maximum call stack size exceeded` Regression in #52392
### 🔎 Search Terms RangeError: Maximum call stack size exceeded, #52392 ### 🕗 Version & Regression Information - This changed in commit or PR #52392 ### ⏯ Playground Link https://www.typescriptlang.org/play/?#code/KYDwDg9gTgLgBAbwL4G4BQaAmwDGAbAQymDgICMBnGKAnefAiiuAFQE8xgARAmAgWQjY8AHgAKRYADsYAPkRo4cMJJkAuOBOIz0i5cRXEuwKAEsAbsEw8+ACj1KYAC1MUNz13FAxpmZgmVVGA1TKQAzEzgAfTgkOAB+OClgSyg4DWTUvQBKDXMIU0x0JAxsBmI4BiY4ACFGYABJHwBbLxAfKT84LggcAFdm6RgRAik2eQQ9QyGNOopGloA6LSHirFxCCqkCQYoVHBI5heBWyccOEhWZOABeOBgLiDC4AEE6aDEWACUAJmA19blEgAczwEDIBDwCiU212+xIYQgfU6UDY0KUbUgsDgpmaWPgUQAqlI+vNMLdavUmid0EoSiVAZsSFVmNTWt5fMwev1BtdkKUNpJKoRqgAxCB4bBQT6-EhnOAgdyPZ5vGAfb5-AFlJnCxjMVXq2XothKzhPODiyUmGWavQALw07E4NgEQmAogeZuebNkAM9JGMwDAWhgpkhIhYbQ6XXBACtcHIKfKANoAaRxUjgAGtgGxzSwALrxDRRQPBoih8MsNMF31oVBof3RMshsOiFjyO6RjmdZhxhMJbrAIOtqvyR26bVClndXoDIYAZScw5gADUfiJufOZAAaOAAYQg4VMwL6NFDR6jnLg-boFNG43ROCPVCgfXeUHsGJvYAvUjcQ4jhWbYiIex6nuephHvIABk6Lfpgc68sEs48qsDixDkWqChUz7-vAiJWlAprAOalpSja-xoMkADuqHbjAS4ruutgBIhaHqHAhFSrE2ToEAA ### 💻 Code ```ts export {}; declare abstract class TypeDataModel<Parent> { parent: Parent; prepareDerivedData( this: this extends { parent: infer _ } ? never : never ): void; } declare class BaseItem extends Document<any> { parent: BaseItem.Parent; } declare namespace BaseItem { type Parent = typeof ActorPTR2e; } declare global { namespace foundry { export import _Unused = BaseItem; } } declare class Item extends Document {} declare class FolderPTR2e { x: typeof ActorPTR2e; } declare class ActorPTR2e { y: typeof FolderPTR2e; z: TypeDataModel<typeof Item>; } type DeepPartial<T extends object> = { [K in keyof T]?: _DeepPartial<T[K]>; }; type _DeepPartial<T> = T extends object ? DeepPartial<T> : T; declare class DocumentSheetV2<Document, Configuration extends object = any> { constructor( options: DeepPartial<Configuration> & { document: Document; } ); } declare const folder: typeof FolderPTR2e; new DocumentSheetV2({ document: folder }); ``` ### 🙁 Actual behavior The compiler crashes with `RangeError: Maximum call stack size exceeded`. ``` RangeError: Maximum call stack size exceeded at structuredTypeRelatedToWorker (node_modules/typescript/lib/_tsc.js:64885:43) at structuredTypeRelatedTo (node_modules/typescript/lib/_tsc.js:64817:21) at recursiveTypeRelatedTo (node_modules/typescript/lib/_tsc.js:64768:19) at isRelatedTo (node_modules/typescript/lib/_tsc.js:64186:122) at isPropertySymbolTypeRelated (node_modules/typescript/lib/_tsc.js:65563:14) at propertyRelatedTo (node_modules/typescript/lib/_tsc.js:65603:23) at propertiesRelatedTo (node_modules/typescript/lib/_tsc.js:65814:29) at structuredTypeRelatedToWorker (node_modules/typescript/lib/_tsc.js:65361:21) at structuredTypeRelatedTo (node_modules/typescript/lib/_tsc.js:64817:21) at recursiveTypeRelatedTo (node_modules/typescript/lib/_tsc.js:64768:19) ``` (this is on 5.8.0-dev.20250106 but the same error appears on 5.7.2 and several other versions I tested as well as all the ones I bisected) ### 🙂 Expected behavior Regular errors. This file has a few but in my original repo there were less, possibly none? The editor doesn't crash and reports these errors: ``` Type instantiation is excessively deep and possibly infinite. Expression produces a union type that is too complex to represent. ``` On `DocumentSheetV2`. I find the second one odd because there's not a single union in the program. There's also the error: ``` No base constructor has the specified number of type arguments. ``` On `Document<any>`, because `Document` doesn't take type arguments. In my original repo I wasn't passing a generic to a class without one but this was the easiest way to reliably reproduce it. I can get it to work _without_ the `<any>` but it was simply less reliable while I was reducing so I left it in. ### Additional information about the issue _No response_
Bug
low
Critical
2,772,402,413
deno
[Feature Request] Enhance HMR compile error messages with detailed debugging information
When Hot Module Replacement (HMR) fails due to a compilation error, the current error message is minimal and doesn't provide enough context to quickly debug the issue. ### Current behavior ``` HMR Failed to reload module file:///path/to/file.tsx: compile error. HMR Restarting! File change detected: "/path/to/file.tsx" ``` ### Proposed behavior According to the Chrome DevTools Protocol (https://chromedevtools.github.io/devtools-protocol/v8/Debugger/), we can access more detailed error information through `Runtime.ExceptionDetails` when the status is `CompileError`. ### Proposed Enhancement Include the exception details from `Runtime.ExceptionDetails` in the HMR error message to help developers quickly identify and fix compilation issues.
suggestion
low
Critical
2,772,420,378
godot
Gamepad bindings are off on Linux with "Generic X-Box pad" controller
### Tested versions Reproducible on Godot Master ### System information Linux binogure 6.11-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.11-1~exp1 (2024-09-19) x86_64 GNU/Linux ### Issue description Joypad bindings are off on Linux https://github.com/user-attachments/assets/c2de1ead-9f50-4ee3-b3f2-83ad2af43aa3 ### Steps to reproduce Open the Godot Demo game pad project: https://github.com/godotengine/godot-demo-projects/tree/master/misc/joypads Plug a XBox Generic controller. Launch the project, then open this webpage: https://gamepadtester.net/ Then use the controller, the bindings are off ### Minimal reproduction project (MRP) https://github.com/godotengine/godot-demo-projects/tree/master/misc/joypads
bug,topic:input
low
Major
2,772,483,635
tensorflow
keras model.save does not respect `include_optimizer=False`
### Issue type Bug ### Have you reproduced the bug with TensorFlow Nightly? Yes ### Source binary ### TensorFlow version 2.19.0-dev20250105 ### Custom code No ### OS platform and distribution _No response_ ### Mobile device _No response_ ### Python version _No response_ ### Bazel version _No response_ ### GCC/compiler version _No response_ ### CUDA/cuDNN version _No response_ ### GPU model and memory _No response_ ### Current behavior? Saving a model using keras with `include_optizer = False` results in a model being saved with optimizer ### Standalone code to reproduce the issue ```shell https://colab.research.google.com/drive/1x5NJs9nFxmExhuy8_f_fOehHmIOmk-CZ?usp=sharing ``` ### Relevant log output _No response_
type:bug,comp:keras,TF 2.18
medium
Critical
2,772,502,188
angular
No lint warnings for signals used within control flow.
### Which @angular/* package(s) are relevant/related to the feature request? _No response_ ### Description ``` @for (breadcrumb of breadcrumbs(); track breadcrumb.name; let i = $index) { <div class="breadcrumb"> @if (breadcrumb.linkPath) { <a class="breadcrumb--link" [routerLink]="[breadcrumb.linkPath]"> {{ breadcrumb.name }}</a> } @else { <div class="breadcrumb--disabled"> {{ breadcrumb.name }} </div> } @if **(i < breadcrumbs.length - 1)** { <inm-icon [name]="'ChevronRight'" [size]="'x-small'"></inm-icon> } </div> } ``` There currently are no lint warnings for `i < breadcrumbs.length - 1`, my workaround ended up being: ``` @if (breadcrumbs()?.length; as breadCrumbsLength) { @if (breadcrumbs(); as breadcrumbs) { <div class="breadcrumb-ct"> @for (breadcrumb of breadcrumbs; track breadcrumb.name; let i = $index) { <div class="breadcrumb"> @if (breadcrumb.linkPath) { <a class="breadcrumb--link" [routerLink]="[breadcrumb.linkPath]"> {{ breadcrumb.name }}</a> } @else { <div class="breadcrumb--disabled"> {{ breadcrumb.name }} </div> } @if (i < breadCrumbsLength - 1) { <inm-icon [name]="'ChevronRight'" [size]="'x-small'"></inm-icon> } </div> } </div> } } ``` As directly using `i < breadcrumbs()?.length - 1` receives a linting error of object undefined, even if it's nested within an if statement here: ``` @if (breadcrumbs() && breadcrumbs()?.length) { <div class="breadcrumb-ct"> @for (breadcrumb of breadcrumbs(); track breadcrumb.name; let i = $index) { <div class="breadcrumb"> @if (breadcrumb.linkPath) { <a class="breadcrumb--link" [routerLink]="[breadcrumb.linkPath]"> {{ breadcrumb.name }}</a> } @else { <div class="breadcrumb--disabled"> {{ breadcrumb.name }} </div> } @if (i < breadcrumbs()?.length - 1) { <inm-icon [name]="'ChevronRight'" [size]="'x-small'"></inm-icon> } </div> } </div> } ``` ### Proposed solution To still have linting errors if invoking signals within nested @if and @for statenents. ### Alternatives considered n/a
area: core,P4,bug,core: reactivity,cross-cutting: signals
low
Critical
2,772,503,621
flutter
Max simultaneously running Isolate count >= 8 causes the main isolate to freeze.
### Steps to reproduce We were stepping into a problem with our app that caused it to freeze randomly, after investigating the issue we noticied that creating more than 8 isolates causes the main isolate to freeze. This is especially problematic because we are using ffi to call into c code which runs synchronous. But it seems that issue is not limited to ffi calls, normal dart code is also causing this issue. I provided a sample repository to reproduce this issue: https://github.com/ajungg/flutter_isolate_lockup In this demo, you can press a button and that launches an Isolate that runs for 10 seconds, blocking using sleep. But it does not matter what you do in that isolate. The only thing that does not block the main thread would be using Future.delayed instead of sleep, but we are trying to simulate a heavy synchronous process here. When you press this button more than 8 times in 10 seconds, the UI freezes as indicated using the CircularProgressIndicator. ### Expected results I would expect to be able to launch more than 8 isolates since this is the only way to launch threads from inside dart code. Native Android apps do not have problems running over 1000 threads doing a while(true) loop and rendering the UI. You may start seeing the scheduler struggle at over 1000 threads, but no freezing. Im not asking for performance here tho, i want it to just not lock up completely and that problem is a solved problem operating systems are already handling. ### Actual results App is locking up at over 8 simultaneously running isolates ### Code sample <details open><summary>Code sample</summary> ```dart import 'dart:io'; import 'dart:isolate'; import 'package:flutter/material.dart'; Future<void> main() async { runApp(const MyApp()); } class MyApp extends StatefulWidget { const MyApp({super.key}); @override State<MyApp> createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { int _counter = 0; @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ const CircularProgressIndicator(), Text('Number of isolates: $_counter'), FilledButton( onPressed: () async { setState(() { _counter++; }); await Isolate.run(isolate); setState(() { _counter--; }); }, child: const Text('Spawn Isolate'), ), ], ), ), ), ); } } // It does not matter if we are using sleep, do some heavy calculation or calling into ffi here. // Note: Using await Future.delayed(const Duration(seconds: 10)) instead of sleep would of course work, but we // are trying to simulate a heavy calculation here. Future<void> isolate() async { print('spawn'); sleep(const Duration(seconds: 10)); print('finish'); } ``` </details> Sample repository: https://github.com/ajungg/flutter_isolate_lockup ### 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 [✓] Flutter (Channel stable, 3.27.1, on Microsoft Windows [Version 10.0.26100.2605], locale de-DE) • Flutter version 3.27.1 on channel stable at C:\flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision 17025dd882 (3 weeks ago), 2024-12-17 03:23:09 +0900 • Engine revision cb4b5fff73 • Dart version 3.6.0 • DevTools version 2.40.2 [✓] Windows Version (Installed version of Windows is version 10 or higher) [✓] Android toolchain - develop for Android devices (Android SDK version 35.0.0) • Android SDK at C:\Android • Platform android-35, build-tools 35.0.0 • ANDROID_HOME = C:\Android • Java binary at: C:\Users\impi\AppData\Local\Programs\Android Studio\jbr\bin\java • Java version OpenJDK Runtime Environment (build 17.0.11+0--11852314) • All Android licenses accepted. [✓] Chrome - develop for the web • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe [✓] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.8.0) • Visual Studio at C:\Program Files\Microsoft Visual Studio\2022\Community • Visual Studio Community 2022 version 17.8.34309.116 • Windows 10 SDK version 10.0.22621.0 [✓] Android Studio (version 2024.1) • Android Studio at C:\Users\impi\AppData\Local\Programs\Android Studio • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 17.0.11+0--11852314) [✓] IntelliJ IDEA Community Edition (version 2024.2) • IntelliJ at C:\Users\impi\AppData\Local\Programs\IntelliJ IDEA Community Edition • Flutter plugin version 82.1.3 • Dart plugin version 242.21829.3 [✓] VS Code, 64-bit edition (version 1.91.1) • VS Code at C:\Program Files\Microsoft VS Code • Flutter extension version 3.100.0 [✓] Connected device (4 available) • Pixel 9 (mobile) • 46120DLAQ00238 • android-arm64 • Android 15 (API 35) • Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.26100.2605] • Chrome (web) • chrome • web-javascript • Google Chrome 131.0.6778.205 • Edge (web) • edge • web-javascript • Microsoft Edge 131.0.2903.70 [✓] Network resources • All expected network resources are available. • No issues found! ``` </details>
waiting for customer response,in triage
low
Major
2,772,521,681
material-ui
[material-ui] Style separation between 2 versions of Material UI
Hello, TLDR: I need to support 2 versions of MUI, 5 & 6, in the same project. The style from MUI-5 theme provider should not apply to the MUI 6 components Context: In an App we have he old UI components build on top of MUI 5. We are in the phase which we want to build a new version of our design system and I wanted to create a separate, new, UI-components library based on MUI 6. I thought that this way we can create new components without interfering with the old ones Solution? & Implementation: In my original plans I wanted to separate the classname creation for V6 components so in that way whatever styles are defined in the V5 theme provider should be propagated to the V6, since it should have different classNames. - Added the v6 package ```json "@mui/material": "5.15.20", "@mui/material-v6": "npm:@mui/[email protected]", ``` - Modified V6 classname generator ``` import { unstable_ClassNameGenerator as ClassNameGenerator } from '@mui/material-v6/className'; ClassNameGenerator.configure((componentName) => `V6-${componentName}`); ``` - In the DOM I can see that they are generated accordingly, `V6-` prefix is added to V6 components ```jsx <MuiThemeProvider5 theme={themeV5}> <ButtonV5 variant="contaned" color="secondary" /> <ButtonV6 variant="contaned" color="secondary" /> </MuiThemeProvider5> ``` ```HTML <div class="MuiBox-root css-1m6ib4c"> <button class="MuiButtonBase-root MuiButton-root MuiButton-contained MuiButton-containedSecondary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButton-colorSecondary MuiButton-disableElevation MuiButton-root MuiButton-contained MuiButton-containedSecondary MuiButton-sizeMedium MuiButton-containedSizeMedium MuiButton-colorSecondary MuiButton-disableElevation css-88mbw3-MuiButtonBase-root-MuiButton-root" tabindex="0" type="button">ASd</button> <button class="V6-MuiButtonBase-root V6-MuiButton-root V6-MuiButton-contained V6-MuiButton-containedSecondary V6-MuiButton-sizeMedium V6-MuiButton-containedSizeMedium V6-MuiButton-colorSecondary V6-MuiButton-root V6-MuiButton-contained V6-MuiButton-containedSecondary V6-MuiButton-sizeMedium V6-MuiButton-containedSizeMedium V6-MuiButton-colorSecondary css-1jo16jv-MuiButtonBase-root-MuiButton-root" tabindex="0" type="button">ASd</button> </div> ``` The issue that I have is that the V6 takes the theme styling from the V5 theme provider ![image](https://github.com/user-attachments/assets/27cae3a8-3b86-4a6f-8026-223de2bfd1bf) If I try to add a `ThemeProvider` for the V6 it overrides completely the theme provider of the `V5` ```jsx <MuiThemeProvider5 theme={themeV5}> <MuiThemeProvider6 theme={themeV6}> <ButtonV5 variant="contaned" color="secondary" /> <ButtonV6 variant="contaned" color="secondary" /> </MuiThemeProvider6> </MuiThemeProvider5> ``` ![image](https://github.com/user-attachments/assets/69b8f7a1-7ac4-4947-920d-99d8c96265e1) Is there anyway to isolate changes between the 2 theme versions?
support: question,package: system,package: material-ui
low
Minor
2,772,565,463
ollama
Make flash attention configurable via UI or enable by default
Hi, I love Ollama, excellent work. It makes using LLMs really beginner friendly, but does impose any limits on power usage. I recently learned about flash attention and found out from reading the FAQ that Ollama supports this. As flash attention is important to support large contexts and can speed up models considerably, it would be great if the option to enable flash attention would be more easily accessible. I am on Windows, and the Ollama Server has a small icon in the notification area. It would be great if you could add a checkbox to enable flash attention and set the KV cache quantization there.
feature request
low
Minor
2,772,584,853
ant-design
Bug: Antd 5.23 Dropdown misplaces/flashes children unless forwardRef is used
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/antd-reproduction-template-forked-l67ghl) ### Steps to reproduce Steps to reproduce: 1. Create new React 19 project with Antd 5.23 2. Add `@ant-design/v5-patch-for-react-19` and import it 3. Render `Dropdown` with custom component as child 4. Observe dropdown either misplaced or flashing 5. Wrap custom component in `forwardRef` to verify fix Note: Complete reproduction in attached sandbox ### What is expected? - Dropdown correctly positions and persists when using custom component children, without needing forwardRef ### What is actually happening? - Dropdown renders at wrong screen position - Dropdown flashes/disappears immediately - Must use `forwardRef` as a workaround | Environment | Info | | --- | --- | | antd | 5.23.0 | | React | 19.0.0 | | System | Linux melian 6.6.69 #1-NixOS SMP PREEMPT_DYNAMIC Thu Jan 2 09:32:11 UTC 2025 x86_64 GNU/Linux | | Browser | Mozilla Firefox 133.0.3 | <!-- generated by ant-design-issue-helper. DO NOT REMOVE -->
React 19
low
Critical
2,772,607,142
go
runtime: CGo thread stacks stay in physical memory
### Go version go1.23.4 linux/amd64 ### Output of `go env` in your module/workspace: ```shell GO111MODULE='' GOARCH='amd64' GOBIN='' GOCACHE='/home/ykelani/.cache/go-build' GOENV='/home/ykelani/.config/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='amd64' GOHOSTOS='linux' GOINSECURE='' GOMODCACHE='/home/ykelani/go/pkg/mod' GONOPROXY='' GONOSUMDB='' GOOS='linux' GOPATH='/home/ykelani/go' GOPRIVATE='' GOPROXY='https://proxy.golang.org,direct' GOROOT='/home/ykelani/sdk/go1.23.4' GOSUMDB='sum.golang.org' GOTMPDIR='' GOTOOLCHAIN='auto' GOTOOLDIR='/home/ykelani/sdk/go1.23.4/pkg/tool/linux_amd64' GOVCS='' GOVERSION='go1.23.4' GODEBUG='' GOTELEMETRY='local' GOTELEMETRYDIR='/home/ykelani/.config/go/telemetry' GCCGO='gccgo' GOAMD64='v1' AR='ar' CC='gcc' CXX='g++' CGO_ENABLED='1' GOMOD='/home/ykelani/TestCGoScaling/go.mod' GOWORK='' 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 -fdebug-prefix-map=/tmp/go-build4071249400=/tmp/go-build -gno-record-gcc-switches' ``` ### What did you do? ``` package main /* #cgo CFLAGS: -O0 #include <unistd.h> void a(int depth) { if (depth > 0) a(depth - 1); } */ import "C" import ( "fmt" "runtime/debug" "sync" ) func main() { fmt.Println("Running multiple CGo calls") var wg sync.WaitGroup for i := 0; i < 1000000; i++ { go func() { wg.Add(1) defer wg.Done() C.a(100000) }() } wg.Wait() debug.FreeOSMemory() select {} } ``` ### What did you see happen? After the program pauses on the `select` call, RSS is `497MB` for 150 OS threads. I see many segments of size `3132KB` in the `pmap` output - my uninformed guess is that these are thread stacks but it's unclear why they are still in physical memory. ``` dev-dsk-ykelani-1a-f1f9d672 % ps -o nlwp 15514 NLWP 150 ``` ``` dev-dsk-ykelani-1a-f1f9d672 % pmap -x 15514 15514: ./build/bin/cgo-scaling Address Kbytes RSS Dirty Mode Mapping 0000000000400000 1352 1352 0 r-x-- cgo-scaling 0000000000751000 4 4 4 r---- cgo-scaling 0000000000752000 44 44 20 rw--- cgo-scaling 000000000075d000 144 72 72 rw--- [ anon ] 00000000120cf000 132 8 8 rw--- [ anon ] 000000c000000000 65536 28900 28900 rw--- [ anon ] 00007fbeb51f5000 4 0 0 ----- [ anon ] 00007fbeb51f6000 10240 3132 3132 rw--- [ anon ] 00007fbeb5bf6000 4 0 0 ----- [ anon ] 00007fbeb5bf7000 10240 3132 3132 rw--- [ anon ] 00007fbeb65f7000 4 0 0 ----- [ anon ] 00007fbeb65f8000 10240 3132 3132 rw--- [ anon ] 00007fbeb6ff8000 4 0 0 ----- [ anon ] 00007fbeb6ff9000 10240 3132 3132 rw--- [ anon ] 00007fbeb79f9000 4 0 0 ----- [ anon ] 00007fbeb79fa000 10240 3132 3132 rw--- [ anon ] 00007fbeb83fa000 4 0 0 ----- [ anon ] 00007fbeb83fb000 10240 3132 3132 rw--- [ anon ] 00007fbeb8dfb000 4 0 0 ----- [ anon ] 00007fbeb8dfc000 10240 3132 3132 rw--- [ anon ] 00007fbeb97fc000 4 0 0 ----- [ anon ] 00007fbeb97fd000 10240 3132 3132 rw--- [ anon ] 00007fbeba1fd000 4 0 0 ----- [ anon ] 00007fbeba1fe000 10240 3132 3132 rw--- [ anon ] 00007fbebabfe000 4 0 0 ----- [ anon ] 00007fbebabff000 10240 3132 3132 rw--- [ anon ] 00007fbebb5ff000 4 0 0 ----- [ anon ] 00007fbebb600000 10240 3132 3132 rw--- [ anon ] 00007fbebc000000 132 4 4 rw--- [ anon ] 00007fbebc021000 65404 0 0 ----- [ anon ] 00007fbec0000000 132 4 4 rw--- [ anon ] 00007fbec0021000 65404 0 0 ----- [ anon ] 00007fbec4000000 132 4 4 rw--- [ anon ] 00007fbec4021000 65404 0 0 ----- [ anon ] 00007fbec83fa000 4 0 0 ----- [ anon ] ... 00007fc1117e5000 10496 3296 3296 rw--- [ anon ] 00007fc112225000 4 0 0 ----- [ anon ] 00007fc112226000 10240 3132 3132 rw--- [ anon ] 00007fc112c26000 4 0 0 ----- [ anon ] 00007fc112c27000 10240 3132 3132 rw--- [ anon ] 00007fc113627000 4 0 0 ----- [ anon ] 00007fc113628000 10240 8 8 rw--- [ anon ] 00007fc114028000 33792 8 8 rw--- [ anon ] 00007fc116128000 263680 0 0 ----- [ anon ] 00007fc1262a8000 4 4 4 rw--- [ anon ] 00007fc1262a9000 524284 0 0 ----- [ anon ] 00007fc1462a8000 4 4 4 rw--- [ anon ] 00007fc1462a9000 293564 0 0 ----- [ anon ] 00007fc158158000 4 4 4 rw--- [ anon ] 00007fc158159000 36692 0 0 ----- [ anon ] 00007fc15a52e000 4 4 4 rw--- [ anon ] 00007fc15a52f000 4068 0 0 ----- [ anon ] 00007fc15a928000 1680 1184 0 r-x-- libc-2.26.so 00007fc15aacc000 2044 0 0 ----- libc-2.26.so 00007fc15accb000 16 16 16 r---- libc-2.26.so 00007fc15accf000 8 8 8 rw--- libc-2.26.so 00007fc15acd1000 16 12 12 rw--- [ anon ] 00007fc15acd5000 96 96 0 r-x-- libpthread-2.26.so 00007fc15aced000 2048 0 0 ----- libpthread-2.26.so 00007fc15aeed000 4 4 4 r---- libpthread-2.26.so 00007fc15aeee000 4 4 4 rw--- libpthread-2.26.so 00007fc15aeef000 16 4 4 rw--- [ anon ] 00007fc15aef3000 144 144 0 r-x-- ld-2.26.so 00007fc15af22000 516 332 332 rw--- [ anon ] 00007fc15afa3000 512 0 0 ----- [ anon ] 00007fc15b023000 4 4 4 rw--- [ anon ] 00007fc15b024000 508 0 0 ----- [ anon ] 00007fc15b0a3000 404 76 76 rw--- [ anon ] 00007fc15b116000 4 4 4 r---- ld-2.26.so 00007fc15b117000 4 4 4 rw--- ld-2.26.so 00007fc15b118000 4 4 4 rw--- [ anon ] 00007ffc4edb4000 3136 3136 3136 rw--- [ stack ] 00007ffc4f17d000 16 0 0 r---- [ anon ] 00007ffc4f181000 8 4 0 r-x-- [ anon ] ffffffffff600000 4 0 0 r-x-- [ anon ] ---------------- ------- ------- ------- total kB 11088092 497548 494744 ``` ### What did you expect to see? RSS to fall much lower for the process - low enough just to support the Go runtime. This is a toy example but I'm seeing the same behaviour slowly "leak" memory for a real long-lived Go process that uses CGo.
NeedsDecision,compiler/runtime,BugReport
low
Critical
2,772,634,028
flutter
[RFW] DynamicContent.updateAll assertion fails if value is null
I have a map from json that looks like this: ``` { "image": null, "user_id": 1 } ``` If I try to call `_data.updatedAll(map)` I get the error: ``` unexpected state object type: Missing (<missing>) 'package:rfw/src/flutter/content.dart': Failed assertion: line 33 pos 12: 'template is int || template is double || template is bool || template is String' ``` RFW is trying to deepClone null, and this case is falling into the "else" case of deepClone method. Is that an expected behavior or is there a bug in the deepClone method that should also check for `is Missing`: ``` if (template == null || template is Missing) ... ```
package,team-ecosystem,has reproducible steps,P2,p: rfw,triaged-ecosystem,found in release: 3.27,found in release: 3.28
low
Critical
2,772,663,834
godot
[3.x] Code folding doesn't work correctly.
### Tested versions v3.6.stable.official [de2f0f147] ### System information w11 ### Issue description If the code contains a commented line, the code folding will work initially, but upon reloading the project, the code folding will not be applied correctly. Watch the video: in the video, I add the line print( "test" ) and comment it out. The folding works correctly, but upon reloading the project, the folding appears incorrectly. https://github.com/user-attachments/assets/95d8328c-22dc-44ab-bf2e-b1fb461bae2e ### Steps to reproduce See the video ### Minimal reproduction project (MRP) ...
bug,topic:editor
low
Minor
2,772,683,617
rust
Lint for functions/variables/etc using the same name as a type (`str`, `u32`, ...)
### Code ```Rust fn func(u32: u32) { println!("{u32}"); } fn main() { let u32 = 42; func(u32); let closure = |str: &str| { println!("{}", str.len()); }; closure("hello"); } ``` ### Current output ```Shell (none) ``` ### Desired output ```Shell warning: variable `u32` should use a name that doesn't conflict with a standard type --> src/main.rs:1:9 | 1 | fn func(u32: u32) { | ^^^ help: rename the identifier ``` ### Rationale and extra context It's confusing to read code where `str` (or another standard type name) is used as an identifier. It also produces misleading syntax highlighting. ### Other cases ```Rust ``` ### Rust Version ```Shell rustc 1.83.0 (90b35a623 2024-11-26) binary: rustc commit-hash: 90b35a6239c3d8bdabc530a6a0816f7ff89a0aaf commit-date: 2024-11-26 host: x86_64-unknown-linux-gnu release: 1.83.0 LLVM version: 19.1.1 ``` ### Anything else? _No response_
A-lints,T-lang,C-feature-request
low
Major
2,772,698,274
flutter
`RenderRepaintBoundary`'s `toImage()` & `visitChildElements()` out of sync
### Steps to reproduce Hey, I'm working on screen recording (replay capture) and am facing an issue where the tree walked with visitChildElements() is out of sync to what is currently rendered by RenderRepaintBoundary.toImage(). The code runs in a postFrame callback and there's no async gap between capturing the image and walking the tree (https://github.com/getsentry/sentry-dart/blob/8de999e3d94a02467670c77f859ab31d4ad71e40/flutter/lib/src/screenshot/recorder.dart#L81-L88), yet I can consistently capture frames that seem to indicate the tree walking shows a "future" version of what the image would look like. This is a problem because I need to render a mask over some elements (mostly it's about obscuring text). I assume the discrepancy is because the tree may have already been updated before the PostFrameCallback. Is there any way to recognize the widget tree is out of date with what the RenderObject would render toImage()? This way I could skip processing and try at a later time in the future. ### Expected results visitChildElements() walks the same widget tree as RenderRepaintBoundary toImage() captures ### Actual results When changes occur, RenderRepaintBindary() renders the old tree for at least one frame (one addPostFrameCallback() execution) ### Code sample <details open><summary>Code sample</summary> I'm willing to create a repro & attach a video if someone can confirm that this behavior looks like a bug, not that I misunderstood something conceptually. ```dart [Paste your code here] ``` </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 [√] Flutter (Channel stable, 3.27.0, on Microsoft Windows [Version 10.0.26100.2605], locale en-US) • Flutter version 3.27.0 on channel stable at C:\Users\dlugo\scoop\apps\flutter\3.27.0 • Upstream repository https://github.com/flutter/flutter.git • Framework revision 8495dee1fd (4 weeks ago), 2024-12-10 14:23:39 -0800 • Engine revision 83bacfc525 • Dart version 3.6.0 • DevTools version 2.40.2 [√] Windows Version (Installed version of Windows is version 10 or higher) [√] Android toolchain - develop for Android devices (Android SDK version 34.0.0) • Android SDK at C:\Users\dlugo\scoop\apps\android-sdk\current • Platform android-34, build-tools 34.0.0 • ANDROID_HOME = C:\Users\dlugo\scoop\apps\android-sdk\current • Java binary at: C:\Users\dlugo\scoop\apps\openjdk17\current\bin\java • Java version OpenJDK Runtime Environment (build 17.0.2+8-86) • All Android licenses accepted. [√] Chrome - develop for the web • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe [√] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.12.3) • Visual Studio at C:\Program Files\Microsoft Visual Studio\2022\Community • Visual Studio Community 2022 version 17.12.35527.113 • Windows 10 SDK version 10.0.22000.0 [√] Android Studio (version 2024.2) • Android Studio at C:\Program Files\Android\Android Studio • Flutter plugin can be installed from: https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 21.0.3+-12282718-b509.11) [√] VS Code (version 1.96.2) • VS Code at C:\Users\dlugo\AppData\Local\Programs\Microsoft VS Code • Flutter extension version 3.102.0 [√] Connected device (4 available) • LYA L29 (mobile) • LHS7N19110005914 • android-arm64 • Android 10 (API 29) • Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.26100.2605] • Chrome (web) • chrome • web-javascript • Google Chrome 131.0.6778.205 • Edge (web) • edge • web-javascript • Microsoft Edge 131.0.2903.112 [√] Network resources • All expected network resources are available. ``` </details>
waiting for customer response,in triage
low
Critical
2,772,722,449
godot
Using RefCounted objects as thread bind parameters causes segfault on exit
### Tested versions - Reproducible in 4.3 ### System information Linux 6.12.7 and Windows 11. Appears to be system independent. ### Issue description Binding an object that inherits from RefCounted to a callable that is passed to WorkerThreadPool.add_task() will produce a stale reference. I am not entirely sure at which point it is missing a decrement (or if that is something I should be handling manually). The behavior does seem unintended. ### Steps to reproduce ``` func _ready(): var test = TestObject.new() # empty object that extends RefCounted print(test.get_reference_count()) # prints 1 var id = WorkerThreadPool.add_task(threadproc.bind(test)) WorkerThreadPool.wait_for_task_completion(id) print(test.get_reference_count()) # prints 2 func threadproc(obj : RefCounted): print(obj.get_reference_count()) # prints 3 ``` Run as a build outside of the editor, close the program -> segfault on exit. On Windows the program will crash on exit and write EventLog entries. ### Minimal reproduction project (MRP) [Archive.zip](https://github.com/user-attachments/files/18332421/Archive.zip)
bug,topic:core,crash
low
Critical
2,772,741,373
go
proposal: strings, bytes: CutLast
### Proposal Details A couple of times now while chopping up some strings I've happily enjoyed `strings.Cut` but had to write my own `CutLast` (the latest was implementing a subset of the `package-url` spec where some of the things you need to find from the back of the string, and some from the front). It's a silly thing but it feels like an oversight. For reference, here is one of the `CutLast` I've implemented, verbatim. Trivial and obvious: ```go // CutLast slices s around the last instance of sep, // returning the text before and after sep. // The found result reports whether sep appears in s. // If sep does not appear in s, CutLast returns s, "", false. func stringsꞏCutLast(s, sep string) (before, after string, found bool) { if i := strings.LastIndex(s, sep); i >= 0 { return s[:i], s[i+len(sep):], true } return s, "", false } ```
Proposal,LibraryProposal
medium
Major
2,772,785,035
angular
Suggested workaround for content-projection in control flow blocks does not work
### Which @angular/* package(s) are the source of the bug? compiler-cli, compiler ### Is this a regression? No ### Description When having multiple root elements in a control flow block, the compiler gives a [friendly message](https://github.com/angular/angular/blob/b22677d761fd7af38ac27c7162837cdd9b93a750/packages/compiler-cli/src/ngtsc/typecheck/src/oob.ts#L579) suggesting to > Split the content of the @case block across multiple @case blocks such that each one only has a single projectable node at its root. This does however not seem to work as suggested (or it works but the message is unclear). In particular, this does not seem to work for `ng-content` with specific selector targets. See example of reproducing [here](https://stackblitz.com/edit/stackblitz-starters-avyqjise?file=src%2Fmain.ts) ### Please provide a link to a minimal reproduction of the bug https://stackblitz.com/edit/stackblitz-starters-avyqjise?file=src%2Fmain.ts ### Please provide the exception or error you saw No exception. ### Please provide the environment you discovered this bug in (run `ng version`) ```true Angular CLI: 18.0.0 Node: 20.14.0 Package Manager: yarn 3.4.1 OS: win32 x64 Angular: 18.2.1 ... animations, cdk, common, compiler, compiler-cli, core, forms ... language-service, material, material-moment-adapter ... platform-browser, platform-browser-dynamic, router Package Version --------------------------------------------------------- @angular-devkit/architect 0.1802.1 @angular-devkit/build-angular 18.2.1 @angular-devkit/core 18.2.1 @angular-devkit/schematics 18.2.1 @angular/cli 18.0.0 @schematics/angular 18.2.1 rxjs 7.8.1 typescript 5.5.4 webpack 5.91.0 zone.js 0.14.6 ``` ### Anything else? _No response_
hotlist: error messages,area: docs
low
Critical
2,772,788,293
next.js
`blog-starter` hydration issue
### Link to the code that reproduces this issue https://github.com/grapefruit13/nextjs-blog-starter ### To Reproduce 1. pnpm create next-app --example blog-starter blog-starter-app 2. pnpm run dev ### Current vs. Expected behavior ## Current ### Screen shot <img width="801" alt="image" src="https://github.com/user-attachments/assets/0768d2f5-fdda-4ffd-857e-2763c06e6d6f" /> ### Error log ``` Error: A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used: - A server/client branch `if (typeof window !== 'undefined')`. - Variable input such as `Date.now()` or `Math.random()` which changes each time it's called. - Date formatting in a user's locale which doesn't match the server. - External changing data without sending a snapshot of it along with the HTML. - Invalid HTML tag nesting. It can also happen if the client has a browser extension installed which messes with the HTML before React loaded. https://react.dev/link/hydration-mismatch ... <Router actionQueue={{state:{...}, ...}} assetPrefix=""> <HistoryUpdater> <RuntimeStyles> <HotReload assetPrefix=""> <ReactDevOverlay state={{nextId:1, ...}} dispatcher={{...}}> <DevRootHTTPAccessFallbackBoundary> <HTTPAccessFallbackBoundary notFound={<NotAllowedRootHTTPFallbackError>}> <HTTPAccessFallbackErrorBoundary pathname="/" notFound={<NotAllowedRootHTTPFallbackError>} ...> <RedirectBoundary> <RedirectErrorBoundary router={{...}}> <Head> <link> <script> <script> <script> <RootLayout> <html lang="en" - className="dark" - data-mode="system" > ... ... at createUnhandledError (http://localhost:3000/_next/static/chunks/fbe38_next_dist_client_components_react-dev-overlay_11a4dc._.js:200:71) at handleClientError (http://localhost:3000/_next/static/chunks/fbe38_next_dist_client_components_react-dev-overlay_11a4dc._.js:373:56) at console.error (http://localhost:3000/_next/static/chunks/fbe38_next_dist_client_components_ca0e25._.js:477:56) at emitPendingHydrationWarnings (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:3237:103) at completeWork (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:7192:102) at runWithFiberInDEV (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:631:20) at completeUnitOfWork (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:7968:23) at performUnitOfWork (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:7905:28) at workLoopConcurrentByScheduler (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:7899:58) at renderRootConcurrent (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:7881:71) at performWorkOnRoot (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:7519:175) at performWorkOnRootViaSchedulerTask (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_react-dom_12850c._.js:8457:9) at MessagePort.performWorkUntilDeadline (http://localhost:3000/_next/static/chunks/fbe38_next_dist_compiled_d2193b._.js:2354:64) ``` ## Expected behavior There should be no hydration error when i run project without changing any code ### Provide environment information ```bash Operating System: Platform: darwin Arch: arm64 Version: Darwin Kernel Version 24.2.0: Fri Dec 6 19:03:40 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T6041 Available memory (MB): 24576 Available CPU cores: 12 Binaries: Node: 23.3.0 npm: 10.9.2 Yarn: N/A pnpm: 9.15.0 Relevant Packages: next: 15.1.1-canary.26 // Latest available version is detected (15.1.1-canary.26). eslint-config-next: N/A react: 19.0.0-rc-02c0e824-20241028 react-dom: 19.0.0-rc-02c0e824-20241028 typescript: 5.7.2 Next.js Config: output: N/A ``` ### Which area(s) are affected? (Select all that apply) Not sure ### Which stage(s) are affected? (Select all that apply) next dev (local) ### Additional context - I cloned this starter to start building my own blog. But I faced this hydration error as soon as I ran this on local environment. - If anyone has experienced similar issue with me, It would be highly appreciate to leave a comment. Thx
examples
low
Critical
2,772,809,922
tensorflow
dictionaries in fit method of model load data in wrong order
### Issue type Bug ### Have you reproduced the bug with TensorFlow Nightly? Yes ### Source binary ### TensorFlow version tf 2.17; tf 2.18 ### Custom code No ### OS platform and distribution Ubuntu 22.04.3 LTS ### Mobile device _No response_ ### Python version 3.10.12 ### Bazel version _No response_ ### GCC/compiler version _No response_ ### CUDA/cuDNN version _No response_ ### GPU model and memory _No response_ ### Current behavior? the code is running in google collab. The code below is an example of a model with multiple inputs and multiple outputs. NOT working code with using **dictionaries** in method **fit** of model. the link to collab: https://colab.research.google.com/drive/1q13ZwWqgfFcnY8f5oU_KnK3wVf_Gr1JA?usp=sharing the link to gist: https://gist.github.com/moprules/def9b2bda642a064b35e51b8914a28dd ### Standalone code to reproduce the issue ```shell # collab: https://colab.research.google.com/drive/1q13ZwWqgfFcnY8f5oU_KnK3wVf_Gr1JA?usp=sharing # gist: https://gist.github.com/moprules/def9b2bda642a064b35e51b8914a28dd # fast code from tensorflow import keras from tensorflow.keras import layers import numpy as np vocabulary_size = 10000 num_tags = 100 num_departments = 4 # define three model inputs title = keras.Input(shape=(vocabulary_size,), name="title") text_body = keras.Input(shape=(vocabulary_size,), name="text_body") tags = keras.Input(shape=(num_tags,), name="tags") features = layers.Concatenate()([title, text_body, tags]) # one intermediate layer features = layers.Dense(64, activation="relu")(features) # Define two model outputs priority = layers.Dense(1, activation="sigmoid", name="priority")(features) department = layers.Dense(num_departments, activation="softmax", name="department")(features) # set the model model = keras.Model(inputs=[title, text_body, tags], outputs=[priority, department]) # prepare data num_samples = 1280 # The data is filled in with zeros and ones title_data = np.random.randint(0, 2, size=(num_samples, vocabulary_size)) text_body_data = np.random.randint(0, 2, size=(num_samples, vocabulary_size)) tags_data = np.random.randint(0, 2, size=(num_samples, num_tags)) # priority: [0., 1.] priority_data = np.random.random(size=(num_samples, 1)) # class of 4 labels department_data = np.random.randint(0, 2, size=(num_samples, num_departments)) # compile model model.compile(optimizer="rmsprop", loss={"priority": "mean_squared_error", "department": "categorical_crossentropy"}, metrics={"priority": ["mean_absolute_error"], "department": ["accuracy"]}) # It doesn't matter how the model is compiled # model.compile(optimizer="rmsprop", # loss=["mean_squared_error", "categorical_crossentropy"], # metrics=[["mean_absolute_error"], ["accuracy"]]) # NOT WORKING # TRAIN MODEL WITH transferring the DICTIONARY to the method model.fit({"title": title_data, "text_body": text_body_data, "tags": tags_data}, {"priority": priority_data, "department": department_data}, epochs=1 ) # WORK # TRAIN MODEL WITHOUT transferring the DICTIONARY to the method model.fit([title_data, text_body_data, tags_data], [priority_data, department_data], epochs=1 ) # ALSO WORK # TRAIN MODEL WITH transferring the DICTIONARY to the method # REPLACE priority and department model.fit({"title": title_data, "text_body": text_body_data, "tags": tags_data}, {"priority": department_data, "department": priority_data}, epochs=1 ) ``` ### Relevant log output _No response_
type:bug,comp:keras,TF 2.18
medium
Critical
2,772,829,151
flutter
image_picker triggers screen_view event with firebase_screen_class FlutterViewController on close when using with firebase Analytics.
### What package does this bug report belong to? image_picker ### What target platforms are you seeing this bug on? iOS ### Have you already upgraded your packages? Yes ### Dependency versions <details><summary>pubspec.lock</summary> ```lock image_picker: dependency: "direct main" description: name: image_picker sha256: "021834d9c0c3de46bf0fe40341fa07168407f694d9b2bb18d532dc1261867f7a" url: "https://pub.dev" source: hosted version: "1.1.2" image_picker_android: dependency: transitive description: name: image_picker_android sha256: fa8141602fde3f7e2f81dbf043613eb44dfa325fa0bcf93c0f142c9f7a2c193e url: "https://pub.dev" source: hosted version: "0.8.12+18" image_picker_for_web: dependency: transitive description: name: image_picker_for_web sha256: "717eb042ab08c40767684327be06a5d8dbb341fe791d514e4b92c7bbe1b7bb83" url: "https://pub.dev" source: hosted version: "3.0.6" image_picker_ios: dependency: transitive description: name: image_picker_ios sha256: "4f0568120c6fcc0aaa04511cb9f9f4d29fc3d0139884b1d06be88dcec7641d6b" url: "https://pub.dev" source: hosted version: "0.8.12+1" image_picker_linux: dependency: transitive description: name: image_picker_linux sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" url: "https://pub.dev" source: hosted version: "0.2.1+1" image_picker_macos: dependency: transitive description: name: image_picker_macos sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" url: "https://pub.dev" source: hosted version: "0.2.1+1" image_picker_platform_interface: dependency: transitive description: name: image_picker_platform_interface sha256: "9ec26d410ff46f483c5519c29c02ef0e02e13a543f882b152d4bfd2f06802f80" url: "https://pub.dev" source: hosted version: "2.10.0" image_picker_windows: dependency: transitive description: name: image_picker_windows sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" url: "https://pub.dev" source: hosted version: "0.2.1+1" ``` </details> ### Steps to reproduce 1. Create a flutter app 2. Add firebase analytics 3. Add image picker 4. Add a button to trigger image picker 5. Click on the button -> This open image picker and triggers a screen_view event with firebase_screen_class PHPickerViewController 6. Close the image picker. -> This triggers screen_view event with firebase_screen_class FlutterViewController. ### Expected results FlutterViewController is standard name for a screen_view if no firebase_screen_class is provided. This does not provide a meaningful information for analytics. I would like to be able to omit this event from image picker because no additional screen is viewed, or have it renamed. ### Actual results When image picker is closed screen_view event with firebase_screen_class FlutterViewController is triggered. ### Code sample <details open><summary>Code sample</summary> ```dart [Paste your code here] ``` </details> ### Screenshots or Videos <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 [Paste your output here] ``` </details>
waiting for customer response,in triage
low
Critical
2,772,829,610
pytorch
FSDP: How to support w8a8 quantization?
### 🐛 Describe the bug I replaced nn.Linear with QuantLinear, substituting the nn.Linear operator with an int8 quantized operator. act_tensor_int8, pertoken_scale = torch_npu.npu_dynamic_quant(x) quant_out = torch_npu.npu_quant_matmul(act_tensor_int8, self.weight.to(torch.int8), self.weight_scale, # weight scale offset=None, bias=self.bias, pertoken_scale=pertoken_scale, output_dtype=torch.bfloat16) This change has achieved performance gains on a single GPU. However, when wrapped with FSDP (Fully Sharded Data Parallel) on multiple GPUs, model_fsdp = FullyShardedDataParallel(model, **settings) it fails to run because FSDP performs parameter sharding and cannot handle this quantized operator. The error message is as follows: [rank4]: RuntimeError: call aclnnQuantMatmulV4 failed, detail:E69999: Inner Error! [rank4]: E69999: [PID: 1182939] 2025-01-07-17:15:19.281.742 op[QuantBatchMatmulV3], [InferShape] dimensions a(12608) and b(128) must be equal[FUNC:InferNDimWithBias][FILE:matmul_infer_fns.cc][LINE:322] Do you have any good solutions for this issue? cc @zhaojuanmao @mrshenli @rohan-varma @awgu @fegin @kwen2501 @chauhang @penguinwu
triaged,module: fsdp,oncall: pt2
low
Critical
2,772,868,565
godot
Slow FPS when using Convex Shapes with move_and_slide()
### Tested versions - Reproducible in 4.3 (C#) & 4.4 dev 7 (gdscript) ### System information Godot v4.4.dev7.mono - Windows 11 (build 26100) - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated AMD Radeon RX 6600 (Advanced Micro Devices, Inc.; 32.0.11027.1003) - Intel(R) Core(TM) i5-4690K CPU @ 3.50GHz (4 threads) ### Issue description Frame rate rapidly drops to 20 fps whilst moving and sliding along floor Frame rate restores after short delay when player falls off world Might be related to: https://github.com/godotengine/godot/issues/93184 ### Steps to reproduce Run MRP, hit F3 to view fps ### Minimal reproduction project (MRP) [Test4.4.zip](https://github.com/user-attachments/files/18333214/Test4.4.zip)
discussion,topic:physics,needs testing,performance
low
Major
2,772,901,443
PowerToys
Powertoys update causes Everything plugin to error
### Microsoft PowerToys version 0.85.1 ### Installation method PowerToys auto-update ### Running as admin No ### Area(s) with issue? Always on Top ### Steps to reproduce ![Image](https://github.com/user-attachments/assets/fa7976c9-3210-4686-bd08-f7d07928d4b2) This is the error I receive after a powertoys update. Can you please tell me how to get past this issue? Thanks Gordon ### ✔️ Expected Behavior After an update I expect it to continue to run like normal. ### ❌ Actual Behavior See the plug screen shot I linked, it shows the error. ### Other Software _No response_
Issue-Bug,Needs-Triage,Needs-Team-Response
low
Critical
2,772,922,344
rust
Please lint on `a.eq(b.into())` if `a.eq(b)` would work
In the course of investigating crater breakage, I discovered many instances of a pattern that reduces to this: ```rust fn main() { let s = String::from("hello"); assert!(s.eq("hello".into())); } ``` This compiles, presumably because `"hello".into()` has only one possible impl that would work. It breaks if another `From` impl is brought into scope. For instance, `cargo add bstr` and add `use bstr as _;` to the top of that example, and it breaks. Could we lint against this? cc @estebank; this is in the same spirit as https://github.com/rust-lang/rust/pull/129249/ .
A-lints,T-lang,A-inference,C-feature-request
low
Minor
2,772,943,779
PowerToys
FancyZones does not respect default layouts
### Microsoft PowerToys version 0.87.1 ### Installation method Microsoft Store ### Running as admin None ### Area(s) with issue? FancyZones ### Steps to reproduce FancyZones does not respect custom default layouts. If I have Power Toys running, FancyZones uses the built-in default layout instead of the one I have set to the default. I must open the FancyZones editor for it to the switch to my default layout. ### ✔️ Expected Behavior For it to use my default layout. ### ❌ Actual Behavior It uses the built-in default. ### Other Software _No response_
Issue-Bug,Needs-Triage,Needs-Team-Response
low
Minor
2,772,985,042
langchain
Bug: GraphIndexCreator raises PydanticUserError when instantiated; NetworkX tutorial notebook not running.
### Checked other resources - [X] I added a very descriptive title to this issue. - [X] I searched the LangChain documentation with the integrated search. - [X] I used the GitHub search to find a similar question and didn't find it. - [X] I am sure that this is a bug in LangChain rather than my code. - [X] The bug is not resolved by updating to the latest stable version of LangChain (or the specific integration package). ### Example Code Run the following code: ```python from langchain_community.graphs.index_creator import GraphIndexCreator from langchain_openai import OpenAI index_creator = GraphIndexCreator(llm=OpenAI(temperature=0, api_key=OPENAI_API_KEY)) ``` Remember to use your own OpenAI API key. ### Error Message and Stack Trace (if applicable) PydanticUserError Traceback (most recent call last) [<ipython-input-8-fa0320b33b39>](https://localhost:8080/#) in <cell line: 1>() ----> 1 index_creator = GraphIndexCreator(llm=OpenAI(temperature=0, api_key=OPENAI_API_KEY)) [... skipping hidden 1 frame] [/usr/local/lib/python3.10/dist-packages/pydantic/_internal/_mock_val_ser.py](https://localhost:8080/#) in __getattr__(self, item) 98 # raise an AttributeError if `item` doesn't exist 99 getattr(self._val_or_ser, item) --> 100 raise PydanticUserError(self._error_message, code=self._code) 101 102 def rebuild(self) -> ValSer | None: PydanticUserError: `GraphIndexCreator` is not fully defined; you should define `BaseCache`, then call `GraphIndexCreator.model_rebuild()`. ### Description Was trying to run the following networkx tutorial: https://github.com/langchain-ai/langchain/blob/master/docs/docs/integrations/graphs/networkx.ipynb. I encountered a PydanticUserError when attempting to instantiate the GraphIndexCreator. It seems that BaseCache needs to be defined and GraphIndexCreator.model_rebuild() must be called, but this isn't mentioned in the documentation or examples. ### System Info This was run in the usual Google Colab environment.
🤖:bug
low
Critical
2,773,002,659
material-ui
[docs][material-ui][TextField] `type="number"` error
### Steps to reproduce Steps: 1. Open this link to live example: (required) 2. 3. https://github.com/user-attachments/assets/2b10beb6-74af-4f0c-956d-940a8b9349e4 ### Current behavior Bug in Number Type Textfield if i hold increase button and rease but number is increasing. ### Expected behavior Bug in Number Type Textfield if i hold increase button and rease but number is increasing. but it should not do. ### Context _No response_ ### Your environment <details> <summary><code>npx @mui/envinfo</code></summary> ``` Don't forget to mention which browser you used. Output from `npx @mui/envinfo` goes here. ``` </details> **Search keywords**: Number Type Textfied error
docs,component: text field,package: material-ui
low
Critical
2,773,060,640
next.js
Middleware.ts causes `ReferenceError: self is not defined` error with `splitChunks`
### Link to the code that reproduces this issue https://github.com/jozef-mikusinec-kiwicom/nextjs-middleware-splitchunks The `next.config.ts`: ```ts export default { webpack: config => { config.optimization.splitChunks = { chunks: 'all', cacheGroups: { default: { name: 'ihaveaname', }, }, }; return config; }, }; ``` ### To Reproduce 0. Clone the repo 1. `yarn install` 2. `next build` ### Current vs. Expected behavior Expected behavior: no errors. Current behavior: ``` unhandledRejection ReferenceError: self is not defined at Object.<anonymous> (.next/server/ihaveaname.js:1:1) { type: 'ReferenceError' } ``` Note that: * `next dev` loads OK on the initial try, but there is `Error [ReferenceError]: exports is not defined` in the console * the error goes away if either: * middleware.js file is deleted * the `name` prop is removed from the cache group * `chunks: 'all'` is removed * a new cache group without `name` and `test` is added ### Provide environment information ```bash Operating System: Platform: darwin Arch: arm64 Version: Darwin Kernel Version 24.1.0: Thu Oct 10 21:03:15 PDT 2024; root:xnu-11215.41.3~2/RELEASE_ARM64_T6000 Available memory (MB): 16384 Available CPU cores: 10 Binaries: Node: 22.12.0 npm: 10.9.0 Yarn: 1.19.1 pnpm: N/A Relevant Packages: next: 15.1.3 // Latest available version is detected (15.1.3). eslint-config-next: N/A react: 18.3.1 react-dom: 18.3.1 typescript: 5.7.2 Next.js Config: output: N/A ``` ### Which area(s) are affected? (Select all that apply) Middleware ### Which stage(s) are affected? (Select all that apply) next build (local) ### Additional context This is a minified version from a project that uses a more complex `splitChunks` config. The error appeared when the I tried to add the middleware file to the project.
Middleware
low
Critical
2,773,070,647
pytorch
Debug build fails to compile on x86 with WERROR=1
### 🐛 Describe the bug Attempted to build a debug whl on x86 machine in ubuntu docker image 'pytorch-linux-jammy-py3.9-gcc11' Build passes when DEBUG=0 OR with DEBUG=1 and WERROR=0 `In file included from /var/lib/jenkins/workspace/torch/csrc/jit/tensorexpr/llvm_codegen.cpp:24: /opt/llvm/include/llvm/IR/IRBuilder.h: In member function ‘llvm::LoadInst* llvm::IRBuilder<T, Inserter>::CreateLoad(llvm::Type*, llvm::Value*, const llvm::Twine&) [with T = llvm::ConstantFolder; Inserter = llvm::IRBuilderDefaultInserter]’: /opt/llvm/include/llvm/IR/IRBuilder.h:1581:19: error: ‘static void llvm::User::operator delete(void*)’ called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] 1581 | return Insert(new LoadInst(Ty, Ptr), Name); | ^~~~~~~~~~~~~~~~~~~~~ /opt/llvm/include/llvm/IR/IRBuilder.h:1581:19: note: returned from ‘static void* llvm::UnaryInstruction::operator new(size_t)’ /opt/llvm/include/llvm/IR/IRBuilder.h: In member function ‘llvm::Value* llvm::IRBuilder<T, Inserter>::CreateFCmp(llvm::CmpInst::Predicate, llvm::Value*, llvm::Value*, const llvm::Twine&, llvm::MDNode*) [with T = llvm::ConstantFolder; Inserter = llvm::IRBuilderDefaultInserter]’: /opt/llvm/include/llvm/IR/IRBuilder.h:2181:30: error: ‘static void llvm::User::operator delete(void*)’ called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] 2181 | return Insert(setFPAttrs(new FCmpInst(P, LHS, RHS), FPMathTag, FMF), Name); | ^~~~~~~~~~~~~~~~~~~~~~~~~ /opt/llvm/include/llvm/IR/IRBuilder.h:2181:30: note: returned from ‘static void* llvm::CmpInst::operator new(size_t)’ /opt/llvm/include/llvm/IR/IRBuilder.h: In member function ‘llvm::Value* llvm::IRBuilder<T, Inserter>::CreateICmp(llvm::CmpInst::Predicate, llvm::Value*, llvm::Value*, const llvm::Twine&) [with T = llvm::ConstantFolder; Inserter = llvm::IRBuilderDefaultInserter]’: /opt/llvm/include/llvm/IR/IRBuilder.h:2173:19: error: ‘static void llvm::User::operator delete(void*)’ called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] 2173 | return Insert(new ICmpInst(P, LHS, RHS), Name); | ^~~~~~~~~~~~~~~~~~~~~~~~~ /opt/llvm/include/llvm/IR/IRBuilder.h:2173:19: note: returned from ‘static void* llvm::CmpInst::operator new(size_t)’ /opt/llvm/include/llvm/IR/IRBuilder.h: In member function ‘llvm::AllocaInst* llvm::IRBuilder<T, Inserter>::CreateAlloca(llvm::Type*, llvm::Value*, const llvm::Twine&) [with T = llvm::ConstantFolder; Inserter = llvm::IRBuilderDefaultInserter]’: /opt/llvm/include/llvm/IR/IRBuilder.h:1571:19: error: ‘static void llvm::User::operator delete(void*)’ called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] 1571 | return Insert(new AllocaInst(Ty, DL.getAllocaAddrSpace(), ArraySize), Name); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /opt/llvm/include/llvm/IR/IRBuilder.h:1571:19: note: returned from ‘static void* llvm::UnaryInstruction::operator new(size_t)’ /opt/llvm/include/llvm/IR/IRBuilder.h: In member function ‘llvm::StoreInst* llvm::IRBuilder<T, Inserter>::CreateStore(llvm::Value*, llvm::Value*, bool) [with T = llvm::ConstantFolder; Inserter = llvm::IRBuilderDefaultInserter]’: /opt/llvm/include/llvm/IR/IRBuilder.h:1606:19: error: ‘static void llvm::User::operator delete(void*)’ called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] 1606 | return Insert(new StoreInst(Val, Ptr, isVolatile)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /opt/llvm/include/llvm/IR/IRBuilder.h:1606:19: note: returned from ‘static void* llvm::StoreInst::operator new(size_t)’ /opt/llvm/include/llvm/IR/IRBuilder.h: In member function ‘llvm::Value* llvm::IRBuilder<T, Inserter>::CreateShuffleVector(llvm::Value*, llvm::Value*, llvm::Value*, const llvm::Twine&) [with T = llvm::ConstantFolder; Inserter = llvm::IRBuilderDefaultInserter]’: /opt/llvm/include/llvm/IR/IRBuilder.h:2296:19: error: ‘static void llvm::User::operator delete(void*)’ called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] 2296 | return Insert(new ShuffleVectorInst(V1, V2, Mask), Name); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /opt/llvm/include/llvm/IR/IRBuilder.h:2296:19: note: returned from ‘static void* llvm::ShuffleVectorInst::operator new(size_t)’` ### Versions PyTorch Version = 8d35333498e9433a379611746c177285fa51c8c5 $ lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 46 bits physical, 48 bits virtual Byte Order: Little Endian CPU(s): 16 On-line CPU(s) list: 0-15 Vendor ID: GenuineIntel Model name: Intel(R) Xeon(R) Platinum 8488C CPU family: 6 Model: 143 Thread(s) per core: 2 Core(s) per socket: 8 Socket(s): 1 Stepping: 8 BogoMIPS: 4800.00 Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl xtopology nonstop_tsc cpuid aperfmp erf tsc_known_freq pni pclmulqdq monitor ssse3 fma cx16 pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch ssbd ibrs ibpb stibp ibrs_ enhanced fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves avx_vnni avx512_bf16 wbnoinvd ida arat avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq rdpid cldemote movdiri movdir64b md_clear serialize amx_bf16 avx512_fp16 am x_tile amx_int8 flush_l1d arch_capabilities cc @malfet @seemethere
module: build,triaged
low
Critical
2,773,073,299
flutter
Text with ghosting effect on my web application just on iPhones with iOS 18.0 or higher
### Steps to reproduce Just run the application and do the scroll on the screen. The title will be with the ghosting effect ### Expected results The scroll shouldn't cause the ghosting effect ### Actual results The scroll causes the ghosting effect just on iOS 18.0 or higher. I've tested on previous versions and the scroll behavior it normal. ### Code sample ```dart import 'package:cached_network_image/cached_network_image.dart'; import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; // --------------- MAIN --------------- void main() { runApp(const ProviderScope(child: MyApp())); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Mock MySessionsPage', theme: ThemeData( primarySwatch: Colors.blue, ), home: const MySessionsPage(), ); } } ``` // --------------- MOCK MODELS --------------- ```dart class Bot { Bot({required this.name, this.avatarUrl}); final String name; final String? avatarUrl; } class Scenario { Scenario({ required this.id, required this.name, this.description, required this.duration, this.bot, this.totalSessions = 0, this.maxSessions, }); final String id; final String name; final String? description; final double duration; // in seconds final Bot? bot; final int totalSessions; final int? maxSessions; } class Session { Session({ required this.id, this.scenario, required this.time, this.isCompleted = false, this.hasReports = false, this.startedAt, this.completedAt, }); final String id; final Scenario? scenario; final int time; // in seconds final bool isCompleted; final bool hasReports; final DateTime? startedAt; final DateTime? completedAt; } ``` // --------------- MOCK DATA --------------- ```dart final mockScenario1 = Scenario( id: 'scenario-1', name: 'Scenario Alpha', description: 'This scenario tests your response to Alpha Bot’s conversation.', duration: 10 * 60, // 10 minutes in seconds bot: Bot( name: 'Alpha Bot', avatarUrl: 'https://via.placeholder.com/200x200?text=Alpha+Bot', ), totalSessions: 1, maxSessions: 5, ); final mockScenario2 = Scenario( id: 'scenario-2', name: 'Scenario Beta', description: 'A scenario about Beta Bot. Great for practicing dialogues.', duration: 5 * 60, // 5 minutes in seconds bot: Bot( name: 'Beta Bot', avatarUrl: 'https://via.placeholder.com/200x200?text=Beta+Bot', ), totalSessions: 2, maxSessions: 3, ); final mockInProgressSessions = [ Session( id: 'session-in-progress-1', scenario: mockScenario1, time: 300, // 5 min startedAt: DateTime.now().subtract(const Duration(minutes: 5)), ), ]; final mockNextSessions = [ Session( id: 'session-next-1', scenario: mockScenario2, time: 60, // 1 min // Not started yet ), ]; final mockPastSessions = [ Session( id: 'session-past-1', scenario: mockScenario1, time: 250, isCompleted: true, hasReports: true, startedAt: DateTime.now().subtract(const Duration(days: 2, minutes: 10)), completedAt: DateTime.now().subtract(const Duration(days: 2)), ), Session( id: 'session-past-2', scenario: mockScenario2, time: 80, isCompleted: true, startedAt: DateTime.now().subtract(const Duration(days: 1, minutes: 5)), completedAt: DateTime.now().subtract(const Duration(days: 1)), ), ]; ``` // --------------- MOCK UTILS --------------- ```dart Future<void> openSessionReportsModal(BuildContext context, String sessionId, {bool openedByLink = false}) async { // Just a mock dialog to represent "open session reports" action return showDialog( context: context, builder: (ctx) => AlertDialog( title: const Text('Session Report'), content: Text('Opened report for sessionId=$sessionId\nopenedByLink=$openedByLink'), actions: [ TextButton(onPressed: () => Navigator.pop(ctx), child: const Text('OK')), ], ), ); } String formatSecondsToMinutes(int seconds) { final minutes = (seconds / 60).ceil(); return '$minutes min'; } extension DateTimeFormatter on DateTime { String formatDateTime() { // Very simple formatter return '$year-$month-$day ${hour.toString().padLeft(2, '0')}:${minute.toString().padLeft(2, '0')}'; } } ``` // --------------- MOCK PAGE --------------- ```dart class MySessionsPage extends StatelessWidget { const MySessionsPage({super.key}); @override Widget build(BuildContext context) { final inProgressScrollCtrl = ScrollController(); final nextScrollCtrl = ScrollController(); final hasInProgress = mockInProgressSessions.isNotEmpty; final hasNext = mockNextSessions.isNotEmpty; final hasPast = mockPastSessions.isNotEmpty; // Desktop vs Mobile checking for example - you can tweak this condition final isDesktop = MediaQuery.of(context).size.width > 600; return Scaffold( appBar: AppBar(title: const Text('My Sessions')), body: SingleChildScrollView( child: Column( children: [ // If no sessions found at all if (!hasInProgress && !hasNext && !hasPast) const EmptyState( title: 'No Training Available', body: 'You have no sessions available.', ) else ...[ // In progress sessions if (hasInProgress) ...[ const _Header(text: 'In Progress', hPadding: 16), SizedBox( height: 300, child: Scrollbar( controller: inProgressScrollCtrl, thumbVisibility: true, child: ListView.builder( controller: inProgressScrollCtrl, padding: const EdgeInsets.symmetric(horizontal: 8), scrollDirection: Axis.horizontal, itemCount: mockInProgressSessions.length, itemBuilder: (context, index) { final session = mockInProgressSessions[index]; return _SessionCard(session: session); }, ), ), ), ], // Next sessions if (hasNext) ...[ if (isDesktop) const SizedBox(height: 16), const _Header(text: 'Next Sessions', hPadding: 16), SizedBox( height: 300, child: Scrollbar( controller: nextScrollCtrl, thumbVisibility: true, child: ListView.builder( controller: nextScrollCtrl, padding: const EdgeInsets.symmetric(horizontal: 8), scrollDirection: Axis.horizontal, itemCount: mockNextSessions.length, itemBuilder: (context, index) { final session = mockNextSessions[index]; return _SessionCard(session: session); }, ), ), ), ], // Past sessions if (hasPast) ...[ const _Header(text: 'Past Sessions', hPadding: 16), if (isDesktop) _PastSessions(sessions: mockPastSessions) else _SmallPastSessions(sessions: mockPastSessions), ], ], ], ), ), ); } } ``` // --------------- SUB-WIDGETS --------------- ```dart class _Header extends StatelessWidget { const _Header({ required this.text, required this.hPadding, }); final String text; final double hPadding; @override Widget build(BuildContext context) { return Padding( padding: EdgeInsets.fromLTRB(hPadding, 8, hPadding, 16), child: Text( text, style: Theme.of(context).textTheme.headlineMedium, ), ); } } class _SessionCard extends StatelessWidget { const _SessionCard({ required this.session, }); final Session session; @override Widget build(BuildContext context) { final scenario = session.scenario; final theme = Theme.of(context); // For demonstration, just convert the scenario's description to plain text final description = (scenario?.description ?? '').replaceAll('\n', ' ').trim(); return SizedBox( width: 248, child: Card( margin: const EdgeInsets.all(8), child: InkWell( onTap: () { // Mock: go to ChatPage ScaffoldMessenger.of(context).showSnackBar( SnackBar(content: Text('Tapped session: ${session.id}')), ); }, child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ // "Header" area with image Container( height: 140, color: Colors.grey[200], child: Stack( fit: StackFit.expand, children: [ if (scenario?.bot?.avatarUrl != null && scenario!.bot!.avatarUrl!.isNotEmpty) CachedNetworkImage( imageUrl: scenario.bot!.avatarUrl!, imageBuilder: (context, imageProvider) => DecoratedBox( decoration: BoxDecoration( image: DecorationImage( image: imageProvider, fit: BoxFit.cover, colorFilter: ColorFilter.mode( Colors.black.withOpacity(0.3), BlendMode.darken, ), ), ), ), ) else const Align(child: CircleAvatar(radius: 36)), Align( alignment: Alignment.topRight, child: Padding( padding: const EdgeInsets.all(12), child: Container( padding: const EdgeInsets.all(8), decoration: const ShapeDecoration( color: Colors.blue, shape: StadiumBorder(), ), child: Text( '${((scenario?.duration ?? 0) / 60).ceil()} min', style: theme.textTheme.bodySmall?.copyWith(color: Colors.white), ), ), ), ), Align( alignment: Alignment.bottomLeft, child: Padding( padding: const EdgeInsets.fromLTRB(16, 0, 16, 6), child: Text( scenario?.bot?.name ?? 'Unknown Bot', style: theme.textTheme.headlineMedium?.copyWith(color: Colors.white), overflow: TextOverflow.ellipsis, ), ), ), ], ), ), // Name Padding( padding: const EdgeInsets.fromLTRB(16, 16, 16, 4), child: Text( scenario?.name ?? 'Unknown Scenario', style: theme.textTheme.bodyMedium?.copyWith(fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis, maxLines: 2, ), ), // Description Expanded( child: Padding( padding: const EdgeInsets.fromLTRB(16, 0, 16, 16), child: Text( description, style: theme.textTheme.bodySmall?.copyWith(color: Colors.grey[700]), overflow: TextOverflow.ellipsis, maxLines: 3, ), ), ), ], ), ), ), ); } } ``` // Past sessions layout (big screen / table style) ```dart class _PastSessions extends StatelessWidget { const _PastSessions({required this.sessions}); final List<Session> sessions; @override Widget build(BuildContext context) { if (sessions.isEmpty) { return const Padding( padding: EdgeInsets.all(24), child: EmptyState( title: 'No Past Sessions', body: 'Try starting a new session first.', ), ); } return SingleChildScrollView( scrollDirection: Axis.horizontal, child: DataTable( columns: const [ DataColumn(label: Text('Session')), DataColumn(label: Text('Time')), DataColumn(label: Text('Started At')), DataColumn(label: Text('Completed At')), DataColumn(label: Text('Actions')), ], rows: sessions.map((session) { return DataRow( cells: [ DataCell(Text(session.scenario?.name ?? 'Unknown')), DataCell(Text(formatSecondsToMinutes(session.time))), DataCell(Text(session.startedAt?.formatDateTime() ?? '-')), DataCell(Text(session.completedAt?.formatDateTime() ?? '-')), DataCell(_Actions(session: session)), ], ); }).toList(), ), ); } } ``` // Past sessions layout (small screen / card list style) ```dart class _SmallPastSessions extends StatelessWidget { const _SmallPastSessions({required this.sessions}); final List<Session> sessions; @override Widget build(BuildContext context) { if (sessions.isEmpty) { return const Padding( padding: EdgeInsets.all(24), child: EmptyState( title: 'No Past Sessions', body: 'Try starting a new session first.', ), ); } return Column( children: sessions.map((session) { return Card( margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), child: InkWell( onTap: session.isCompleted && session.hasReports ? () async => openSessionReportsModal(context, session.id) : null, child: Padding( padding: const EdgeInsets.all(16), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text(session.scenario?.name ?? 'Unknown Scenario', style: const TextStyle(fontWeight: FontWeight.w600)), const SizedBox(height: 6), Text('Time: ${formatSecondsToMinutes(session.time)}'), Text('Started: ${session.startedAt?.formatDateTime() ?? '-'}'), Text('Completed: ${session.completedAt?.formatDateTime() ?? '-'}'), const SizedBox(height: 8), _Actions(session: session), ], ), ), ), ); }).toList(), ); } } ``` // --------------- ACTIONS BUTTONS --------------- ```dart class _Actions extends StatelessWidget { const _Actions({required this.session}); final Session session; @override Widget build(BuildContext context) { final isRepeatAllowed = session.scenario?.maxSessions == null || (session.scenario!.totalSessions < session.scenario!.maxSessions!); return Row( mainAxisAlignment: MainAxisAlignment.end, children: [ // Open report if completed if (session.isCompleted && session.hasReports) ...[ SizedBox( height: 36, child: OutlinedButton.icon( onPressed: () async => openSessionReportsModal(context, session.id), icon: const Icon(Icons.file_open_outlined, size: 20), label: const Text('Open Report'), ), ), const SizedBox(width: 8), ], // Repeat session if (isRepeatAllowed) ...[ SizedBox( height: 36, child: OutlinedButton.icon( onPressed: () => _onRepeat(context), icon: const Icon(Icons.repeat, size: 20), label: const Text('Repeat'), ), ), ], ], ); } void _onRepeat(BuildContext context) { // Mock repeat action ScaffoldMessenger.of(context).showSnackBar( SnackBar(content: Text('Repeating scenario: ${session.scenario?.id}')), ); } } ``` // --------------- EMPTY STATE MOCK --------------- ```dart class EmptyState extends StatelessWidget { const EmptyState({ super.key, required this.title, required this.body, }); final String title; final String body; @override Widget build(BuildContext context) { return Center( child: Padding( padding: const EdgeInsets.all(48), child: Column( mainAxisSize: MainAxisSize.min, children: [ const Icon(Icons.hourglass_empty, size: 60, color: Colors.grey), const SizedBox(height: 16), Text( title, ), const SizedBox(height: 8), Text( body, textAlign: TextAlign.center, ), ], ), ), ); } } ``` ### Screenshots or Video <details open> <summary>Screenshots / Video demonstration</summary> ![Screenshot 2025-01-07 at 12 03 44](https://github.com/user-attachments/assets/d39215e7-06a2-4446-83ea-4f882cfb0a36) https://github.com/user-attachments/assets/23c57ab1-909e-4872-9c6b-ac6bb17ae93c </details> ### Logs <details open><summary>Logs</summary> ```console [Paste your logs here] ``` </details> ### Flutter Doctor output <details open><summary>Doctor output</summary> ```console flutter doctor -v [!] Flutter (Channel [user-branch], 3.22.3, on macOS 14.6 23G80 darwin-x64, locale en-BR) ! Flutter version 3.22.3 on channel [user-branch] at /Users/eduardomuchak/development/flutter Currently on an unknown channel. Run `flutter channel` to switch to an official channel. If that doesn't fix the issue, reinstall Flutter by following instructions at https://flutter.dev/docs/get-started/install. ! Upstream repository unknown source is not a standard remote. Set environment variable "FLUTTER_GIT_URL" to unknown source to dismiss this error. • Framework revision b0850beeb2 (6 months ago), 2024-07-16 21:43:41 -0700 • Engine revision 235db911ba • Dart version 3.4.4 • DevTools version 2.34.3 • If those were intentional, you can disregard the above warnings; however it is recommended to use "git" directly to perform update checks and upgrades. [✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0) • Android SDK at /Users/eduardomuchak/Library/Android/sdk • Platform android-34, build-tools 34.0.0 • ANDROID_HOME = /Users/eduardomuchak/Library/Android/sdk • Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 17.0.11+0-17.0.11b1207.24-11852314) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 16.2) • Xcode at /Applications/Xcode.app/Contents/Developer • Build 16C5032a • CocoaPods version 1.14.3 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2024.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 17.0.11+0-17.0.11b1207.24-11852314) [✓] IntelliJ IDEA Ultimate Edition (version 2024.1.1) • IntelliJ at /Applications/IntelliJ IDEA.app • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart [✓] IntelliJ IDEA Community Edition (version 2023.3.4) • IntelliJ at /Applications/IntelliJ IDEA CE.app • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart [✓] VS Code (version 1.96.2) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.102.0 [✓] Connected device (5 available) • iPhone 15 (mobile) • F1B8A3E2-0850-4A1B-94BE-B5BD260ABE91 • ios • com.apple.CoreSimulator.SimRuntime.iOS-17-5 (simulator) • iPhone 16 Pro (mobile) • 35785FF3-DE18-4422-9FBE-F1692782C70B • ios • com.apple.CoreSimulator.SimRuntime.iOS-18-0 (simulator) • iPhone 14 Pro (mobile) • 4467AED9-5438-434F-91DF-FC09E3180CAF • ios • com.apple.CoreSimulator.SimRuntime.iOS-16-4 (simulator) • macOS (desktop) • macos • darwin-x64 • macOS 14.6 23G80 darwin-x64 • Chrome (web) • chrome • web-javascript • Google Chrome 131.0.6778.205 [✓] Network resources • All expected network resources are available. ! Doctor found issues in 1 category. ``` </details>
waiting for customer response,in triage
low
Critical
2,773,098,888
ant-design
Range Picker formats quarter differently when `date-fns` is used
### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/range-picker-antd-5-23-0-forked-xm4h5w) ### Steps to reproduce - Open your own range picker example: https://codesandbox.io/p/sandbox/k526xx - Add `date-fns` package - Add these lines to demo.tsx: ``` import dateFnsGenerateConfig from "rc-picker/lib/generate/dateFns"; const DateFnsRangePicker = DatePicker.generatePicker<Date>( dateFnsGenerateConfig ); ``` - Add `<RangePicker picker="quarter" value={dayjs("2024-08-17")} />` to return section - Add `<DateFnsRangePicker picker="quarter" value={new Date("2024-08-17")} />` to return section - Compare default range picker quarter format with date-fns one. ### What is expected? Formatted quarter in both fields are equal to `2024-Q3` ### What is actually happening? - default RangePicker shows `2024-Q3` - date-fns one shows `2024-[3]3` ![image](https://github.com/user-attachments/assets/a7e9fa3d-8d64-4dc8-8556-3e04b7d96162) | Environment | Info | | --- | --- | | antd | 5.23.0 | | React | ^18.0.0 | | System | all | | Browser | chrome 131.0.6778.205 | --- It seems when you are using date-fns package - it formats quarter wrongly. It assumes that `[Q]` not just a `Q` string but it uses it to show quarter number. P.S. instructions how to add date-fns was taken from https://ant.design/docs/react/use-custom-date-library#use-date-fns <!-- generated by ant-design-issue-helper. DO NOT REMOVE -->
unconfirmed
low
Minor
2,773,167,446
node
A workflow to periodically check status for author-ready PRs opened by a non-collaborator
It's quite common for PRs from non-collaborators that have gotten approval to fall through the cracks because there's no one who remember to shepherd it through. I sometimes bump into one of these, and would restart a CI when I see one, but it's very hard to remember to go back keep resuming the CI (sigh) until it's green and land it. And from time to time I also see PRs waiting for months without moving forward due to this reason (not all new contributors know that they have to specifically ping for actions to move it forward, and they could be waiting in vain). I suspect many of the open PRs are stalled this way. It would help the situation if there is a workflow that gets trigered by the author-ready label and would periodically (e.g. weekly) ping for status if it's opened by a non-collaborator (it's more likely that they don't know how to move it forward), at least sending a notification to the collaborators involved in that PR to press whatever button needed to move it forward.
meta
low
Major
2,773,184,430
godot
When you use `new` method of a Callable, it will fail in release build.
### Tested versions 4.4 dev7 ### System information W10 ### Issue description When you use `new` method of a class as a Callable, it will fail in release build. ```GDScript extends Node class Test: pass func _ready() -> void: var test = Test.new.call() print(test) ``` Prints the object in editor/debug build, in release build it results in ``` SCRIPT ERROR: Parse Error: Cannot find member "new" in base "Test". at: GDScript::reload (res://2DSequel.tscn::GDScript_1egr7:7) ``` ### Steps to reproduce 1. Attach the above script to a node 2. Export with release template 3. Run ### Minimal reproduction project (MRP) N/A
bug,topic:gdscript
low
Critical
2,773,186,235
storybook
[Bug]: Angular - Storybook fails to consume postcss config file
### Describe the bug In order to use Tailwindcss v4 with Angular 19+ (using the new esbuild builder), it is necessary to create a `postcss.config.json` file, because Angular seemingly fails to consume *any* other variant of a postcss config (e.g. in the package.json, or using a `postcss.config.mjs`). Installing Tailwindcss v4 with postCSS: https://tailwindcss.com/docs/v4-beta#installing-with-post-css Trying to compile the angular app, without this postcss.config.json file present, will result in ``` Error: It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration. ``` Once the postcss.config.json is provided - and both ng serve, ng test and ng build run smoothly, Storybook fails to compile for the same reason, as the builder (under the hood) seemingly fails to consume said postcss config. ```=> Failed to build the preview Error: It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration. ``` This is using the Webpack builder. I am aware that there is a plugin that tries to get Angular to run under Storybook using vite. ### Reproduction link https://github.com/SeraphCoding/AngularTW4SBVite ### Reproduction steps 1. Clone the repository above 2. Install dependencies (yarn berry) 3. Run `yarn run storybook` 4. Wait for the compilation ### System ```bash Storybook Environment Info: System: OS: Linux 5.15 Ubuntu 24.04.1 LTS 24.04.1 LTS (Noble Numbat) CPU: (16) x64 AMD Ryzen 7 3800X 8-Core Processor Shell: 5.2.21 - /bin/bash Binaries: Node: 20.15.0 - /tmp/xfs-ade9681f/node Yarn: 4.6.0 - /tmp/xfs-ade9681f/yarn <----- active npm: 10.7.0 - ~/.nvm/versions/node/v20.15.0/bin/npm npmPackages: @storybook/addon-docs: ^8.4.7 => 8.4.7 @storybook/addon-essentials: ^8.4.7 => 8.4.7 @storybook/addon-interactions: ^8.4.7 => 8.4.7 @storybook/addon-onboarding: ^8.4.7 => 8.4.7 @storybook/angular: ^8.4.7 => 8.4.7 @storybook/blocks: ^8.4.7 => 8.4.7 @storybook/test: ^8.4.7 => 8.4.7 storybook: ^8.4.7 => 8.4.7 **Note** Same issues occurs on 8.5.0-beta.7 ``` ### Additional context / WIP Workaround The issue does not occur when using analogjs's angular vite plugin for the Storybook - however, I haven't been able to get the analogjs plugin to run properly in it's completion. I managed to get it to compile, though it seemingly fails to load Tailwindcss and Angular Material to begin with - so that isn't really a sustainable workaround, yet. Will update this once/if I get it to run.
bug,angular
low
Critical
2,773,188,988
pytorch
[Export] UserWarning: Attempted to insert a get_attr Node with no underlying reference in the owning GraphModule
### 🐛 Describe the bug Using `torch.export` on https://github.com/MCG-NJU/VFIMamba I got ```python /opt/conda/lib/python3.11/site-packages/torch/export/_unlift.py:75: UserWarning: Attempted to insert a get_attr Node with no underlying reference in the owning GraphModule! Call GraphModule.add_submodule to add the necessary submodule, GraphModule.add_parameter to add the necessary Parameter, or nn.Module.register_buffer to add the necessary buffer getattr_node = gm.graph.get_attr(lifted_node) /opt/conda/lib/python3.11/site-packages/torch/fx/graph.py:1801: UserWarning: Node lifted_tensor_0 target lifted_tensor_0 lifted_tensor_0 of does not reference an nn.Module, nn.Parameter, or buffer, which is what 'get_attr' Nodes typically target ``` I think that the problem it could be in https://github.com/MCG-NJU/VFIMamba/blob/main/model/warplayer.py Is it safe this warning or does it require a workaround. In any case, can we improve the message? ### Versions nightly cc @chauhang @penguinwu @avikchaudhuri @gmagogsfm @zhxchen17 @tugsbayasgalan @angelayi @suo @ydwu4
oncall: pt2,oncall: export
low
Critical
2,773,193,585
rust
`CoercePointee` doesn't tightly enforce the restriction to `#[repr(transparent)]`-only wrappers, if other proc-macros are involved
Define a proc macro that strips the `#[repr(transparent)]`. ```rust #[proc_macro_attribute] pub fn untransparent(_: TokenStream, item: TokenStream) -> TokenStream { let mut i = item.into_iter(); drop(i.next()); drop(i.next()); i.collect() } ``` use it ```rust #![feature(derive_coerce_pointee)] use std::marker::CoercePointee; use …:untransparent; #[derive(CoercePointee)] #[untransparent] #[repr(transparent)] struct Foo<T: ?Sized>(Box<T>); ``` --- compiles successfully, expands to ```rust #![feature(prelude_import)] #![feature(derive_coerce_pointee)] #[prelude_import] use std::prelude::rust_2021::*; #[macro_use] extern crate std; use std::marker::CoercePointee; use …::untransparent; struct Foo<T: ?Sized>(Box<T>); #[automatically_derived] impl< T: ?Sized + ::core::marker::Unsize<__S>, __S: ?Sized, > ::core::ops::DispatchFromDyn<Foo<__S>> for Foo<T> {} #[automatically_derived] impl< T: ?Sized + ::core::marker::Unsize<__S>, __S: ?Sized, > ::core::ops::CoerceUnsized<Foo<__S>> for Foo<T> {} ``` As far as I understand the RFC and intent, the intended stabilization should only stabilize allowing these (`CoerceUnsized` & `DispatchFromDyn` impls) to be generated for `#[repr(transparent)]` types. @rustbot label F-derive_coerce_pointee <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"dingxiangfei2009"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->
T-compiler,C-bug,F-derive_coerce_pointee
low
Minor
2,773,197,867
tauri
[bug] Alpine build error
### Describe the bug In order to avoid relying on a **desktop system** for my embedded device, I wanted to use Tauri. However, using Buildroot's root filesystem poses some challenges for Tauri's dependencies. So, I tried using Docker with Alpine Linux and mounted the display device to run Tauri. Unfortunately, while compiling the application in the Alpine Docker environment, I encountered some issues, specifically with Rust's **library linking**, which resulted in errors. When I use pkg-config, it shows that the library exists. ### Reproduction - using this docker container as builder ```Dockerfile FROM rust:1.83-alpine3.21 AS builder RUN apk update && apk add --no-cache \ vim \ bash \ build-base \ webkit2gtk-4.1-dev \ gtk+3.0-dev \ curl \ wget \ file \ openssl-dev \ libayatana-appindicator-dev \ librsvg-dev \ nodejs \ npm RUN npm install -g pnpm WORKDIR /app ``` - enter the container and run `npm create tauri-app@latest` create a project. I try a vue-ts template - `pnpm i` - `pnpm tauri build` ### Expected behavior app can be built success ### Full `tauri info` output ```text root@1c9357ef80e3:/app# npm run tauri info > [email protected] tauri > tauri info [✔] Environment - OS: Alpine Linux 3.20.3 x86_64 (X64) (Unknown DE on Unknown Session) ✔ webkit2gtk-4.1: 2.44.1 ✔ rsvg2: 2.58.5 ✔ rustc: 1.83.0 (90b35a623 2024-11-26) ✔ cargo: 1.83.0 (5ffbef321 2024-10-29) ✔ rustup: 1.27.1 (2024-04-24) ✔ Rust toolchain: stable-x86_64-unknown-linux-musl (default) - node: 20.15.1 - pnpm: 9.15.3 - npm: 10.9.1 [-] Packages - tauri 🦀: 2.2.0 - tauri-build 🦀: 2.0.4 - wry 🦀: 0.48.0 - tao 🦀: 0.31.0 - @tauri-apps/api : 2.2.0 - @tauri-apps/cli : 2.2.2 [-] Plugins [-] App - build-type: build - CSP: unset - frontendDist: ../dist - devUrl: http://localhost:1420/ - framework: Vue.js - bundler: Vite ``` ### Stack trace ```text Compiling gdkx11 v0.18.2 Compiling webkit2gtk v2.0.1 Compiling tao v0.31.0 Compiling muda v0.15.3 error: linking with `cc` failed: exit status: 1 | = note: LC_ALL="C" PATH="/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/bin:/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/bin/self-contained:/app/node_modules/.bin:/usr/local/lib/node_modules/pnpm/dist/node-gyp-bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" VSLANG="1033" "cc" "-m64" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained/rcrt1.o" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained/crti.o" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained/crtbeginS.o" "/tmp/rustctycSYf/symbols.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.00.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.01.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.02.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.03.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.04.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.05.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.06.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.07.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.08.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.09.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.10.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.11.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.12.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.13.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.14.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.test.5360bbbe32a648ae-cgu.15.rcgu.o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2.39aoe1xw7da6me3jugce87q7q.rcgu.o" "-Wl,--as-needed" "-Wl,-Bstatic" "/app/src-tauri/target/release/deps/libtauri_plugin_opener-08cafabc56aff55f.rlib" "/app/src-tauri/target/release/deps/libopen-e0eff0a3ae206d34.rlib" "/app/src-tauri/target/release/deps/libpathdiff-06ca070a4b9da886.rlib" "/app/src-tauri/target/release/deps/libis_wsl-c9418d8dd07ac220.rlib" "/app/src-tauri/target/release/deps/libis_docker-a54c8ac82c27107c.rlib" "/app/src-tauri/target/release/deps/libzbus-3ffeccdefecbf0dd.rlib" "/app/src-tauri/target/release/deps/libasync_fs-e4f5b4bfc948ebeb.rlib" "/app/src-tauri/target/release/deps/libblocking-e78723afcb9f2296.rlib" "/app/src-tauri/target/release/deps/libpiper-48ea9aca515e5927.rlib" "/app/src-tauri/target/release/deps/libatomic_waker-172bbc88b8e9ad31.rlib" "/app/src-tauri/target/release/deps/libasync_channel-2db0fcd25c322b9a.rlib" "/app/src-tauri/target/release/deps/libhex-9915f7c107997bc4.rlib" "/app/src-tauri/target/release/deps/libasync_executor-dd95f18bc96244c4.rlib" "/app/src-tauri/target/release/deps/libasync_task-7291a86392b06e0d.rlib" "/app/src-tauri/target/release/deps/librand-988b78147bec830d.rlib" "/app/src-tauri/target/release/deps/librand_chacha-974e1e0182da27bd.rlib" "/app/src-tauri/target/release/deps/libppv_lite86-d61fd0cb8184bd6c.rlib" "/app/src-tauri/target/release/deps/libzerocopy-3ce3144a874f51da.rlib" "/app/src-tauri/target/release/deps/librand_core-06a0d1f6bff7f477.rlib" "/app/src-tauri/target/release/deps/libxdg_home-e6b6c7717eb51338.rlib" "/app/src-tauri/target/release/deps/libsha1-434bcbd95eaa42c3.rlib" "/app/src-tauri/target/release/deps/libcpufeatures-6ca600e040f4b84a.rlib" "/app/src-tauri/target/release/deps/libdigest-280bd27facb2670a.rlib" "/app/src-tauri/target/release/deps/libblock_buffer-bab65a953ed55b47.rlib" "/app/src-tauri/target/release/deps/libcrypto_common-09c74d29df38fca8.rlib" "/app/src-tauri/target/release/deps/libgeneric_array-6a2d4040ebc4c05c.rlib" "/app/src-tauri/target/release/deps/libtypenum-d9912dbf3febdd4e.rlib" "/app/src-tauri/target/release/deps/libordered_stream-4333fca5d3275f4e.rlib" "/app/src-tauri/target/release/deps/libasync_broadcast-f7a37e945306c778.rlib" "/app/src-tauri/target/release/deps/libnix-8ff23b2aaca6f1de.rlib" "/app/src-tauri/target/release/deps/libasync_io-cbec30a2b42ed797.rlib" "/app/src-tauri/target/release/deps/libpolling-138bfcae7c9dae8d.rlib" "/app/src-tauri/target/release/deps/libtracing-c7e43f4a3775b654.rlib" "/app/src-tauri/target/release/deps/libtracing_core-bbcf01b286bd9c4c.rlib" "/app/src-tauri/target/release/deps/libconcurrent_queue-1bcd0f717cacd3c8.rlib" "/app/src-tauri/target/release/deps/libasync_lock-954db987bc26cda6.rlib" "/app/src-tauri/target/release/deps/libevent_listener_strategy-b81a0704aad059f3.rlib" "/app/src-tauri/target/release/deps/libevent_listener-f2eaf1e55c3aaa73.rlib" "/app/src-tauri/target/release/deps/librustix-6fa924681d33a1b3.rlib" "/app/src-tauri/target/release/deps/liblinux_raw_sys-ecc514c31d7be6ff.rlib" "/app/src-tauri/target/release/deps/libfutures_lite-b3363b979e600562.rlib" "/app/src-tauri/target/release/deps/libparking-390e2e9c2232aec0.rlib" "/app/src-tauri/target/release/deps/libfastrand-04045938baf413d4.rlib" "/app/src-tauri/target/release/deps/libzbus_names-6bb4400706473751.rlib" "/app/src-tauri/target/release/deps/libzvariant-85773198454eeb90.rlib" "/app/src-tauri/target/release/deps/libenumflags2-a7285c310d196cba.rlib" "/app/src-tauri/target/release/deps/libendi-50d0943e8369d5d9.rlib" "/app/src-tauri/target/release/deps/libstatic_assertions-a48308c27f0a0cfd.rlib" "/app/src-tauri/target/release/deps/libtauri-71f4b3d0a52b46b5.rlib" "/app/src-tauri/target/release/deps/libdirs-aa42155754063138.rlib" "/app/src-tauri/target/release/deps/libdirs_sys-09f4b6df25d68cc4.rlib" "/app/src-tauri/target/release/deps/liboption_ext-6ba74e0a6e1052f0.rlib" "/app/src-tauri/target/release/deps/libmime-04dbbec99089e0f0.rlib" "/app/src-tauri/target/release/deps/libgetrandom-b7a3fa47ec3bf782.rlib" "/app/src-tauri/target/release/deps/libanyhow-e9f1341dc260cfb6.rlib" "/app/src-tauri/target/release/deps/libtauri_runtime_wry-b4023bc4de4558b9.rlib" "/app/src-tauri/target/release/deps/libwry-bf198d52d19bb382.rlib" "/app/src-tauri/target/release/deps/libcookie-dec7ffdd242d6927.rlib" "/app/src-tauri/target/release/deps/libtime-e034c9092e38fb7e.rlib" "/app/src-tauri/target/release/deps/libtime_core-42ca8e4f70f3e06c.rlib" "/app/src-tauri/target/release/deps/libnum_conv-799c4d8adb554e72.rlib" "/app/src-tauri/target/release/deps/libderanged-7a9edf2613b1c972.rlib" "/app/src-tauri/target/release/deps/libpowerfmt-53177813b219f22f.rlib" "/app/src-tauri/target/release/deps/libwebkit2gtk-4d85aacac74f8125.rlib" "/app/src-tauri/target/release/deps/libsoup-6468323d64f8fc84.rlib" "/app/src-tauri/target/release/deps/libwebkit2gtk_sys-feb431ce2a0d6430.rlib" "-lwebkit2gtk-4.1" "-lgtk-3" "-lgdk-3" "-lz" "-lpangocairo-1.0" "-lcairo-gobject" "-lgdk_pixbuf-2.0" "-latk-1.0" "-lwayland-client" "-lpango-1.0" "-lcairo" "-lharfbuzz" "-lsoup-3.0" "-lgio-2.0" "-lgmodule-2.0" "-ljavascriptcoregtk-4.1" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libsoup3_sys-cf8cb41cb97006ff.rlib" "-lsoup-3.0" "-lgio-2.0" "-lgobject-2.0" "-lgmodule-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libjavascriptcore-3f484eda67e09758.rlib" "/app/src-tauri/target/release/deps/libjavascriptcore_rs_sys-10fc4e83a1172ba9.rlib" "-ljavascriptcoregtk-4.1" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libgdkx11-a12a718dc16fafe3.rlib" "/app/src-tauri/target/release/deps/libtao-eee130a32970fd51.rlib" "/app/src-tauri/target/release/deps/libgdk_x11_sys-d5b10d30a0ca5e9a.rlib" "-lgdk-3" "-lz" "-lpangocairo-1.0" "-lpango-1.0" "-lharfbuzz" "-lgdk_pixbuf-2.0" "-lcairo-gobject" "-lgio-2.0" "-lgobject-2.0" "-lglib-2.0" "-lintl" "-lwayland-client" "-lcairo" "/app/src-tauri/target/release/deps/libx11-bb40b2fcabdc4541.rlib" "/app/src-tauri/target/release/deps/libgdk_wayland_sys-fdd0db5c8758c0f6.rlib" "/app/src-tauri/target/release/deps/libdlopen2-2da7a4a51ac7661c.rlib" "/app/src-tauri/target/release/deps/libx11_dl-4fde7dcfba2eed57.rlib" "-ldl" "/app/src-tauri/target/release/deps/liblazy_static-2c316f762f281668.rlib" "/app/src-tauri/target/release/deps/libmuda-0d4e496b46ab1191.rlib" "/app/src-tauri/target/release/deps/libkeyboard_types-bcbcaf6398a96c3c.rlib" "/app/src-tauri/target/release/deps/libunicode_segmentation-4bbcd0949b020ca5.rlib" "/app/src-tauri/target/release/deps/libcrossbeam_channel-3084dff46cad9e35.rlib" "/app/src-tauri/target/release/deps/libcrossbeam_utils-eea1b93255e92722.rlib" "/app/src-tauri/target/release/deps/libtokio-8b3b94e3ae98a9c1.rlib" "/app/src-tauri/target/release/deps/libsocket2-aa396704f21adf8a.rlib" "/app/src-tauri/target/release/deps/libmio-a79e0cc12bf569d1.rlib" "/app/src-tauri/target/release/deps/libtauri_runtime-33c1c249de905b83.rlib" "/app/src-tauri/target/release/deps/libgtk-188eaf59078eddc6.rlib" "/app/src-tauri/target/release/deps/libfield_offset-8ecee9e1f19fffea.rlib" "/app/src-tauri/target/release/deps/libmemoffset-3d0f283a51e85750.rlib" "/app/src-tauri/target/release/deps/libgdk-97a0ebde62ec25e0.rlib" "/app/src-tauri/target/release/deps/libpango-d9789fdaec4cd776.rlib" "/app/src-tauri/target/release/deps/libgdk_pixbuf-be70c7f318ca9624.rlib" "/app/src-tauri/target/release/deps/libgio-85a48ebda6603502.rlib" "/app/src-tauri/target/release/deps/libcairo-800655bfb0dd5f6c.rlib" "/app/src-tauri/target/release/deps/libatk-6d75c17b6856a460.rlib" "/app/src-tauri/target/release/deps/libglib-a21a5483df42bdcf.rlib" "-lgobject-2.0" "/app/src-tauri/target/release/deps/libfutures_executor-6c546ccf5f2bde50.rlib" "/app/src-tauri/target/release/deps/libfutures_util-6ff6ff1554d59023.rlib" "/app/src-tauri/target/release/deps/libfutures_io-74200d75a567c626.rlib" "/app/src-tauri/target/release/deps/libslab-2cae7f0af5c38440.rlib" "/app/src-tauri/target/release/deps/libpin_project_lite-514824f3e8630cd1.rlib" "/app/src-tauri/target/release/deps/libfutures_sink-1f0c99cd505c25fd.rlib" "/app/src-tauri/target/release/deps/libpin_utils-85da736c0418ca1c.rlib" "/app/src-tauri/target/release/deps/libfutures_task-77116c6bf2327804.rlib" "/app/src-tauri/target/release/deps/libfutures_channel-eead642ed30b9ee0.rlib" "/app/src-tauri/target/release/deps/libfutures_core-5d8b96890f929509.rlib" "/app/src-tauri/target/release/deps/libbitflags-b0d478bfea09d99b.rlib" "/app/src-tauri/target/release/deps/libgtk_sys-848d1244433639af.rlib" "-lgtk-3" "-lgdk-3" "-lz" "-lpangocairo-1.0" "-lcairo-gobject" "-lgdk_pixbuf-2.0" "-latk-1.0" "-lwayland-client" "-lpango-1.0" "-lcairo" "-lharfbuzz" "-lgio-2.0" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libatk_sys-80479e5e504bdc37.rlib" "-latk-1.0" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libgdk_sys-a1d08898128fdb7a.rlib" "-lgdk-3" "-lz" "-lpangocairo-1.0" "-lpango-1.0" "-lharfbuzz" "-lgdk_pixbuf-2.0" "-lcairo-gobject" "-lgio-2.0" "-lgobject-2.0" "-lglib-2.0" "-lintl" "-lwayland-client" "-lcairo" "/app/src-tauri/target/release/deps/libpango_sys-d65595242e1b6f7d.rlib" "-lpango-1.0" "-lharfbuzz" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libgdk_pixbuf_sys-9b0cf9e68b813d21.rlib" "-lgdk_pixbuf-2.0" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libgio_sys-4500f058b6a0aff0.rlib" "-lgio-2.0" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libcairo_sys-5b8581fa127950e4.rlib" "-lcairo-gobject" "-lcairo" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libgobject_sys-7370cf1d902cb1c4.rlib" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libglib_sys-598b2a7749e4b6fa.rlib" "-lgobject-2.0" "-lglib-2.0" "-lintl" "/app/src-tauri/target/release/deps/libdpi-7d760a420e363107.rlib" "/app/src-tauri/target/release/deps/libserialize_to_javascript-bb2d33dd7dce8e50.rlib" "/app/src-tauri/target/release/deps/libraw_window_handle-4e3e9c395fc8fff7.rlib" "/app/src-tauri/target/release/deps/libtauri_utils-fcd8b35d210e6d58.rlib" "/app/src-tauri/target/release/deps/libdunce-978efced405ce9ad.rlib" "/app/src-tauri/target/release/deps/libinfer-30bd50df37f18d8b.rlib" "/app/src-tauri/target/release/deps/libcfb-ea8a8cce2c878ffd.rlib" "/app/src-tauri/target/release/deps/libuuid-e26f6bc3faa4a163.rlib" "/app/src-tauri/target/release/deps/libbrotli-0046d357485aafd0.rlib" "/app/src-tauri/target/release/deps/libbrotli_decompressor-c52a6760593f7bbb.rlib" "/app/src-tauri/target/release/deps/liballoc_stdlib-adb2e29283288d5f.rlib" "/app/src-tauri/target/release/deps/liballoc_no_stdlib-11f1273fadcb5c9e.rlib" "/app/src-tauri/target/release/deps/liburlpattern-cdfda0dadcdd88e3.rlib" "/app/src-tauri/target/release/deps/libunic_ucd_ident-7b574cf8a2889d46.rlib" "/app/src-tauri/target/release/deps/libunic_ucd_version-6a909e867cef352d.rlib" "/app/src-tauri/target/release/deps/libunic_common-a320346cb5795f64.rlib" "/app/src-tauri/target/release/deps/libunic_char_property-832c756303237873.rlib" "/app/src-tauri/target/release/deps/libunic_char_range-8a995047a3cc9428.rlib" "/app/src-tauri/target/release/deps/libregex-284d687925787511.rlib" "/app/src-tauri/target/release/deps/libregex_automata-3db6c321f6bf5cf1.rlib" "/app/src-tauri/target/release/deps/libaho_corasick-dba7ac0967ce7541.rlib" "/app/src-tauri/target/release/deps/libregex_syntax-f0a4209fb69f7bbe.rlib" "/app/src-tauri/target/release/deps/libglob-abe192627e578d04.rlib" "/app/src-tauri/target/release/deps/libwalkdir-3e7b32858dfa2ef4.rlib" "/app/src-tauri/target/release/deps/libsame_file-57ef3c5936153c24.rlib" "/app/src-tauri/target/release/deps/libkuchikiki-8c9385ff29e2df7a.rlib" "/app/src-tauri/target/release/deps/libselectors-cda2e9608ea225d2.rlib" "/app/src-tauri/target/release/deps/libthin_slice-30c823a5c651d6f9.rlib" "/app/src-tauri/target/release/deps/libservo_arc-1a052b51021a533e.rlib" "/app/src-tauri/target/release/deps/libnodrop-c0ff88033f340b44.rlib" "/app/src-tauri/target/release/deps/libfxhash-e6887a6aace9f2d5.rlib" "/app/src-tauri/target/release/deps/libbyteorder-367ce2bb77c513e3.rlib" "/app/src-tauri/target/release/deps/libbitflags-b72a1f91bd518f78.rlib" "/app/src-tauri/target/release/deps/libcssparser-c88496cf6cbc6eb3.rlib" "/app/src-tauri/target/release/deps/libitoa-0e3aff1eb3267aa1.rlib" "/app/src-tauri/target/release/deps/libdtoa_short-33ff9caa344508a3.rlib" "/app/src-tauri/target/release/deps/libdtoa-7804561fd7e785a6.rlib" "/app/src-tauri/target/release/deps/libphf-1b102829c9958c28.rlib" "/app/src-tauri/target/release/deps/libphf_shared-8431f5ae2019fd72.rlib" "/app/src-tauri/target/release/deps/libindexmap-cd85b2e31a1b62e7.rlib" "/app/src-tauri/target/release/deps/libhashbrown-d71b6f2b5a2a2506.rlib" "/app/src-tauri/target/release/deps/libmatches-8a2ab882f41bb160.rlib" "/app/src-tauri/target/release/deps/libhtml5ever-8803624aded1a863.rlib" "/app/src-tauri/target/release/deps/liblog-f11f09ff23853413.rlib" "/app/src-tauri/target/release/deps/libmarkup5ever-b923eef2c48d194b.rlib" "/app/src-tauri/target/release/deps/libstring_cache-d126ac0d269f7a5d.rlib" "/app/src-tauri/target/release/deps/libprecomputed_hash-d324e155b8f83795.rlib" "/app/src-tauri/target/release/deps/libparking_lot-5398fde1fa9a27b2.rlib" "/app/src-tauri/target/release/deps/libparking_lot_core-a65fe5a328500766.rlib" "/app/src-tauri/target/release/deps/liblibc-00744d6ba3a1ab85.rlib" "/app/src-tauri/target/release/deps/libcfg_if-5eb07a55c8318eb4.rlib" "/app/src-tauri/target/release/deps/liblock_api-92537640b34dca4b.rlib" "/app/src-tauri/target/release/deps/libscopeguard-30840d48c4d44460.rlib" "/app/src-tauri/target/release/deps/libonce_cell-60e3aa6b76d7bdc4.rlib" "/app/src-tauri/target/release/deps/libphf-4c733f7d60b6daaa.rlib" "/app/src-tauri/target/release/deps/libphf_shared-2364bcb006ed7ab6.rlib" "/app/src-tauri/target/release/deps/libtendril-8610a9892e8574ed.rlib" "/app/src-tauri/target/release/deps/libutf8-ef88e3b9b9b14158.rlib" "/app/src-tauri/target/release/deps/libfutf-1053a0cb228ead5d.rlib" "/app/src-tauri/target/release/deps/libdebug_unreachable-205826c202af892d.rlib" "/app/src-tauri/target/release/deps/libmac-e5799565b88825d5.rlib" "/app/src-tauri/target/release/deps/libjson_patch-37141a699de521fa.rlib" "/app/src-tauri/target/release/deps/libthiserror-26c06648f48ef8e3.rlib" "/app/src-tauri/target/release/deps/libjsonptr-a3b8f08d7caaf672.rlib" "/app/src-tauri/target/release/deps/libserde_with-14577952227fbddb.rlib" "/app/src-tauri/target/release/deps/libserde_json-1674f2fc5a7173be.rlib" "/app/src-tauri/target/release/deps/libmemchr-e79a0cf7b9fdaae8.rlib" "/app/src-tauri/target/release/deps/libryu-5c12542a376ad914.rlib" "/app/src-tauri/target/release/deps/libhttp-e8c1a94094bf4300.rlib" "/app/src-tauri/target/release/deps/libitoa-531e8fd06ffc7218.rlib" "/app/src-tauri/target/release/deps/libbytes-5de48ec291c88eca.rlib" "/app/src-tauri/target/release/deps/libfnv-c20d217ac32edc81.rlib" "/app/src-tauri/target/release/deps/libphf-d81be7a8c02bed66.rlib" "/app/src-tauri/target/release/deps/libphf_shared-e33778917b232f10.rlib" "/app/src-tauri/target/release/deps/libsiphasher-fb9c470a796febf9.rlib" "/app/src-tauri/target/release/deps/libtoml-61a038ab39258223.rlib" "/app/src-tauri/target/release/deps/libtoml_edit-eff8bde67a711960.rlib" "/app/src-tauri/target/release/deps/libserde_spanned-85f66f65d38d9673.rlib" "/app/src-tauri/target/release/deps/libindexmap-3e09c3603bd5413b.rlib" "/app/src-tauri/target/release/deps/libequivalent-2fb803b125061a05.rlib" "/app/src-tauri/target/release/deps/libhashbrown-cb49f968f7af48ef.rlib" "/app/src-tauri/target/release/deps/libwinnow-8720dfbf09e2c28e.rlib" "/app/src-tauri/target/release/deps/libtoml_datetime-d4c0c890b62becd5.rlib" "/app/src-tauri/target/release/deps/libserde_untagged-c13dad2b21b45d2c.rlib" "/app/src-tauri/target/release/deps/liberased_serde-add0347b42b83b5f.rlib" "/app/src-tauri/target/release/deps/libtypeid-650e592b0e853909.rlib" "/app/src-tauri/target/release/deps/liburl-55104e32c78d3f48.rlib" "/app/src-tauri/target/release/deps/libidna-61a0a765b1af15ab.rlib" "/app/src-tauri/target/release/deps/libidna_adapter-79e21dc62c272d4b.rlib" "/app/src-tauri/target/release/deps/libicu_normalizer-712692f71a361f07.rlib" "/app/src-tauri/target/release/deps/libicu_normalizer_data-b44b3bdd2d4e73ba.rlib" "/app/src-tauri/target/release/deps/libwrite16-2817b22856037539.rlib" "/app/src-tauri/target/release/deps/libutf8_iter-c9ffd1f7c84310ff.rlib" "/app/src-tauri/target/release/deps/libutf16_iter-da28519c10a55501.rlib" "/app/src-tauri/target/release/deps/libsmallvec-6b18c814570f6f2a.rlib" "/app/src-tauri/target/release/deps/libicu_properties-58d7510bdf7ae1d4.rlib" "/app/src-tauri/target/release/deps/libicu_properties_data-226daa0ef659426d.rlib" "/app/src-tauri/target/release/deps/libicu_locid_transform-c1eb87ee0722a9d2.rlib" "/app/src-tauri/target/release/deps/libicu_locid_transform_data-1a81dcc88fb507a9.rlib" "/app/src-tauri/target/release/deps/libicu_collections-3690f75331ab0d72.rlib" "/app/src-tauri/target/release/deps/libicu_provider-5ea42fc24f73cd44.rlib" "/app/src-tauri/target/release/deps/libicu_locid-722507b5024977b5.rlib" "/app/src-tauri/target/release/deps/liblitemap-f390f76dac76c289.rlib" "/app/src-tauri/target/release/deps/libtinystr-3a54fbbecf2591ce.rlib" "/app/src-tauri/target/release/deps/libzerovec-3c97c50d30a9df49.rlib" "/app/src-tauri/target/release/deps/libwriteable-51c175fa73fccc2b.rlib" "/app/src-tauri/target/release/deps/libyoke-49f79aeb7f46e8a0.rlib" "/app/src-tauri/target/release/deps/libzerofrom-589d1c7a3f2b8f1d.rlib" "/app/src-tauri/target/release/deps/libstable_deref_trait-c16cc5ba0bb011b9.rlib" "/app/src-tauri/target/release/deps/libform_urlencoded-c1f715c70f3b776b.rlib" "/app/src-tauri/target/release/deps/libpercent_encoding-2cc69f583a2bbe33.rlib" "/app/src-tauri/target/release/deps/libthiserror-9bae0edecc57082f.rlib" "/app/src-tauri/target/release/deps/libserde-1d6169cf1aec6a7e.rlib" "/app/src-tauri/target/release/deps/libsemver-7b5c4ef87abdf26e.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libstd-1a313cb0b839513f.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libpanic_unwind-fa550602b449d4f4.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libobject-fe6faa4a0c4681c3.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libmemchr-2746f602121ab536.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libaddr2line-564bda87512b7662.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libgimli-4990cf70941ded0d.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/librustc_demangle-d4cb90e5b22f0cdf.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libstd_detect-7ad75d3f5da1b4c6.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libhashbrown-d0e982a83ebae1be.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/librustc_std_workspace_alloc-1315816d2194f08e.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libminiz_oxide-18b2b90e01ef3ca7.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libadler-fa3bf7cd965f145a.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libunwind-5b069444e83bafcc.rlib" "-lunwind" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libcfg_if-2214c81b10f67cc8.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/liblibc-ab4d433b3567a2cc.rlib" "-lc" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/liballoc-ecf7562d04f33834.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/librustc_std_workspace_core-db290fc2af930a28.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libcore-0015eda539e34bc6.rlib" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/libcompiler_builtins-61d0c8b9a9647ee6.rlib" "-Wl,-Bdynamic" "-Wl,--eh-frame-hdr" "-Wl,-z,noexecstack" "-nostartfiles" "-L" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained" "-L" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib" "-o" "/app/src-tauri/target/release/deps/test-8246f9588f5ca4a2" "-Wl,--gc-sections" "-static-pie" "-Wl,-z,relro,-z,now" "-Wl,-O1" "-Wl,--strip-debug" "-nodefaultlibs" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained/crtendS.o" "/root/.rustup/toolchains/stable-x86_64-unknown-linux-musl/lib/rustlib/x86_64-unknown-linux-musl/lib/self-contained/crtn.o" = note: /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lwebkit2gtk-4.1: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgtk-3: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk-3: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpangocairo-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo-gobject: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk_pixbuf-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -latk-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lwayland-client: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpango-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lharfbuzz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lsoup-3.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgio-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgmodule-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -ljavascriptcoregtk-4.1: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lsoup-3.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgio-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgmodule-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -ljavascriptcoregtk-4.1: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk-3: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpangocairo-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpango-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lharfbuzz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk_pixbuf-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo-gobject: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgio-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lwayland-client: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgtk-3: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk-3: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpangocairo-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo-gobject: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk_pixbuf-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -latk-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lwayland-client: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpango-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lharfbuzz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgio-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -latk-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk-3: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpangocairo-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpango-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lharfbuzz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk_pixbuf-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo-gobject: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgio-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lwayland-client: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lpango-1.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lharfbuzz: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgdk_pixbuf-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgio-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo-gobject: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lcairo: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lgobject-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lglib-2.0: No such file or directory /usr/lib/gcc/x86_64-alpine-linux-musl/13.2.1/../../../../x86_64-alpine-linux-musl/bin/ld: cannot find -lintl: No such file or directory collect2: error: ld returned 1 exit status ``` ### Additional context _No response_
type: bug,help wanted,platform: Linux,status: needs triage
low
Critical
2,773,202,561
neovim
":float split" opens windows a floating window (compare :tab, :vertical)
### Problem Some users want floating windows instead of tabs/splits for various features. https://github.com/neovim/neovim/pull/31086 ### Expected behavior Introduce `:float` which can modify commands similar to `:tab` and `:vertical`. It causes a split to open in a float. However, this raises questions about how it's presented by default, what happens when showing multiple floats, etc. Thus it might be redundant/overlap with Vim's `:help preview-popup` : - https://github.com/neovim/neovim/issues/9920 - https://github.com/neovim/neovim/issues/17434
enhancement,floatwin
low
Minor
2,773,256,498
godot
On scene load, NavigationAgent2D has target 0,0 and is_navigation_finished() == false when there is more than one navigation layer set
### Tested versions - v4.3.stable.official [77dcf97d8] ### System information Godot v4.3.stable - Windows 10.0.26100 - Vulkan (Mobile) - dedicated NVIDIA GeForce RTX 4070 SUPER (NVIDIA; 32.0.15.6603) - AMD Ryzen 7 3800X 8-Core Processor (16 Threads) ### Issue description I have attached a demo project. If you have NavigationAgent2D with avoidance enabled and have either: - any navigation layer selected apart from layer 1 - multiple navigation layers selected they are by default "navigating" when first created even though no target has been set. In other words, `navigation_agent_2d.is_navigation_finished() == false` If layer 1 is selected, `navigation_agent_2d.is_navigation_finished() == true`, which is correct as no target has been set yet. ### Steps to reproduce The setup: - created a main test scene - added a NavigationRegion2D with a NavigationPolygon, set to Navigation Layers 1 ![Image](https://github.com/user-attachments/assets/7d3a029a-520e-401c-9efc-31a8c5bf70ae) - made a new Node2D scene, added a Sprite2D and a NavigationAgent2D, enables Avoidance and connected the `velocity_computed` signal ![Image](https://github.com/user-attachments/assets/9aaede17-ac75-4cc3-834e-ed8ebcd19736) - add this to the scene: ``` extends Node2D @onready var navigation_agent_2d: NavigationAgent2D = $NavigationAgent2D func _ready() -> void: print("_ready:", navigation_agent_2d.is_navigation_finished()) set_physics_process(false) print("_ready2:", navigation_agent_2d.is_navigation_finished()) call_deferred("late_init") print("_ready3:", navigation_agent_2d.is_navigation_finished()) func late_init() -> void: print("late_init:", navigation_agent_2d.is_navigation_finished()) set_physics_process(true) func _physics_process (delta: float) -> void: pass func _on_navigation_agent_2d_velocity_computed(safe_velocity: Vector2) -> void: pass ``` Added the ship to the main: ![Image](https://github.com/user-attachments/assets/164f8533-3c0e-4462-bf35-612ed123e739) And running gives this: ![Image](https://github.com/user-attachments/assets/97cc00ae-fde2-4846-aa32-b3df5a23c003) This is expected. But, if I then set the ship navigation layers to 2 as well ![Image](https://github.com/user-attachments/assets/07422a3a-5c17-466b-8b47-796e61021ed5) The output running the game is ![Image](https://github.com/user-attachments/assets/bb511d73-9fbe-4138-84b6-4bba01b2b253) So it has a state of not yet finished navigating, which is odd as I only changed the layer. If I select layer 2 only: ![Image](https://github.com/user-attachments/assets/0ac18bd1-9b77-4138-b517-6e2503c3d64f) Then the output is also false: ![Image](https://github.com/user-attachments/assets/99da6670-07d1-4aa9-bff1-41dc820417c2) Is this expected? I know we can set a target instantly, but I was sent down a bit of a rabbit hole today wondering why my sgents wouldn't move when more than one layer was set :) If I am being an idiot here, I am really sorry. ### Minimal reproduction project (MRP) Here is the project, I hope it's enough for you to go one. [Nav.zip](https://github.com/user-attachments/files/18335459/Nav.zip)
bug,topic:navigation
low
Minor
2,773,292,427
bitcoin
multiprocess: `ipc_tests` fail on *BSD
https://github.com/hebasto/bitcoin-core-nightly/actions/runs/12655211444/job/35264969094: ``` ... ./test/ipc_tests.cpp(11): Entering test suite "ipc_tests" ./test/ipc_tests.cpp(12): Entering test case "ipc_tests" terminate called after throwing an instance of 'std::system_error' what(): Invalid argument 2025-01-07T16:33:06.682484Z [unknown] [test/util/random.cpp:46] [SeedRandomStateForTest] Setting random seed for current tests to RANDOM_CTX_SEED=fa0a6578ac6467296e537ce4d0824c43c31c96f23b59a41c7bd63fe96397244a 2025-01-07T16:33:06.685389Z [test] [init/common.cpp:153] [LogPackageVersion] Bitcoin Core version v28.99.0-433412fd8478-dirty (release build) 2025-01-07T16:33:06.715163Z [test] [kernel/context.cpp:20] [operator()] Using the 'x86_shani(1way,2way)' SHA256 implementation 2025-01-07T16:33:06.715258Z [test] [random.cpp:114] [ReportHardwareRand] Using RdSeed as an additional entropy source 2025-01-07T16:33:06.715319Z [test] [random.cpp:117] [ReportHardwareRand] Using RdRand as an additional entropy source 2025-01-07T16:33:06.724146Z [test] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client first request from current thread, constructing waiter 2025-01-07T16:33:06.724475Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client send FooInterface.add$Params (a = 1, b = 2) 2025-01-07T16:33:06.724918Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server recv request #1 FooInterface.add$Params (a = 1, b = 2) 2025-01-07T16:33:06.725025Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server send response #1 FooInterface.add$Results (result = 3) 2025-01-07T16:33:06.725288Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client recv FooInterface.add$Results (result = 3) 2025-01-07T16:33:06.726546Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client send FooInterface.passOutPoint$Params (arg = "d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000") 2025-01-07T16:33:06.726863Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server recv request #2 FooInterface.passOutPoint$Params (arg = "d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000") 2025-01-07T16:33:06.726969Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server send response #2 FooInterface.passOutPoint$Results (result = "d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000") 2025-01-07T16:33:06.727206Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client recv FooInterface.passOutPoint$Results (result = "d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000") 2025-01-07T16:33:06.727512Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client send FooInterface.passUniValue$Params (arg = "{\\"i\\":1,\\"s\\":\\"two\\"}") 2025-01-07T16:33:06.727775Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server recv request #3 FooInterface.passUniValue$Params (arg = "{\\"i\\":1,\\"s\\":\\"two\\"}") 2025-01-07T16:33:06.727906Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server send response #3 FooInterface.passUniValue$Results (result = "{\\"i\\":1,\\"s\\":\\"two\\"}") 2025-01-07T16:33:06.728111Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client recv FooInterface.passUniValue$Results (result = "{\\"i\\":1,\\"s\\":\\"two\\"}") 2025-01-07T16:33:06.728494Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client send FooInterface.passTransaction$Params (arg = "\\002\\000\\000\\000\\001d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000\\000\\377\\377\\377\\377\\001\\000\\341\\365\\005\\000\\000\\000\\000\\000\\003\\000\\000\\000") 2025-01-07T16:33:06.730213Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server recv request #4 FooInterface.passTransaction$Params (arg = "\\002\\000\\000\\000\\001d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000\\000\\377\\377\\377\\377\\001\\000\\341\\365\\005\\000\\000\\000\\000\\000\\003\\000\\000\\000") 2025-01-07T16:33:06.730295Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server send response #4 FooInterface.passTransaction$Results (result = "\\002\\000\\000\\000\\001d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000\\000\\377\\377\\377\\377\\001\\000\\341\\365\\005\\000\\000\\000\\000\\000\\003\\000\\000\\000") 2025-01-07T16:33:06.730417Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client recv FooInterface.passTransaction$Results (result = "\\002\\000\\000\\000\\001d\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\310\\000\\000\\000\\000\\377\\377\\377\\377\\001\\000\\341\\365\\005\\000\\000\\000\\000\\000\\003\\000\\000\\000") 2025-01-07T16:33:06.730550Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client send FooInterface.passVectorChar$Params (arg = "Hello") 2025-01-07T16:33:06.730651Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server recv request #5 FooInterface.passVectorChar$Params (arg = "Hello") 2025-01-07T16:33:06.730697Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server send response #5 FooInterface.passVectorChar$Results (result = "Hello") 2025-01-07T16:33:06.730842Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client recv FooInterface.passVectorChar$Results (result = "Hello") 2025-01-07T16:33:06.731889Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client send FooInterface.passBlockState$Params (arg = (mode = 1, result = 8, rejectReason = "reject reason", debugMessage = "debug message")) 2025-01-07T16:33:06.731989Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server recv request #6 FooInterface.passBlockState$Params (arg = (mode = 1, result = 8, rejectReason = "reject reason", debugMessage = "debug message")) 2025-01-07T16:33:06.732036Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server send response #6 FooInterface.passBlockState$Results (result = (mode = 1, result = 8, rejectReason = "reject reason", debugMessage = "debug message")) 2025-01-07T16:33:06.732127Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client recv FooInterface.passBlockState$Results (result = (mode = 1, result = 8, rejectReason = "reject reason", debugMessage = "debug message")) 2025-01-07T16:33:06.732273Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client send FooInterface.passBlockState$Params (arg = (mode = 0, result = 0, rejectReason = "", debugMessage = "")) 2025-01-07T16:33:06.732419Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server recv request #7 FooInterface.passBlockState$Params (arg = (mode = 0, result = 0, rejectReason = "", debugMessage = "")) 2025-01-07T16:33:06.732463Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server send response #7 FooInterface.passBlockState$Results (result = (mode = 0, result = 0, rejectReason = "", debugMessage = "")) 2025-01-07T16:33:06.732555Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c38369c800} IPC client recv FooInterface.passBlockState$Results (result = (mode = 0, result = 0, rejectReason = "", debugMessage = "")) 2025-01-07T16:33:06.750906Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} IPC server destroy N2mp11ProxyServerIN3gen12FooInterfaceEEE 2025-01-07T16:33:06.751182Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} EventLoop::loop done, cancelling event listeners. 2025-01-07T16:33:06.751242Z [unknown] [test/ipc_test.cpp:60] [operator()] LOG0: {IpcPipeTest-5456/0x77c3833af000} EventLoop::loop bye. ... ``` For now, I'm not sure whether this issue is reliably reproducible.
Tests
low
Critical
2,773,302,151
PowerToys
Turn off admin?
### Microsoft PowerToys version 0.87-1 ### Installation method Microsoft Store ### Running as admin Yes ### Area(s) with issue? Mouse Without Borders ### Steps to reproduce Clicked 'run as admin' on both machines, now realize I need to be just 'user' to re=position screens but can't figure out how to re-start w/o 'admin' selected ### ✔️ Expected Behavior Re-start as 'user'.- ### ❌ Actual Behavior Can't de-select 'admin. ### Other Software _No response_
Issue-Bug,Needs-Triage
low
Minor
2,773,321,375
PowerToys
[PTRun][Calc] Add support for different list separators based on locale
### Description of the new feature / enhancement In cultures where the list separator isn't a comma, the only way to use functions that take multiple arguments is this weird workaround where you surround a comma with spaces (i.e. `max(2,7 , 3,5)`). I propose replacing the current culture's list separator with the target culture's (en-US) separator, so that you can do `max(2,7;3,5)`. ### Scenario when this would be used? When the current culture uses a different list separator than `,` ### Supporting information _No response_
Idea-Enhancement,Status-In progress,Run-Plugin
low
Minor
2,773,346,671
neovim
API: relax api contract
## Problem `:help api-contract` has been very successful in supporting client stability, which allows Nvim to evolve without requiring clients to move in lockstep. But it has some restrictions that could be removed without breaking clients, while also allow us to evolve the API better. Note that the primary concern of the api-contract is RUNTIME stability. BUILD-TIME stability is a secondary and almost negligible concern. The goal is to avoid breaking end-user GUIs/apps; the goal is NOT to avoid api client developers from having to adjust when they consume a new version of Nvim. ## Expected behavior 1. New *optional* parameters may be added to existing functions. **All following parameters** must also be optional. - Old clients that don't send the parameters will continue to work. - Clients written in languages that don't support "optional parameter" syntax will need to pass null. This may require some languages like java(?) to change a parameter from `int` to `Object`. 2. *Existing* parameters may be declared as optional. All **following parameters** must also be optional. - **Bonus:** `vim.api` no longer requires all parameters. - before: `lua =vim.api.nvim_exec2('echo "foo"', {})` - after: `lua =vim.api.nvim_exec2('echo "foo"')` 3. Functions that currently return void may be changed to return a value. - Old clients that don't expect the returned value will simply ignore it.
enhancement,api,compatibility,channels-rpc
low
Minor
2,773,355,029
puppeteer
[Feature]: Add page.evaluateStream function to stream data from page
### Feature description **Description**: I would like to request the addition of a new function named `page.evaluateStream()` to Puppeteer. This function would allow streaming data directly from the page to the Node.js process, providing a more efficient way to interact with the page data in real time. ### Problem: Currently, the best solution I have is to use `setInterval` combined with `page.evaluate` to poll for data at regular intervals, as shown below: ```javascript // It can cause page stuttering const buffer = []; setInterval(async () => { const data = await page.evaluate(async function () { return data; }, 100); buffer.push(data); }); ``` While this solution barely works, it is not efficient. Additionally, using WebSockets to achieve real-time data streaming is not ideal because it requires setting up a server to handle communication, which adds unnecessary complexity. I've seen people create browser extensions just to try to stream data readings from puppeteer. ### Proposed Solution: A new function, `page.evaluateStream()`, would allow users to request data streaming directly from the page. This would simplify the process and improve performance by enabling continuous data retrieval without polling. Below is a hypothetical example of how this could be used: ```javascript const browser = await puppeteer.launch({ headless: false }); const page = await browser.newPage(); await page.goto('https://pptr.dev/'); // New stream-based approach const stream = await page.evaluateStream(() => { // This function would provide continuous data from the page return { some: 'data' }; // Example data }); stream.on('data', (data) => { console.log('Received data:', data); }); ``` ### Generator Function Example: In addition to the previous approach, the function `evaluateStream` could also leverage JavaScript's `generator function` capabilities to yield data in real-time. This would allow users to write code similar to the following: ```javascript const browser = await puppeteer.launch({ headless: false }); const page = await browser.newPage(); await page.goto('https://pptr.dev/'); // Using generator function to yield data const stream = await page.evaluateStream(function* () { let count = 0; while (true) { yield { counter: count++ }; // Yielding new data every time } }); stream.on('data', (data) => { console.log('Received data:', data); }); ``` In this example, the generator function allows for continuous yielding of data (like a counter), giving the flexibility to pause, resume, and manage the flow of data efficiently. ### Benefits: 1. **Improved performance**: Streaming data directly from the page would be much more efficient compared to using polling methods like `setInterval`. 2. **No external dependencies**: There would be no need for additional technologies like WebSockets or setting up a server. 3. **Simplified code**: Developers could avoid the complex and error-prone polling logic and rely on a clean, built-in function to stream data. 4. **Real-time data handling**: A native stream-based function would enable more seamless and performant real-time data interactions between Puppeteer and the client-side page. 5. **Enhanced flexibility**: The generator function approach adds the benefit of controlling the flow of data (e.g., pausing or yielding at specific intervals), which is ideal for complex scenarios requiring precise data streaming. I believe this addition would greatly improve the user experience for Puppeteer users who need to interact with data on the page in real-time.
feature,confirmed,P3
low
Critical
2,773,355,897
pytorch
Implement `Size.__radd__` (currently `tuple + Size` upcasts to `tuple`)
### 🚀 The feature, motivation and pitch `torch.Size`, just like `tuple` which it subclasses from, does not implement an `__radd__` function. This has the consequence that `Size + tuple` returns a `Size`, whereas `tuple + Size` returns a `tuple`, since it falls back to `tuple.__add__(left, right)`: ```py >>> import torch >>> torch.Size([1,2,3]) + (4,5,6) torch.Size([1, 2, 3, 4, 5, 6]) >>> (4,5,6) + torch.Size([1,2,3]) (4, 5, 6, 1, 2, 3) ``` This can be unexpected, so it would be useful if `Size` implemented ```py def __radd__(self, other: tuple[int, ...]) -> Size: ... ``` Since in most cases, upcasting to `tuple` is likely not the desired outcome. cc @albanD
triaged,actionable,module: python frontend
low
Minor
2,773,371,396
PowerToys
Slack windows do not respect FancyZones
### Microsoft PowerToys version 0.87.1 ### Installation method Microsoft Store ### Running as admin No ### Area(s) with issue? FancyZones ### Steps to reproduce Ensure PowerToys is running and FancyZones enabled Set a monitor to have a layout Using shift+drag - try to snap any Slack window on a monitor with a FZ layout enabled ### ✔️ Expected Behavior Act as any other window/application and work with FancyZones ### ❌ Actual Behavior when holding SHIFT down and dragging any Slack window, the zones do not show up in any way whereas with any other window you can see the zones. The window simply moves around irrespective of the zones available. Also, Slack window **does** respond to native windows zoning. Issue is specific to FancyZones ### Other Software Slack - Windows Store 4.41.105 64-bit
Issue-Bug,Needs-Triage,Needs-Team-Response
low
Minor
2,773,380,717
rust
ICE: `error: internal compiler error[E0277]: the trait bound 'str: const Deref' is not satisfied`
<!-- ICE: Rustc ./a.rs '-Zcrate-attr=feature(const_trait_impl) -ooutputfile -Zdump-mir-dir=dir' 'error: internal compiler error[E0277]: the trait bound `str: const Deref` is not satisfied', 'error: internal compiler error[E0277]: the trait bound `str: const Deref` is not satisfied' File: /tmp/im/a.rs --> auto-reduced (treereduce-rust): ````rust #![feature(const_trait_impl)] const _: fn(&String) = |s| { &*s as &str; }; fn main() {} ```` original: ````rust //@ check-pass const _: fn(&String) = |s| { &*s as &str; }; fn main() { println!("hi"); } ```` Version information ```` rustc 1.86.0-nightly (fb546ee09 2025-01-07) binary: rustc commit-hash: fb546ee09b226bc4dd4b712d35a372d923c4fa54 commit-date: 2025-01-07 host: x86_64-unknown-linux-gnu release: 1.86.0-nightly LLVM version: 19.1.6 ```` Command: `/home/matthias/.rustup/toolchains/master/bin/rustc -Zcrate-attr=feature(const_trait_impl)` <details><summary><strong>Program output</strong></summary> <p> ``` note: no errors encountered even though delayed bugs were created note: those delayed bugs will now be shown as internal compiler errors error: internal compiler error[E0277]: the trait bound `str: const Deref` is not satisfied --> /tmp/icemaker_global_tempdir.anmGc5oi45fj/rustc_testrunner_tmpdir_reporting.YXjbcW9xAirT/mvce.rs:2:5 | 2 | &*s as &str; | ^^^ | note: delayed at compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs:773:24 0: <rustc_errors::DiagCtxtInner>::emit_diagnostic 1: <rustc_errors::DiagCtxtHandle>::emit_diagnostic 2: <rustc_span::ErrorGuaranteed as rustc_errors::diagnostic::EmissionGuarantee>::emit_producing_guarantee 3: <rustc_trait_selection::error_reporting::TypeErrCtxt>::report_selection_error 4: <rustc_trait_selection::error_reporting::TypeErrCtxt>::report_fulfillment_error 5: <rustc_trait_selection::error_reporting::TypeErrCtxt>::report_fulfillment_errors 6: rustc_hir_typeck::typeck_with_fallback::{closure#0} 7: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::typeck::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 8]>> 8: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_data_structures::vec_cache::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 8]>, rustc_query_system::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, false> 9: rustc_query_impl::query_impl::typeck::get_query_non_incr::__rust_end_short_backtrace 10: rustc_hir_analysis::check::check::check_item_type 11: rustc_hir_analysis::check::wfcheck::check_well_formed 12: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_well_formed::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>> 13: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_data_structures::vec_cache::VecCache<rustc_span::def_id::LocalDefId, rustc_middle::query::erase::Erased<[u8; 1]>, rustc_query_system::dep_graph::graph::DepNodeIndex>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, false> 14: rustc_query_impl::query_impl::check_well_formed::get_query_non_incr::__rust_end_short_backtrace 15: rustc_hir_analysis::check::wfcheck::check_mod_type_wf 16: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::check_mod_type_wf::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 1]>> 17: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::LocalModDefId, rustc_middle::query::erase::Erased<[u8; 1]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, false> 18: rustc_query_impl::query_impl::check_mod_type_wf::get_query_non_incr::__rust_end_short_backtrace 19: rustc_hir_analysis::check_crate 20: rustc_interface::passes::run_required_analyses 21: rustc_interface::passes::analysis 22: rustc_query_impl::plumbing::__rust_begin_short_backtrace::<rustc_query_impl::query_impl::analysis::dynamic_query::{closure#2}::{closure#0}, rustc_middle::query::erase::Erased<[u8; 0]>> 23: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::DynamicConfig<rustc_query_system::query::caches::SingleCache<rustc_middle::query::erase::Erased<[u8; 0]>>, false, false, false>, rustc_query_impl::plumbing::QueryCtxt, false> 24: rustc_query_impl::query_impl::analysis::get_query_non_incr::__rust_end_short_backtrace 25: rustc_interface::passes::create_and_enter_global_ctxt::<core::option::Option<rustc_interface::queries::Linker>, rustc_driver_impl::run_compiler::{closure#0}::{closure#2}>::{closure#2}::{closure#0} 26: rustc_interface::interface::run_compiler::<(), rustc_driver_impl::run_compiler::{closure#0}>::{closure#1} 27: std::sys::backtrace::__rust_begin_short_backtrace::<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<(), rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 28: <<std::thread::Builder>::spawn_unchecked_<rustc_interface::util::run_in_thread_with_globals<rustc_interface::util::run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<(), rustc_driver_impl::run_compiler::{closure#0}>::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()>::{closure#1} as core::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} 29: std::sys::pal::unix::thread::Thread::new::thread_start 30: <unknown> 31: <unknown> --> /tmp/icemaker_global_tempdir.anmGc5oi45fj/rustc_testrunner_tmpdir_reporting.YXjbcW9xAirT/mvce.rs:2:5 | 2 | &*s as &str; | ^^^ note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: rustc 1.86.0-nightly (fb546ee09 2025-01-07) running on x86_64-unknown-linux-gnu note: compiler flags: -Z crate-attr=feature(const_trait_impl) -Z dump-mir-dir=dir query stack during panic: end of query stack ``` </p> </details> <!-- query stack: --> @rustbot label +F-const_trait_impl
A-diagnostics,I-ICE,T-compiler,C-bug,F-const_trait_impl,S-bug-has-test
low
Critical
2,773,393,256
vscode
Change UI to indicate when "Quick Fix" menu has actual fixes
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> An annoying scenario that happens for me over and over again is the following: 1. I see a highlighted error. ![Image](https://github.com/user-attachments/assets/91394fb7-9578-4797-87ce-d643bcdb3c4d) 2. I press "Quick Fix" hoping it is auto-fixable. 3. It is not. ![Image](https://github.com/user-attachments/assets/da92521d-52f2-4f0a-9e65-a13eecbe9ff7) My suggestions are: 1. either to use some visual element that would indicate that an auto-fix exists, like a green dot in superscript: ![Image](https://github.com/user-attachments/assets/212f4ba0-9044-4398-8d5e-ed4c3d68fc3d) 2. or to split the Quick Fix menu into two: ![Image](https://github.com/user-attachments/assets/183d9438-a3b0-4d7e-9c77-02270a0c384c) * one, "Quick Fix", that has actual auto-fixes: ![Image](https://github.com/user-attachments/assets/8c411585-413f-4dca-919d-d8b91450278d) * and the other, "Ignore", that has ignore/disable options: ![Image](https://github.com/user-attachments/assets/04a33353-e583-4158-b326-7173433c2404) Thank you for your attention.
feature-request,typescript
low
Critical
2,773,409,324
flutter
[macOS] Only bundle gen_snapshot_${target_arch}
On most platforms, we support only a single host architecture and a single target architecture per build. macOS supports both arm64 and x86_64 host platforms via multi-arch (universal) binaries generated with the `lipo` tool and as such, we have two gen_snapshot binaries, one for each target architecture. These binaries are universal binaries named `gen_snapshot_${target_arch}`. The unqualified `gen_snapshot` binary used for other platforms is unused on macOS and we should eliminate it from the cache, and update all references in the tool. Related issues: * https://github.com/flutter/flutter/issues/101138 * https://github.com/flutter/flutter/issues/69157 Previous attempt at this PR: * https://github.com/flutter/engine/pull/53971
tool,platform-mac,P2,team-macos,triaged-macos
low
Minor
2,773,412,016
electron
WebFrameMain frames and name field access SIGSEGV
### 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 33.3.0 ### What operating system(s) are you using? macOS ### Operating System Version macOS Sonoma 14.3 ### What arch are you using? arm64 (including Apple Silicon) ### Last Known Working Electron version _No response_ ### Expected Behavior Accessing WebFrameMain `frames` and `name` attributes on destroyed frames previously threw an error. ### Actual Behavior Accessing WebFrameMain `frames` and `name` attributes on destroyed frames now segfaults. ```checked if frame is alive 0.8441429125447275 checking if frame is alive 0.7526827941185381 checked if frame is destroyed 0.7526827941185381 checking if frame is detached 0.7526827941185381 checked if frame is detached 0.7526827941185381 checking .frames 0.7526827941185381 .../app/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron exited with signal SIGSEGV``` The trace: ``` Thread 0 (crashed) 0 Electron Framework!content::FrameTree::SubtreeAndInnerTreeNodes(content::RenderFrameHostImpl*, bool) [frame_tree.cc : 353 + 0x0] x0 = 0xefefefefefefefef x1 = 0x0000000000000000 x2 = 0x000000010c47eb00 x3 = 0x0000000000000000 x4 = 0x0000000000000000 x5 = 0x000000000000000f x6 = 0x0000000000000180 x7 = 0x0000000000000004 x8 = 0xaaaaaaaaaaaaaaaa x9 = 0x000000010eb2cd94 x10 = 0xffffffffffff1e48 x11 = 0x00000d6300100000 x12 = 0x0000000000001685 x13 = 0x0000000000000044 x14 = 0x0000000000000010 x15 = 0x0000000000000003 x16 = 0x000000000089cb29 x17 = 0x0000000157e0f6cc x18 = 0x0000000000000000 x19 = 0x000000016d59b710 x20 = 0x0000000000000000 x21 = 0x00000104009d7e00 x22 = 0x0000000000000000 x23 = 0x000000011528a000 x24 = 0x00000001153b8000 x25 = 0xefefefefefefefef x26 = 0x0000010400510100 x27 = 0x00000d63002cdf65 x28 = 0x00000d6300000000 fp = 0x000000016d59b680 lr = 0x000000010eaf767c sp = 0x000000016d59b600 pc = 0x000000010ea57460 Found by: given as instruction pointer in context 1 Electron Framework!content::RenderFrameHostImpl::ForEachRenderFrameHostImpl(base::FunctionRef&lt;content::RenderFrameHost::FrameIterationAction (content::RenderFrameHostImpl*)&gt;, bool) [render_frame_host_impl.cc : 2713 + 0xc] x19 = 0x0000000000000000 x20 = 0x000000010eb2cd9c x21 = 0x000000016d59b790 x22 = 0x00000104009d7e00 x23 = 0xaaaaaaaaaaaaaaaa x24 = 0x00000001153b8000 x25 = 0x00000104000f0280 x26 = 0x0000010400510100 x27 = 0x00000d63002cdf65 x28 = 0x00000d6300000000 fp = 0x000000016d59b770 sp = 0x000000016d59b690 pc = 0x000000010eaf767c Found by: call frame info 2 Electron Framework!content::RenderFrameHostImpl::ForEachRenderFrameHost(base::FunctionRef&lt;void (content::RenderFrameHost*)&gt;) [render_frame_host_impl.cc : 2638 + 0x8] x19 = 0x00000104067ccfa0 x20 = 0x000000016d59b7e8 x21 = 0x000000016d59b8a8 x22 = 0x0000000000000001 x23 = 0x0000000000000015 x24 = 0x00000001153b8000 x25 = 0x00000104000f0280 x26 = 0x0000010400510100 x27 = 0x00000d63002cdf65 x28 = 0x00000d6300000000 fp = 0x000000016d59b7a0 sp = 0x000000016d59b780 pc = 0x000000010eaf75c0 Found by: call frame info 3 Electron Framework!electron::api::WebFrameMain::Frames() const [electron_api_web_frame_main.cc : 412 + 0x4] x19 = 0x00000104067ccfa0 x20 = 0x000000016d59b7e8 x21 = 0x000000016d59b8a8 x22 = 0x0000000000000001 x23 = 0x0000000000000015 x24 = 0x00000001153b8000 x25 = 0x00000104000f0280 x26 = 0x0000010400510100 x27 = 0x00000d63002cdf65 x28 = 0x00000d6300000000 fp = 0x000000016d59b7d0 sp = 0x000000016d59b7b0 pc = 0x000000010c47bf8c Found by: call frame info``` ### Testcase Gist URL _No response_ ### Additional Information This may be related to [#43473](https://github.com/electron/electron/pull/43473) @samuelmaddock
platform/macOS,bug :beetle:,33-x-y
low
Critical
2,773,415,953
pytorch
`logsumexp` parameter `dim` is optional according to the doc, but the code errors out if it's not provided
### 🐛 Describe the bug ```python import torch a = torch.randn(3, 3) torch.logsumexp(a) ``` Should be "all dimensions are reduced" (https://pytorch.org/docs/stable/generated/torch.logsumexp.html), instead there is an error: ``` TypeError: logsumexp() received an invalid combination of arguments - got (Tensor), but expected one of: * (Tensor input, tuple of ints dim, bool keepdim, *, Tensor out) * (Tensor input, tuple of names dim, bool keepdim, *, Tensor out) ``` ### Versions ``` PyTorch version: 2.5.1+cu124 Is debug build: False CUDA used to build PyTorch: 12.4 ROCM used to build PyTorch: N/A OS: Ubuntu 22.04.5 LTS (x86_64) GCC version: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 Clang version: Could not collect CMake version: version 3.22.1 Libc version: glibc-2.35 Python version: 3.10.16 (main, Dec 11 2024, 16:24:50) [GCC 11.2.0] (64-bit runtime) Python platform: Linux-5.15.0-125-generic-x86_64-with-glibc2.35 Is CUDA available: True CUDA runtime version: Could not collect CUDA_MODULE_LOADING set to: LAZY GPU models and configuration: GPU 0: NVIDIA GeForce RTX 3080 Nvidia driver version: 535.183.01 cuDNN version: Could not collect HIP runtime version: N/A MIOpen runtime version: N/A Is XNNPACK available: True CPU: Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 46 bits physical, 48 bits virtual Byte Order: Little Endian CPU(s): 20 On-line CPU(s) list: 0-19 Vendor ID: GenuineIntel Model name: Intel(R) Xeon(R) W-2255 CPU @ 3.70GHz CPU family: 6 Model: 85 Thread(s) per core: 2 Core(s) per socket: 10 Socket(s): 1 Stepping: 7 CPU max MHz: 4700.0000 CPU min MHz: 1200.0000 BogoMIPS: 7399.70 Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512_vnni md_clear flush_l1d arch_capabilities Virtualization: VT-x L1d cache: 320 KiB (10 instances) L1i cache: 320 KiB (10 instances) L2 cache: 10 MiB (10 instances) L3 cache: 19.3 MiB (1 instance) NUMA node(s): 1 NUMA node0 CPU(s): 0-19 Vulnerability Gather data sampling: Mitigation; Microcode Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable Vulnerability Reg file data sampling: Not affected Vulnerability Retbleed: Mitigation; Enhanced IBRS Vulnerability Spec rstack overflow: Not affected Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization Vulnerability Spectre v2: Mitigation; Enhanced / Automatic IBRS; IBPB conditional; RSB filling; PBRSB-eIBRS SW sequence; BHI SW loop, KVM SW loop Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Mitigation; TSX disabled Versions of relevant libraries: [pip3] nvidia-cublas-cu12==12.4.5.8 [pip3] nvidia-cuda-cupti-cu12==12.4.127 [pip3] nvidia-cuda-nvrtc-cu12==12.4.127 [pip3] nvidia-cuda-runtime-cu12==12.4.127 [pip3] nvidia-cudnn-cu12==9.1.0.70 [pip3] nvidia-cufft-cu12==11.2.1.3 [pip3] nvidia-curand-cu12==10.3.5.147 [pip3] nvidia-cusolver-cu12==11.6.1.9 [pip3] nvidia-cusparse-cu12==12.3.1.170 [pip3] nvidia-nccl-cu12==2.21.5 [pip3] nvidia-nvjitlink-cu12==12.4.127 [pip3] nvidia-nvtx-cu12==12.4.127 [pip3] torch==2.5.1 [pip3] triton==3.1.0 [conda] nvidia-cublas-cu12 12.4.5.8 pypi_0 pypi [conda] nvidia-cuda-cupti-cu12 12.4.127 pypi_0 pypi [conda] nvidia-cuda-nvrtc-cu12 12.4.127 pypi_0 pypi [conda] nvidia-cuda-runtime-cu12 12.4.127 pypi_0 pypi [conda] nvidia-cudnn-cu12 9.1.0.70 pypi_0 pypi [conda] nvidia-cufft-cu12 11.2.1.3 pypi_0 pypi [conda] nvidia-curand-cu12 10.3.5.147 pypi_0 pypi [conda] nvidia-cusolver-cu12 11.6.1.9 pypi_0 pypi [conda] nvidia-cusparse-cu12 12.3.1.170 pypi_0 pypi [conda] nvidia-nccl-cu12 2.21.5 pypi_0 pypi [conda] nvidia-nvjitlink-cu12 12.4.127 pypi_0 pypi [conda] nvidia-nvtx-cu12 12.4.127 pypi_0 pypi [conda] torch 2.5.1 pypi_0 pypi [conda] triton 3.1.0 pypi_0 pypi ``` cc @svekars @brycebortree @sekyondaMeta @AlannaBurke @albanD
module: docs,triaged,actionable,module: python frontend
low
Critical
2,773,422,177
langchain
bulk_size not reverting to default value when calling OpenSearchVectorSearch.from_documents
### Checked other resources - [X] I added a very descriptive title to this issue. - [X] I searched the LangChain documentation with the integrated search. - [X] I used the GitHub search to find a similar question and didn't find it. - [X] I am sure that this is a bug in LangChain rather than my code. - [X] The bug is not resolved by updating to the latest stable version of LangChain (or the specific integration package). ### Example Code ``` docsearch = opensearch_vector_search.OpenSearchVectorSearch.from_documents( docs, embedding=BedrockEmbeddings(), opensearch_url=opensearch_host, index_name=index, engine="faiss", http_auth=awsauth, use_ssl=True, verify_certs=True, connection_class=RequestsHttpConnection ) ``` ### Error Message and Stack Trace (if applicable) Error: type object 'OpenSearchVectorSearch' has no attribute 'bulk_size' ### Description Starting in langchain-community v0.3.12, you now need to pass in `bulk_size` into `OpenSearchVectorSearch.from_documents`, or else you get the above error. It is not reverting back to the default as was intended in https://github.com/langchain-ai/langchain/pull/28325/files ### System Info System Information ------------------ > OS: Darwin > OS Version: Darwin Kernel Version 24.2.0: Fri Dec 6 19:01:59 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T6000 > Python Version: 3.9.6 (default, Nov 11 2024, 03:15:38) [Clang 16.0.0 (clang-1600.0.26.6)] Package Information ------------------- > langchain_core: 0.3.29 > langchain: 0.3.14 > langchain_community: 0.3.14 > langsmith: 0.1.143 > langchain_aws: 0.2.7 > langchain_cli: 0.0.31 > langchain_text_splitters: 0.3.5 > langserve: 0.3.0 Other Dependencies ------------------ > aiohttp: 3.11.1 > async-timeout: 4.0.3 > boto3: 1.35.61 > dataclasses-json: 0.6.7 > fastapi: 0.115.5 > gitpython: 3.1.43 > gritql: 0.1.5 > httpx: 0.27.2 > httpx-sse: 0.4.0 > jsonpatch: 1.33 > langserve[all]: Installed. No version info available. > numpy: 1.26.4 > orjson: 3.10.11 > packaging: 24.2 > pydantic: 2.9.2 > pydantic-settings: 2.6.1 > PyYAML: 6.0.2 > requests: 2.32.3 > requests-toolbelt: 1.0.0 > SQLAlchemy: 2.0.35 > sse-starlette: 1.8.2 > tenacity: 9.0.0 > tomlkit: 0.12.5 > typer[all]: Installed. No version info available. > typing-extensions: 4.12.2 > uvicorn: 0.23.2
Ɑ: vector store
low
Critical
2,773,436,414
vscode
Type filters for outline according to VSCode settings.
VSCode added [type filters](https://code.visualstudio.com/updates/v1_40#_type-filters-for-outline-and-breadcrumbs) in 1.40. Please respect those settings so that we can customize what the outline shows.
feature-request,notebook-toc-outline
low
Minor
2,773,508,294
godot
ResourceLoader.load() doesn't recognize files created with custom importer when they are placed in newly-created directory
### Tested versions - Reproducible in 4.4.dev7, 4.3.stable ### System information Godot v4.4.dev (035a12cf9) - Windows 10 (build 19045) - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated AMD Radeon RX 6700 XT (Advanced Micro Devices, Inc.; 32.0.11027.1003) - AMD Ryzen 7 5700G with Radeon Graphics (16 threads) ### Issue description I'm working on a complex 2D asset importer, which extracts asset hierarchy as well as textures from a single file. The general idea is to import hierarchy to PackedScene and textures into separate files, atlasing them into bigger bitmaps in the process, and store those atlases in separate subdirectory to avoid filesystem clutter. Here's simplified importer code: ```gdscript func _import( source_file: String, save_path: String, _options: Dictionary, _platform_variants: Array[String], _gen_files: Array[String] ) -> Error: var file := FileAccess.open(source_file, FileAccess.READ) var contents := file.get_as_text() var base_name := source_file.get_basename() var img_dir := "{0}_images".format([base_name]) DirAccess.make_dir_recursive_absolute(img_dir) EditorInterface.get_resource_filesystem().update_file(img_dir) # omitting this doesn't make a difference # spoof: extract images from file contents and put them in separate directory to reduce clutter var img_save_path := "{0}/image.png".format([img_dir]) var img := Image.create_empty(256, 256, false, Image.Format.FORMAT_RGB8) img.save_png(img_save_path) EditorInterface.get_resource_filesystem().update_file(img_save_path) _gen_files.append(img_save_path) var texture_resource := ResourceLoader.load(img_save_path, "Texture2D") as Texture2D var top_node := TextureRect.new() top_node.texture = texture_resource top_node.name = contents var scene := PackedScene.new() scene.pack(top_node) return ResourceSaver.save(scene, "{0}.{1}".format([save_path, _get_save_extension()])) ``` Unfortunately, creating directory this way makes the ResourceLoader complain about unrecognized file type, leaving file unimported. The problem doesn't occur when the directory exists or image files are created in same place as the imported file. ### Steps to reproduce - Open MRP - Observe the error message in output: `ERROR: No loader found for resource: res://test_files/first_images/image.png (expected type: Texture2D)` - alt-tab to other window and back for Godot to discover newly created directory - Reimport the `test_files/first.foo` file - Observe the lack of error ### Minimal reproduction project (MRP) [importer_repro.zip](https://github.com/user-attachments/files/18337057/importer_repro.zip)
bug,topic:editor
low
Critical
2,773,534,846
godot
XROrigin3D World Scale Issues
### Tested versions Godot v4.4.dev7, Godot 4.3 Stable ### System information Godot v4.4.dev7 - Manjaro Linux #1 SMP PREEMPT_DYNAMIC Thu, 02 Jan 2025 10:28:29 +0000 on Wayland - X11 display driver, Multi-window, 1 monitor - OpenGL 3 (Compatibility) - NVIDIA GeForce RTX 3060 (nvidia; 565.77) - AMD Ryzen 9 9900X 12-Core Processor (24 threads) ### Issue description I've been doing XR development of an interactive map with a Quest 3 Unfortunately I can't just directly scale the XROrigin3D node to fit the size of the world as nothing seems to be rendered properly if I do that, so I use the "World Scale" option. This is somehow reset each time I re-open the editor despite having saved the scene with a modified scale. But then the OpenXRCompositionLayer nodes are also broken when a non 1 scale is set for the "World Scale" Ideally I would just be able to use my own code to adjust the XROrigin3D node position and scale to create my own movement logic as you change scale and explore the map. This is currently not possible, and I assume it is a bug since all rendering and controller positioning *should* be relative to the XROrigin3D in every aspect. ### Steps to reproduce Create a scene with a non-one world scale or scale for the XXOrigin3D With non-one scale on the origin node stereoscopic rendering is completely broken. With non-one scale on the "world scale" property the XRCompositionLayer nodes are broken (incorrect placement) ### Minimal reproduction project (MRP) [xr-origin-scaling.zip](https://github.com/user-attachments/files/18337195/xr-origin-scaling.zip) I have had to remove the xrvendor plugin and the hand models and textures from the XrTools for this to fit. But it is a very simple setup. Simply mess with the XrOrigin3D node world scale property and actual scale and you will see the issues I'm referring to
bug,topic:xr
low
Critical
2,773,541,254
pytorch
custom_op's backward changes can't invalidate `torch.compile` cache for backward
### 🐛 Describe the bug (clean cache: `rm -r /tmp/torchinductor_root/*`) First, run the following code ```python import torch from torch import Tensor @torch.library.custom_op("mylib::foo", mutates_args=()) def foo(x: Tensor) -> Tensor: return x.clone() @foo.register_fake def _(x): return torch.empty_like(x) def backward(ctx, grad): return 1.0 * grad foo.register_autograd(backward) x = torch.tensor(0., requires_grad=True) @torch.compile def bar(x): return torch.ops.mylib.foo(x) bar(x).backward() print(x.grad) # tensor(1.) ``` Then, change the code to ```python import torch from torch import Tensor @torch.library.custom_op("mylib::foo", mutates_args=()) def foo(x: Tensor) -> Tensor: return x.clone() @foo.register_fake def _(x): return torch.empty_like(x) def backward(ctx, grad): return 2.0 * grad foo.register_autograd(backward) x = torch.tensor(0., requires_grad=True) @torch.compile def bar(x): return torch.ops.mylib.foo(x) bar(x).backward() print(x.grad) # tensor(1.) ``` It will still print `tensor(1.)`. Interestingly, if the "sequence" of backwards is (clean cache: `rm -r /tmp/torchinductor_root/*`) ```python def backward(ctx, grad): return grad # tensor(1.) ``` ```python def backward(ctx, grad): return 2.0 * grad # tensor(2.) ``` ```python def backward(ctx, grad): return grad # tensor(2.) ``` It will print `tensor(1.)`, `tensor(2.)`, `tensor(2.)`. I inspected the code generated by inductor, and found it didn't change after `1.0` changed to `2.0` ```python # /tmp/torchinductor_root/5g/c5gahzddocrqqegxwc4iud6jjufbxmvx6rwvify7r4bkdc5tec6v.py # other lines omitted cpp_fused_mul_0 = async_compile.cpp_pybinding(['const float*', 'float*'], ''' #include "/tmp/torchinductor_root/db/cdb7hyptwxpzukwd42x4ajfjlgrpum4a4htdd6lhb65apclsmno4.h" extern "C" void kernel(const float* in_ptr0, float* out_ptr0) { { { { auto tmp0 = in_ptr0[static_cast<int64_t>(0L)]; auto tmp1 = static_cast<float>(1.0); auto tmp2 = decltype(tmp0)(tmp0 * tmp1); out_ptr0[static_cast<int64_t>(0L)] = tmp2; } } } } ''') async_compile.wait(globals()) del async_compile def call(args): tangents_1, = args args.clear() assert_size_stride(tangents_1, (), ()) buf0 = empty_strided_cpu((), (), torch.float32) cpp_fused_mul_0(tangents_1, buf0) del tangents_1 return (buf0, ) ``` And deleting this generated file (`/tmp/torchinductor_root/5g/c5gahzddocrqqegxwc4iud6jjufbxmvx6rwvify7r4bkdc5tec6v.py`) can't solve the problem -- an identical file will be generated. ### Versions PyTorch version: 2.7.0.dev20250107+cu126 Is debug build: False CUDA used to build PyTorch: 12.6 ROCM used to build PyTorch: N/A OS: Ubuntu 22.04.5 LTS (x86_64) GCC version: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 Clang version: Could not collect CMake version: version 3.30.4 Libc version: glibc-2.35 Python version: 3.12.8 (main, Dec 19 2024, 14:33:20) [Clang 18.1.8 ] (64-bit runtime) Python platform: Linux-5.4.250-2-velinux1u1-amd64-x86_64-with-glibc2.35 Is CUDA available: True CUDA runtime version: 12.6.77 CUDA_MODULE_LOADING set to: LAZY GPU models and configuration: GPU 0: NVIDIA H100 80GB HBM3 GPU 1: NVIDIA H100 80GB HBM3 GPU 2: NVIDIA H100 80GB HBM3 GPU 3: NVIDIA H100 80GB HBM3 GPU 4: NVIDIA H100 80GB HBM3 GPU 5: NVIDIA H100 80GB HBM3 GPU 6: NVIDIA H100 80GB HBM3 GPU 7: NVIDIA H100 80GB HBM3 Nvidia driver version: 535.129.03 cuDNN version: Probably one of the following: /usr/lib/x86_64-linux-gnu/libcudnn.so.9.5.0 /usr/lib/x86_64-linux-gnu/libcudnn_adv.so.9.5.0 /usr/lib/x86_64-linux-gnu/libcudnn_cnn.so.9.5.0 /usr/lib/x86_64-linux-gnu/libcudnn_engines_precompiled.so.9.5.0 /usr/lib/x86_64-linux-gnu/libcudnn_engines_runtime_compiled.so.9.5.0 /usr/lib/x86_64-linux-gnu/libcudnn_graph.so.9.5.0 /usr/lib/x86_64-linux-gnu/libcudnn_heuristic.so.9.5.0 /usr/lib/x86_64-linux-gnu/libcudnn_ops.so.9.5.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 Address sizes: 52 bits physical, 57 bits virtual Byte Order: Little Endian CPU(s): 168 On-line CPU(s) list: 0-161 Off-line CPU(s) list: 162-167 Vendor ID: GenuineIntel Model name: Intel(R) Xeon(R) Platinum 8457C CPU family: 6 Model: 143 Thread(s) per core: 2 Core(s) per socket: 42 Socket(s): 2 Stepping: 8 BogoMIPS: 5199.99 Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch cpuid_fault invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves avx512_bf16 wbnoinvd arat avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid cldemote movdiri movdir64b md_clear arch_capabilities Hypervisor vendor: KVM Virtualization type: full L1d cache: 3.9 MiB (84 instances) L1i cache: 2.6 MiB (84 instances) L2 cache: 168 MiB (84 instances) L3 cache: 195 MiB (2 instances) NUMA node(s): 2 NUMA node0 CPU(s): 0-83 NUMA node1 CPU(s): 84-167 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Unknown: No mitigations Vulnerability Retbleed: Not affected Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Mitigation; TSX disabled Versions of relevant libraries: [pip3] numpy==2.2.1 [pip3] nvidia-cublas-cu12==12.6.4.1 [pip3] nvidia-cuda-cupti-cu12==12.6.80 [pip3] nvidia-cuda-nvrtc-cu12==12.6.77 [pip3] nvidia-cuda-runtime-cu12==12.6.77 [pip3] nvidia-cudnn-cu12==9.5.1.17 [pip3] nvidia-cufft-cu12==11.3.0.4 [pip3] nvidia-curand-cu12==10.3.7.77 [pip3] nvidia-cusolver-cu12==11.7.1.2 [pip3] nvidia-cusparse-cu12==12.5.4.2 [pip3] nvidia-cusparselt-cu12==0.6.3 [pip3] nvidia-nccl-cu12==2.21.5 [pip3] nvidia-nvjitlink-cu12==12.6.85 [pip3] nvidia-nvtx-cu12==12.6.77 [pip3] pytorch-triton==3.2.0+git0d4682f0 [pip3] torch==2.7.0.dev20250107+cu126 [conda] Could not collect cc @chauhang @penguinwu @voznesenskym @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @ipiszy @yf225 @chenyang78 @kadeng @muchulee8 @ColinPeppler @amjames @desertfire @aakhundov @BoyuanFeng @zou3519 @bdhirsh
triaged,module: custom-operators,oncall: pt2,module: pt2-dispatcher
low
Critical
2,773,597,342
vscode
Linux: writing elevated fails with high `ulimit` values
<!-- ⚠️⚠️ 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.96.2 (code_1.96.2-1734607745_amd64.deb) - OS Version: Ubuntu 24.10 Steps to Reproduce: 1. Open a file that is not writable by the user 2. Edit the file 3. Try to save it 4. Error pops up stating that not enough permissions 5. Retry as Sudo option appears 6. Enter password 7. Saving process running forever Same problem has been discussed here: https://github.com/microsoft/vscode/issues/234311. Is there any progress or plan? Or any workaround ?
bug,linux,file-io,workbench-run-as-admin,confirmed,mitigated
medium
Critical
2,773,597,580
vscode
Consolidate Copilot status bar items
Refs: https://github.com/github/copilot/issues/13043 Todo: - convert Copilot status contribution to language status indicator - what does it mean for the core provided language status that also shows for completions ([link](https://github.com/microsoft/vscode/blob/5f888fae91ed3f1e5b0437440947b7258c9e6e89/src/vs/workbench/contrib/inlineCompletions/browser/inlineCompletionLanguageStatusBarContribution.ts#L16)) - convert Copilot quota indication into a full status indicator - explore a more permanent Copilot status indicator as entry point to chat and setup //cc @bamurtaugh
feature-request,plan-item,workbench-copilot
low
Minor
2,773,624,806
vscode
Expose `Find in tree` command in Command Palette
We could have `Find in tree` appear in F1, when a tree just had focus.
feature-request,tree-widget
low
Minor
2,773,650,364
rust
CoercePointee leaks unstable unsizing impls
```rust #![feature(derive_coerce_pointee)] use std::marker::PhantomData; use std::marker::CoercePointee; #[derive(CoercePointee)] #[repr(transparent)] struct MyPointer<'a, T, #[pointee] U: ?Sized> { ptr: &'a (T, U), } fn main() { let x = MyPointer { ptr: &(1u32, 1u32) }; let _: MyPointer<u32, dyn Send> = x; } ``` _Originally posted by @lcnr in https://github.com/rust-lang/rust/issues/133820#issuecomment-2559403237_
T-compiler,A-coercions,T-types,F-derive_coerce_pointee
low
Minor
2,773,652,250
transformers
4.47.1 Hugging Face Trainer loss accumulated by sum instead of mean
### System Info Version: `transformers==4.47.1` When I training model using this version of hugging face trainer, the loss is accumulated by sum instead of mean. Or it's better saying that the `tr_loss_step` did not divide by the global batch size. That means, the reported loss will scale proportionally with the global batch size. ![image](https://github.com/user-attachments/assets/55c0ca9a-c4b0-400b-9059-9b4fc9686810) When I change the transformer version to be 4.44.0, this problem is and everything works good. ![image](https://github.com/user-attachments/assets/144b01d5-e133-49cc-b5e5-bd5267deef2a) My global batch size is set to 128 here. You can see from the above image that `tr_loss_step=original_loss / 128`, which is not the case when transformers version is 4.47.1, where `tr_loss_step=original_loss`. ### Who can help? _No response_ ### Information - [ ] The official example scripts - [ ] My own modified scripts ### Tasks - [ ] An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...) - [ ] My own task or dataset (give details below) ### Reproduction 1. Any training with `transformers==4.47.1` ### Expected behavior loss accumulated by sum instead of mean
bug
low
Major