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
694,156,823
rust
Alternative help for missing min/max function
```rust fn main() { let x = 5; let y = 9; println!("{}", max(x, y)); } ``` With rustc (1.48.0-nightly 0d0f6b113 2020-09-03) gives: ```rust error[E0425]: cannot find function `max` in this scope --> ...\test.rs:4:20 | 4 | println!("{}", max(x, y)); | ^^^ not found i...
C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics
low
Critical
694,183,904
go
net/http: potential client transport lock contention on high CPU core count machines
<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.15.1 linux/amd64 </pre> ### Does this issue reproduce...
Performance,NeedsInvestigation
low
Critical
694,205,660
neovim
Add options for preview window opening
According to [this line of code](https://github.com/neovim/neovim/blob/2bbbb34ce78ee30c1ee53a9cb3fd1e7608185716/src/nvim/ex_cmds.c#L4489), the tag preview window gets opened with a plain `win_split` function call. The `flags` parameter is fixed to `0`. So it is not even possible to say the preview should be opened at t...
enhancement
low
Minor
694,206,396
rust
Tracking Issue for slice_range
<!-- Thank you for creating a tracking issue! 📜 Tracking issues are for tracking a feature from implementation to stabilisation. Make sure to include the relevant RFC for the feature if it has one. Otherwise provide a short summary of the feature and link any relevant PRs or issues, and remove any sections that ar...
T-libs-api,C-tracking-issue,A-slice,Libs-Tracked
medium
Critical
694,211,392
pytorch
Allow to use system zstd
## 🚀 Feature I want to be able to use my system's zstd lib instead of the static library built by pytorch. ## Motivation It would allow for nicer integration into Linux distributions. Same reason for why there are so many use `USE_SYSTEM_` directives already.
feature,triaged
low
Minor
694,217,985
godot
CTRL+Left click on a selected graph node sends a selected signal, and then a deselected signal
**Godot version:** godot mono 3.2.3_RC5 **OS/device including version:** Windows 10 **Issue description:** CTRL click selects and deselects GraphEdit Graph Nodes correctly as far as user visualization, however, the signals fired send an extra select. Expected behavior : deselecting a node with CTRL lef...
bug,topic:input,topic:gui
low
Minor
694,230,343
kubernetes
[Flaky unit test] pkg/kubelet/volumemanager/reconciler Test_UncertainVolumeMountState
**Which jobs are flaking**: * periodic-kubernetes-bazel-test-master (xref https://github.com/kubernetes/kubernetes/issues/94528#issuecomment-687208028) * ci-kubernetes-cached-make-test **Which test(s) are flaking**: Test_UncertainVolumeMountState **Testgrid link**: Top unit test flake in postsubmits: ...
sig/storage,kind/flake,lifecycle/frozen,wg/reliability
low
Critical
694,239,412
go
x/tools/gopls: add tests for finding references in replace targets
We don't have any tests for this behavior.
Testing,gopls,Tools
low
Minor
694,253,316
TypeScript
[Bug] Projects have different output directory structure with same configuration.
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 --> <!-- Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the CONT...
Needs Investigation
low
Critical
694,297,785
PowerToys
[Color Picker] Pick a bigger area and use the average color
## 📝 Provide a description of the new feature _What is the expected behavior of the proposed feature? What is the scenario this would be used?_ The color picker picks a wider area around the cursor and calculates the average pixel color inside the area. Right now the color picker picks the color of one pixel....
Idea-Enhancement,Help Wanted,Product-Color Picker
low
Major
694,393,241
rust
Nested impl Trait for higher-order functions
Hi! It will be nice to use impl Trait with higher-order functions like the following. But it occurs a compile error at `impl Iterator<Item=u32>`. ```rust fn f1<F: FnMut(u32) -> u32>(a: u32) -> impl FnOnce(F) -> impl Iterator<Item=u32> /* <- compile error! */ { move |f: F| { (0..a).map(f) } } ...
C-feature-request,A-impl-trait
low
Critical
694,413,720
go
x/pkgsite: show more search results per page or give users a setting for that
<p>When&#xA0;looking for&#xA0;a&#xA0;module or&#xA0;a&#xA0;package, I will often find what&#xA0;I&#xA0;need on&#xA0;the&#xA0;second or&#xA0;the&#xA0;third page of&#xA0;the&#xA0;search results.&#x2003;There&#xA0;are already enough issues about&#xA0;the&#xA0;quality of&#xA0;the&#xA0;search, so&#xA0;for&#xA0;now I&#x...
NeedsInvestigation,pkgsite,pkgsite/search
low
Major
694,433,387
material-ui
Add ResizeObserver abstraction
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Summary 💡 Make it easier to react to changes from an element's position. ## Examples 🌈 ```jsx import { useResizeObserver } from '@material-ui/core'; const [...
new feature,waiting for 👍
low
Major
694,499,174
rust
Consider using the host `beta` toolchain if it already exists at the right version
Currently, if you have `beta` installed via rustup, x.py will download it again when building for the first time. It would be great to avoid this needless download. It would also have the benefit that `x.py clean` wouldn't require redownloading things from the internet. Possible implementation: try both `rustc --ver...
C-enhancement,T-bootstrap,A-contributor-roadblock
medium
Major
694,529,132
flutter
Compilation errors not being detected?
I don't really understand what's happening here. I run my demo app, and the tool just quits with no error message. If I run in verbose mode it shows compilation errors. The analyzer however insists everything is fine: ``` ianh@burmese:~/dev/sample_plexiglass$ flutter run Launching lib/main.dart on Lenovo TB 8504F ...
tool,a: build,P2,team-tool,triaged-tool
low
Critical
694,544,679
neovim
expression folding (foldexpr) bug
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: NVIM v0.4.4 - `vim -u DEFAULTS` (version: 8.1) behaves differently? No - Operating system/version: macOS - Terminal name/version: alacritty 0.5.0 - `$TERM`: xterm-256color ### Steps to reproduce using `nvim -u NORC` Pu...
bug-vim,core,needs:vim-patch
low
Critical
694,644,131
godot
HBoxContainer with 2 or more identical subscenes can't be load()-ed or preload()-ed.
HBoxContainer |- ButtonA # Instance of a scene |- ButtonB # Instance of the same scene where **ButtonA** and **ButtonB** are instances of a scene can't be load()-ed or preload()-ed. Result is **null**. But it can be run using F6 or if it is a part of autorun scene. But if either instance is removed ...
bug,topic:core
low
Critical
694,646,530
godot
null result of load() call destroys arrays
If load() call returns **null**, this **null** is destructive for arrays (at least). function test(): var classes = [] var S = load( "res://...." ) # Here load() returns null classes.push_back( S ) # At this point "classes" changes from "[]" to "null". I.e. literally null retu...
bug,topic:core
low
Minor
694,689,812
go
cmd/compile: rewrite sequences of mutex calls
Just a random idea that may be worth considering. It should be safe (at least on amd64) for the compiler to rewrite sequences of ```golang // var m sync.Mutex m.Lock() // no code between the two m.Unlock() ``` to ```golang if atomic.LoadUint32(&m.state) != mutexUnlocked { m.Lock() m.Unlock() } ```...
NeedsInvestigation,compiler/runtime
low
Minor
694,716,319
vscode
Line highlight on search results doesn't work
<!-- ⚠️⚠️ 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. --> There is a lack of any sort of visual hierarchy ...
bug,search,confirmed
medium
Major
694,758,623
godot
TileSet editor toolbar icons look blurry on non-HiDPI monitor
**Godot version:** 3.2.3 beta 1 ~ rc 5 **OS/device including version:** MacBook Pro (Retina, 13-inch, Early 2015) Intel Iris Graphics 6100 1536 MB **Issue description:** When using both a non-HiDPI and a HiDPI monitor and the Godot Editor is on the non-HiDPI one, the same icon looks blurry on TileSet toolbar...
bug,platform:macos,topic:editor,confirmed,topic:gui
low
Major
694,774,581
storybook
Empty storybook (*.stories.js ignored)
**Describe the bug** 1. Create own react boilerplate (without CRA etc.) 2. Install @storybook/react and @storybook/cli 3. Run npx -p @storybook/cli sb init 4. Run yarn storybook 5. Only mdx file in the list. Stories files was ignored. **To Reproduce** Steps to reproduce the behavior: 1. Clone https://githu...
question / support,configuration babel / webpack,has workaround
low
Critical
694,809,555
pytorch
Slower speeds when using half().
I've written some code to test the speed of resnet50: ```python import time import torch from model import resnet if __name__ == '__main__': model = resnet.resnet50() dummy_input = torch.ones(1, 3, 224, 224).cuda() # dummy_input = torch.ones(1, 3, 224, 224).half().cuda() model.cuda(...
module: performance,triaged
low
Major
694,858,404
ant-design
ResizeObserver loop limit exceeded
- [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/antd-reproduction-template-forked-h5f4k) ...
🐛 Bug,help wanted,Inactive
high
Critical
694,867,514
flutter
the wrap widget add a property “maxline” to limit the lines of the widget
## Use case when i use the row to show something, I want to hide the child which overflow the parent. ## Proposal the stack overflow teaches that I can use the "wrap" instead, but i just want the first line of widget, it's more similar to the row. So maybe the wrap widget can add a property “maxline” to limit ...
c: new feature,framework,c: proposal,P3,team-framework,triaged-framework
medium
Critical
694,944,675
youtube-dl
FAQ request: how to repair a "raw" hls (live)stream
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
694,980,093
pytorch
How to use CUDA Dynamic Parallelism in PyTorch CPP extension?
I found discussions at discuss.pytorch.org . But there is still no solution now. Here is the error message: ``` error: kernel launch from __device__ or __global__ functions requires separate compilation mode ``` and ``` error: a __device__ function call cannot be configured ``` Thanks. cc @ngimel
module: cuda,triaged
low
Critical
695,002,076
rust
Help message when subtracting two types that can't be subtracted is incorrect
I tried this code: ```rust fn f<Amount, TotalAmount>(amount: Amount, total_amount: TotalAmount) { let total_amount = amount - total_amount; } ``` I expected to see this happen: Error with help: ``` error[E0369]: cannot subtract `TotalAmount` from `Amount` --> src\main.rs:5:31 | 5 | let total_...
A-diagnostics,A-trait-system,T-compiler,C-bug,A-suggestion-diagnostics,D-invalid-suggestion
low
Critical
695,013,822
terminal
wt.exe from command line with named console binary picks the wrong tab icon and wrong tab title
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Issue-Bug,Area-UserInterface,Product-Terminal,Issue-Task,Area-Commandline
low
Critical
695,062,430
create-react-app
Document `--use-npm`
`--use-npm` flag is not documented here: https://github.com/facebook/create-react-app#creating-an-app Would have preferred to add a comment to this issue, but it is locked: Yarn is used automatically with no obvious way to use npm instead #3385 IMHO, using NPM should be the default.
issue: proposal,needs triage
low
Minor
695,071,665
godot
AnimationPlayer timeline seeks in seconds even if length and snap are configured in FPS
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.2.2 ![Xksdmay](https://user-images.githubusercontent.com/46036208/92389708-2f348100-f14c-11ea-8104-ed384f8dc8a8.png) I should also be able to set...
enhancement,topic:editor
low
Minor
695,117,213
flutter
Getting IAP's refunded, how to acknowledge user purchase?
Hello, I'm using **in_app_purchase: ^0.3.4+5** And I've already had 3 IAP's refunded. To implement IAP I followed this guide: https://fireship.io/lessons/flutter-inapp-purchases/ Which implements this medthod among others: ``` Future<void> _getUserPastPurchases() async { QueryPurchaseDetailsRespon...
p: in_app_purchase,package,a: production,team-ecosystem,P2,triaged-ecosystem
low
Major
695,142,568
youtube-dl
Hook that called when complete postprocessing
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check list in order to...
request
low
Critical
695,146,161
go
net/http: Clarify Content-Type behavior of ResponseWriter.Write
## Preface The current documentation for `http.ResponseWriter.Write` states: ``` If the Header does not contain a Content-Type line, Write adds a Content-Type set to the result of passing the initial 512 bytes of written data to DetectContentType. ``` What I think this means is that up to 512 bytes of **th...
NeedsInvestigation
low
Critical
695,191,599
opencv
DNN_TARGET_OPENCL_FP16 support for RK3399's Mali-T860
DNN_TARGET_OPENCL_FP16 inference is currently available only with InferenceEngine (Intel hardware). However T8xx Mali GPUs (and many other GPUs), present in the quite popular ARM64 RK3399, are able to perform fp16 operations. This would result in a x4 inference speed up compared to fp32 inference. I hope this could ...
feature,priority: low,category: ocl,category: dnn,platform: arm
low
Critical
695,220,767
pytorch
PyTorch wheel's own OpenMP library clashing with system-wide OpenMP library at runtime
## 🐛 Bug On MacOS Catalina with PyTorch installed with pip, when the same Python script imports both PyTorch and another package using also OpenMP, the Python interpreter crashes with the following message: `OMP: Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized. OMP: Hint Thi...
triaged,module: openmp
low
Critical
695,294,592
rust
Confusing diagnostics for lifetime on associated type
When you declare this: ```rust trait HasAssoc { type Assoc; fn tap(some: Self::Assoc) -> Self::Assoc; } impl HasAssoc for i32 { type Assoc = &'a i32; fn tap(some: Self::Assoc) -> Self::Assoc { some } } ``` you get this error: ``` error[E0261]: use of undeclared lifetime name...
A-diagnostics,A-lifetimes,A-associated-items,T-compiler,D-papercut,D-newcomer-roadblock,A-GATs
low
Critical
695,300,395
godot
StyleBoxTexture margin cant take floats in inspector
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** v3.2.2 mono **OS/device including version:** Windows 10 1909 **Issue description:** When editing a StyleBoxTexture Ressource, the margin inpu...
topic:editor,topic:gui
low
Critical
695,342,347
create-react-app
Cra can't support postcss-nested syntax because webpack.config.js file haven't postcss-nested module
### Is your proposal related to a problem? <!-- Provide a clear and concise description of what the problem is. For example, "I'm always frustrated when..." --> Cra can't support postcss-nested syntax because webpack.config.js file haven't **postcss-nested** module. Sample nested css in my header.module...
issue: proposal,needs triage
low
Critical
695,357,365
rust
Low nproc ulimit causes compiler to crash
<!-- Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for how to create smaller examples. http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/ --> ### System edit: I believe the cor...
I-ICE,P-medium,T-compiler,C-bug
low
Critical
695,375,358
flutter
RefreshIndicator should work without scrollable child
To reload data for the current screen it should be possible to use the RefreshIndicator without a scrollbale child. There are workarounds but they don't feel sensefull... f.e.: https://stackoverflow.com/questions/57627368/how-to-use-refreshindicator-without-scroll-widget https://stackoverflow.com/questions/5019...
c: new feature,framework,f: material design,f: gestures,P3,team-design,triaged-design
low
Major
695,401,332
neovim
Repeat signs across wrapped lines
Im writing a plugin to work with Github issues. Since Im writing all issue comments in the same buffer, I wanted to highlight each individual comment by adding some signs to the sign column: <img width="1344" alt="image" src="https://user-images.githubusercontent.com/125701/92417446-775e9e00-f162-11ea-9fc1-ff57d0187...
enhancement,core,column
low
Major
695,422,428
electron
Window snapping on Windows does not persist the window position/size after hide/show
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have s...
platform/windows,bug :beetle:,9-x-y
medium
Critical
695,497,146
TypeScript
Extract to constant refactor does not preserve type of context-sensitive function calls
<!-- 🚨 STOP 🚨 STOP 🚨 STOP 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps before lo...
Bug,Domain: Refactorings
low
Critical
695,535,334
pytorch
Request: Add PyTorch version to state dicts
## 🚀 Feature Embed a minimal metadata such as the current version of Pytorch by which the model is saved into the saved model. ## Motivation Now that we see lots of breaking changes going from one version to the next, its best to at the very least have some metadata saved into the models themselves, so they can b...
module: serialization,triaged,enhancement
low
Critical
695,537,919
go
testing: document rules for using TB
There's rules about what a `TestFoo` may do with the `*testing.T` it is given. Some are documented (e.g. https://golang.org/pkg/testing/#T puts restrictions on invoking `Fatalf` and friends), but some are not (e.g. `Logf` and probably most other methods should not be called after `TestFoo` returns). Same applies to `*t...
Documentation,help wanted,NeedsInvestigation
low
Minor
695,554,280
godot
EditorInspector signal object_id_selected(id: int) is never called
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.2.2 stable <!-- Specify commit hash if using non-official build. --> **OS/device including version:** linux mint 20 <!-- Specify GPU model, drive...
bug,topic:editor,topic:plugin
low
Critical
695,575,835
TypeScript
Disable type checking for node_modules entirely
## Search Terms skipLibCheck node_modules ignore library exclude ## Suggestion Either a new option or the existing option `skipLibCheck` should be able to disable type checking for node_modules. ## Use Cases A library author might have a faulty import or might only provide typescript files for his lib...
Suggestion,Awaiting More Feedback
high
Critical
695,576,790
storybook
Cannot consistently decorate story source
**Describe the bug** I'm trying to write a simple set of HTML stories in with Storybook Vue. Since I need to add backticks to the templates of each story, the "Story" source panel will parse the code snippet with those backticks, which is undesired (and invalidates highlighting). I figured I could easily remove thos...
feature request,addon: storysource
low
Critical
695,735,804
flutter
`flutter run` failed due to permission denied
When I try to run a newly created flutter app the build fails for iOS simulator referencing the error below. I've been struggling with this for a few days now and any help would be much appreciated. ``` cp: /Users/george/Desktop/projects/myApp/ios/Flutter/Flutter.podspec: Permission denied Comman...
tool,t: xcode,P2,team-tool,triaged-tool
low
Critical
695,764,128
godot
EditorPlugin: undo method is not called if object parameter can't be casted to Resource
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** v3.2.2.stable.official **OS/device including version:** Windows 10 x64, two different systems tested **Issue description:** After adding a u...
bug,topic:editor,confirmed,topic:plugin
low
Minor
695,816,587
rust
[ER] catch some wrong copy_from_slice statically
I think we should catch some `slice::copy_from_slice` length mismatch in basic cases like: ```rust fn main() { let mut a = [0_u32; 10]; let b = [0_u32; 20]; a.copy_from_slice(&b); } ```
C-enhancement,A-lints
low
Minor
695,833,297
ant-design
Cascader 级联选择器希望增加virtual选项
- [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? 当数据量比较大时,打开级联选择器还是很卡,希望像select组件一样,可以增加virtual选项 ### What does the proposed API look like? virtual={true} <!-- generated...
💡 Feature Request,Inactive
low
Minor
695,863,727
youtube-dl
Request for site support: kan.org.il
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
695,870,775
godot
Can't download assets from the asset library if their Content-Length hasn't been declared (like for GitHub's uncached ZIP archives)
*Bugsquad edit (keywords for easier searching): HTTP chunk too big* **OS/device including version:** <!-- Specify GPU model and drivers if graphics-related. --> Windows 10 **Issue description:** <!-- What happened, what was expected, and what went wrong. --> Went to the templates in Godot 3.2.2 stable, and tr...
bug,topic:editor,confirmed,topic:assetlib,topic:network
low
Critical
695,923,450
ant-design
Slider Maker position
- [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? In case of horizontal slider while the user is using the slider the marks gets hidden below the cursor. This can create confusion...
Inactive
low
Minor
695,988,751
terminal
Change pointer when hovering over a link
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Area-UserInterface,Product-Terminal,Issue-Task
low
Critical
695,990,885
terminal
Add hyperlink support to conhost
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Product-Conhost,Area-Interaction,Issue-Task
low
Critical
695,993,909
terminal
Include hyperlinks in HTML copy
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Area-Output,Product-Terminal,Issue-Task
low
Critical
696,001,720
PowerToys
Frame Draw and 60Hz+ Displays
There's seems to be and rendering method that limits the redraw to 30hz (determined by debugger). Windows 10 will honor the Display Adapter's setting regardless of the configuration (120hz in my display's case). This is likely done to save battery, but would like an option for desktops to draw at the system's configure...
Idea-New PowerToy,Product-Tweak UI Design
low
Critical
696,003,796
rust
Overly specific PartialEq impl for Option and Result
#### I tried this code: ```rust // This works: let s1: String = "foo".to_owned(); let s2: &str = "foo"; s1 == s2; // But these don't: let o1: Option<String> = Some("foo".to_owned()); let o2: Option<&str> = Some("foo"); o1 == o2; let r1: Result<String, ()> = Ok("foo".to_owned()); let r2: Result<&str, ()...
T-libs-api,C-bug
low
Critical
696,014,878
youtube-dl
Please support for discoveryplus.in
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
696,045,327
flutter
Flutter tools on iOS should show a message for untrusted personal certificate apps
Flutter running with a personal account just shows a generic ``` Could not build the precompiled application for the device. It appears that your application still contains the default signing identifier. Try replacing 'com.example' with your signing id in Xcode: open ios/Runner.xcworkspace Error launchi...
platform-ios,tool,a: quality,t: xcode,P3,team-ios,triaged-ios
low
Critical
696,048,159
flutter
Linux build exposes user's build tree path (which may contain username, etc.) in the rpath of `lib*_plugin.so`
## Problem description When building a Flutter app on Linux with plugins that need to create a dynamic library (e.g. `url_launcher`), flutter will create a `lib<plugin_name>_plugin.so` under `build/linux/release/bundle/lib`. However, `readelf -d lib<plugin_name>_plugin.so` shows that its rpath (RUNPATH) includes the u...
tool,platform-linux,a: desktop,a: build,P2,team-linux,triaged-linux
low
Minor
696,052,874
terminal
Add auto-suggestion to the Command-Palette wt arguments
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Issue-Feature,Area-UserInterface,Product-Terminal,Priority-3,Area-CmdPal
low
Critical
696,067,969
kubernetes
Add field-level warnings for deprecated / known bad values
- Determine approach and format for warnings: - [x] determine when to emit warnings: on creation, on update that would change generation / spec - [x] Use field.Path format - [x] for deprecated values, indicate replacement, deprecation and target removal release - Add warnings for deprecated fields - Pod te...
priority/important-soon,sig/api-machinery,kind/feature,lifecycle/frozen
medium
Critical
696,068,363
pytorch
`Undefined symbol: torch::kNearest` when building App iOS
## 🐛 Bug XCode clang linker produces errors such as `Undefined symbol: torch::kNearest` when using `torch::nn::functional::InterpolateFuncOptions( )` ## To Reproduce Steps to reproduce the behavior: 1. clone https://github.com/pytorch/ios-demo-app and build 2. add this code somewhere in [here](ht...
triaged,oncall: mobile,module: ios
low
Critical
696,083,982
pytorch
[FX] Schema normalization tooling
When a PyTorch program is represented in FX, callsites to ops, modules, and methods appear simply as a tuple of (reference to target, args, kwargs). The representation itself is agnostic to the schema of the op/module/method or overloads of such. It would be nice to have infrastructure that takes the aforementioned tup...
module: internals,triaged,module: fx
low
Major
696,098,225
flutter
Splash Screen configurations reset during Flutter Initialization
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
platform-android,engine,a: fidelity,e: embedder,c: proposal,P2,team-android,triaged-android
low
Critical
696,114,142
rust
format_args! is slow
Like molasses in the Antarctic. As a consequence, so is any method which depends on its Arguments, like `{fmt, io}::Write::write_fmt`. The microbenchmarks in [this issue about `write!`'s speed][slow_write_macro] demonstrate that merely running the same arguments through `format_args!` and then `write_fmt`, even if i...
I-slow,C-feature-request,T-libs,A-fmt
medium
Major
696,117,294
flutter
Add tests to https://github.com/flutter/engine/pull/20980
https://github.com/flutter/engine/pull/20980 didn't have tests. Merged since it was a blocker for iOS 14 release. Backfill test.
a: tests,team,platform-ios,P3,team-ios,triaged-ios
low
Minor
696,135,230
electron
Remove command line parameters consumed by Electron
### Preflight Checklist * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have sea...
enhancement :sparkles:
low
Critical
696,147,470
rust
Tuple-struct constructor visibility leads to inconsistency in pattern matching
The following code: ```rust mod foo { pub struct NamedStruct { field: u8 } pub struct TupleStruct(u8); } use foo::*; fn test_it(named: NamedStruct, tuple: TupleStruct) { if let NamedStruct { .. } = named {} if let TupleStruct(..) = tuple {} } ``` produces the following ...
A-visibility,T-compiler,C-bug
low
Critical
696,148,717
TypeScript
Probable bug: Functional properties don't get inferred with circular type parameter constraints like `T extends M<T>`
**TypeScript Version:** 4.0.2 **Search Terms:** Circular type parameter constraint, functional property inference, function parameter inference, function argument inference **Code:** ```typescript declare const m: <T extends M<T>>(m: T) => T type M<Self, K = Exclude<keyof Self, "k" | "t">> = { a?: number ...
Needs Investigation
low
Critical
696,165,452
rust
Improve the rustc-side clippy development experience
When working on https://github.com/rust-lang/rust/pull/75573, I ended up needing to modify Clippy (both a lint implementation and some UI tests). This process left a lot to be desired, and could be a significant roadblock to new contributors. I came up with some ideas for improving the process: - [ ] Run Clippy test...
A-testsuite,T-bootstrap,C-bug,A-contributor-roadblock,A-clippy
medium
Critical
696,217,898
flutter
package:integration_test and coverage
It should be feasible to collect coverage at the end of a package:integration_test by connecting to the observatory and getting coverage information, similar to how the timeline information is retrieved (see https://github.com/flutter/plugins/pull/2947).
a: tests,framework,f: integration_test,P3,team-framework,triaged-framework
low
Major
696,221,043
flutter
package:integration_test should be able to write data to somewhere Firebase TestLab can see it
For example, we may want to write screenshots, coverage or timeline information to the SD card. We should make this easier to do in the plugin itself, and document how a user should use it.
a: tests,framework,d: api docs,c: proposal,f: integration_test,P3,team-framework,triaged-framework
low
Minor
696,228,718
TypeScript
"javascript.preferences.importModuleSpecifier" relative path, but with current directory prefix
<!-- ⚠️⚠️ 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. --> I'm not sure if there is a way to do this alre...
Suggestion,Awaiting More Feedback
low
Minor
696,245,109
pytorch
Consider cache effects in Timer
## 🚀 Feature When timing a statement, Timer should attempt to determine if the measurement is affected by CPU caching. ## Motivation Consider the following measurements: ``` import torch from torch.utils._benchmark import Timer n = 1024 k = 2 m0 = Timer( "[torch.cat([x, y], 0, out=out) for _ in r...
module: bootcamp,triaged,enhancement
low
Major
696,246,767
TypeScript
`null!` still has the type `null` outside of `strictNulllChecks`
```ts // @strictNullChecks: false let x = null!.yadda; // ~~~~~ Object is possibly 'null'. ``` Hmm ```ts // @strictNullChecks: false let x = null!!!!.yadda; // ~~~~~~~~ Object is possibly 'null'. ``` Is this working as intended @ahejlsberg?
Bug
low
Minor
696,250,467
pytorch
Asynchronous Execution on CPU
## 🚀 Feature Support parallelized/asynchronous execution of ops on CPU. PyTorch currently supports [asynchronous execution on GPU](https://pytorch.org/docs/master/notes/cuda.html#asynchronous-execution), where ops are executed in parallel as long as there are no data dependencies between them. However, currentl...
feature,module: cpu,triaged
low
Major
696,339,417
go
x/tools/gopls: no folding ranges for invalid code
Not sure why this has happened however out of the blue Visual Studio Code is now unfolding all code every time the file is saved. I have tried uninstalling/reinstalling and removing extensions though nothing has worked. All code is unfolded every single time the file is saved and results in a lot of lost time. I rep...
help wanted,gopls,Tools
medium
Critical
696,390,375
go
x/tools/gopls: add log statement to indicate gopls is serving
Running `gopls` on the command-line directly currently defaults to `serve` mode, which is unhelpful for users of the CLI and unintuitive. We should add a log message indicating that `gopls` is serving and how to get help text.
gopls,Tools
low
Minor
696,428,956
pytorch
Libtorch CMakeList.txt config help
Whenever I try to build my CMakeLists.txt file, it says that "CMake Error at CMakeLists.txt:4 (find_package): By not providing “FindTorch.cmake” in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by “Torch”, but CMake did not find one. Could not find a package configur...
module: build,triaged
low
Critical
696,485,141
flutter
Support automatic integration of iOS App Clip
Extracting from https://github.com/flutter/flutter/issues/60029. Offer an automatic, rather than a manual, mechanism to add a Flutter App Clip target. Rough back-of-the-napkin approaches: 1- Take an arbitrary xcodeproj, point flutter_tools or a pub global activatable script to it, and add Flutter support to it. ...
c: new feature,platform-ios,tool,P3,team-ios,triaged-ios
medium
Major
696,631,250
flutter
Flavors require build configurations `buildmode-targetname` (cannot run App Clip target as a flavor)
Extracting an optimization from https://github.com/flutter/flutter/issues/60029 I would have expected to be able to run `flutter run --flavor <App Clip target>` directly. This would save the trouble of having to tell users to run `pod install` manually and opening Xcode to run. But rather `flutter run --f...
platform-ios,tool,t: xcode,a: build,P3,team-ios,triaged-ios
low
Critical
696,673,282
opencv
Memory leak Raspbian video encoder
##### System information (version) <!-- Example - OpenCV => 4.1, 4.2, 4.3 - Operating System / Platform => Raspbian (Debian Jessie) - Compiler => gcc 4.9.2 --> - OpenCV => 4.1, 4.2, 4.3 - Operating System / Platform => Raspbian (Debian Jessie) - Compiler => gcc 4.9.2 ##### Detailed description When I ...
category: videoio,incomplete,category: 3rdparty
low
Minor
696,675,371
terminal
Title bar has blurry buttons
IMO, the titlebar buttons of wt are not crisp, instead they look a bit fuzzy/blurry (atleast on my laptop). Tested both on Intel HD 630 (screenshots in op) and Nvidia GTX 1050 (screenshot below) - ![Screenshot (452)](https://user-images.githubusercontent.com/71010204/92683137-bd2c8980-f34f-11ea-81b9-21e60844d5f8.pn...
Help Wanted,Issue-Bug,Area-UserInterface,Product-Terminal,Priority-3
medium
Critical
696,689,285
vue
transition-group with flex parent causes removed items to fly
### Version 2.6.11 ### Reproduction link [https://codepen.io/turboSheep/pen/OJNQGEG](https://codepen.io/turboSheep/pen/OJNQGEG) ### Steps to reproduce Click the 'Remove Multiple' or 'Remove First 2' buttons and observe the movement of the items. ### What is expected? The rectangles being remove...
transition
low
Major
696,743,137
go
cmd/asm: 386 assembler silently drops indices when indexing symbols
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.15 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> Output</summary>...
NeedsFix,compiler/runtime
low
Critical
696,755,252
kubernetes
cluster-info dump test consume large amount of memory in large clusters
**What happened**: cluster-info dump test consumed large amount of memory in large clusters ref: https://github.com/kubernetes/kubernetes/issues/93506, https://github.com/kubernetes/kubernetes/pull/93838 **What you expected to happen**: it should eat less than 10GB of memory **How to reproduce it (as minima...
kind/bug,sig/scalability,sig/cli,lifecycle/frozen
low
Major
696,775,308
godot
Materials params copy paste not working
**Godot version:** v3.2.2.stable (Mono version) **OS/device including version:** Windows 10 Pro Intel i7 (Old Gen) Nvidia 970GTX with 441.20 driver. **Issue description:** Copy paste params from materials panels from one material to other don't work, it copies even the material point name and return an err...
bug,topic:shaders
low
Critical
696,799,477
PowerToys
[FancyZones] Add the ability to use multiple template types together
## 📝 Add the ability to use multiple template types together When creating a template there are 2 basic ways to go about it. Edit an existing template type and Edit the "Create new custom" template type. I believe the ability to combine multiple templates would be useful. This is because the largest barrier to entr...
Idea-Enhancement,FancyZones-Layouts,Product-FancyZones
low
Major
696,810,508
godot
Renaming a script from the editor before it was saved in an external editor resets script content
**Godot version:** 3.2.3 RC6 Mono **OS/device including version:** Ubuntu 20.04 AMD Ryzen 5 3600 Radeon RX550 **Issue description:** When I have a C# script and rename it the content gets lost and is resetted to the template content. It was really annoying as I had some more changes and thought it is save to...
topic:editor
low
Minor
696,812,794
godot
GUI debugger immediately closes view of content of 2D array
**Godot version:** 3.2.3 RC5 **OS/device including version:** Windows **Issue description:** If you use the debugger to try and view the contents of an array within an array, the inspector panel briefly expands to show the contents of the field (~1/60th of a second) then goes back to the point before you clicked the...
bug,topic:editor
low
Critical
696,849,852
pytorch
Support for NVIDIA UVM technology
## 🚀 Feature Support NVIDIA UVM and allow to use RAM when there is not enough GPU memory ## Motivation The NVIDIA UVM technology allows to use RAM when the GPU memory is not enough to allocate, I believe this is helpful for those who want to train heavy model on limited GPU memory. The Tensorflow has already su...
feature,module: cuda,triaged
low
Major
696,888,763
TypeScript
Always verify import path
In many projects is necessary work with files which isn't a TS/JS file. Some common ones are **png**, **jpg**, **svg**, but when importing this files we get `Cannot find module or its corresponding type declarations.` error. Searching how to fix that, we come across many discussions suggesting using the global modul...
Suggestion,Awaiting More Feedback
low
Critical
696,915,637
godot
C# RPC with custom class param derived from Godot.Object turns into Godot.EncodedObjectAsId, crash without error
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 322 **OS/device including version:** Windows 10 **Issue description:** I created a custom class PlayerInfo : Godot.Object and passed it as an...
bug,topic:network,topic:dotnet,crash,topic:multiplayer
low
Critical
696,916,363
go
cmd/asm: VMOVQ misassembled to VMOVD on 386
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.15 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> Output</summary>...
NeedsInvestigation,compiler/runtime
low
Critical
696,923,094
PowerToys
[Color Picker] Add an Option to Show Color Name and Hue in the Color Picker
## 📝 Add an Option to Show Color Name and Hue in the Color Picker For color-blind folks such as myself, the color picker is extremely helpful so I can make design choices that make sense for people who see the world normally. However, a feature that the color picker is lacking is the ability to also put the color ...
Idea-Enhancement,Product-Color Picker
low
Major