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 |
|---|---|---|---|---|---|---|
600,145,889 | flutter | flavor flag should support multiple values: flutter build apk --flavor channelA,channelB,channelC | Can support flutter build apk --flavor channelA,channelB,channelC...
| c: new feature,tool,P3,team-tool,triaged-tool | low | Minor |
600,153,300 | pytorch | RuntimeError: Expected cuda::check_device({sparse_, r_, t, dense}) to be true, but got false. | I try to use DataParallel to model ,and i get this.I don't know why and how to fix it οΌis there any suggestion?
I use DataParallel like this:
if cmd_args.mode == 'gpu':
classifier = classifier.cuda()
classifier = nn.DataParallel(classifier)
Exception has occurred: RuntimeError
Caught RuntimeEr... | needs reproduction,triaged,module: data parallel | low | Critical |
600,174,329 | godot | _draw() function behaving weirdly when resizing window - even WITHOUT randomize() | **Godot version:**
3.2.1
**OS/device including version:**
macOS Catalin 10.15.4 / MacBookPro11,1
**Issue description:**
I have a Godot project with standard configuration. Nothing has been changed.
I wrote a simple line of code in func _draw():
draw_circle(Vector2(rand_range(0, 600), rand_range(0, 600)), ran... | documentation,topic:gui | low | Major |
600,211,590 | create-react-app | LESS is very good, why not consider supporting it? | LESS is very good, why not consider supporting it? | issue: proposal,needs triage | medium | Critical |
600,223,158 | pytorch | state_dict and load_state_dict methods for DataLoader and Sampler to continue training at specific epoch and batch | ## π Feature
Based on training checkpoint data, allow training to restart at the epoch and **precise** batch, after the last batch trained on when the training checkpoint data was saved.
## Motivation
I'm training (relatively) large sequence to sequence models (> 100M parameters) with a (relatively large) datas... | feature,module: dataloader,triaged | medium | Critical |
600,258,027 | vscode | Git - Timeline support for folders | <!-- β οΈβ οΈ 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. -->
The timeline should support folders as well: the timeline of a file X is equivalent to `git... | feature-request,git,timeline,timeline-git | medium | Major |
600,291,860 | godot | Mono: mscorlib.dll.so not found | Hello,
I have a problem with generating mono glue.
With running command:
_bin/godot.linuxbsd.tools.64.mono --generate-mono-glue modules/mono/glue_
I get an error:
> ERROR: Condition "!valid" is true. returned: false
> at: _populate_object_type_interfaces (modules/mono/editor/bindings_generator.cpp:2401)
He... | topic:buildsystem,topic:dotnet | low | Critical |
600,352,453 | flutter | Remote host closed connection during handshake | This exception is raised when I'm trying to run `flutter build apk` and it is raised when the command line is trying to access `https://storage.googleapis.com` for some files.
**Things I have tried :-**
- Setup the chinese mirror to see if that resolves the issue but the command line still tries to access `https:... | c: crash,tool,t: gradle,P2,team-tool,triaged-tool | low | Critical |
600,399,107 | youtube-dl | How to force use of libfdk_aac | Hello,
I miss an option to specify that ffmpeg uses libfdk_aac to encode the aac audio output. When using ffprobe, it says, that audio files are encoded with Lavf58.29.100. I wish to use libfdk instead. | question | low | Minor |
600,438,737 | godot | No notification for virtual keyboard hide | **Godot version:**
3.2.1
**OS/device including version:**
Android 10
**Issue description:**
There is a notification in the MainLoop for
NOTIFICATION_WM_GO_BACK_REQUEST:
and
NOTIFICATION_WM_QUIT_REQUEST:
These notifications try to catch the use of the BACK button. However, when the Virtually Keyboard is ope... | enhancement,topic:porting | low | Minor |
600,441,137 | kubernetes | idea: More memory efficient watch cache | The current watch cache requires apiserver hold at least every item in a collection in memory (otherwise it cannot serve lists from the cache), and more (a history window). This is a large amount of memory consumed.
There's an alternative design that IIRC wasn't possible with etcd2 but should now be possible: catch-... | sig/scalability,priority/awaiting-more-evidence,sig/api-machinery,kind/feature,lifecycle/frozen | medium | Critical |
600,475,031 | youtube-dl | ymca360.org site request | ## Checklist
- [X] I'm reporting a new site support request
- [X] I've verified that I'm running youtube-dl version **2020.03.24**
- [X] I've checked that all provided URLs are alive and playable in a browser
- [X] I've checked that none of provided URLs violate any copyrights
- [X] I've searched the bugtracker fo... | site-support-request | low | Critical |
600,482,903 | flutter | onPanStart and onPanEnd doesn't work when there is a PageView widget inside GestureDetector | ```dart
class Demo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('demo'),),
body: GestureDetector(
onPanCancel: () {
print('pan cancel');
},
onPanDown: (_) {
print('pan down'... | framework,f: scrolling,f: gestures,has reproducible steps,P2,found in release: 3.7,found in release: 3.10,team-framework,triaged-framework | low | Major |
600,484,567 | go | cmd/go/internal/auth: readNetrc: detect exposed .netrc files | It is a common practice for security-conscious code to return an error when a file holding secret material is not stored safely.
For example, you may have already encountered an ssh error saying a user's private key has unsafe mode. Similarly, the python netrc library throws an exception when file permissions aren't... | Security,NeedsDecision,FeatureRequest | low | Critical |
600,489,940 | flutter | Do not run CI test_smoke_test when shard name is invalid, fail faster | Sometimes (often) I mess up the shard name when I'm running CI tests locally, but it doesn't tell me the shard name is invalid until after ~45 seconds of smoketests. Check the shard name and error out _before_ running the smoketests.
```
$ SHARD=add2app_test dart bots/test.dart
β11:01:02β STARTING ANALYSIS
ββββ... | a: tests,team,framework,P2,team-framework,triaged-framework | low | Critical |
600,502,466 | go | cmd/go/internal/list: Wildcard expansion inside `testdata` does not work | <!--
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.14 linux/amd64
</pre>
### Does this issue reproduce w... | NeedsInvestigation,GoCommand | low | Critical |
600,537,991 | react | Bug: window as new portal will break event delegation | <!--
Please provide a clear and concise description of what the bug is. Include
screenshots if needed. Please test using the latest version of the relevant
React packages to make sure your issue has not already been fixed.
-->
React version: any?
## Steps To Reproduce
1. Button attach to a window por... | Type: Discussion | low | Critical |
600,566,166 | terminal | Media and other keys autoscroll the terminal | # Description
Keys that aren't meant to insert characters seem to jump the terminal to the bottom where input is being awaited. This includes media buttons.
# Steps to reproduce
Open any terminal tab (tested with both Ubuntu and Powershell) and run anything to fill up the screen (e.g. run `ls` 5 times). Scroll up ... | Help Wanted,Area-Input,Issue-Bug,Area-TerminalControl,Product-Terminal,Priority-2 | low | Major |
600,576,123 | go | cmd/compile: allow inlining of open-coded defer calls | Inlining happens before SSA conversion, while open-coded defers happen after, thus the open-coded deferred call can never be inlined. It would be nice to fix this.
@danscales:
> It definitely is not trivial, since inlining happens before SSA conversion, whereas there are a bunch of reasons why at least some of th... | Performance,NeedsInvestigation,compiler/runtime | low | Minor |
600,580,352 | godot | EditorPlugin edit() is called multiple times when selecting a node | Godot 3.2.1
Windows 10 64 bits
I noticed `edit` is called twice, sometimes even 3 times in a row when I select a node my plugin handles. This can have negative impact if heavy lifting is done on in that function.
In my plugin this happens with a custom node type.
Repro:
[EditCalledMultipleTimes.zip](https://gi... | bug,topic:editor | low | Minor |
600,587,722 | vue | Components slots are not rendered inside svg foreignObject | ### Version
2.6.11
### Reproduction link
[https://jsfiddle.net/AleksandrasNovikovas/w042x1c8/](https://jsfiddle.net/AleksandrasNovikovas/w042x1c8/)
### Steps to reproduce
Run provided fiddle. There are three svg boxes with foreignObject:
1. contains simple html tags
2. contains simple vue compone... | bug,has PR | medium | Minor |
600,593,023 | flutter | flutter run -d web Uncaught Error: Assertion failed: : _debugCurrentBuildTarget == context is not true | Problem:
1. My app runs just fine on Android.
And it works fine when "flutter run -d chrome" used, but fails in Chrome when "flutter run -d web"
2. If I simplify it as: MaterialApp(home: Scaffold(body: Center(child: Text("Hi")))) then it works with "flutter run -d web".
I'm really puzzled what is the prin... | c: crash,tool,platform-web,P2,team-web,triaged-web | low | Critical |
600,595,914 | rust | Spam in PR checks about skipped builds | In some PRs, though not all, we see 7 (!) skipped checks. These are annoying to scroll through.
<img width="759" alt="image" src="https://user-images.githubusercontent.com/5047365/79390205-4bd1e180-7f3d-11ea-8aab-2c0e15845fc1.png">
I don't think this is a blocker, but would be nice to see fixed. It's also concern... | C-enhancement,T-infra,A-github-actions,A-meta | low | Minor |
600,603,743 | PowerToys | [FancyZones] 1-pixel gap between adjacent windows | # Environment
```
Windows build number: Microsoft Windows [Version 10.0.17763.1158]
PowerToys version: v0.16.1
PowerToy module for which you are reporting the bug (if applicable): FancyZones
```
# Steps to reproduce
Just use templates
# Expected behavior
No gaps between programs
# Actual behavior
... | FancyZones-Layouts,Product-FancyZones | high | Critical |
600,636,742 | angular | Extensible Sanitizer | # π feature request
### Relevant Package
@angular/core
this line and file are of key interest:
https://github.com/angular/angular/blob/486cade596a57b7c146ae3aa269d69d7d828a6ab/packages/core/src/sanitization/html_sanitizer.ts#L95
### Description
The ability to trust a custom whitelist of HTML tags, attrib... | feature,area: core,core: sanitization,feature: under consideration | medium | Critical |
600,640,441 | go | cmd/compile: Eliminate bound checks on access to positive modulo | Given something in the form
```go
rem := len(foo) % m
_ = foo[:rem]
```
The compiler currently (1.14) inserts a bound check on `foo[:rem]`, but `0 <= rem <= len(foo)` is guaranteed since `rem` is the modulo of a positive integer.
It would be even nicer if the compiler can figure out the general form `x > 0 β§ r... | Performance,NeedsInvestigation,compiler/runtime | low | Major |
600,676,573 | TypeScript | Type guards doesn't work with iterables for arrays | <!-- π¨ 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 b... | Needs Investigation | low | Critical |
600,698,495 | go | proposal: net/http: add `RoundTripperFunc` and `Middleware` for server & client | Now, in `net/http`, for server side, we have `Handler` & `HandlerFunc`, `HandlerFunc` is the convenient way for user to define new handler, but in client side, we only have `RoundTripper`, so I proposal to add `RoundTripperFunc` to `net/http`.
```go
// RoundTripperFn implement http.RoundTripper for convenient usage.
... | Proposal | low | Critical |
600,705,452 | pytorch | Reduction for `torch.int8` is super slow on CUDA | ## π Bug
Reduction for `torch.int8` is super slow on CUDA
## To Reproduce
```python
import torch
print(torch.__version__)
print()
for i in range(1000):
torch.arange(10000, device='cuda')
def benchmark(dtype, i):
numel = 2 ** i
a = torch.zeros(numel, device='cuda', dtype=dtype)
tor... | module: performance,module: cuda,triaged,module: TensorIterator | low | Critical |
600,706,627 | flutter | Pub get failed - Gradle failed with no route to host | I use Android Studio 3.6 on MacosX to develop flutter. My flutter is `Flutter 1.15.17 β’ channel beta β’ https://github.com/flutter/flutter.git`.
When I execute `flutter run`, I got these errors:
```
`Launching lib/main.dart on A0001 in debug mode...
Running Gradle task 'assembleDebug'... ... | c: regression,tool,t: gradle,found in release: 1.17,P2,team-tool,triaged-tool | low | Critical |
600,731,981 | flutter | Exhausted heap space, trying to allocate 6442385440 bytes. | flutter has exited unexpectedly. | c: crash,platform-android,tool,c: performance,platform-windows,t: gradle,perf: memory,P2,team-android,triaged-android | low | Major |
600,740,151 | pytorch | variable name N_ conflicts with an internationalization macro in glib | ## Issue description
Several libraries (incliding glib and wxWidgets) use `N_` as a macro related to internationalization for gettext.
Libtorch unfortunately uses this as a variable name here:
https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/core/function_schema.h#L34
The macro definition from wxw... | oncall: jit,module: build,triaged | low | Minor |
600,744,325 | flutter | "flutter/packages/flutter_tools/gradle/flutter.gradle" hard-coded `:app` host module | Hello! I was trying to add Flutter to my existing Android workspace and ran into two problems. One of which sure seems like a bug.
I was following the guide here: βͺhttps://flutter.dev/docs/development/add-to-app/android/project-setup
I couldn't get the "Using Android Studio" steps to work after several clean at... | platform-android,tool,d: api docs,t: gradle,a: existing-apps,P2,team-android,triaged-android | low | Critical |
600,812,215 | flutter | Flutter Engine Clang Version | I encounter a problem while debugging the engineοΌsingle-step debugging behaves abnormally.
When I take a look at assembly codeοΌit is different between Flutter Clang and Xcode Clang.
For exampleοΌthe assembly code for [FlutterEngine initWithName: project: allowHeadlessExecution]:
[result.zip](https://github.com/flutte... | engine,d: api docs,a: debugging,customer: bytedance,P2,team-engine,triaged-engine | low | Critical |
600,824,521 | TypeScript | TypeScript does not infer the type correctly after two layer Mapped Types. | <!-- π¨ 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 b... | Needs Investigation | low | Critical |
600,829,862 | create-react-app | As the best cli tool for React App, why not add configuration to turn off overlapping iframes? | ### Is your proposal related to a problem?

This error is what I expected, I do nβt want the iframe to pop up to affect my development, thank you
<!--
Provide a clear and concise description of what the p... | issue: proposal,needs triage | low | Critical |
600,835,487 | pytorch | Support alpha channel in tensorboard.add_figure | ## π Bug
When logging images to Tensorboard via `tensorboard.add_figure`, I got really bad text rendering. See below for an example of expected and actual images:
  at the same time. I wanted to use search&replace tool in vs Code(ctrl+shift+f).
And my issue consists of two different problems:
## Problem 1
Given following rows:
```
bΓ½t=elektronickΓ½=zΓ‘silka
... | feature-request,ux,editor-find | low | Critical |
600,879,590 | flutter | flutter build apk --split-per-abi logs are wrong | When running `flutter build apk --split-per-abi`, the logs report only 32bit APK was built, but when you open the output directory, all platforms are built (as expected).

<details>
<summary>Logs</summa... | c: regression,tool,t: gradle,P2,team-tool,triaged-tool | low | Minor |
600,906,708 | godot | Godot WebGL export doesn't work on Safari | **Godot version:**
3.2.1.stable
**OS/device including version:**
macOS Catalina 10.15.4 / MacBookPro11,1
Safari version: 13.1 (15609.1.20.111.8)
Although this problem happens on the latest version of Safari, I remember that it happened on earlier versions of Safari too.
**Issue description:**
I quickly expor... | bug,platform:macos,topic:porting | medium | Critical |
600,920,459 | TypeScript | Distributive as const | ## Search Terms
as const, widening, literal widening
## Suggestion
Allow to use `as const` on ternary operator as well as others code branches that currently we can't.
## Use Cases
Let's say that we have this code:
```ts
const result = (
value > 5
? { amount: 'many' } as const
: { amount: ... | Suggestion,In Discussion | low | Major |
600,930,328 | material-ui | [Select] Fails when using screen reader or keyboard navigation | While generally the accessibility functionality of the MUI Multi-select is decent, it would still fail any audit due to inconsistent screen reader behaviour and keyboard navigation. See further details below.
- [x] The issue is present in the latest release.
- [x] I have searched the [issues](https://github.com/mui... | accessibility,component: select | medium | Major |
600,953,868 | ant-design | Tree component dosen't work when async loading and virtual scroll are used in combination. | - [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
[](https://codesandbox.io/s/unruffled-maxwell-m6bm4)
### Steps to re... | π Bug,Inactive | low | Minor |
600,996,957 | pytorch | [1.4.1] Cuda build fails | Using:
Cuda 10.2
GCC: 7.3.1
Without cuda the build will be done.
```
[ 23%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o
c++: error: unrecognized command line option '-faligned-new'
```
[build.log.zip](https://github.com/pytorch/pytorch/files/4486925/build.log.zip)
| needs reproduction,module: build,triaged | low | Critical |
601,080,388 | flutter | State object has a null widget during call to initState. | I got a weird error via my error reporting service and it's not helpfull to me at all. So I though you guys could take a look at this and maybe tell me what could be the cause... I have no reproduction code since I have no idea where it could go wrong.
### Error
```
NoSuchMethodError: The getter 'manager' was call... | c: crash,platform-android,framework,a: error message,a: production,P2,team-android,triaged-android | low | Critical |
601,219,169 | TypeScript | Provide `declare` keyword support for class methods | <!-- π¨ 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 FAQ, especia... | Suggestion,Awaiting More Feedback | low | Critical |
601,240,057 | three.js | Animation jump when timeScale changes sign in the first loop when using LoopPingPong mode | Hi I'm testing this lovely library and i've found a bug.
I have an animation in a pingpong way.
When i click on it, the mixer.timeScale is switched between 1 and -1.
In the **first** loop, at the first click, the animation jumps straight to the end and start going in reverse mode. The others loops are fine.
Lo... | Bug | low | Critical |
601,246,892 | rust | Misleading error message originating from the fact that closure types are not inferred being polymorphic over lifetimes. (And related errors in need of improvement.) | The following code produces an error message that doesnβt at all explain the actual problem.
```rust
fn foo() -> &'static str {
let identity = |x| x;
let result = identity("result!");
let local_string: String = "local".into();
let _ = identity(&local_string);
result
}
```
([Playg... | A-diagnostics,A-closures,T-lang,T-compiler,A-inference,D-papercut,D-terse | low | Critical |
601,298,667 | godot | Timer time_left is wrong before it started | **Godot version:**
3.2.1
**OS/device including version:**
Windows 10 Home 1909
**Issue description:**
If you create a Timer in code, set its wait time and want to get it, it will return 0 before its start.
**Steps to reproduce:**
var timer = Timer.new()
func _ready():
timer.set_wait_time(3)
print(timer.ti... | discussion,topic:core | low | Major |
601,323,350 | pytorch | Custom Generators don't work in JIT | [Unboxed dispatch handles Generator](https://github.com/pytorch/pytorch/blob/e29348f8283ffa6be5915abb46f280fce5d64ce4/aten/src/ATen/core/dispatch/DispatchKeyExtractor.h#L67-L76), i.e. it looks at Generator arguments to make the dispatch decision, but [boxed dispatch does not](https://github.com/pytorch/pytorch/blob/e29... | triaged | low | Minor |
601,325,586 | bitcoin | build: Use Xcode .xip as Guix input | It seems to me that the [manual extraction](https://github.com/bitcoin/bitcoin/tree/master/contrib/macdeploy#sdk-extraction) of `MacOSX10.*.sdk.tar.gz` can be a source of fragility, confusion, and non-determinism.
Perhaps what we could do going forward is to have the unmodified Xcode `.xip` as the Gitian input, and ... | macOS,Build system | low | Major |
601,336,093 | PowerToys | [KBM] Edit window should use ListView for displaying the mappings | We should use a similar ListView control as SettingsV2

| Help Wanted,Product-Keyboard Shortcut Manager,Area-User Interface,Priority-1,Area-Accessibility,Cost-Medium,Status-Blocked,Issue-Task | medium | Critical |
601,358,533 | flutter | Slider DPAD support for Android TV | I am trying to use slider in a video player on Android TV app, testing on Nvidia Shield TV
just upgraded master, with the #53945 change i can now use the slider with remote d-pad, but there are some issues with DPAD on Android TV platform with remote dpad arrow keys:
- slider once focused can't unfocus / move to o... | c: new feature,framework,engine,f: material design,a: accessibility,c: proposal,P3,team-design,triaged-design | low | Major |
601,361,750 | rust | Tracking Issue for `wasi_ext` | <!--
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,B-unstable,O-wasm,C-tracking-issue,Libs-Tracked | low | Critical |
601,362,693 | pytorch | Custom class type name is very wordy | Right now, I have to write:
```
m.def("take_an_instance(__torch__.torch.classes._TorchScriptTesting._PickleTester x) -> Tensor Y", take_an_instance);
```
(taken from `test_custom_class`.). This is pretty wordy. It would be better if it was shorter.
cc @suo @smessmer @jamesr66a | oncall: jit,triaged | low | Minor |
601,400,530 | youtube-dl | Proxer.me | <!--
######################################################################
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 |
601,413,889 | opencv | JS: Easier access to opencv.js file | ##### System information (version)
n/a
##### Detailed description
Feature request for lowering the barrier to entry for adopting OpenCV.js by providing an official prebuilt `opencv.js` file.
I am currently involved in a project to introduce new coders to libraries like OpenCV.js. The target audience are new... | category: javascript (js) | low | Minor |
601,416,377 | pytorch | return_index option for torch.unique | ## π Feature
`return_index` option for [torch.unique](https://pytorch.org/docs/stable/torch.html#torch.unique) which behaves like [numpy.unique](https://docs.scipy.org/doc/numpy/reference/generated/numpy.unique.html).
I have a tensor `a = [10, 20, 10, 30]` and a tensor `b = [100, 200, 100, 300]`.
I want to take t... | triaged,enhancement,module: numpy,function request | medium | Critical |
601,474,072 | material-ui | [material-ui][docs] Add Accessibility section to all component demo pages | - [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 π‘
Many components' documentation contains an Accessibility section that tells you how to make sure your components are Accessible, but some components don't cont... | docs,accessibility,package: material-ui,enhancement | low | Major |
601,504,401 | rust | Feature Request: saturating_add(Duration) for SystemTime / Instant | Both `SystemTime` and `Instant` have `checked_add(Duration)`, but no `saturating_add(Duration)`.
This seems like an omission, as when doing math operations on time, a developer has to choose between:
1. allowing for the (hopefully very remote) potential for overflows
1. determining what to do with the `None` cas... | T-libs-api,C-feature-request,A-time | low | Major |
601,512,485 | godot | Multiple selection reimport with different 'import as' not working | **Godot version:**
3.2.1
**OS/device including version:**
Windows 10.
**Issue description:**
If you multi-select pngs and change the 'import as' type and hit 'reimport' it will ignore the new type selected.
**Steps to reproduce:**
Duplicate icon.png in an empty project, select both icons, change 'import as... | bug,topic:editor,topic:import | low | Minor |
601,523,193 | pytorch | When you try to register a kernel that make boxed from unboxed functor doesn't support you get a horrible error message | Here's what you get if you try to register a `aten::resize_` kernel without unboxed only
```
In file included from ../aten/src/ATen/core/boxing/KernelFunction_impl.h:2, [218/92024]
from ../aten/src/ATen/core/boxing/KernelFunction.h:216, ... | triaged | low | Critical |
601,538,435 | pytorch | Clearer guidance on when to define an operator as a method on torchbind'ed class versus standalone function | I noticed in the xnnpack binding code that there was a bunch of stuff like this:
```
.op("prepacked::linear_clamp_run(Tensor X,"
" __torch__.torch.classes.xnnpack.LinearOpContext W_prepack) -> Tensor Y",
torch::RegisterOperators::options()
.aliasAnalysis(at::AliasAnaly... | triaged | low | Major |
601,543,466 | flutter | Directional navigation key binding defaults should be limited to those platforms that use it. | <!-- 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... | framework,platform-mac,a: desktop,d: devtools,P2,team-text-input,triaged-text-input | low | Critical |
601,557,500 | material-ui | [Autocomplete] unexpectly changes field value on mouse hover | <!-- Provide a general summary of the issue in the Title above -->
An `Autocomplete` component with `freeSolo` and `autoSelect` changes the field value by simply hovering the mouse over the dropdown menu and then bluring the field.
<!--
Thank you very much for contributing to Material-UI by creating an issue! ... | bug π,component: autocomplete,ready to take | medium | Critical |
601,575,937 | rust | Error bootstrapping on CentOS | It looks like the bootstrapper does not use `cmake3` on CentOS (i.e., CMake 3.x) but instead `cmake` (i.e., version 2.x). This results in the error `CMake 3.4.3 or higher is required. You are running version 2.8.12.2`. The fix would seem to be obvious: check for `cmake3` before falling back to `cmake`.
Relevant sec... | O-linux,T-bootstrap,C-bug | low | Critical |
601,609,174 | rust | Don't generate unnecessary cleanup blocks for calls that cannot unwind | Per @nagisa [here](https://github.com/rust-lang/rust/pull/70467#discussion_r409245992):
> Cleanup blocks should not be reach codegen in the first place for calls of functions that cannot unwind. This can happen either during MIR construction or afterwards in some clean-up pass. | C-enhancement,T-compiler,A-MIR | low | Minor |
601,613,443 | go | cmd/gofmt: inconsistent indentation with comments in switch | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14.2 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
yes, also in the playground
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go en... | NeedsInvestigation | low | Critical |
601,629,962 | youtube-dl | When meta data is added to the video, channel URL and Video URL should be added as well. | If you look up a video's details on windows 7(My OS) there's a Author URL, and a Promotion URL data field.
The Author's URL could be the Youtube Channel's URL address, and the Promotion URL could be the video's URL link.
| request | low | Minor |
601,641,602 | TypeScript | "Find all references" not working for JSDoc @callback | *TS Template added by @mjbvz*
**TypeScript Version**: 3.8.3
**Search Terms**
- jsdoc
- find all references
---
Issue Type: <b>Bug</b>
**Steps to reproduce**
Create file called Interfaces.js with the following content:
```
/**
* @typedef {Object} Config
* @property {String} Title
* @propert... | Bug | low | Critical |
601,648,980 | TypeScript | Refactorings can change formatting of multiline parameter lists | <!-- π¨ 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 b... | Bug,Domain: Refactorings | low | Critical |
601,680,463 | vscode | Add support for `font-stretch` | <!-- β οΈβ οΈ Do Not Delete This! bug_report_template β οΈβ οΈ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been... | feature-request,font-rendering | high | Critical |
601,756,774 | pytorch | [1.4.1] Intel MPI libs not found. | When try to build using the Intel MKL and MPI libs, only the MKL part is found and used.
[log.zip](https://github.com/pytorch/pytorch/files/4491496/log.zip)
Here the build logs.
cc @gujinghui @PenghuiCheng @XiaobingSuper @jianyuh | module: build,triaged,module: mkldnn | low | Minor |
601,938,563 | rust | perf slowdown from #70831 (remove a stack frame from .await calls) | Post-merge [perf results](https://perf.rust-lang.org/compare.html?start=534a41a32952d36ec73656357777ebbea707aeb4&end=4e4d49d60fd696c4036d438292673a2d7fd34519&stat=instructions:u) are 100% restricted to `await-call-tree`, and it's more clearly >1% now, post-https://github.com/rust-lang/rustc-perf/pull/645 (cc @Mark-Simu... | P-medium,I-compiletime,T-compiler,A-async-await,AsyncAwait-Triaged | low | Major |
601,976,939 | create-react-app | [eslint-config-react-app] Recommended way of config integration with ESLint, TypeScript, Prettier and VS Code | <!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
People use VS Code a lot. It is also recommended in the docs, but it is not explained on how to configure it together with ESLint, Prettier & TypeScript together with `eslint-config-react-app`... | issue: proposal,needs triage | high | Critical |
601,980,581 | godot | Need package/description check for UWP exports in can_export() | **Godot version:** Godot 3.2.1.stable Windows 64 (non-mono)
**OS/device including version:**
Microsoft Windows [Version 10.0.19041.207] (build 2004) 64bit
**Issue description:**
When creating a new export configuration for UWP, there are a number of fields that are indicated as required or invalid before you c... | bug,topic:editor,topic:porting,platform:uwp | low | Critical |
602,033,323 | vue | In Firefox, radiobuttons with `required` and `v-model` are marked as invalid immediately | ### Version
2.6.11
### Reproduction link
[https://jsfiddle.net/t1po5sdh/](https://jsfiddle.net/t1po5sdh/)
### Steps to reproduce
In Firefox 75.0, I get the two radio buttons marked as invalid (i.e. surrounded by a red border) immediately on pageload. This does not happen if I either remove `require... | browser quirks | medium | Minor |
602,061,080 | neovim | UX: ":edit *.js" should suggest :next | ### Actual behaviour
When simply trying to edit some additional files I often type `:e *.js` or something similar; this almost ALWAYS results in `E77: Too many file names`.
### Expected behaviour
It's pretty clear what the user wants in this situation; they want to open the files as buffers! I'm sure there are l... | enhancement,complexity:low,core | low | Critical |
602,071,044 | pytorch | c++: error: unrecognized command line option '-Wthread-safety' | ## π Bug
Attempting to build pytorch on RHEL7 using gcc 9.2.0 Get error
Run Build Command(s):/foo/miniconda3/bin/ninja cmTC_d3507
[1/2] Building CXX object CMakeFiles/cmTC_d3507.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_d3507.dir/src.cxx.o
/foo/gcc/9.2.0/bin/c++ -Wno-deprecated -fvisibility-inlines-hidden -s... | module: build,triaged | low | Critical |
602,117,616 | three.js | TransformControls accelerate if the camera moves while transforming | I first noticed this when scaling things, where the effect magnitude is insane (the box I was scaling was pushing the player away, the camera reacted to player moving, and the feedback caused TransformControls to blow the box up). However, the similar effect happens to positioning - see [here](https://jsfiddle.net/03uv... | Needs Investigation | low | Critical |
602,135,875 | PowerToys | Add current folder to PATH | ### Summary of the new feature/enhancement
It would be nice to have a context menu button to the current folder to the Windows PATH.
### Proposed technical implementation details (optional)
https://stackoverflow.com/questions/31269312/adding-a-shell-context-menu-item-so-that-i-can-add-folder-to-path-by-right-cli... | Help Wanted,Idea-New PowerToy | low | Major |
602,147,414 | youtube-dl | add easyload.io | <!--
######################################################################
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 |
602,173,006 | svelte | outroing if_blocks cannot receive updates | outroing if_blocks will not receive any update from the tick they get outroed on
`render_simple` :
https://svelte.dev/repl/3abed636ab2d456882e49b1db35c677f?version=3.20.1
`render_compound` :
https://svelte.dev/repl/5e950ff7951f4afc9b627aa9832fae5b?version=3.20.1
`render_simple` does have the following comment in... | bug,temp-stale,transition/animation | low | Major |
602,175,292 | PowerToys | [Run] Intro / exit animations | right now it is Visible / not visible. We need a quick, fade in / out.
Same should be list results.
1. Guessing, .66 sec for fade in / out. Snappy but not slow.
2. This has to be handled on WPF side due to WinUI transparency issues. | Idea-Enhancement,Product-PowerToys Run,Area-User Interface,External Dependency-WinUI 3,Status-Blocked | medium | Major |
602,177,964 | rust | unwrap branches are not optimized away. | When creating a structure which has a variant type, and that this type is wrapped as an `Option<T>`, the `unwrap` branch cannot be removed by LLVM, even after proving that the only path reachable is the `Some(β¦)` case and never the `None` case.
I tried this code:
https://github.com/mozilla-spidermonkey/jsparagus/... | A-LLVM,I-slow,T-compiler,C-bug,E-needs-mcve | low | Major |
602,190,712 | rust | Duplicate crate macros failing to differentiate | Here is a reproduction:
https://github.com/LucioFranco/rustc-duplicate-macro-bug/
I've added comments on how to trigger the bug. But it looks like if we have one crate but two versions imported into the same project. Aka using cargo's rename feature, then rust picks up that if we use one of the macros that the ot... | E-needs-test,A-macros,T-compiler,C-bug | low | Critical |
602,238,588 | electron | Clipboard: improved support for reading images | Some context: I'm writing a note-taking app, and one of the most requested feature for it has been to be able to paste images that were copied in the clipboard directly into notes.
I'd like to implement this feature as perfectly as I can, but as far as I can tell the current set of related APIs that Electron provide... | enhancement :sparkles: | low | Minor |
602,253,094 | go | proxy.golang.org: sometimes rate limits @master package refreshes beyond documented "one minute" | https://proxy.golang.org/ says:
> After one minute for caches to expire, the go command will see that tagged version. If this doesn't work for you, please file an issue.
It's been minutes since I tagged a new version of `inet.af/netaddr` but it's not showing up:
```
$ go get inet.af/netaddr@v0.1
go get inet.... | Documentation,NeedsInvestigation,proxy.golang.org | low | Major |
602,257,984 | godot | GLES2 - shadows does not work | Godot Engine v3.2.2.beta.custom_build.4e70279b5
Android 4.4 GPU VideoCore IV HW
```
GLES: Broadcom, VideoCore IV HW, OpenGL ES 2.0
GL_EXT_debug_marker GL_OES_compressed_ETC1_RGB8_texture GL_OES_compressed_paletted_texture GL_OES_texture_npot GL_OES_depth24 GL_OES_vertex_half_float GL_OES_EGL_image GL_OES_EGL_imag... | bug,platform:android,topic:rendering,topic:3d | low | Critical |
602,258,141 | go | cmd/vet: flag use of .Timeout() after Set*Deadline() | In #31449 it was decided to make deadline expiration return a newly-defined error, as checking `net.OpError.Timeout()` also detects keepalive failures. Keepalives were enabled by default for TCP clients in 1.12 and servers in 1.13, breaking some code setting deadlines longer than the keepalive period (which varies with... | NeedsDecision,Analysis | low | Critical |
602,260,729 | terminal | Scenario: The Command Palette | ##### [Original issue: #2046] [Original Spec: #2193] [v2 Spec: #5674] [Spec Addendum 1: #6532]
<details>
<summary>TODO for initial PR</summary>
* [x] The list view items should be clickable
* [x] The list should be sorted by weight, then _alphabetically_
* [x] There should be stronger weighting for consecutive... | Area-UserInterface,Product-Terminal,Issue-Scenario,Area-CmdPal | low | Critical |
602,266,077 | rust | Consider removing `ProjectionElem::Index` | It is the only projection element that uses another local besides the place's base local, and requires special care in many circumstances. All other `ProjectionElem`s perform static operations that do not depend on runtime values.
In https://github.com/rust-lang/rust/pull/71003, I initially did not handle this speci... | C-cleanup,T-compiler,A-MIR | low | Critical |
602,267,255 | react | Bug: Nested SuspenseList may display fallbacks while the component is loaded on re-render | <!--
Please provide a clear and concise description of what the bug is. Include
screenshots if needed. Please test using the latest version of the relevant
React packages to make sure your issue has not already been fixed.
-->
**React version:** 0.0.0-experimental-e5d06e34b
Hoping this can be helpful fo... | Type: Needs Investigation,Component: Concurrent Features | low | Critical |
602,268,395 | godot | Undeterministic AtlasTexture Ordering in Saved Scene File With Multiple Row Spritesheets | **Godot version:**
3.2.1
**OS/device including version:**
Windows 10
**Issue description:**
When having AtlasTextures in a scene, the regions and/or ordering of them in the scene file gets changed on every save whether or not anything has been changed. This only seems to occur if a sprite sheet has multiple ve... | bug,confirmed,topic:import | low | Minor |
602,351,905 | PowerToys | [KBM] Some character keys have the same display name but different codes | An example of this is `/`. There are two keys which display `/` on the UI now (on the keyboard one is near RShift and the other is on the numpad). We should try adding some identifier to distinguish them like `NumPad /` for example. The issue with hardcoding that in is that it may not translate well to other languages. | Product-Keyboard Shortcut Manager | low | Major |
602,384,637 | go | runtime: support SSE2 memmove on older amd64 hardware | **Background**
In pursuit of some database work I've been doing, I encountered a strange corner of Go. Inserting into packed segments of memory can be expensive due to the special, backwards `runtime.memmove` call required. (eg: `copy(x[n:], x); copy(x[:n], newdata)`
When compared to a similar C++/glibc implementat... | Performance,NeedsInvestigation,compiler/runtime | low | Major |
602,388,334 | ant-design | Form add defaultValidateMessages.i18n language | - [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?
For #6082
example: https://github.com/ant-design/ant-design/blob/acbbbfebc2c378b8fac6297ca2bb693228f3be13/components/locale/zh_C... | help wanted,Inactive,good first issue | medium | Major |
602,393,111 | terminal | Create separate UIA parent objects for standard and alt conhost buffers | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
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-Accessibility,Issue-Task,Priority-2 | low | Critical |
602,399,197 | go | x/pkgsite: provide multiple "copy to clipboard" options | <!--
Please answer these questions before submitting your issue. Thanks!
For questions, please email go-discovery-feedback@google.com.
-->
### What is the URL of the page with the issue?
Any package page (e.g. https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc)
### What is your user agent?
<!--
... | NeedsInvestigation,FeatureRequest,pkgsite,UX | medium | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.