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 |
|---|---|---|---|---|---|---|
534,839,464 | flutter | main.dart.js is too large |
flutter build web packaged files are large。
main.dart.js is loading, the entire webpage is blank。
How to do distributed loading,
How to load a web page like。 | c: performance,a: size,platform-web,perf: app size,found in release: 1.17,P3,team-web,triaged-web | high | Critical |
534,909,274 | pytorch | How can I add masks to parameters | Hi,
Can I use hook to add a parameter masking function to Conv2d. Specifically, I’d like to add a binary mask buffer to each Conv2d module, during each training step, I need to update the mask buffer and then use it to mask the weight.
Or, is there any method to add masks and apply the masks to Conv2d in a given ... | module: nn,triaged | low | Minor |
534,957,331 | flutter | StyleComponents to CSS-like | Every Widget with style components contains other Widgets that do the designs.
Would it not better when Style is coded like CSS? It would not create new Objects, the Widget-Tree would be much smaller, the performance would gain and the app-sizes would smaller.
For Example (copied from Flutter documentation):
```da... | framework,c: proposal,P3,team-framework,triaged-framework | low | Major |
534,984,475 | pytorch | JIT breaks with postponed annotations | Targetting the correct issue this time, sorry for the noise
## 🐛 Bug
As per [PEP 563 (Postponed Evaluation of Annotations)](https://www.python.org/dev/peps/pep-0563), typing annotations are not automatically evaluated as definition time starting with python 3.7 when using `from __future__ import annotations`.
... | oncall: jit,triaged | low | Critical |
534,990,545 | flutter | CupertinoPageRoute should support _kBackGestureWidth customization | CupertinoPageRoute should support _kBackGestureWidth customization
## Use case
Our project manager told us we should expand back gesture area for IOS. but i found that CupertinoPageRoute already has a const named _kBackGestureWidth.it worked after modify this.
but i cannot just modify when i using CupertinoPag... | c: new feature,framework,f: cupertino,c: proposal,P3,team-design,triaged-design | low | Major |
535,005,162 | flutter | Style action label on SnackBar | <!-- 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,framework,f: material design,a: typography,P3,has partial patch,team-design,triaged-design | low | Critical |
535,005,446 | rust | Strange cycles perfomance with generators and very slow `for` in `debug` build [on nightly] | Having following simple benchmark code:
<details><summary> Very large code </summary>
```rust
#![feature(generators, generator_trait)]
#![feature(trait_alias)]
#![allow(while_true)]
#![allow(clippy::print_literal)]
use std::marker::PhantomData;
use std::ops::{Add, Generator, GeneratorState::*};
use std::pi... | I-slow,C-enhancement,T-compiler,A-coroutines | low | Critical |
535,016,185 | opencv | When creating VisualStudio project with AVX512 baseline, AVX2 seems to override the AVX512 option | I'm trying to compile OpenCV with AVX512_SKX baseline with VisualStudio 2019 generator.
After generating the project and inspecting the build options, I notice that under
ConfigurationProperties > C/C++ > Code Generation > Enable Enhanced Instruction Set
/arch:AVX2 is set
and under
Configura... | category: build/install,incomplete,platform: win32 | low | Minor |
535,031,042 | rust | Don't evaluate promoteds for each monomorphization if it does not depend on generic parameters | In the following code snippet
```rust
fn foo<T>() -> &'static i32 {
&(5 + 6)
}
```
we evaluate the `&(5 + 6)` for every monomorphization of `foo`, even though we could just do this once. We should find a way to get rid of this duplicate evaluation. Maybe we can already do this at the time promoteds are cr... | C-enhancement,I-compiletime,T-compiler,A-const-eval | low | Major |
535,039,681 | kubernetes | Test coverage of volume relabeling is lacking | **What happened**:
SELinux volume relabeling regressed in 1.16/1.17 with no test failures. See https://github.com/kubernetes/kubernetes/issues/83679
**What you expected to happen**:
Test failures would have prevented the regression. Currently, we apparently only have manual test guarantees that this functions corr... | kind/bug,area/test,priority/backlog,sig/storage,sig/node,help wanted,lifecycle/frozen,needs-triage | medium | Critical |
535,061,614 | pytorch | Categorical.sample too slow | ## 🐛 Bug
Categorical.sample(shape) calls _shape_ times ```torch.multinomial(probas, 1, True)```.
This is slow when we want to get many samples from a large number of classes.
## To Reproduce
Steps to reproduce the behavior:
```py
import torch
sampling = torch.distributions.categorical.Categorical(probs=... | module: distributions,triaged | low | Critical |
535,213,527 | go | doc: filename conventions | > If I have simply missed where this is documented, please let me know where I should have looked, and close this out.
Many places describe how custom filename suffixes interact with the toolchain: `_test`, `_linux`, `_arm`. However I cannot find anywhere that says you should use snake case for multi-word file names... | Documentation,NeedsDecision | medium | Critical |
535,219,915 | pytorch | Remove `.data` | Even though it is not documented, many users still use it. And it leads to many bugs in user code.
So we should remove it completely to prevent this.
The expected steps are:
- [ ] Add a new api to make a shallow copy that does not share version? Or a cat + unbind function that does not share version counter if that ... | module: autograd,triaged,enhancement,better-engineering,actionable | medium | Critical |
535,335,371 | rust | Missing TryInto from usize to float | Currently there is no trait bound that will satisfy this very simple algorithm:
```
fn average<T>(list: &Vec<T>) -> T
where T: Div<Output=T> + Add<Output=T> + Default + TryFrom<usize>
{
let mut total = Default::default();
if list.len() == 0 {
total
}
else {
for val in li... | T-libs-api,C-feature-request | low | Minor |
535,341,781 | flutter | libEGL.so & libGLESv2.so missing in Linux exe.unstripped directory | On Linux , we should copy `libEGL.so` and `libGLESv2.so` from `out/xxx/` to `out/xxx/exe.unstripped` in order to properly debug the binaries inside `exe.unstripped` directrory (e.g., using gdb). Otherwise, Linux will load the system library instead of our SwiftShader GL implementation. | team,engine,platform-linux,P2,team-engine,triaged-engine | low | Critical |
535,363,329 | rust | rustc requires 7GB of memory for clean build | (This is a followup to https://users.rust-lang.org/t/why-does-rustc-require-7gb-of-memory-for-a-medium-size-crate/35506.)
I have a rust project (https://github.com/samuela/rustybox as of 37c0a1d) that requires ~7GB of memory to build. Why does rustc require so much memory? Are there any particular rust features that... | C-enhancement,A-borrow-checker,T-compiler,I-compilemem | low | Critical |
535,376,729 | pytorch | The inference speed of the torch compiled manually is slower than the torch build from official binaries? | I compile the torch(v1.4.0 cudatoolkit=10.2 cudnn=7.6.5) from source with the command "python setup install". And then load the model of shufflenet v2 0.5 with the compiled library(batchsize=8), the speed is 0.0083. But when I load the same model with the torch(v1.3.1 cudatoolkit=10.0 cudnn=7.6.4) build by official bin... | needs reproduction,module: binaries,module: performance,triaged | low | Major |
535,380,926 | godot | [empty] instead of default value in properties inspector for exported Resource | **Godot version:** 3.0
**OS/device including version:** Any
**Issue description:** Value is "[empy]" for exported resource with default value
**Steps to reproduce:**
Create some custom resource class. For example MyResource
Use it in exported variables. Example:
```
export var int_value : int = 12
export ... | discussion,topic:editor | low | Major |
535,384,922 | pytorch | GPU version of minimal example for libtorch fails with "no kernel image is available..." | ## 🐛 Bug
The following GPU version of the minimal example for `libtorch` crashes on `torch::relu` with the error "CUDA error: no kernel image is available for execution on the device".
#include <torch/torch.h>
#include <iostream>
int main() {
torch::Device device(torch::kCUDA);
torch::Tensor tenso... | module: cuda,triaged | low | Critical |
535,451,745 | go | proposal: crypto/subtle: constant time comparison (eq/neq) for int64 | Several well-used programs in Golang use int64 as an identifier, but do not use constant time comparison when authenticating. This could be used to leak information to an adversary (potentially). Unfortunately, `crypto/subtle` does not have a constant-time comparison algorithm for int64, which would clearly be useful t... | Proposal,Proposal-Crypto | low | Minor |
535,461,841 | opencv | python: Relink `/usr/lib/x86_64-linux-gnu/libsystemd.so.0' with `/usr/lib/x86_64-linux-gnu/librt.so.1' for IFUNC symbol `clock_gettime' |
##### System information (version)
- OpenCV => 4.1.2 (Build from source)
- Operating System / Platform => Ubuntu 19.04
- Compiler =>
```console
longervision-GT72-6QE% gcc --version
gcc (Ubuntu 8.3.0-6ubuntu1) 8.3.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for co... | incomplete | low | Critical |
535,479,574 | TypeScript | Add full type hover popup to VS Code commands | Several issues have been opened for this problem, but they have been closed as a duplicate of an issue which barely mentions the problem, let alone addresses it: https://github.com/microsoft/vscode/issues/64566
The closed issues are:
- https://github.com/microsoft/vscode/issues/66405
- https://github.com/microso... | Suggestion,Needs Proposal | high | Critical |
535,559,137 | pytorch | Pytorch 1.3.0 on RTX cards: CUDA error: an illegal memory access was encountered | Hi, after upgrade from torch==1.2.0 to torch==1.3.0 (or 1.3.1) I'm seeing these errors in my application running on RTX cards:
**CUDA error: an illegal memory access was encountered**
Error happens randomly in different parts of code, when accessing cuda functions.
For example: image_tensor = self.tensors[image_... | module: cuda,module: memory usage,triaged | low | Critical |
535,584,954 | PowerToys | Transform (lowercase, Titlecase, UPPERCASE) Feature | # Summary of the new feature/enhancement
As there is a PowerRenamer feature, there should be a PowerTransform feature as well. PowerTransform should help quickly rename *any text* throughout the W10 ecosystem, and especially files, from **`lowercase`** to **`Titlecase`** or **`UPPERCASE`**.
It should be available... | Idea-New PowerToy | medium | Critical |
535,647,669 | flutter | Dropdown list incorrect position when on-screen keyboard closes | ## Steps to Reproduce
1. Open dialog with a text field and a dropdown button.
2. Focus the text field by tapping on it, this opens the keyboard and changes the position of the dialog.
3. Tap on the dropdown button, its' list is opened in correct position, but the keyboard closes making the dialog go downwards while ... | framework,f: material design,c: rendering,has reproducible steps,found in release: 3.3,found in release: 3.6,team-design,triaged-design | medium | Major |
535,650,507 | opencv | Robust variant of solvePnPRefineLM | Currently the LM part of the solvePnPRefineLM function minimizes the L2 loss. However in the refinement setting - where we can assume a well-behaved initial estimate - it is desirable to use a robust loss.
This would allow dealing with outliers (points with non-gaussian noise). In this context the Tukey loss, seems ap... | feature,category: calib3d | low | Minor |
535,667,122 | opencv | OpenEXR loading not making use of multi-threaded IO | OpenEXR library supports multi-threaded file IO by setting Imf::setGlobalThreadCount(), this currently has no effect though on loading since loader code loops over image and reads data line by line (forcing it to be single threaded) | feature,priority: low,category: imgcodecs,category: 3rdparty | low | Minor |
535,671,209 | vscode | Cannot input with Chrome Extension Google Input Tool | **monaco-editor version:** 0.18.1
**Browser:** Chrome / Edge β
**OS:** Windows
**Steps or JS usage snippet reproducing the issue:**
<!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/monaco-editor -->
Cannot input with [Chrome Extension Google Input Tool](https://chrome.go... | feature-request,editor-input,web,chromium | low | Minor |
535,682,733 | go | cmd/compile: minimize stack occupation before function calls | In go 1.13 variables on the stack are kept ~alive~ allocated until the function returns. This is normally harmless, but can lead to surprising results: e.g. in the following example with a buf size of 1<<15 the process crashes because we reach the maximum stack size, but with a size of 1<<16 or more the process does no... | NeedsInvestigation,compiler/runtime | low | Critical |
535,709,347 | create-react-app | Provide a way to configure the `mainFields` for webpack | The application build relies on the default webpack resolution of entry points for imported libraries, which are `["browser", "module", "main"]` for a web application.
Per spec (I believe) the `module` entry contains the ESM5 version of the library, i.e. tree shaken but transpiled to ES5.
Some libraries, in particu... | issue: proposal | low | Major |
535,720,918 | flutter | Allow custom handling of Notch tap on iOS | This issue is about the handling of the tap on the Notch and how it's currently not customizable from the outside.
## Use case
For normal apps, the current behavior works excellent in a matter that you don't have to do anything to get this working out of the box.
As soon as you want to have a bit more control ... | c: new feature,platform-ios,framework,f: scrolling,P3,team-ios,triaged-ios | low | Major |
535,739,686 | flutter | unresolved supertypes: androidx.lifecycle.LifecycleOwner | ## Steps to Reproduce
1. create new flutter project in vscode
2. add to new repo
3. git clone using another computer (and another user)
4. flutter build apk
**Target Platform:** flutter
<details>
<summary>flutter run --verbose</summary>
```bash
[ +46 ms] executing: [C:\flutter_files\SDK\flutter\]... | c: crash,platform-android,tool,t: gradle,dependency: android,a: build,P2,team-android,triaged-android | low | Critical |
535,742,513 | rust | rust-gdb fails at passing command line arguments to the executable | This in particular happens when using servo's mach run utility.
I'm on `rustc 1.41.0-nightly (1bd30ce2a 2019-11-15)`
Output when using plain gdb:
```
$ ./mach -v run --debug --debugger gdb -d "http://nolp.dhl.de/nextt-online-public/set_identcodes.do?lang=de"
Reading symbols from /home/marc/Dokumente/02_GIT/servo... | T-dev-tools,C-bug | low | Critical |
535,757,259 | go | cmd/go: go generate should be more resilient to source changes | ```
go version devel +3c0fbeea7d Tue Nov 5 05:22:07 2019 +0000 linux/amd64
```
When `go generate` runs, it's quite likely to add and remove source files.
This can result in errors which are inappropriate.
Here's a [testscript command](https://pkg.go.dev/github.com/rogpeppe/go-internal/cmd/testscript) script th... | NeedsInvestigation | low | Critical |
535,769,314 | godot | Spotlight Has An Un-wanted "Darkening Effect" | **Godot version:**
3.1.1 / 3.1.2
**OS/device including version:**
Windows 10 Version 1909
**Issue description:**
Spotlight darkens a radius around itself
**Steps to reproduce:**
Create a Spotlight
**Minimal reproduction project:**
Just that
Example :
https://www.reddit.com/r/godot/comments/e8c7sf/spo... | bug,topic:rendering | low | Major |
535,774,412 | vscode | Support for RTL languages (such as Arabic / Hebrew / Persian etc.) | My name is Tomer Mahlin. I lead a development team in IBM named Bidi Development Lab. We are specializing (for more than 20 years) in development of support for languages with bidirectional scripts (or "bidi lang." for short) .
We recently ran a sniff assessment on Monaco capabilities with respect to bidi lang. dis... | feature-request,editor-RTL | high | Critical |
535,797,721 | TypeScript | Allow folding of JSDoc comments | **VsCode version:** 1.40.2 (Oct 2019, 2)
**OS:** Windows 10 v1709 os build 16299.847
**TypeScript Version:** 3.6.3
**Search Terms:** vs code fold "app.get" outlining jsdoc comment expressjs folding
**Code**
```ts
/**
* @api {get} /ProjectsList/:projectId/ Get project
*
* @apiDescription Get a pr... | Suggestion,Help Wanted,Effort: Moderate,Domain: Outlining | low | Major |
535,799,690 | rust | Missed optimization on only used once allocation | godbolt link: https://rust.godbolt.org/z/d_VvSo
Here are two snippets that I expect that they should have the same assembly:
```rust
pub fn foo(s: &str) -> bool {
s != "FOOFOOLONGLONG"
}
```
```rust
pub fn foo(s: &str) -> bool {
s.to_string() != "FOOFOOLONGLONG"
}
```
EDIT: For [C version](http... | A-LLVM,I-slow,C-enhancement,T-compiler,I-heavy,C-optimization | low | Minor |
535,804,474 | node | move things away from process.binding('util') | `process.binding('util')` has been some kind of hotch-potch of "bindings the JS internals need but don't fall in the scope of a particular binding namespace". There is no compatibility guarantee about what's in this object and changes to it are completely at the whims of Node.js maintainers.
However `process.binding... | lib / src | low | Minor |
535,809,486 | pytorch | MathJax too small in Firefox | MathJax in your docs is by default rendered tiny (too small to read) in Firefox...
Example screenshot from: https://pytorch.org/tutorials/beginner/blitz/autograd_tutorial.html
<img width="862" alt="image" src="https://user-images.githubusercontent.com/464192/70542681-6d732480-1b69-11ea-8daf-e3fa3aa62822.png">
My... | module: docs,triaged | low | Minor |
535,852,508 | terminal | Rolling background image like Windows Themes | # Description of the new feature/enhancement
What about a set of rolling background images instead of a single one that Windows Terminal currently supports? Looking at the same background all the time gets boring.
I like [Windows Themes](https://www.microsoft.com/en-us/store/collections/windowsthemes?SilentAuth=1&... | Help Wanted,Area-UserInterface,Area-Extensibility,Area-Settings,Product-Terminal,Issue-Task | low | Major |
535,864,020 | flutter | Flutter process internals prone to flagging from antivirus on Windows | ## Steps to Reproduce
<!-- Please tell us exactly how to reproduce the problem you are running into. -->
1. Extract flutter release zip to a folder on a Windows machine with Carbon Black defense software installed
2. make sure flutter\bin is in the path
3. run "flutter doctor"
4. Nothing happens
5. Check Wind... | tool,dependency: dart,platform-windows,P2,team-tool,triaged-tool | low | Major |
535,895,540 | flutter | FlexibleSpaceBar title doesn't remain vertically center when custom fontSize is given | ## Steps to Reproduce
1. Set fontSize parameter to the text given as title to the `flexibleSpace` parameter in `SliverAppBar`.
2. After collapsing the title isn't vertically centered.
## Cause
Using fixed `bottomPadding` of `16.0` [here](https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/mate... | framework,f: material design,has reproducible steps,found in release: 2.10,found in release: 2.13,team-design,triaged-design | low | Major |
535,896,035 | go | cmd/go: cgo #line directives cause non-reproducibility | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13.5 darwin/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</summar... | NeedsFix | low | Critical |
535,906,829 | godot | Can't compile bindings MinGW or MSVC | **Godot version:** 3.1.2.stable.official
**OS/device including version:** Microsoft Windows 10 Pro 10.0.18362 compilation 18362
**Issue description:**
Well, this issue needs a little workaround before (two issues in one?) because _scons_ will ignore completely the flag **use_mingw**, the patched version is inc... | bug,topic:buildsystem | low | Critical |
535,910,890 | flutter | Supporting the Turkmen language for Cupertino/Material widgets | Creating this issue to track interest for adding Turkmen as a supported language for Material/Cupertino widgets.
Related to an [attempt to add Cupertino Turkmen translations](https://github.com/flutter/flutter/pull/44763) and an [attempt to add Material Turkmen translations](https://github.com/flutter/flutter/pull/... | c: new feature,framework,f: material design,a: internationalization,f: cupertino,P3,workaround available,team-design,triaged-design | low | Minor |
535,937,536 | TypeScript | Add more telemetry for ATA | Currently ATA just fires an event with the list of packages to be installed, the success/failure and the typings installer version. Some more useful telemetry to gather would be per package success/failure, time for each package install, and the registry used (github vs. npm).
The event currently goes from typings i... | Suggestion,Experience Enhancement | low | Critical |
535,954,822 | flutter | make it easier to use chained `Tween`s in `Hero.createRectTween` | ## Use case
When creating custom animations with a `Hero` widget, you will most likely get to use `createRectTween`, unfortunately it requires `Tween` as return value, not `Animatable`. This makes it difficult to use chains (you should create your own Tween and do it by hand).
This example couldn't work with curren... | c: new feature,framework,a: animation,P3,team-framework,triaged-framework | low | Major |
535,969,793 | flutter | Example app and test code sharing between endorsed implementations | Right now we're copy-pasting the example apps into the endorsed implementations. We should have a standard way to share example app code. | team,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
535,988,020 | flutter | [web] re-enable modifier state for lock keys | Sending the modifier state with lock keys was causing an issue for Flutter For Web flutter/flutter#45250
The ideal solution is having another API on Flutter Framework specifically for sending the locks.
After this [PR](https://github.com/flutter/engine/pull/14165), web engine will stop sending the modifier state ... | framework,platform-web,P3,team-web,triaged-web | low | Minor |
536,004,034 | rust | #[link_section] is only usable from the root crate | Consider the following MNWE (minimal non-working example :smile:):
```bash
~ $ mkdir mwe
~ $ cd mwe
~/mwe $ cargo new a
Created binary (application) `a` package
~/mwe $ cargo new --lib b
Created library `b` package
~/mwe $ cat <<EOF > b/src/lib.rs
> #[used]
> #[link_section = ".mysection"]
> stati... | A-linkage,A-attributes,E-needs-test,T-compiler,C-bug | low | Critical |
536,017,003 | material-ui | Support for bottom sheets from Material Design specs | - [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 💡
It would be great to have an implementation of the Bottom sheet component from the 2019 Material Design specs (https://material.io/components/sheets-bottom/#... | new feature,design: material | low | Major |
536,041,218 | flutter | TextEditingController.text docs miss a reason | `TextEditingController.text` docs say it shouldn't be updated in a `build` method, but it doesn't explain why, it just says the listeners will be called. Is this for performance reasons, so the listeners won't lock the `build` method? Or are there any other issues as well?
I think the docs should include a more expl... | a: text input,framework,d: api docs,a: first hour,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework | low | Critical |
536,046,620 | rust | Test exit code should distinguish between failed test and bad args | Today, if I run a test binary with bad args like `--foo-bar`, it prints an error message and exits with code 101. Similarly, if I run a test binary correctly but one of the tests fails, it logs the test failure and exits with 101.
It would be nice if we could distinguish between these cases using only the exit code.... | C-enhancement,T-compiler,T-dev-tools,A-libtest | low | Critical |
536,075,096 | pytorch | Common lookup of generic types across full script and mobile parsers | ## 🚀 Feature
Common lookup of generic types across full script and mobile parsers
## Motivation
To maximize the codes that can be shared between the two parsers.
## Pitch
As in the title. Build the lookup of generic types (especially Dict, Tuple, List and other composing types) and make it shared by both ... | feature,triaged | low | Minor |
536,079,710 | go | x/tools/gopls: normalize feature sets of unimported completions and organize imports | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
go version go1.13.4 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Can't test on latest release, will update when brew makes go1.13.5 availabl... | gopls,Tools,gopls/imports | medium | Critical |
536,081,857 | flutter | TextField should have a selectAllOnFocus | `TextField` or `TextEditingController` should have a `selectAllOnFocus` property, just like Android has, to easily make the whole text selected once the `TextField` gets in focus. | a: text input,c: new feature,framework,f: material design,c: proposal,P3,workaround available,team-text-input,triaged-text-input | low | Major |
536,146,608 | flutter | Expose a way to see which font engine ended up loading | Internal: b/292548466
customer: dream requested to be able to know what font family is being loaded by the engine.
They are unable to bundle all the fonts they intend to use with their app. They want to rely on system fonts. However, while doing development, they sometimes see odd behavior and want to know whether ... | engine,a: typography,customer: dream (g3),P2,team-engine,triaged-engine | low | Minor |
536,158,373 | nvm | Cannot install node on OpenBSD | <!-- Thank you for being interested in nvm! Please help us by filling out the following form if you‘re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! -->
#### Operating system and version:
OpenBSD 6.6
#### `nvm debug` output:
<details>
<!-... | OS: FreeBSD / OpenBSD,installing node | low | Critical |
536,259,348 | vscode | Disambiguate quickSuggestion from editor.action.triggerSuggest | From a CompletionItemProvider it would be useful to be able to disambiguate completions triggered by quickSuggest and manual invocation of the command (via ctrl-shift). This could be used if specific completions are expensive or particularly low confidence.
Currently quickSuggest suggestions and ctrl-space suggestio... | suggest,under-discussion | low | Minor |
536,308,429 | ant-design | Select (type: multi/tags) change event cannot be prevented by onInputKeyDown | - [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/dawn-silence-s2hkq)
### Steps to reprodu... | Inactive,improvement | low | Major |
536,319,499 | pytorch | Add torch.version.nccl | ## 🚀 Feature
Make NCCL version available at `torch.version.nccl`.
## Motivation
We have `torch.version.cuda` and should have a similar field for the NCCL version.
## Pitch
We should add it. The version is available as a compile time constant by looking at the header. Alternatively, we can pull the versi... | oncall: distributed,module: bootcamp,triaged,enhancement,module: nccl | low | Minor |
536,363,793 | pytorch | torch.nn.Softplus threshold argument bug? | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
I noticed a potential bug in the torch.nn.Softplus function:
when plotting `torch.nn.Softplus(beta=10, threshold=0.4)` it appears that the linear threshold starts around 0.05 instead of 0.4 as specified, leading to a discontinuity in the fu... | module: nn,triaged | low | Critical |
536,380,489 | create-react-app | Add documentation for using create-react-app with yarn pnp | ### Is your proposal related to a problem?
Documentation request for uding create-react-app with yarn 2 pnp.
### Describe the solution you'd like
To use create-react-app with yarn 2 pnp.
(Describe your proposed solution here.)
Document solution for using create-react-app with yarn 2 pnp
thanks | issue: proposal | low | Major |
536,419,361 | rust | Passing -Z embed-bitcode doesn't embed bitcode for debug builds of external dependencies | I'm not 100% sure if this is a cargo bug or a rustc bug, but it looks like a rustc bug.
I tested using `rustc 1.41.0-nightly (412f43ac5 2019-11-24)` running on MacOSX Catalina.
I put my files in a small repository, which you can find here: https://github.com/davehylands/simple-lib
What I noticed is that if I b... | O-ios,T-compiler,C-bug | low | Critical |
536,423,958 | create-react-app | Move react-scripts/config/jest into react-dev-utils | ### Is your proposal related to a problem?
All the files in the folder `react-scripts/config/jest` are util transforms used in a `jest.config.js`.
They're really useful and very common, so that they're described also in the [official guide of jest](https://jestjs.io/docs/en/webpack.html).
I am building a custom... | issue: proposal,needs triage | low | Minor |
536,447,854 | rust | Casting or adding type ascription to panic!() triggers unreachable_code | ```rust
fn test() -> impl Iterator<Item = i32> {
panic!()
}
```
doesn't compile, as `()` (nor `!`) implement `Iterator<Item = i32>`.
```rust
#![feature(never_type_fallback)] // required for `panic!() as _`
fn test() -> impl Iterator<Item = i32> {
panic!() as std::iter::Empty<_>
}
```
compiles, but g... | C-enhancement,A-lints,P-medium,T-compiler,F-never_type,requires-nightly | low | Major |
536,493,959 | TypeScript | Add a Merge utility type | ## Search Terms
merge types
## Suggestion
It would be great if you could merge two types. The closest I can get right now is a union:
```typescript
type Test1 = { id: number, code: string }
type Test2 = { id: string, code: number }
type Test3 = Test1 | Test2
// This is not allowed, because x doesn't m... | Suggestion,Awaiting More Feedback | low | Major |
536,504,972 | flutter | Improve the indexability (SEO) of Flutter apps on the web | Latest status: https://github.com/flutter/flutter/issues/46789#issuecomment-1007835929
----
I Just wanted to know whether its SEO Friendly or not and about the status of Initial paintful load. | c: new feature,framework,customer: crowd,platform-web,c: proposal,P2,team-web,triaged-web | low | Critical |
536,509,638 | vscode | Allow to configure symbol visibility in pickers that may show symbols | It's sometimes difficult to use "Go To Symbol" to go to a specific method of a class because the namespace of the palette is polluted with variable names. Personally, I have no need to use "Go To Symbol" to navigate to variables, so just like I can hide them in the outline, I'd like to be able to hide them from the pal... | feature-request,editor-symbols,quick-open | medium | Critical |
536,514,769 | vscode | [scss] add parameter hints | Currently when we complete a function in SCSS, it completes all parameters:

I think a better experience would be to use parameter hints and do not show the parameter names. | feature-request,css-less-scss | low | Minor |
536,515,768 | vscode | [css] hover for property values | There's completion details for property values:

But no hover for them.
| feature-request,css-less-scss | low | Minor |
536,516,412 | vscode | [scss] provide hover for scss functions | In SCSS, when hovering over a function, we should show its documentation. Currently it only shows the property name's documentation:

Depends on #86764. | feature-request,css-less-scss | low | Minor |
536,533,253 | node | Debugger doesn't pause again after stepping through blackboxed function | <!--
Thank you for reporting a possible bug in Node.js.
Please fill in as much of the template below as you can.
Version: output of `node -v`
Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
Subsystem: if known, please specify the affected core module name
If possible, please pro... | inspector | low | Critical |
536,538,338 | flutter | [web] exceptions on mouse move when window loses focus | On desktop chrome for Linux, running a flutter application in debug mode and then losing window focus causes all subsequent mouse moves to throw the assertion below:
Error:
```
dart_sdk.js:5312 Uncaught Error: Assertion failed: org-dartlang-sdk:///flutter_web_sdk/lib/_engine/engine/pointer_converter.dart:271:18
!... | engine,platform-web,platform-linux,a: desktop,a: mouse,P2,team-engine,triaged-engine | low | Critical |
536,541,668 | rust | Clarify pitfalls of references and NonNull in FFI | Add a note like the one in this commit to the documentation of references and nonnull: https://github.com/rust-lang/rust/pull/62514/commits/fafa4897985f932490960e90ddd2ff39134e967e
Something like what that commit does for `Box<T>`:
```rust
//! **Important.** At least at present, you should avoid using
//! `Bo... | C-enhancement,A-FFI,T-lang,A-docs | low | Minor |
536,554,763 | vscode | Make css auto completion items overtype on semicolon | 
Now that auto complete adds a `;` when selecting properties, it would be great if typing a `;` next to a semicolon would overtype so that I can quickly get to the end of the line and keep typing. I know that ... | feature-request,suggest,editor-autoclosing | low | Minor |
536,560,001 | pytorch | [jit] Python objects as arguments are not mutated | In Python the original object passed in is not modified by running the script function, but in C++ it is (which is the correct behavior).
```python
from typing import Dict
import torch
class XYZ(torch.nn.Module):
def __init__(self):
super().__init__()
@torch.jit.export
def f(se... | oncall: jit,low priority,triaged | low | Minor |
536,566,783 | go | x/net/http2: test timeouts on js-wasm builder | [2019-12-09T16:08:50-c0dbc17/js-wasm](https://build.golang.org/log/16b8f0dc90c74888bb31f97b8741461cbfb016de) has an interesting timeout failure.
It's not obvious to me whether it is due to a bug in the test, a bug in the `js/wasm` standard library, or a bug in `x/net/http2` or one of its dependencies that happens to... | help wanted,NeedsInvestigation,arch-wasm | low | Critical |
536,598,786 | flutter | [proposal] provide layout widget that enforces minimum height | I see many widgets meant to make its child as big as it wants, like `Expanded`, `Flexible`, `BoxConstraints.expand()`, `SizedBox.expand`, but many times I want to set a widget to be as small as possible, analog to Android's `wrap_content`.
Sometimes I get rendering Exceptions because the framework can't calculate th... | c: new feature,framework,c: proposal,P3,team-framework,triaged-framework | medium | Major |
536,653,709 | terminal | Epic: Search v2 | # Description of the new feature/enhancement
###### [Original Issue: #605] [Original Spec: #3299] [Initial PR: #3590]
Terminal text search has already realizes single tab case sensitive/insensitive forward/backward search. In phase 2, we are considering these new features:
* [x] Add "Find" button in dropdown men... | Area-UserInterface,Area-TerminalControl,Product-Terminal,Issue-Scenario | medium | Major |
536,657,802 | pytorch | [JIT] tensor(device=...) and tensor.to(device = ...) does not work properly in traced functions and modules | ## 🐛 Bug
tensor.to(device) function results in fixed destination device when being traced by torch.jit.trace.
It seems very similar to #13969 which is reported to be closed 1 year ago, but it still fails to work.
## To Reproduce
```
def x(a):
b = torch.tensor((1.,), device=a.device)
return a+b
y ... | oncall: jit,triaged | low | Critical |
536,657,934 | godot | MouseMode.Confined locks the mouse when the game starts with its window unfocused | **Version:** Godot 3.2 beta 1
When you start the game while, for example, browsing the web with Chrome, the game starts unfocused; still, the game locks the mouse and you get to focus the window and unfocus again to unlock it.
Input.SetMouseMode(Input.MouseMode.Confined) is in an object's _Ready() in the first sc... | bug,usability,topic:input | low | Minor |
536,684,810 | TypeScript | compilerOptions:outDir is warning if set to null inside VSCode | **TypeScript Version:** 3.7.2
**Search Terms:**
Unset outDir in extended tsconfig
outDir null
outDir Type
**Code**
```
{
"extends": "./tsconfig",
"compilerOptions": {
//...
"outDir": null,
}
}
```
**Expected behavior:**
No warning inside VSCode.
**Actual behavior:**
```
{
"resource": "/... | Bug | low | Minor |
536,700,980 | flutter | [Web] Icon is not rendered using the right font during widget tests on web | Discrepancy found in newly enabled screenshot tests for web in PR #46820
Web:

Flutter tester:

Flutter tester:

Flutter tester:
![z_list_wheel_scroll_view center_child magnified png... | framework,f: material design,platform-web,P2,team-web,triaged-web | low | Minor |
536,707,451 | react | Input nodes leaked by the browser retain React fibers | **Do you want to request a *feature* or report a *bug*?**
🐛
**What is the current behavior?**
Browsers retain references to inputs in their undo stacks, which in turn retain React fibers (including `memoizedProps`)
See https://bugs.chromium.org/p/chromium/issues/detail?id=1029189
**If the current behav... | Type: Needs Investigation | medium | Critical |
536,718,714 | kubernetes | Better protect secrets from common application vulnerabilities that expose the filesystem | We've done a lot with secrets to meet rigid applications where they are. Is there anything we can do to optionally give flexible applications better security? Can we do better than directly mounting secrets onto the filesystem? Ideally filesystem information leaks (e.g. directory traversal bugs) wouldn’t result in secr... | priority/backlog,sig/storage,kind/feature,sig/auth,lifecycle/frozen | medium | Critical |
536,765,642 | flutter | Performance: FPS Drops dramatically with 4k+ particles. (Desktop - Darwin) | ## Details
I have been testing Flutter to evaluate its rendering capabilities. Because I intend to create a Graph viewer That needs to deal with millions or billions of nodes, with colors, movements, arrows and so on. Browser applications using Canvas or OpenGL works well. But I believed Flutter would be even better... | engine,c: performance,platform-mac,platform-windows,c: rendering,a: desktop,has reproducible steps,P3,found in release: 3.19,found in release: 3.20,team-macos,triaged-macos | low | Critical |
536,777,901 | go | html/template: incorrectly escapes urls with fragments | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
1.13.5
</pre>
### Does this issue reproduce with the latest release?
yes (can reproduce it on go playground)
### What did you do?
<!--
If possible, provide a recip... | NeedsInvestigation | low | Critical |
536,810,499 | pytorch | torch::nn::functional::interpolate crash | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
I'm sharing a minor error.
Steps to reproduce the behavior:
```c++
/*
images[index] is C * H * W : 3 *480*640 2D Image tensor
When calling interpolation, unknowexception occurs if the data type is not Kfloat.
*/
im... | module: cpp,triaged | low | Critical |
536,819,348 | PowerToys | [FancyZones] Zone always on top | # Summary of the new feature/enhancement
Currently I have 3 zones one is console zone however the other zones overlay on top of it hiding the zone.
as you can see the console is over the browser

bu... | Idea-Enhancement,FancyZones-Editor,Product-FancyZones | low | Major |
536,827,766 | flutter | Document old Android embedding's FlutterView migration | The new FlutterView class has not enough document.
https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects
The replacements for the methods removed from old FlutterView should be mentioned.
Thanks. | platform-android,engine,d: api docs,a: existing-apps,customer: crowd,P3,team-android,triaged-android | low | Major |
536,828,408 | youtube-dl | Request for ruv.is support | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
536,851,319 | vue | slot fallback content is always rendered even when not used | ### Version
2.6.10
### Reproduction link
[https://codesandbox.io/s/vue-test-default-slot-always-exec-syuny](https://codesandbox.io/s/vue-test-default-slot-always-exec-syuny)
### Steps to reproduce
when computed props or method declared in slot fallback , looks like this:
```
// XXX component
... | improvement,has workaround | low | Major |
536,867,465 | angular | [Animations]: Animating from current style, not initial one | - | type: bug/fix,area: animations,freq2: medium,state: confirmed,P3 | low | Minor |
536,885,092 | go | math/big: big.Int JSON marshalling to/from string | `big.Int` by design marshalls / unmarshalls to a number in JSON but for actual BIG numbers this ends up with a mess in other languages, specially javascript ...
Now `encoding/json` has a `,string` struct tag to flag a field to be quoted as a string instead but it's restricted only for `strings, floats, integers, and... | NeedsInvestigation | low | Minor |
536,885,271 | flutter | Code coverage does not include const values | Here is sample code, I found that static const InfoWindow noText = InfoWindow(); was not execute while run the test unit. so the code coverage could not reach to 100%, pull request was reject. Currently, I am just change the static const instance to function, if you have any idea, please tell me, thank you!
```dart
/... | a: tests,engine,dependency: dart,P2,team-engine,triaged-engine | low | Major |
536,896,934 | node | Debugger isn't stopped at the `debugger;` statement when debugging using `--inspect` | Note: previous thread was https://github.com/nodejs/node/issues/10457, but it got closed recommending `--inspect-brk` which is more a workaround than a solution imo.
**Is your feature request related to a problem? Please describe.**
When debugging a CLI program, I want to break at a specific location. For DevX re... | inspector | low | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.