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 |
|---|---|---|---|---|---|---|
765,417,408 | TypeScript | `paths` compilerOption without `baseUrl` doesn't show auto-complete suggestion for import module | **TypeScript Version:** 4.1.2
**prepare**
1. create a project directory and then run below commands to init the project:
```
npm init --yes
npm install -D typescript@latest
mkdir -p src/{foo,bar}
echo "export default {}" > src/foo/foo.ts
echo "export default {}" > src/bar/bar.ts
touch src/index.ts
./no... | Bug,Domain: Auto-import | low | Minor |
765,549,000 | flutter | Google Maps: Get the index level that is currently active in the building for indoor maps | ## Use case
```yaml
dependencies:
google_maps_flutter: ^1.0.6
```
I am developing a new feature in my application to show information inside the buildings. When I initialize the map I do it with both indoorViewEnabled and buildingsEnabled flags set to true. Unfortunately it is not possible recover neither th... | c: new feature,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
765,568,462 | godot | changing collision shape dynamically in _process delays detection | **Godot version:**
3.2.3
**OS/device including version:**
Linux
**Issue description:**
I will provide test code if this is thought to be a bug (as it will take a while to create small sample).
I have an object (a laser beam) that starts small and gets bigger over the course of a few seconds. As it gets ... | bug,confirmed,topic:physics | low | Critical |
765,572,437 | pytorch | [question] How hard would it be to implement 4-bit precision training? | I came across the paper [Ultra-Low Precision 4-bit Training of Deep Neural Networks](https://proceedings.neurips.cc/paper/2020/file/13b919438259814cd5be8cb45877d577-Paper.pdf) on NeurIPS 2020. I think it would be cool to implement support for it in PyTorch. I think it can be done quite efficiently on CPU using the AVX2... | module: internals,triaged | low | Major |
765,609,868 | pytorch | is this a typo in optimizer.pyi ? it says `statue` instead of `state` | it says `statue` instead of `state`
https://github.com/pytorch/pytorch/blob/dc4db95540da06623c747bf0f2bf9f4af3d2925a/torch/optim/optimizer.pyi#L13
cc @vincentqb | module: optimizer,triaged | low | Minor |
765,637,688 | flutter | ClipPath with CustomPaint and BlendMode.difference shows graphics artifacts on Oneplus devices | I played with `ClipPath`, `CustomClipper` and `BlendMode.difference` and I saw an unexpected result on my OnePlus 8 Pro (see the image below).
If I remove the AppBar or change it with a `Container`, everything is fine.
## Steps to Reproduce
1. Run `flutter create bug`.
2. Update the **lib/main.dart** file as fo... | e: device-specific,platform-android,engine,dependency: skia,c: rendering,has reproducible steps,P2,team-android,triaged-android,found in release: 3.19 | low | Critical |
765,678,640 | godot | [3.x] Class extended from constant variable in another class doesn't show exports of parent class in Inspector | Possibly related: #41625
**Godot version:**
```
3.2.3.stable.custom_build.662455ee8
```
**OS/device including version:**
```
$ uname -a
Linux pc 4.19.0-12-amd64 #1 SMP Debian 4.19.152-1 (2020-10-18) x86_64 GNU/Linux
```
**Issue description:**
When extending from a class that is preloaded in another cla... | bug,topic:gdscript | low | Minor |
765,863,228 | youtube-dl | Supporting Old SWF Videos | <!--
######################################################################
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 |
765,887,941 | terminal | Neither TIOCGWINSZ nor 14t allow introspection of the window size in pixels |
# Environment
Windows 10 Pro 20H2 (amd64)
Latest Windows Terminal Preview, running either msys2 or wsl
# Steps to reproduce
compile and run the following code
```
#include <sys/ioctl.h>
#include <stdio.h>
int main (void)
{
struct winsize ws;
ioctl(1, TIOCGWINSZ, &ws);
printf("rows:... | Product-Conhost,Area-Server,Area-VT,Product-Terminal,Issue-Scenario | medium | Major |
765,936,592 | terminal | ZWJ Emoji (like "Ninja Cat") cannot be used in Icon field | I can't set my icon to 🐱💻 but 🤖 works as expected. in terminal-preview.
<!--
This bug tracker is monitored by Windows Terminal development team and other technical folks.
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/t... | Issue-Bug,Area-Settings,Product-Terminal,Priority-3 | low | Critical |
766,155,446 | angular | Angular http client not working with translation on in IOS chrome browser | <!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅
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.
🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅... | area: common/http,iOS,P4 | medium | Critical |
766,229,909 | godot | Make file_format.sh work only on changed files, and usable as pre-commit hook | **Godot version:**
`master` / `3.2`
**OS/device including version:**
Linux
**Issue description:**
`misc/scripts/file_format.sh` was added by @aaronfranke to handle some formatting issues which are not properly detected and fixed by `clang-format`.
There are however two big issues with it which regularly... | enhancement,topic:buildsystem,topic:codestyle | low | Critical |
766,244,185 | pytorch | how could I print the log in source code | I'm debuging the code build upon torch, so I want to see the log of source code in the stdout, such as the log below:
```c++
void ProcessGroupNCCL::ncclCommWatchdog() {
try {
ncclCommWatchdogInternal();
LOG(INFO) << "[Rank " << rank_ << "] NCCL watchdog thread terminated normally";
} catch (std::excep... | module: cpp,module: logging,triaged | low | Critical |
766,246,774 | pytorch | Backward hangs with DDP during training. | Hello, I am trying to train a network using DDP. The architecture of the network is such that it consists of two sub-networks (a, b) and depending on input either only a or only b or both a and b get executed. Things work fine on a single GPU. But when expanding the network to 2 or more GPUS the backward just hangs. An... | oncall: distributed,triaged,module: ddp | low | Minor |
766,324,989 | storybook | Add different viewMode for iframed stories on Docs Tab | **Is your feature request related to a problem? Please describe**
Inside the Canvas / Preview Tab, I globally want to wrap my stories and display a header (title and additional information). But I don't want to wrap them on the Docs Tab.
I tried to create a decorator and check if `StoryContext.viewMode == 'docs'` b... | bug,angular,core,addon: docs | low | Major |
766,333,707 | flutter | Add splash radius to IconButtonThemeData | <!-- 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,c: proposal,good first issue,P3,team-design,triaged-design | low | Critical |
766,334,953 | flutter | TextField cursor overlaps hint text when text aligned to end | <!-- 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... | a: text input,framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-text-input,triaged-text-input | low | Critical |
766,400,213 | excalidraw | changelog | @lipis and I discussed how we could [notify users of new features](https://github.com/excalidraw/excalidraw/issues/2468). My suggestion was to show changelog in the help dialog.
Whatever we do, I think we should keep a user-facing changelog for excalidraw.com itself, not just the package. Meaning it should contain c... | discussion | low | Major |
766,452,078 | TypeScript | Document File name has a '.js' extension - stripping it | **TypeScript Version:** 4.2.0-dev.20201211
**Search Terms:** typescript File name has a '.js' extension - stripping it
**Code**
https://github.com/sguillia/ts-repro-III
other.ts
```ts
import * as index from "./index.js"
```
index.ts
```ts
export { }
```
Compile with:
```bash
tsc other.t... | Docs | low | Minor |
766,510,213 | electron | Add a way to disable smooth scrolling at runtime | ### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have s... | enhancement :sparkles: | low | Major |
766,640,206 | pytorch | global_pruning costs memory after model is trained | ## 🐛 Bug
Hi, I was working on iteratively pruning with global_pruning method (training --> prune --> training --> prune). However, I found it costs GPU memory after pruning.
With a very big model such as BERT, I ran into OOM issue after some pruning steps. I suspect the problem is due to the model parameters are... | module: cuda,module: memory usage,triaged,module: pruning | low | Critical |
766,659,945 | flutter | [integration_test] Changing test code doesn't work with --no-build parameter | ## Use case
Writing and debugging tests become time consuming with ~60 seconds build time. If i pass `--no-build` parameter with my `flutter drive` command, code changes doesn't work as if tests are baked into build.
Steps to reproduce are pretty simple:
1. Get example integration_test
2. Run it in typical `flutt... | a: tests,tool,c: proposal,f: integration_test,P3,team-tool,triaged-tool | low | Critical |
766,724,771 | tensorflow | No registered 'ResourceScatterNdUpdate' OpKernel for 'GPU' | **System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): CentOS 7
- TensorFlow installed from (source or binary): source
- TensorFlow version (use command below): 2.4.0rc4
- Python version:... | stat:awaiting tensorflower,type:bug,comp:ops,comp:gpu,TF 2.9 | low | Critical |
766,729,121 | tensorflow | Out of memory in some tests due to GPU memory limit confusion | **System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): CentOS 7
- TensorFlow installed from (source or binary): source
- TensorFlow version (use command below): 2.4.0rc4
- Python version:... | stat:awaiting tensorflower,type:bug,comp:gpu,TF 2.9,comp:lite-tosa | medium | Critical |
766,760,371 | pytorch | a time series library | ## 🚀 Feature
A deep learning-based time series forecasting library with Pytorch.
## Motivation
Time series forecasting has broad significance in public health, finance, and engineering. Traditional time series methods from statistics often rely on strong modeling assumptions, or are computationally expensive. ... | feature,triaged,needs research | low | Major |
766,847,039 | pytorch | [pre-commit hook] fails on `BLK100 Black would make changes.` | ## 🐛 Bug
Using the instructions at:
https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md#pre-commit-tidylinting-hook
I enabled the hook, but it fails with:
```
git commit
Running pre-commit flake8
gtorch/distributed/launch.py:151:1: BLK100 Black would make changes.
```
So I can't commit.
Th... | oncall: distributed,triaged | low | Critical |
766,862,619 | kubernetes | Move negative test cases for volumemode outside of testsuite | https://github.com/kubernetes/kubernetes/blob/master/test/e2e/storage/testsuites/volumemode.go#L193
In the current storage volumemode testsuite, there are some negative test cases which checks if a driver does not support raw block, it should not provision block volume mode PV. This test case should be moved to the ... | kind/bug,sig/storage,priority/important-longterm,lifecycle/frozen,needs-triage | low | Major |
766,877,909 | flutter | Call out expensive layers/widgets in janky frames | This is probably some joint work between the framework and devtools - @jacob314
In some recent work with an internal customer, we looked at some janky portions of an application. One thing that came up was the use of ClipRRect and Opacity widgets/layers in frames that ended up being expensive on the GPU.
It woul... | c: new feature,framework,engine,c: performance,d: devtools,perf: speed,P3,team-engine,triaged-engine | low | Critical |
766,879,649 | terminal | Minimize button stays highlighted in minimized-window-preview | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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... | Help Wanted,Issue-Bug,Area-UserInterface,Product-Terminal,Priority-3 | low | Critical |
766,890,606 | flutter | flutter emulators --launch cannot find and launch named iOS simulators | No emulator found that matches 'iPhone 12'.
```
$ flutter emulator --launch "iPhone 12"
No emulator found that matches 'iPhone 12'.
```
Only `$ flutter emulator --launch apple_ios_simulator` "works" but it just launches the Simulator app, not a particular simulator.
This code should be swapped to `xcrun si... | platform-ios,tool,t: xcode,P3,team-ios,triaged-ios | low | Minor |
766,978,949 | godot | Named Tiles, In The TileSet Editor, Rename Themselves Constantly | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if using non-official build. -->
3.2.3 Stable 64-bit Standard
**OS/device including version:**
<!-- Specify GPU model, dr... | bug,topic:editor | low | Critical |
767,001,718 | pytorch | PyEval_SaveThread: the function must be called with the GIL held, but the GIL is released | ## 🐛 Bug
```python
import torch
import torch.nn as nn
model = nn.Sequential(*(nn.Linear(512, 512) for i in range(100)))
inp = torch.rand(32, 512)
out = model(inp)
out.backward(torch.ones_like(out))
```
error
```
Fatal Python error: PyEval_SaveThread: the function must be called with the GIL held, bu... | triaged,module: pybind | low | Critical |
767,007,145 | pytorch | [jit] Support `torch.Tensor.numel()` and `torch.Size.numel()` properly in tracing | ## 🚀 Feature
[jit] Support `torch.Tensor.numel()` and `torch.Size.numel()` properly in tracing.
## Motivation
Currently, tracing `x.numel()` causes the number of elements of `x` to be statically recorded in the JIT code. This can break programs that expect tensors with dynamic shape. For example, tracing the fol... | oncall: jit | low | Major |
767,045,396 | pytorch | [JIT-DEBUG] Suppress GRAPH dump in profile-graph-executor | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Improve JIT's IR-transformation log by skipping graph dump if a transformation does not change any IR in `profiling_graph_executor_impl.cpp`
## Motivation
`PYTORCH_JIT_LOG_LEVEL` is a primary tool for JIT developers to debug problems... | oncall: jit | low | Critical |
767,047,549 | TypeScript | comment is incorrectly clickable | *TS Template added by @mjbvz*
**TypeScript Version**: 4.1.2
**Search Terms**
- definitionAndBoundSpan
- go to definition
- f12
---
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search exi... | Bug | low | Critical |
767,054,090 | rust | The compiler gets hopelessly confused on `enum S(usize);` | I think the error speaks for itself.
Here is the change I made, applied to 025f0e649e3a9869e42148ee8cf3041e24a13e8c.
```diff
diff --git a/src/librustdoc/clean/types.rs b/src/librustdoc/clean/types.rs
index 26b630440a1..4c2f3b5ce43 100644
--- a/src/librustdoc/clean/types.rs
+++ b/src/librustdoc/clean/types.rs
... | A-diagnostics,A-parser,T-compiler,C-bug,D-verbose | low | Critical |
767,109,359 | rust | Unexplained errors applying `-Z instrument-coverage` to some rustc `ui` tests | When experimentally adding `-Zinstrument-coverage` to the set of `ui` tests in the Rust source tree, most tests still pass; of those that don't, almost all failures can be explained, and some improvements have been made to surface known incompatibilities between `-Zinstrument-coverage` and other compiler options (see h... | A-testsuite,T-compiler,C-bug,A-code-coverage | low | Critical |
767,111,465 | ant-design | when double click the cell text to select, there will be a tab space when pasting | - [ ] 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://github.com/ant-design/ant-design/issues/14475#issuecomment-745015896](https://github.com/ant-design/ant-design/issues/14475#issuecomment-745... | help wanted,Inactive | low | Minor |
767,134,989 | flutter | flutter create fails when using flavors | ## Steps to Reproduce
<!-- Please tell us exactly how to reproduce the problem you are running into. -->
1. Add flavors to the flutter app. eg: dev and prod
2. Switch to beta channel to enable web
3. Try to bootstrap the web app with `flutter create .` as listed in https://flutter.dev/docs/get-started/web#add-w... | c: crash,tool,P2,team-tool,triaged-tool | low | Critical |
767,174,092 | node | [Bug] Remove the incorrect event listener. | * **Version**: v15.4.0
* **Platform**: MacOS V10.15.7
* **Subsystem**: lib/events.js
### What steps will reproduce the bug?
```js
const EventEmitter = require('events');
const ee = new EventEmitter();
// const symbol = Symbol('listener');
const symbol = 'listener';
const fn2 = function(...args) {
co... | events | low | Critical |
767,196,095 | godot | Editing exported dictionary variable in the inspector tab will change the index of its keys and values to A to Z format | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if using non-official build. -->
Godot 3.2.4 beta4
**OS/device including version:**
<!-- Specify GPU model, drivers, and th... | bug,topic:editor | low | Minor |
767,201,843 | pytorch | Uninitialized variable was not detected in ASAN CI config | Have a look at the following code snippet:
https://github.com/pytorch/pytorch/blob/25bc90628109699ebd72a5a4bf68750f98f9251c/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp#L990-L1000
Uninitialized value of `qscheme` variable defined on line 990 (`c10::QScheme` is an enum class) returned on line 1000.
T... | high priority,module: ci,triaged | low | Minor |
767,221,985 | pytorch | Apparent Memory Leak with torch.as_tensor | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
I am facing a very strange memory leak when using `torch.as_tensor` or `torch.tensor` only in a specific situation. I have placed a complete repro below, which demonstrates the issue clearly and reliably. The repro is reconstructed from an RL ... | module: memory usage,triaged,module: numpy,quansight-nack,module: tensor creation | medium | Critical |
767,273,109 | pytorch | Can we add try-except for list/slice indices even when auto_collation is True? | https://github.com/pytorch/pytorch/blob/39a10fb6528b355791993a67b895934e3c902765/torch/utils/data/_utils/fetch.py#L42-L47
Sometimes when we use automatic batching (auto_collation=True), we hope the dataset's `__getitem__()` is given a list a slice instead of single index one by one (like in line 44 above), because i... | triaged,enhancement,module: data | low | Minor |
767,276,732 | animate.css | Option to prefix animation name to avoid conflict with same CSS animation names | **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
# Problem
The problem I've encountered is when I added animate css cdn into my site, there is a portion of site has gone invisible. After debugging many ti... | feature request,v5 | low | Critical |
767,347,002 | TypeScript | in jsx/tsx, auto closing quotes not happen when cursor is at end of self closing tag. |
**TypeScript Version:** 4.1.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** auto closing quotes jsx tsx
**Code**
```tsx
<Table size=|/>
```
In vscode, place the cursor at `|` , input `'`
vscode setting should be "editor.autoClosingQu... | Bug,Help Wanted,PursuitFellowship | low | Critical |
767,356,982 | vscode | Support AppLocker | <!-- ⚠️⚠️ 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... | windows,under-discussion,workbench-run-as-admin,chromium,sandbox | low | Critical |
767,359,621 | opencv | Subset of MathOperatorTestFluid/MathOperatorMatMatTest.OperatorAccuracyTest test failed on amr64 | ##### System information (version)
- OpenCV => 4.5.1-pre (git 46e275dfe4616b07cd2492c17698d1a0be0aa6df )
- Operating System / Platform => Ubuntu 20.04, arm64-v8a
- Compiler => GCC 9.3
Hardware:
```
-- CPU/HW features:
-- Baseline: NEON FP16
```
##### Detailed description
Full li... | bug,platform: linux,platform: arm,category: g-api / gapi | low | Critical |
767,373,912 | opencv | Resize220_400TestCPU/ResizeTestFluid.SanityTest test fails on arm64 | ##### System information (version)
- OpenCV => 4.5.1-pre (git 46e275dfe4616b07cd2492c17698d1a0be0aa6df )
- Operating System / Platform => Ubuntu 20.04, arm64-v8a
- Compiler => GCC 9.3
Hardware:
```
-- CPU/HW features:
-- Baseline: NEON FP16
```
##### Detailed description
All cas... | bug,platform: linux,platform: arm,category: g-api / gapi | low | Critical |
767,385,510 | ant-design | props or state change Input Component placeholder able change but rule text unable change | - [ ] 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/antd-reproduction-template-forked-pyvl8?fil... | Inactive | low | Major |
767,386,589 | excalidraw | Native Tabbed mode in standalone Excalidraw PWA window | See this [Web App Manifest Issue](https://github.com/w3c/manifest/issues/737) for more background on this feature and note that this feature is distinct from what is being proposed in #1543. Think of #1543 more like the same file, but logically split into scenes (like the tabs in a spreadsheet), whereas the present #25... | enhancement,pwa | low | Major |
767,394,296 | opencv | Subset of Fluid/NV12PlusResizeTest.Test fails on arm64 | ##### System information (version)
- OpenCV => 4.5.1-pre (git 46e275dfe4616b07cd2492c17698d1a0be0aa6df )
- Operating System / Platform => Ubuntu 20.04, arm64-v8a
- Compiler => GCC 9.3
Hardware:
```
-- CPU/HW features:
-- Baseline: NEON FP16
```
##### Detailed description
Full li... | bug,platform: linux,platform: arm,category: g-api / gapi | low | Critical |
767,408,511 | excalidraw | Stroke width vs. stroke style | <img src="https://user-images.githubusercontent.com/2797254/102199593-17dfff00-3ec4-11eb-9114-176acd020173.png" width="300" />
While "Stroke width" changes both the border stroke and the texture stroke, "Stroke style" only changes the border stroke. So, _maybe_
**Stroke width
Border stroke style**
or
**Bor... | enhancement,discussion | low | Minor |
767,412,147 | storybook | Perf: Set sideEffects false for packages | Most of our libraries don't have side effects, and if we set `sideEffects` to false, Webpack can optimize it. More info: https://stackoverflow.com/questions/49160752/what-does-webpack-4-expect-from-a-package-with-sideeffects-false | maintenance,performance issue | low | Minor |
767,427,361 | flutter | Add IndexedSemantics support on pageview | <!-- 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,a: accessibility,f: scrolling,c: proposal,P3,team-framework,triaged-framework | low | Critical |
767,451,006 | deno | Normalize color palette across subcommands and tools | Each subcommand has their own palette to varying degrees; doc, test coverage and the repl for example do not agree on how to syntax highlight and it would be better if they were consistent. | cli,suggestion | low | Minor |
767,468,065 | rust | [ER] std::mem::array_len | This is an Enhancement Request, I'd like this since years. I'd like a const function (like `std::mem::size_of`) that given an array returns its length:
```rust
fn main() {
use std::mem::array_len;
let a = [0_u32; 10];
let b = [0; array_len::<&a>()];
}
```
Note that in this code the array 'a' isn... | A-type-system,T-lang,C-feature-request,T-types | low | Major |
767,538,334 | rust | Static lifetimes and variance: Associated const treated differently (and perhaps incorrectly?) | If the line after `this does not work` is commented out, _the remaining code does compile_.
If there is any other reason why the `const` can’t work, while the function can, then the error message is misleading.
```rust
struct SomethingStatic<T: 'static>(T);
trait Foo<'a> {
// this does work
const FUN:... | A-type-system,A-lifetimes,A-associated-items,T-lang,T-compiler,C-bug,A-variance,T-types | low | Critical |
767,608,358 | go | x/tools/cmd/goimports: adds flag control to delete extra blank lines before grouping | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15.2 darwin/amd64
</pre>
### Does this issue reproduc... | NeedsInvestigation,Tools | low | Critical |
767,623,621 | godot | Graphical glitch with two directional lights and ViewportContainer (background visible with inverted colors) | I don't know the term for this specific glitch, so if someone does know please amend the title.
Possibly related: #43760
**Godot version:**
```
3.2.3.stable.custom_build.662455ee8
```
**OS/device including version:**
```
Linux pc 4.19.0-12-amd64 #1 SMP Debian 4.19.152-1 (2020-10-18) x86_64 GNU/Linux
Ge... | bug,topic:rendering | low | Minor |
767,641,158 | flutter | Voice Over can select the wrong widget out of order when Column exists in a Row | The following code causes the second widget in the column to be selected first by Voice Over, followed by the first, followed by the button.
So VO selects `"Hi" -> "Hello to all!" -> "press me"` instead of `"Hello to all!" -> "Hi" -> "press me"`
```dart
import 'package:flutter/material.dart';
import 'package:fl... | platform-android,platform-ios,framework,a: accessibility,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework | low | Minor |
767,692,347 | go | mime/quotedprintable: support message with long lines | <!--
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.5 darwin/amd64
</pre>
### Does this issue reproduc... | NeedsInvestigation | low | Major |
767,743,264 | pytorch | PyTorch 1.7.1 on (macOS/python 3.9/conda) links libtorch_global_deps.dylib with libomp.dylib instead of libiomp5.dylib | install PT 1.7.1 via conda(!!!) with python 3.9 and 3.8 and checked `otool -L libtorch_global_deps.dylib`:
with python 3.8 it has @rpath/libiomp5.dylib and libiomp5.dylib exists because was [copied to the wheel package on OS X](https://github.com/pytorch/pytorch/blob/ff097299aeb4a7e2902000c70992f0abefb8a74e/setup.py... | module: binaries,module: build,triaged,module: macos | low | Major |
767,748,933 | pytorch | Bitcode enable for iOS | ## 🚀 Feature
Enable bitcode.
To be able to use bitcode to distribute iOS apps with pytorch lib.
To be able to create app with pytorch lib for watchOS and tvOS.
## Motivation
Bitcode is an intermediate representation of a compiled program. Apps you upload to iTunes Connect that contain bitcode will be compiled a... | module: binaries,triaged,module: ios | low | Major |
767,894,257 | terminal | "Toast" notifications | An idea I've been toying around with for a while, but haven't formalized.
["Toasts"](https://developer.android.com/guide/topics/ui/notifiers/toasts) are an Android UI paradigm - a transient notification that can be displayed to the user. These toasts can't be interacted with, and dismiss themselves after a brief ti... | Issue-Feature,Area-UserInterface,Product-Terminal | low | Minor |
767,911,973 | pytorch | Add global gradcheck setting | ## 🚀 Feature
There as two main use cases for gradcheck:
- User facing API to help them check their custom autograd
- Our own testing that use it to check that all our submodules work well with autograd
The problem that we encounter today while adding new features such as vmap and forward AD is that while we wa... | module: autograd,triaged,better-engineering | low | Major |
767,930,230 | flutter | [Autofill] Switch to `SecSharedCredentials` on iOS, and explore how we can expose it in the framework | ## Use case
I work on a multi-platform e-commerce product that is available in several countries and has many associated domains. When using `AutofillGroup` as recommended by the [docs](https://api.flutter.dev/flutter/widgets/AutofillGroup-class.html) to save login/signup credentials for the first time, they get sav... | a: text input,c: new feature,platform-ios,framework,f: material design,a: internationalization,c: proposal,P2,team-design,triaged-design | low | Major |
767,982,287 | flutter | Select device category/type as flutter run subcommand | As an extension to -d, it would be nice to have some easy to remember, easy to type high level subcommands to `flutter run` to point to specific device categories when flutter running.
- Running a naked `flutter run` is likely to bring up a slow target device selector to choose each time which adds friction.
- Even... | tool,c: proposal,a: annoyance,P3,team-tool,triaged-tool | low | Major |
768,020,685 | flutter | Some tests should manually select the local engine variant | See the discussion here https://github.com/flutter/flutter/pull/71721#issuecomment-743218994
@a-siva @mkustermann
@jonahwilliams who did some plumbing around this recently here https://github.com/flutter/flutter/pull/65802 | a: tests,c: new feature,tool,P2,team-tool,triaged-tool | low | Major |
768,021,253 | opencv | Crash inside arithm_ipp_cmp8u | ##### System information (version)
- OpenCV => 3.4.10
- Operating System / Platform => Ubuntu 16.04
- Compiler => gcc 5.4.0
##### Detailed description
We have a rare crash in our code. I don't have a way to repro it though. I just happens occasionally once every several day.
Here is a stacktrace I got:
<pr... | incomplete,needs reproducer | low | Critical |
768,024,442 | rust | asm!: lint on bare memory accesses without [] or offset | In Intel syntax mode without prefixes, writing `mov rax, some_symbol` is equivalent to `mov rax, [some_symbol]`: in both cases it refers to the memory pointed to by the symbol. However, I've seen multiple people think the former syntax obtains the address of the symbol instead. (Referring to the address of the symbol r... | A-LLVM,C-enhancement,A-lints,A-inline-assembly,T-compiler,F-asm | low | Critical |
768,044,396 | pytorch | A few years after #701 and PyTorch is still using implicit __all__ imports. | A quick search for `import *` yields hundreds of results.
I think explicit imports would be beneficial for many reasons.
Excerpts from the 2017 issue I mentioned:
>i dont think we'll be fixing this. (i dont know if there's a way to do it either).
_Originally posted by @soumith in https://github.com/pytorch/py... | module: typing,triaged,module: pybind,better-engineering,module: codegen | medium | Major |
768,078,172 | storybook | In the description column in the ArgsTable, view properties of TypeScript types like an interface, enum, etc. | For example, if a component accepts a props `user`, which is of type `User`, where I have defined a `User` interface. Below is the resulting output:
<img width="1040" alt="Screen Shot 2020-12-15 at 2 28 21 PM" src="https://user-images.githubusercontent.com/18446243/102263028-cf373e80-3ee1-11eb-9b0f-ee4226c4de4c.png">
... | feature request,typescript,addon: docs,block: argstable | low | Major |
768,104,924 | TypeScript | Many errors on JSDoc use entire tag as errorNode | This is made more obvious by #41877, which corrects the spans of tags to their full spans, making the error spans even more ungainly. Here's one example; see the errors.txt diffs in the linked PR for more.
**Expected behavior:**
```ts
/** @type {Gioconda} */
~~~~~~~~~~~~~~~~ // before #41877
... | Bug | low | Critical |
768,132,375 | flutter | Provide some metadata for creation of Layers to help detect jank | When a user examines a trace and finds that GPU/Raster time is higher than desired, they can see a set of layers that contributed to the frame:

In this particular case, the OpacityLayer looks suspiciousl... | c: new feature,framework,engine,a: debugging,d: devtools,P3,team-engine,triaged-engine | low | Major |
768,180,116 | pytorch | [doc] missing torch.pdist entry | ## 📚 Documentation
It is mentioned in `TorchScript Builtins`, but has no doc entry.
cc @jlin27 @mruberry @albanD @jbschlosser | module: docs,module: nn,triaged,small,module: distance functions | low | Minor |
768,206,026 | flutter | Show available but not launched emulators in "flutter devices"/"doctor" | `flutter devices` shows emulators that are running/booted. Add a section for available but not running emulators, with a hint to `flutter emulators --launch` to run it.
This is a really long list for iOS, maybe only do this for `flutter devices -v`? Ditto `doctor`? | c: new feature,tool,t: flutter doctor,c: proposal,P3,team-tool,triaged-tool | low | Minor |
768,206,660 | TypeScript | Unexpected behavior when static methods are used in an array | **TypeScript Version:** 4.2.0-dev.20201211 (also tested with 4.2.0)
**Search Terms:** static method(s)
**Code**
```ts
class S {
static f(a: number|string): void {}
}
function g(a: number): void {}
// Uncomment to see a different behavior of the `output` const type.
// type G = typeof g;
const y... | Bug,Fix Available | low | Critical |
768,213,997 | pytorch | Inserting named tensor into other fails | ## 🐛 Bug
Assigning a tensor to a view of another tensor (for insertion) fails because it implicitly calls tensor.view() which is not supported. This is so very basic functionality though so I wouldn't really consider this a feature request...
## To Reproduce
```
a = torch.zeros([1,2,3], names=('a', 'b', 'c')... | triaged,enhancement,module: named tensor | low | Critical |
768,247,162 | pytorch | clip_grad_norm_ performance regression | ## 🐛 Bug
code
```python
import torch
import torch.nn as nn
import time
print(torch.__version__)
model = nn.Sequential(*(nn.Linear(512, 512) for i in range(100))).cuda()
elapsed = 0
for _ in range(1):
inp = torch.rand(32, 512).cuda()
out = model(inp)
out.backward(torch.ones_like(out))
... | module: performance,triaged,module: norms and normalization | low | Critical |
768,260,711 | rust | Compiler hangs at ObligationForest | <!--
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 something like the code below:
[playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=2f6e4deaa95c0384060513f99678... | T-compiler,C-bug,I-hang,T-types | low | Critical |
768,272,412 | vscode | Git - Allow configuring git to use current VS Code version for editing commits | Issue Type: <b>Feature Request</b>
## Problem
We can [configure VS Code as the default git editor](https://code.visualstudio.com/docs/editor/versioncontrol#_vs-code-as-git-editor), but this currently hardcodes the `code` program name.
This means that if you are using the insiders version of VS Code and run a git... | help wanted,feature-request,git | low | Minor |
768,282,712 | flutter | Benchmark scaling marker_tasks and scavenger_tasks up/down based on CPU cores, and then enable it if it improves things | Examining traces on some four core lower end devices, I notice that concurrent marking in particular can eat up a lot of CPU on two threads, while Flutter is also trying to do rendering work on Raster/UI threads. This causes scheduling problems if e.g. the platform thread (or any other thread) needs to do work, and see... | engine,c: performance,customer: dream (g3),customer: money (g3),perf: memory,perf: speed,perf: energy,P2,team-engine,triaged-engine | low | Major |
768,297,214 | TypeScript | Add a module resolution mode to get module search path from Node.js executable itself | ## Search Terms
node path
module path
NODE_PATH
## Suggestion
TypeScript's effort to match Node.js's module resolution doesn't seem to always be accurate. Further, it can never be right if Node.js has been modified or configured in any way that does not match the emulation. It should be possible for TypeScri... | Suggestion,Awaiting More Feedback | low | Minor |
768,298,182 | flutter | Shader objects (Gradient and ImageShader) should implement == to encourage reuse | Other objects that map to a native object have a Dart wrapper that stores the attributes and lazily construct the native object when it is used to render or make a layer. That same mechanism allows the Dart wrappers to implement == so that when they are used in a Widget the various layers of Flutter can detect that the... | framework,engine,c: rendering,P2,team-engine,triaged-engine | low | Minor |
768,306,074 | storybook | Failed init with private packages | I'm unable to run `npx sb init` on an existing codebase due to errors with private packages (GPM).
```
error An unexpected error occurred: "https://registry.npmjs.org/my-private-repo: Not found".
```
The same packages work fine for normal `npm -i` or `yarn` CLI dependency management.
Is there a known require... | question / support,cli,has workaround,yarn / npm | low | Critical |
768,309,059 | rust | diagnostics: missing "consider borrowing here" when passing format!() as &str | ````rust
fn borrow_string(_s: &String) {}
fn main() {
borrow_string(String::new());
borrow_string(format!("Hello world"));
}
````
I noticed that rustc suggests borrowing for the first function call but not the second, although borrowing would fix both errors.
````
error[E0308]: mismatched types
-... | C-enhancement,A-diagnostics,A-macros,T-compiler,A-suggestion-diagnostics,D-papercut,D-newcomer-roadblock,D-terse | low | Critical |
768,314,659 | svelte | `file://` URLs should be treated as absolute when populating sourcemap sources | **Describe the bug**
If you pass `filename` and `outputFilename` options to `svelte.compile`, the `sources` property of the resulting sourcemap will contain a relative path from `outputFilename` to `filename` (and likewise for `cssOutputFilename`). This is the only thing `outputFilename` is used for.
`sources` is ... | stale-bot,temp-stale | low | Critical |
768,334,261 | flutter | Make it more obvious when images are taking more memory than they need to | For example, we could:
- Enable the `debugInvertOversizedImages` by default in debug mode.
- Make decoding an image at larger than full screen resolution opt-in only (today we default to decoding it at its native size).
- Warn users if an image is not used in the image cache for a specified time period (or before ... | framework,a: images,c: proposal,perf: memory,P2,team-framework,triaged-framework | low | Critical |
768,338,823 | pytorch | [RFC] DataLoader architecture updates and TarDataset implementation | # DataLoader architecture updates and TarDataset implementation
# Problem statement
This proposal aims to construct a modular, user-friendly, and performant toolset to address the ambiguous activity referred to as “dataloading” within PyTorch, a simplification attributable to the indivisibility of the DataLoader ab... | feature,module: dataloader,triaged | high | Critical |
768,380,805 | pytorch | [RFC] Add JIT graph fuser for oneDNN Graph API | ## Feature
This RFC proposes to add the infrastructure of a new PyTorch JIT graph fuser based on [oneDNN Graph API](https://spec.oneapi.com/onednn-graph/latest/introduction.html) (codename: LLGA).
**oneDNN Graph API** _extends_ oneDNN with a high-level graph API, as a complement to the **oneDNN Primitive API**. I... | oncall: jit | medium | Major |
768,392,057 | TypeScript | Allow transformers to run without type-checking | ## Search Terms
transformer, type check, transpileModule
## Suggestion
Run transformers, but skip type checking.
## Use Cases
The majority of compile times are type checking.
Some projects (e.g. Angular stylesheet integration) require transformers to run.
I would like to skip type checking, ala tr... | Suggestion,Awaiting More Feedback | low | Major |
768,396,498 | pytorch | [doc] how to prevent pytorch-nightly from being replaced by a released version on pip install | ## 📚 Documentation
I found an issue with pytorch-nightly and pip install of some packages depending on pytorch.
If a user installs pytorch-nightly using:
```
pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu110/torch_nightly.html -U
```
which allows for pre-released versions... | module: binaries,module: docs,oncall: releng,triaged | low | Major |
768,411,150 | opencv | Can not use ffmpeg on windows | ##### System information (version)
<!-- Example
- OpenCV => 4.5
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
-->
- OpenCV =>4.5
- Operating System / Platform => Windows 64 Bit
- Compiler =>Visual Studio 2017
##### Detailed description
<!-- your description -->
i ha... | question (invalid tracker),category: build/install | low | Critical |
768,434,714 | nvm | nvm v0.36.0+ interferes with sed | <!-- 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:
macOS Catalina
v10.15.7
#### `nvm debug` output:
<... | shell: zsh,needs followup | low | Critical |
768,536,368 | create-react-app | Error | ┌─[sambhrama@parrot]─[~]
└──╼ $npx create-react-app basaveshwar_hardwares
npm WARN registry Unexpected warning for https://registry.npmjs.org/: Miscellaneous Warning EHOSTUNREACH: request to https://registry.npmjs.org/create-react-app failed, reason: connect EHOSTUNREACH 104.16.26.35:443
npm WARN registry Using stal... | needs triage,issue: bug report | low | Critical |
768,544,057 | flutter | [video_player] Support for keyframe based seekTo option | My application needs to be able to loop a small segment of a video repeatedly. With the default frame perfect seekTo method that the video player plugin is currently using, each seek causes a considerable delay. Are there any plans to support an option to seekTo using keyframes (like ExoPlayer provides)? | c: new feature,p: video_player,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Major |
768,623,821 | ant-design | Image preview config does not working with Image.PreviewGroup | - [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/c9e5af93-09f2-421d-a8c1-3bbfeb1416fe-forked... | 💡 Feature Request,Inactive | low | Minor |
768,639,639 | flutter | Support for English fallback even when an unsupported language is selected | By @brickpop in https://github.com/flutter/flutter/issues/72284:
"
The point is that we have the strings, but the material widgets throw an error when the (unsupported) language is selected.
If some language is unsupported, would it be possible to at least bypass the error on the Material boundaries and use a fall... | framework,a: internationalization,c: proposal,P3,team-framework,triaged-framework | low | Critical |
768,674,971 | pytorch | Impossible to run tests target with LibTorch as dependency inside a cocoapods. | ## 🐛 Bug
Impossible to run tests target with LibTorch as dependency inside a cocoapods.
## To Reproduce
Steps to reproduce the behavior:
1. Download or clone my demo project at [https://github.com/hschouman/DemoPytorchLib](https://github.com/hschouman/DemoPytorchLib)
2. Go into Example folder
3. Do "pod ... | triaged,module: ios | 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.