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 |
|---|---|---|---|---|---|---|
604,234,328 | flutter | Flutter run fails when using a plugin with a renamed Android package | Moved from https://github.com/dart-lang/pub/issues/2413 as requested
Originally thought this was an issue with Flutter run failing when using a git SSH plugin dependency (https://github.com/flutter/flutter/issues/53387). After further investigation, it was caused due to a rename of the Android package name within th... | platform-android,tool,d: api docs,P3,team-android,triaged-android | low | Critical |
604,240,433 | flutter | Feature Request: Add Screenshots for FloatingActionButtonLocation | ## Use case
Once merged, PR #51465 will **enable many new FAB Locations** and **introduce ways to create user-defined FAB Locations**.
Screenshots in documentation will be very helpful for developers.
## Proposal
We propose that:
* We add a small screenshot to each FAB Location, illustrating its effect and... | a: tests,c: new feature,framework,f: material design,c: proposal,good first issue,P3,team-design,triaged-design | low | Minor |
604,241,072 | angular | Improve documentation for boxed values in form control | I'm submitting a ...
----------
```
[ ] Regression (behavior that used to work and stopped working in a new release)
[ ] Bug report
[ ] Feature request
[x] Documentation issue or request
[ ] Support request
```
Current behavior ...
----------
https://github.com/angular/angular/blob/acf6075ca9aa92121bb01... | type: bug/fix,freq1: low,area: forms,state: confirmed,cross-cutting: types,P4 | low | Critical |
604,244,563 | flutter | Support Safari as a browser in flutter run | Safari currently has a much different devtools API than chrome or edge, but it might be possible to use https://github.com/google/ios-webkit-debug-proxy to proxy the Safari devtools API to a Chrome-Like API. If this works, we might be able to provide a 1st class `flutter run -d safari` experience. | c: new feature,tool,platform-web,P3,team-web,triaged-web | medium | Critical |
604,249,589 | flutter | Support Firefox as a browser in flutter run | The Firefox remote protocol claims to support a subset of the chrome devtools protocol: https://firefox-source-docs.mozilla.org/remote/index.html . If this subset is sufficient, we might be able to connect with out existing chrome devtools logic and have it mostly work. This would allow 1st class support for `flutter r... | c: new feature,tool,platform-web,P3,team-web,triaged-web | high | Critical |
604,317,300 | rust | Lint for #[must_use] on a function that always returns a #[must_use] type | I saw someone do this on a `try_from` today, so I figured I'd make an issue.
Repro:
```rust
#[must_use]
pub fn foo() -> Result<(), ()> { Ok(()) }
```
https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=c03ca4925a9ac4ce9fdda4d2165e6892
The `#[must_use]` on the function there is unnecessar... | C-enhancement,A-lints,T-lang | low | Critical |
604,325,817 | tensorflow | No default summary writer available when using tf.py_function with autograph | **System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): 3.6.8
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): macOS 10.15.5 Beta
- Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: n/a
- TensorFlo... | comp:tensorboard,stat:awaiting tensorflower,type:bug,TF 2.12 | low | Minor |
604,337,433 | rust | Tracking issue for generator code quality | So far we haven't done many deep dives into the code LLVM produces for generators. I think there's a lot of room for improvement here, both in the compiler and in LLVM.
Issues (please add more as they come up):
- [ ] #71093 unnecessary panicking branch in `foo().await` (vs equivalent `FutureImpl.await`)
Some mor... | A-LLVM,I-slow,metabug,T-compiler,A-coroutines,I-heavy,A-async-await,AsyncAwait-Triaged | low | Minor |
604,351,598 | PowerToys | [FancyZones] Win+Ctrl+Arrow to switch focus to adjacent zones | # Summary of the new feature/enhancement
In [i3](https://i3wm.org/docs/refcard.html), user can switch focus to adjacent zones in 4 directions using hotkeys (`Mod1 + jkl;`).
# Proposed technical implementation details (optional)
FancyZones can include shortcuts `Win + Ctrl + LEFT/RIGHT` leveraging `MoveWindowInt... | Idea-Enhancement,FancyZones-Dragging&UI,Product-FancyZones | high | Critical |
604,355,318 | go | x/playground: return non-200 for timeout errors | Timeout errors currently must return a 200 status to be rendered correctly by the Playground javascript. The javascript needs to be updated to also parse 4xx errors correctly, then the playground should be updated to return responses with a correct code. Currently, unsuccessful requests of any kind are treated the same... | NeedsFix | low | Critical |
604,372,695 | vscode | Git - VSCode locks git index in AFP repo | - VSCode Version: 1.43.2
- OS Version: Darwin 18.7.0 Darwin Kernel Version 18.7.0: Mon Feb 10 21:08:45 PST 2020; root:xnu-4903.278.28~1/RELEASE_X86_64 x86_64 i386
Steps to Reproduce:
1. Open workspace (in this case a LaTeX project)
2. Attempt to run `git add` from a separate terminal window.
Result:
`fata... | bug,help wanted,git,macos | low | Major |
604,390,734 | flutter | [IME] Android InputMethodService onViewClicked callback won't be when clicking TextField |
## Steps to Reproduce
I am an InputMethod developer,I find Flutter TextField won't invoked by click TextField. It happens in all Flutter Version
In Android Native App, click EditText will call `InputMethodService`'s onViewClicked, let IME develpoers know something is hanppen when user clicked an input area, but i... | a: text input,platform-android,framework,c: proposal,P3,team-design,triaged-design | low | Minor |
604,417,942 | pytorch | copy_ slowness | First reported by @roosephu.
This is not really a bug, but `copy_` seems to take too much time, so wanted to open an issue to see if this is expected.
```
from timeit import timeit
import torch
device = 'cpu'
# device = 'cuda'
n = 100
a = torch.zeros(n, n, device=device)
b = torch.zeros(n, n, device=... | module: performance,module: cuda,triaged | low | Critical |
604,422,571 | go | x/tools/present: initial comment line now interpretted as a title | The present tool now supports Markdown syntax but also supports the previous present markup syntax. The switch to enable Markdown syntax use is that the first line (the talk title) be preceded with a `# `. Unfortunately, this coincides with the use of `# ` as a comment mark in the old syntax. In some cases, slides may ... | NeedsInvestigation,Tools | low | Critical |
604,439,008 | go | cmd/go: document 'internal' package visibility for module mode | <!--
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.2
</pre>
### Does this issue reproduce with the la... | Documentation,help wanted,NeedsFix,GoCommand | low | Critical |
604,478,013 | vscode | vscode.workspace.fs.readDirectory() does not get all files (reparse points) under %USERPROFILE%\AppData\Local\Microsoft\WindowsApps | (for Python extension use)
<!-- ⚠️⚠️ 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 y... | bug,upstream,file-io,nodejs,upstream-issue-linked | low | Critical |
604,484,567 | pytorch | CUDA error: device-side assert triggered @ model.cuda() | ## 🐛 Bug
I'm trying to run BERT model. However, when I try to tell pytorch to run this model on the GPU, using: `model.cuda()`, I got the CUDA error: device-side assert triggered error.
## Detailed error message
```
---------------------------------------------------------------------------
RuntimeError ... | needs reproduction,module: cuda,triaged | low | Critical |
604,562,816 | TypeScript | Support parsing TSDoc string comments | Hi there!
I had a issue trip around Github and finally ended up here :)
Last issue was: https://github.com/microsoft/vscode/issues/95408
I am using String Literal types to define classnames and would love to populate with some more information.
So basically:
```ts
type TClassnames =
/** Some docs... | Suggestion,Experience Enhancement | high | Critical |
604,618,981 | rust | macro_rules! and empty :vis metavariables | Hi.
I founds some bugs, did a research, and created a repository with reproducible examples, README, and instructions. Here is the content of README, and the whole repo is [attached as zip archive](https://github.com/rust-lang/rust/files/4515299/rustc-issues-vis-parse.zip). Code is highly documented, so please take a ... | A-macros,T-compiler,C-bug | low | Critical |
604,658,648 | flutter | Flutter - Set target file base on Android product flavors | Currently I am using **Flutter** to build my application.
**Background**
I have followed some guide on building different environments entry files:
https://iirokrankka.com/2018/03/02/separating-build-environments/
which create main_dev.dart and main_prod.dart.
Also I have learnt to build flavor for both iOS an... | c: new feature,platform-android,tool,d: api docs,a: build,P3,team-android,triaged-android | low | Major |
604,659,733 | pytorch | Misleading documentation in torch.nn.functional.fold | Related to this [discussion](https://discuss.pytorch.org/t/how-to-unfold-a-tensor-into-sliding-windows-and-then-fold-it-back/55890), I would like to report a misleading warning in https://github.com/pytorch/pytorch/blob/master/torch/nn/functional.py#L3676. As far as I can see, there is a mismatch between what the inlin... | module: docs,module: nn,triaged | low | Critical |
604,662,492 | opencv | Feature request: masked cross-correlation of two images | ##### Detailed description
Current implementation of template matching allows masked templates, but test images cannot be masked. Supporting test-image masking is really important, and has a lot of applications.
I believe this feature is relatively [easy to implement](https://9c0a87a5-a-62cb3a1a-s-sites.googlegroup... | feature,category: imgproc | low | Minor |
604,669,223 | youtube-dl | Please add https://premium.liebscher-bracht.com/ | <!--
######################################################################
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 |
604,671,019 | terminal | Add support for `open-settings` subcommand | From the original spec:
> #### `open-settings`
>
> `open-settings [--defaults,-d]`
>
> Open the settings file. If this command is provided alone, it does not open the
> terminal window.
>
> **Parameters**:
> * `--defaults,-d`: Open the `defaults.json` file instead of the `profiles.json`
> file.
| Product-Terminal,Issue-Task,Area-Commandline | low | Minor |
604,671,039 | terminal | Add support for `list-profiles` subcommand |
From the original spec:
> #### `list-profiles`
>
> `list-profiles [--all,-A] [--showGuids,-g]`
>
> Displays a list of each of the available profiles. Each profile displays it's
> name, separated by newlines.
>
> **Parameters**:
> * `--all,-A`: Show all profiles, including profiles marked `"hidden": tru... | Product-Terminal,Issue-Task,Area-Commandline | low | Minor |
604,671,087 | terminal | Add support for `--file,-f configuration_file` for reading a list of commands from a file |
From the original spec:
> Run these commands in the given Windows Terminal session. Enables opening new
> tabs in already running Windows Terminal windows. See [Future
> Considerations](#Future-Considerations) for more details.
| Product-Terminal,Issue-Task,Area-Commandline | low | Minor |
604,673,423 | rust | Mismatched type error message when `!` (never) used as return | <!--
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
I tried this code:
```rust
// Experiment: Dangling Reference
fn main() {
let s:&str = "Hello";
dangling_reference(s);
}
fn dangling_refe... | A-diagnostics,T-compiler,D-papercut | low | Critical |
604,732,876 | angular | [i18n] how to best support a library author providing translations for their library | We should discuss *how to best support a library author providing translations for their library*. | feature,area: i18n,freq1: low,P4,feature: under consideration,area: docs | medium | Major |
604,734,359 | pytorch | Deprecated mask fill mask type can causes pages and pages of repeated messages | ## 🐛 Bug
When I install DrQA, https://github.com/facebookresearch/DrQA , with pytorch 1.4, the mask being provided is legacy, ie torch.uint8. pytorch correctly points out that this is legacy, and should be migrated to dtype torch.bool. However, rather than printing a single warning, it prints pages and pages of war... | triaged | low | Critical |
604,737,965 | pytorch | Saved model behaves differently on same data | ```
def get_model():
model = PointModel()
model.cuda()
logging.info('load model from {}'.format(MODEL_PATH_POINTCNN))
model.load_state_dict(torch.load(MODEL_PATH_POINTCNN)['model_state'])
model.eval()
return model
net = get_model()
inputs = torch.randn(2, 4096, 8).cuda()
for i in r... | needs reproduction,module: serialization,triaged | low | Minor |
604,738,456 | pytorch | can't wrap two models in the same class | ## 🐛 Bug
I define a class with model initializer. When I wrap one model with that class
it looks fine, but with two model instances, it does not converge.
Code example:
def wrapper(nn.Module):
def __init__(self, model):
self.model = model
def forward(self, x):
return self.mod... | needs reproduction,triaged | low | Critical |
604,750,848 | godot | Creating new image for ImageTexture logs errors to console | **Godot version:**
v3.2.2.rc.custom_build.36a30f681
**OS/device including version:**
Windows 10
**Issue description:**
It is not possible to create new image for ImageTexutre in editor. Errors are logged in console:
` drivers\gles3\rasterizer_storage_gles3.cpp:1097 - Condition "texture->data_size == 0 && !... | bug,topic:editor,confirmed | low | Critical |
604,769,689 | godot | Light Bleeding - Irregulrities in OmniLight/Shadow Atlas | **Godot version:**
v3.2.2.beta.custom_build.c7ad8f539
**OS/device including version:**
Linux (GeForce 940M)
**Issue description:**
Light bleeding depending on OmniLight rotation; independent of object position and rotation. It looks like there some kind of irregularities in the *OmniLight sphere*, especially a... | bug,topic:rendering,topic:3d | low | Minor |
604,800,521 | rust | mailgun can stop delivering silently | Recently, it has come up that mailgun will suppress sending to a particular email if we bounce (too many times? unclear). We currently have no tracking, and the nature of our mailing lists means that such suppressions are really hard to notice for subscribers.
Infra wants to setup some monitoring so that we get an e... | P-low,T-infra | low | Minor |
604,820,244 | angular | Structural directive using selector with format "element[attribute]" | <!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅
Oh hi there! 😄
To expedite issue processing please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅... | hotlist: error messages,area: core,core: directive matching,type: confusing,P4 | low | Critical |
604,830,433 | excalidraw | Intermediate slider changes shouldn't persist in the undo stack | 1. Select something
2. Change opacity by a slider
3. Undo
Expected: it jumps to the previous "final" value
Actual: it barely changes because each intermediate slider movement is a part of undo stack | bug,history | low | Major |
604,845,307 | TypeScript | Declaration emit reveals paths within dependency that were not referred to in the source file | <!-- 🚨 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,Rescheduled | low | Critical |
604,870,588 | pytorch | Result parameters from Single-Process Multi-GPU DDP training on RNN do not match local training | The following code passes if `net = nn.Linear(2, 2).cuda()`
```python
ddp = nn.parallel.DistributedDataParallel(
copy.deepcopy(net),
process_group=process_group
)
net_opt = torch.optim.Adam(net.parameters(), lr=0.001)
ddp_opt = torch.optim.Adam(ddp.parameters(), lr=0.001)
for i, j in zip(ddp.param... | oncall: distributed,triaged | low | Minor |
604,892,747 | TypeScript | Recognize property with name defined by constant in Object.defineProperty | ## Search Terms
defineProperty
https://github.com/microsoft/TypeScript/issues/28694 is touching same domain
## Suggestion
(Note: I'm using TS in JS files, have basically no knowledge about "pure" TS)
Compiler should recognize prototype property added using Object.defineProperty with name defined not only by st... | Suggestion,Awaiting More Feedback | low | Minor |
604,949,179 | flutter | Define Default Device | <!-- 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... | c: new feature,tool,P3,team-tool,triaged-tool | low | Critical |
604,950,219 | flutter | odd behavior of Link in MemoryFileSystem on windows | ```
final FileSystem fileSystem = MemoryFileSystem.test();
fileSystem.file('a/b.txt').createSync(recursive: true);
final Link link = fileSystem.link('a/c.txt').createSync('a/b.txt');
print(link.existsSync()); // prints true
print(fileSystem.typeSync('a/c.txt')); // prints "notFound"
``` | tool,P2,team-tool,triaged-tool | low | Minor |
604,970,896 | pytorch | nn.Bilinear cannot be used inside nn.Sequential | ## 🐛 Bug
Using `nn.Bilinear` inside a `nn.Sequential` raises a `TypeError` because `nn.Sequential` doesn't support multiple inputs.
## To Reproduce
Steps to reproduce the behavior:
```python
import torch
bilinear = torch.nn.Bilinear(4, 8, 12)
bilinear_seq = torch.nn.Sequential(bilinear)
input_1 = tor... | feature,module: nn,triaged | low | Critical |
604,971,572 | youtube-dl | Please add Sportsnet.ca | <!--
######################################################################
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 |
604,977,699 | rust | All debuginfo tests fail on sparc64 on Linux | One of the few remaining issues on sparc64 on Linux are the debuginfo tests, they all fail which is why I assume we're missing some definitions here or there something regarding the debugging part is generally broken:
```
test [debuginfo-gdb] debuginfo/borrowed-c-style-enum.rs ... FAILED
test [debuginfo-gdb] debug... | A-testsuite,A-debuginfo,T-compiler,O-SPARC,C-bug | low | Critical |
604,988,271 | storybook | Addon-Docs: Changing the theme via api doesn't persist in Docs | **Describe the bug**
I have an addon tool that handles the storybook theme through the api:
```
// inside my addon
api.setOptions ({
theme: themes[base],
});
```
The Storybook matches, but Docs don't change.
Docs works with the dark theme just by adding through addParametes:
```
// config.js
import { ... | feature request,theming,addon: docs | medium | Critical |
605,011,760 | go | x/tools/gopls: autocompletion is appended to typed word | #### What did you do?
In VSCode, typed part of a word to autocomplete it, e.g. `cancel`, then selected `cancelCtx`.
#### What did you expect to see?
I expected the current word to be `cancelCtx`.
#### What did you see instead?
Current word became `canccancelCtx`.
?
<pre>
$ go version
go version go1.14.2 linux/amd64
</pre>
### Does this issue reproduce... | NeedsInvestigation,compiler/runtime | low | Critical |
605,075,814 | pytorch | Legacy fuser doesn't do remainder consistently with `aten::remainder` | ## 🐛 Bug
aten::remainder follows numpy.remainder implementation (https://docs.scipy.org/doc/numpy/reference/generated/numpy.remainder.html) Which is not from IEEE remainder -> remainderf (https://en.cppreference.com/w/cpp/numeric/math/remainder)
In legacy fuser, we are using remainderf: https://github.com/pytorc... | oncall: jit,triaged | low | Critical |
605,081,065 | pytorch | [JIT] Use of global value creates confusing error message | ```
import torch
XYZ = 3
@torch.jit.script
def foo(x):
return x + XYZ
====
python value of type 'int' cannot be used as a value:
File "global.py", line 7
@torch.jit.script
def foo(x):
return x + XYZ
~~~ <--- HERE
```
"cannot be used as a value" here doesn't really impart any... | oncall: jit,triaged,small | low | Critical |
605,108,692 | rust | Implement TryInto<CString> for str and String | Higher-level FFI wrappers that need to present a `CString` to C don't have a convenient + efficient type to take on the Rust side.
```rust
ffi_string(arg: ???) {
let c_string = CString::new(arg)?;
ffify(c_string.as_ptr());
}
```
* Taking `CString` is cumbersome, as it doesn't work with simple `&str` an... | A-FFI,T-libs-api,C-feature-request | low | Critical |
605,126,781 | pytorch | pip install torch==1.4.0 is broken when using CUDA 10.1 | ## 🐛 Bug
The default CUDA version for the PyTorch 1.4.0 wheels is CUDA 10.1, but `pip install` defaults to CUDA 9.2 and does not let you install the 10.1 wheel.
Across Python 2.7, 3.6, 3.7, 3.8:
`pip install -f https://download.pytorch.org/whl/torch_stable.html torch==1.4.0`
will install the `cu92` wheel i... | module: build,triaged | low | Critical |
605,155,295 | go | os, x/build: only write permissions 0222 for file result in successful read for linux-amd64 | Coming here from https://go-review.googlesource.com/c/go/+/229357/3#message-c7922ea647b703faa8e858428f47221a6d921275 and https://storage.googleapis.com/go-build-log/b49db1e9/linux-amd64_454ff41f.log in which we have an odd test failure
```shell
# go run run.go -- fixedbugs/issue36437.go
incorrect output
Expected a ... | NeedsInvestigation | low | Critical |
605,173,801 | terminal | Background image should (optionally?) render pixel-for-pixel rather than scaling with the system scale | # Description of the new feature/enhancement
This might be related to #2370, but it addresses a slightly different problem.
Currently, Windows Terminal scales the background image according to your system UI scale. So, for example, if your UI scale is set to 150% in Windows Settings, and you set a 100×100-pixel b... | Help Wanted,Issue-Bug,Area-TerminalControl,Product-Terminal,Priority-3 | low | Minor |
605,192,041 | flutter | Consider hiding windows until the engine is active in the desktop runner templates | A common request from people trying Flutter on desktop is being able to control initial window size and position from Dart, which makes sense given that application logic for Flutter apps often lives entirely in Dart. Currently, however, the windows are made as part of creating the associated engine, so their initial s... | engine,platform-mac,platform-windows,platform-linux,c: proposal,a: desktop,P3,team-macos,triaged-macos | low | Major |
605,194,907 | terminal | Dynamic Profile Generator for Windows PowerShell | # Description of the new feature/enhancement
It'd be nice if the "Windows PowerShell" profile worked like the other profiles, and could be disabled using `disabledProfileSources`.
This would remove the need to carry a 'hidden' overriding profile per #5459, as `disabledProfileSources` made possible for the other p... | Help Wanted,Area-Settings,Product-Terminal,Issue-Task | low | Minor |
605,200,542 | material-ui | [TextField] Missing pseudo-classes generates error when overriding <Input> | - [x] The issue is present in the latest release.
- [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.
## Current Behavior 😯
Trying to override the CSS class `adornedEnd` or `adornedStart` of `<Input />` generates an error... | bug 🐛,component: text field,ready to take | low | Critical |
605,212,071 | flutter | Failed assertion: line 110 pos 12: '_positions.isNotEmpty' | I have 5 pieces of data in my Swiper, I have an Index record of the current position, and when I delete the last item, I move the Index forward and delete the last item. This is when the error is reported.
```console
flutter: The following assertion was thrown:
flutter: ScrollController not attached to any scroll ... | framework,f: material design,f: scrolling,customer: wednesday,P2,team-design,triaged-design | low | Critical |
605,234,810 | PowerToys | Hide taskbar labels without combining icons | # Summary of the new feature/enhancement
Windows doesn't provide an option to hide open apps labels without combining them together. Such a thing would be useful when you want to quickly switch between open windows of the same app.
# Proposed technical implementation details (optional)
A place when I can choo... | Idea-New PowerToy,Product-Tweak UI Design | low | Major |
605,243,445 | flutter | flutter test --coverage --platform=chrome exits unexpectedly | I was trying to get test coverage generated by running this command:
`flutter test --coverage --no-test-assets --platform chrome --verbose`
```
07:14 +281 ~2: All tests passed!
[+1636 ms] coverage information co... | tool,platform-web,P3,team-web,triaged-web | low | Major |
605,325,744 | pytorch | [Design][RFC] RemoteModule API Design | # [Design][RFC] RemoteModule API Design
FB internal link, [[Design] RemoteModule](https://fb.quip.com/Rb5bAKee8TQ4)
## Goal
* Provide a wrapper `nn.Module` API that serves these purposes
* Users should feel like using remote module is like using a local module. RPCs are done transparently for users.
* ... | oncall: jit,triaged,module: rpc | low | Critical |
605,413,017 | node | zlib change broke x86 builds | I know we don't officially support x86 anymore but we do publish unofficial-builds x86 and the Snap package has x86 support too. But I've just noticed they haven't been building, I suppose since zlib was switched out:
```
cc -o /build/node/parts/node/build/out/Release/obj.target/zlib/deps/zlib/contrib/optimizatio... | zlib,build | low | Critical |
605,435,418 | youtube-dl | Please add support for https://www.rtp.pt/play/p7170/e468013/estudarcomautonomia |
## 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
- [ ] I've checked that none of provided URLs violate any copyrights
- [ ] I've searched the bugtracke... | site-support-request | low | Critical |
605,442,468 | terminal | Can't drag the window using the pixels on top of the screen over a tab | # Environment
Windows build number: Microsoft Windows [version 10.0.18363.778]
Windows Terminal version (if applicable): 0.10.781.0
# Steps to reproduce
1. Maximize the terminal window
2. Open a lot of tabs to fill the title bar
3. Try to drag the window using the title bar, placing the mouse above one of t... | Area-UserInterface,Product-Terminal,Issue-Task | low | Major |
605,452,016 | godot | `minimum_size_changed()` stops working after getting in a locked state | **Godot version:** v3.2.1.stable.official (should be the same for master)
**OS/device including version:** Arch Linux 5.6.6-arch1-1 x86_64
**Issue description:** `minimum_size_changed()` stops working after getting in a locked state
, but the program name became `org.golang.app.GoNativeActivity` instead of network. | NeedsInvestigation,mobile | low | Minor |
605,466,609 | rust | `for<'a> Send` is distinct from `Send`? | This code fails to compile with a pretty strange error:
```rust
use std::future::Future;
use std::pin::Pin;
use std::io::Read;
trait Service<R> {
type Response;
type Error;
type Future: Future<Output = Result<Self::Response, Self::Error>>;
fn call(&mut self, req: R) -> Self::Future;
... | A-lifetimes,A-trait-system,T-compiler,C-bug | low | Critical |
605,472,511 | rust | Address CTFE perf regression introduced by #71005 | In an effort to treat the return place `_0` more closely to regular locals, #71005 has removed some optimizations that avoid allocating memory for locals when there's only a return place. This regresses the [CTFE stress test](https://github.com/rust-lang/rustc-perf/blob/master/collector/benchmarks/ctfe-stress-4/src/lib... | C-enhancement,I-compiletime,T-compiler,A-const-eval,C-optimization | low | Major |
605,475,949 | pytorch | Propagation of channels-last layout leads to massive slowdowns in 1.5 compared to 1.4 | ## 🐛 Bug
Backpropagation through `tensor.permute()` is a lot slower in pytorch 1.5 compared to pytorch 1.4.
I'm not exactly sure what is causing this, but it seems like a bug.(?)
## To Reproduce
Run following file with pytorch 1.4 and pytorch 1.5. (You might have to adjust the number of iterations or size o... | module: performance,module: internals,triaged,module: memory format | low | Critical |
605,508,099 | godot | Optional GDNative libraries not available on some platforms always trigger errors in the editor | Godot 3.2.1
The title can be misleading, but here is the situation:
It is possible to not specify some platforms in a GDNative library if those platforms aren't supported natively.
I have a plugin containing such optional GDNative library to speed things up under specific platforms that I support. To keep the plug... | bug,topic:editor,topic:gdextension | low | Critical |
605,568,215 | godot | Doppler Effect Cuts off at Certain Speed | **Godot version:**
v3.2.2.beta.custom_build.c7ad8f539
**OS/device including version:**
Linux
**Issue description:**
When using the Doppler effect on an AudioStreamPlayer3D the audio gets cut off, when the object its used on reaches a certain speed.
This video shows a cube accelerating towards the camera, w... | bug,topic:audio,topic:3d | low | Critical |
605,595,010 | pytorch | Cuda profiler + DataParallel + manual profiling start = strange profiling overhead pattern | I learn a transformer language model (reusing fairseq components with my own training loop). I use DataParallel for multi-gpu. I tried two variants for kicking off the CUDA profiler:
1. `nvprof -s -f -o profile.sqlite --log-file profile.txt -- python3 ...`
 | And, also, the UI is misleading, see below.
### What did you do?
In Gerrit, I first run TryBots on a CL (mine or someone else)'s with "Reply" and then I click the "+1" button next to "Run-TryBot". This runs TryBots.
The TryBots run, but with errors that look *probably* unrelated to the CL.
Since I ran TryBo... | Builders,NeedsInvestigation | low | Critical |
605,621,906 | youtube-dl | [youku] Segments instead of m3u8 | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
605,679,050 | go | cmd/compile: confusing compiler error when using if instead of for with range operator inside anonymous function | <!--
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.2 linux/amd64
</pre>
### Does this issue reproduce w... | NeedsInvestigation,compiler/runtime | low | Critical |
605,699,301 | pytorch | CPU out of bound memory access in CUDA reduction kernel config | ## 🐛 Bug
In the code https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/cuda/Reduce.cuh, there is a
```C++
int64_t dim0;
int64_t dim1;
// Adjust block size to map block width to fastest changing dimension of input
// tensor. This grants the best possible memory accessing pattern, g... | module: cuda,triaged,module: TensorIterator | low | Critical |
605,706,998 | svelte | transition:slide looks different (buggy) on Safari | **Describe the bug**
I am using transition:slide in order to slide in a div element after the user presses the button with the arrow pointing down. With Chrome and Firefox on Windows it looks perfect, however on Safari (iPadOS) the inner contents overlap with the button during the transition. Or to be more precise, th... | bug | medium | Critical |
605,711,280 | pytorch | Per-cluster biases in AdaptiveLogSoftmaxWithLoss | ## 🚀 Feature
Add per-cluster biases in addition to the main head bias in Pytorch's implementation of adaptive softmax.
## Motivation
[TransformerXL](https://arxiv.org/abs/1901.02860)'s implementation of adaptive softmax incorporates a bias for all the clusters. It would be nice to have Pytorch at parity with th... | feature,module: nn,triaged,needs research | low | Minor |
605,723,329 | vscode | Can't click to set/clear breakpoint when a gutter decoration exists | Here I am using the Bookmarks extension, and you can't click where the bookmark is to set/clear a break point.

If I hit F9 to set the break point it works as I would expect, even with the breakpoint indicato... | feature-request,editor-rendering | low | Major |
605,724,374 | vue | Add user timing measurement for lifecycle hooks | ### What problem does this feature solve?
My app had performance issue due to some slow lifecycle hooks.
It would be easy to find an issue like that if `Vue.config.performance` API records lifecycle hooks too.
### What does the proposed API look like?
With `Vue.config.performance = true`, I can observe timings of... | improvement | medium | Major |
605,728,590 | flutter | DMLERR_EXECACKTIMEOUT during 'flutter doctor --androids-licenses' | ## command
`flutter doctor --android-licenses`
## exception
`FileSystemException: FileSystemException: writeFrom failed, path = '' (OS Error: OS Error 16389, errno = 16389)`
```bash
#0 _RandomAccessFile.writeFromSync (dart:io/file_impl.dart:881:7)
#1 _StdConsumer.addStream.<anonymous closure> (... | c: crash,tool,found in release: 1.12,P2,team-tool,triaged-tool | low | Critical |
605,751,227 | pytorch | Enhanced operator context when reporting errors | I don't intend to implement this in my first go at a new shape checking API, so I'm writing this down so I don't lose track of it.
Today, when you trigger an error in PyTorch, you get an error, but not information about the inputs that triggered it. For example:
```
>>> torch.zeros(2,3) + torch.zeros(3,2)
Trace... | triaged,enhancement,module: shape checking | low | Critical |
605,754,172 | godot | Godot seems to cause coreaudiod to use excessive CPU time. | **Godot version:**
3.2.2
**OS/device including version:**
macOS Catalina (10.15.4), 2020 MacBook Air i7 16gb RAM.
**Issue description:**
Godot seems to cause coreaudiod to use excessive CPU time. This happens even in the project manager and editor which don't need to be using Audio. This is an issues as it cau... | bug,platform:macos,confirmed,topic:audio,performance | medium | Major |
605,760,710 | pytorch | torch.distributions bug in RelaxedOneHotCategorical.log_prob | ## 🐛 Bug
I'm a new user so maybe I misunderstood something - but I think I found a bug in torch.distributions.RelaxedOneHotCategorical. I also think I have a fix for it.
I would like to create a batch of n distributions with different temerature parameters. I believe the way to do this is to pass in temperature... | module: distributions,triaged | low | Critical |
605,780,800 | TypeScript | `Exclude<Exclude<T, null>, undefined>` is not assignable to `Exclude<T, null | undefined>` and vice versa | <!-- 🚨 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... | Suggestion,Needs Proposal | low | Critical |
605,789,541 | rust | must_use Option::map* | We were discussing https://github.com/rust-lang/rust/issues/71368 in the language team meeting today, and it came up that `Option::map` should probably be marked must_use. There are technically valid use cases which do not require using the result (i.e. side-effecting uses), but these are so rare that it seems unlikely... | T-libs-api,C-feature-request | low | Major |
605,820,914 | TypeScript | Generic interface confuses parameter identifier with symbolic property identifier | <!-- 🚨 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 | low | Critical |
605,821,766 | PowerToys | Invalid drop down selection in KBM results in a empty selection | Currently if the user enters invalid input we just reset the selection to null. We should consider resetting it to the last valid selection.

In the above example, when the warning is shown mayb... | Issue-Bug,Product-Keyboard Shortcut Manager,Priority-3 | low | Minor |
605,855,061 | TypeScript | Emit .d.ts for type-only usage of .d.ts files in a project | ## Search Terms
type only export import declaration declarations .d.ts 3.8
## Suggestion
When building code has `.d.ts` files written and used internally, the declarations aren't emitted. This makes sense currently because `.d.ts` files aren't compiled. However, it causes typechecking errors when exporting con... | Suggestion,Needs Proposal | low | Critical |
605,894,970 | godot | Dock plugin with viewport and edit main screen interaction leads to duplicated viewport content | **POTENTIALLY NOT A BUG** -> Can be fixed by using Viewport own world
**Godot version:**
3.1.2 Stable official
**OS/device including version:**
Windows 10 latest
**Issue description:**
I was trying to create a plugin (editor dock) that render a 3D model via a viewport. However when both activating the dock ... | discussion | low | Critical |
605,896,529 | PowerToys | [Run][Shell plugin] There is no auto-complete text suggestion | when searching using shell plugin, there is no auto-complete text suggestion. | Idea-Enhancement,Product-PowerToys Run,Run-Plugin | low | Minor |
605,904,988 | terminal | Smack user in a face with release notes after update | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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 | low | Critical |
605,916,454 | rust | Lint against useless `&mut` | In rust-analyzer, I had the following code:
```rust
impl Completions {
pub(crate) fn add_field(
&mut self,
ctx: &CompletionContext,
field: hir::StructField,
ty: &Type,
) {
let is_deprecated = is_deprecated(field, ctx.db);
let mut completion_item = Comp... | A-lints,T-lang,C-feature-request | low | Critical |
605,943,592 | TypeScript | Allow this in type guards when type of this is explicitly specified in method signature | ## Search Terms
"A 'this' type is available only in a non-static member of a class or interface.(2526)" guard
Relevant: #37796 (but this one is different)
## Suggestion
Remove error 2526 in guard condition if type of `this` is specified explicitly using `this: SomeType`.
Since both guard condition and method... | Suggestion,In Discussion | low | Critical |
605,950,220 | go | spec: clarify timing of nil-checks for defer/go statements | Test program: https://play.golang.org/p/rDWCdf_ha5w
This program tests various conditions where a deferred function call can panic "early" (i.e., at the time of the defer statement) or "late" (i.e., at the time the deferred function is actually invoked).
When compiled with cmd/compile, it prints "early late early... | NeedsInvestigation | low | Critical |
605,971,028 | go | x/mobile: gomobile init is broken | I tried the experimental OpenAL bindings for gomobile but they won't build for Android because the `AL/al.h` header is missing. I don't know how the compilation works, and in a somewhat desperate attempt I installed https://github.com/AerialX/openal-soft-android, but with no success. Should these headers be installed i... | NeedsInvestigation,mobile | low | Critical |
605,998,988 | pytorch | Make it harder to make SIOF bugs for torchbind classes referenced by schemas | See https://github.com/pytorch/pytorch/pull/34140/files#r414252788 | triaged,better-engineering | low | Critical |
606,001,582 | terminal | After resizing, some previous text content appears unexpectedly. | # Environment
```none
Microsoft Windows [Version 10.0.18363.778]
Windows Terminal version (if applicable): Version: 0.11.1121.0
Any other software?
```
# Steps to reproduce
1. type htop
2. enter Alt+enter to Full Screen
3. enter Alt+enter to window mode
4. type q to quit htop
5. Type Enter
6. Type Ent... | Area-Output,Issue-Bug,Product-Terminal,Priority-2 | low | Minor |
606,009,387 | pytorch | RuntimeError: Tried to instantiate class __file__.__file__ but it does not exist! Ensure that it is registered via torch::jit::class_ | ## 🐛 Bug
Input `vars(torch)` got
```
Traceback (most recent call last):
File "C:\Users\myluo\AppData\Local\Programs\Python\Python36\lib\site-packages\IPython\core\formatters.py", line 224, in catch_format_error
r = method(self, *args, **kwargs)
File "C:\Users\myluo\AppData\Local\Programs\Python\Python3... | needs reproduction,oncall: jit,triaged | low | Critical |
606,019,476 | flutter | Enable "slow tap" in widget tester | Internal: b/139892348
From customer:dream (g3)
An exciting bug that took a lot of digging to debug; onTap being called only intermittently on a widget. It turned out to be because onTapDown I was changing the widget hierarchy from
X -> GestureDetector -> child
to
X -> RipplePainter -> GestureDetector -> child
T... | a: tests,c: new feature,framework,customer: dream (g3),c: proposal,P3,team-framework,triaged-framework | low | Critical |
606,068,409 | ant-design | TreeSelect树选择再model显示,多选后很多后,IE11下输入框不自动换行 | - [ ] 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://ant.design/](https://ant.design/)
### Steps to reproduce
TreeSelect树选择再model显示,,多选后很多后,IE11下输入框不自动换行
### What is expected?
输入框内容自动换行... | Internet Explorer,Inactive | low | Minor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.