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 |
|---|---|---|---|---|---|---|
768,709,306 | rust | Failed analysis of index dominance | rustc 1.50.0-nightly (f76ecd066 2020-12-15) on this code:
```rust
pub fn foo(data: &[u8], i: usize, j: usize) -> u8 {
if i < data.len() && j <= i {
data[j]
} else {
0
}
}
```
Can't remove the array bound test (compiling even with aggressive optimizations):
```asm
foo:
... | A-LLVM,I-slow,C-enhancement,T-compiler,A-mir-opt | low | Critical |
768,791,638 | flutter | gn host cannot generate --enable-vulkan | I'm trying to use the enable-vulkan engine in android.
1.`gn host
./flutter/tools/gn --unopt --runtime-mode=profile --android-cpu=arm64`
2. `gn android
./flutter/tools/gn --unopt --runtime-mode=profile --android --android-cpu=arm64 --enable-vulkan`
3. `ninja build
ninja -C out/host_profile_unopt_arm64
ni... | engine,d: api docs,P3,team-engine,triaged-engine | low | Major |
768,883,275 | pytorch | This error occurs occasionally during the run | ## 🐛 Bug
## Environment
torch1.7.0
Please copy and paste the output from our
[environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py)
(or fill out the checklist below manually).
You can get the script and run it with:
```
wget https://raw.github... | module: crash,module: cudnn,triaged | low | Critical |
768,902,929 | create-react-app | Random static/MEDIA directory vs static/media | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | needs triage,issue: bug report | low | Critical |
768,920,117 | go | go/types, types2: missing error for invalid cycle in function declaration | The following invalid cycle is currently detected by the compiler with the error "typechecking loop involving f".
```
func f([unsafe.Sizeof(f)]int) {}
```
https://play.golang.org/p/cfAFJHgsAkX
However no error is detected by go/types, both at master and in the `dev.typeparams` branch (where there have been som... | NeedsInvestigation | low | Critical |
768,943,912 | flutter | [webview_flutter] Enable Sandboxed JavaScript Injection | The plugin utilizes the **WKWebView** APIs that allow the App to inject JavaScript into web content without also leveraging platform APIs to sandbox the JavaScript from untrusted code.
Starting with iOS 14, **WKWebView** offers the following APIs that enable injecting JavaScript into a web page while also mitigating... | c: new feature,platform-ios,p: webview,package,c: proposal,P3,team-ios,triaged-ios | low | Critical |
768,990,110 | pytorch | Libtorch: Segmentation fault when running torch::jit::load | ## 🐛 Bug
When trying to load some of our models exported from Python using `torch.jit.trace` in a C++ program using `torch::jit::load("/path/to/model")` it causes a segmentation fault. The segfault seems to happen in `torch::jit::SourceImporterImpl::attributeAssignmentSpecialHandlingHack`
## To Reproduce
I'm ... | oncall: jit,weeks | medium | Critical |
769,075,691 | flutter | Remove exit() calls in integration_test integrationDriver() function. | <!-- 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: tests,framework,d: api docs,f: integration_test,P2,team-framework,triaged-framework | low | Critical |
769,090,009 | flutter | Investigate cross context image memory usage and determine if there is some way to mitigate | Customers have reported that turning cross context image decoding on led to increases in memory usage, and even now manually disabling it in the engine leads to lower memory usage when dealing with images.
We should see if there's any way to mitigate this. Cross context images allow for faster image rendering and le... | engine,c: performance,a: images,perf: memory,perf: speed,P2,team-engine,triaged-engine | low | Major |
769,120,507 | go | proposal: html/template: escape unquoted attributes by first quoting them | # Current behavior
We allow actions to appear in "[Unquoted Attribute](https://html.spec.whatwg.org/multipage/parsing.html#attribute-value-(unquoted)-state)" contexts.
This means this template is valid:
```html
<img src={{.}}>
```
To support this when we escape we have to take some extra care to escape **al... | Proposal | low | Major |
769,124,861 | rust | Impl Trait forces unnecessary lifetime bounds | It seems like impl Trait forces its own lifetime bound onto anything that it touches, even if that doesn't make sense.
```rust
struct Never<T>(fn() -> T);
impl<T> Iterator for Never<T> {
type Item = T;
fn next(&mut self) -> Option<T> {
None
}
}
fn actual_type<T>(f: fn() -> T) -> Never... | A-lifetimes,A-impl-trait,A-variance | low | Critical |
769,152,425 | pytorch | Pytorch 1.5+: Kernel dies / Segmentation Fault with torch.cuda.mermory_allocated() and torch.cuda.mermory_reserved() | ## Issue description
When using pytorch > 1.4 calls for torch.cuda.mermory_allocated() or torch.cuda.mermory_reserved() lead to instantaneous dying of Jupyter Notebook Kernels without any exception trace. If run as python script from shell, the exception is:
"Segmentation fault (core dumped)"
The same runs perf... | module: cuda,triaged,module: regression | low | Critical |
769,155,420 | flutter | [60Fps] is not reaching when calling the setState on every 200 milliseconds in simple application | ## Details
I have tested the fps with simple sample by calling the setState on every 200ms to update the count in StatefullWidget. I expect that it will reach 60fps on every call but so disappointed that it reach only 15 to 30 up and down gradually.
- I delpoyed the application in profile mode
- Please look into... | platform-android,engine,c: performance,perf: speed,P2,team-android,triaged-android | low | Major |
769,168,634 | pytorch | Write link in README.md | ## 🐛 Bug
The link in the file `README.md` on the main directory:
```

```
is not correct, it points to a non-image file (in fact a HTML file), but GitHub is able to correctly this information. In program... | module: docs,triaged | low | Critical |
769,173,400 | pytorch | Use METH_FASTCALL protocol in Python bindings | ## 🚀 Feature
Move python bindings to use `FASTCALL` methods.
## Motivation
Python 3.7 introduced the `METH_FASTCALL` and `METH_FASTCALL | METH_KEYWORDS` binding methods. ([API](https://docs.python.org/3/c-api/structures.html#METH_FASTCALL)) They skip tuple/dict construction and simply pass C arrays, and based o... | feature,triaged,module: pybind | low | Minor |
769,190,647 | pytorch | Callbacks may not be automatically synchronized in a single NCCL future chain | ## 🐛 Bug
I implemented PowerSGD gradient compression as a communication hook, and it is essentially a single future chain. Ideally, since NCCL won't kick off a callback until the precursor callback in the same future chain is completed, the user shouldn't need any explicit synchronization in this case.
However, ... | oncall: distributed,triaged | low | Critical |
769,200,576 | pytorch | Internal symbols are leaking from torch.nn.functional | ## 🐛 Bug
Currently symbols which are imported by `torch/nn/functional.py` are accessible through the namespace.
## To Reproduce
```
>>> import torch
>>> print(torch.nn.functional.has_torch_function)
<built-in function _has_torch_function>
```
<!-- If you have a code sample, error messages, stack trace... | triaged | low | Critical |
769,202,240 | pytorch | rank-0 gpu consume too high memory | Hi,
I am running distributed PyTorch on multi nodes with 8-GPUs per node.
Nvidia-smi shows that rank-0 GPU consumes extra 870*7 MiB memory
compared with other GPUs. See below.
Is there a way to reduce the extra memory size ? And they are for communication ?
0 N/A N/A 2695172 C [xarexec] ./dl... | oncall: distributed,triaged | low | Minor |
769,223,817 | rust | Confusing error message given for incorrectly-scoped invocation | This code, which is obviously bogus, unfortunately causes Rust to give an error message pertaining to associated types, even though it uses none:
````
struct A {}
impl A {
pub fn new() -> Self {
A {}
}
}
struct B {}
fn main() {
B::A::new(); // should be A::new()
}
````
Error:
... | C-enhancement,A-diagnostics,A-trait-system,A-associated-items,T-compiler,A-suggestion-diagnostics,D-confusing | low | Critical |
769,250,415 | electron | Remove `--headless` command line argument from Electron | From discussion with @jkleinsc (and indirectly @nornagon), it looks like if you want to run a headless Electron e.g. for CI testing, in Docker, etc. the approach is to use a virtual framebuffer e.g. xvfb and run it that way. That we allow the `--headless` argument seems to confuse users, as it implies that we support i... | enhancement :sparkles: | low | Minor |
769,265,196 | godot | Using Make Floating while in single-window move can make docks unrecoverable until editor restart | **Godot version:** 4.0 Git https://github.com/godotengine/godot/commit/9c39b51c5306333ba210c0a323f4198a258b51bd
**OS/device including version:** Fedora 33, GeForce GTX 1080 (NVIDIA 455.45.01)
**Issue description:**
It's possible to make editor docks floating in single-window mode, which can lead to an unusable... | bug,topic:editor,usability | low | Minor |
769,265,852 | pytorch | Bug report: INTERNAL ASSERT FAILED | ## Issue description
Bug report: INTERNAL ASSERT FAILED
## Code example
Minimal example which triggers the INTERNAL ASSERT FAILED:
n, m = 4, 6
x = torch.rand(n, m, 3)
y = torch.zeros(*x.shape, 3)
y.as_strided(x.shape, [y.stride(0), y.shape[-1] + 1]).copy_(x)
Traceback:
File ".../bug_report.py", line 4... | needs reproduction,triaged | low | Critical |
769,288,113 | electron | outerHeight shrinks every time you call setBounds with the current bounds for non-resizable windows (DPI related?) | ### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have sea... | platform/windows,bug :beetle:,component/BrowserWindow,10-x-y,11-x-y | medium | Major |
769,288,254 | PowerToys | [Color Picker Editor] alternate feedback method for copy event | When copying a color (in a specific format) it is good to have visual confirmation, but it would be nice if the "Copied to clipboard" message did not overlap with the list of formats. My ideas, in order:
1. Show a checkmark icon `E73E` in the copy button, for one second, **just like Snip & Sketch app**
2. Flash the... | Idea-Enhancement,Area-User Interface,Product-Color Picker | low | Minor |
769,357,443 | go | x/tools/go/analysis/passes/fieldalignment: suggested fix producing garbled output | <!--
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.5 darwin/amd64
</pre>
### Does this issue reproduc... | NeedsInvestigation,Tools,Analysis,Refactoring | low | Critical |
769,385,444 | pytorch | Segfault in torch.bincount | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
~~~python
import torch
torch.bincount(input =torch.tensor([9223372036854775807]))
~~~
The code snippet gives
~~~
Segmentation fault (core dumped)
~~~
## Expected behavior
expect no crash
## Environment
PyTo... | module: crash,triaged | low | Critical |
769,421,427 | flutter | Investigate integrating integration_test as Swift package instead of pod | [integration_test](https://github.com/flutter/flutter/tree/master/packages/integration_test) is currently included in a newly `flutter create`d pubspec. It is embedded in iOS projects via CocoaPods as is normal for a plugin (though really it should only be embedded in a test target, but that's a [fixable bug](https://... | a: tests,tool,t: xcode,f: integration_test,P3,team-tool,triaged-tool | low | Critical |
769,466,300 | TypeScript | Different behavior when declare property or method in a class about covariance | **TypeScript Version:** 4.1.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** In [ts doc - type compatibility](https://www.typescriptlang.org/docs/handbook/type-compatibility.html#function-parameter-bivariance), it seems like not mentioned about thi... | Docs | low | Critical |
769,493,901 | rust | Deprecation warning not easily avoidable when using elim form of enum with deprecated field | The code below warns for the use of the deprecated field:
```rs
enum A {
X{
#[deprecated(
since = "0.0.1",
note = "Don't use this")]
x: u32
}
}
fn takeA(a: A) {
match a {
A::X{x} => (),
}
}
```
```
warning: use of deprecated field ... | A-lints,T-compiler,C-bug,L-deprecated | low | Critical |
769,536,706 | electron | Feature: Text Field in MenuItem | <!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-... | enhancement :sparkles: | low | Minor |
769,678,584 | godot | ScrollContainer follow focus not properly following focused control. | <!-- 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.3
Godot 3.2.4 beta 4
**OS/device including version:**
<!-- Specify GPU model, d... | bug,topic:gui | low | Critical |
769,747,601 | go | strconv: allocation in the error case dominates the runtime | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes, even on yesterday's tip.
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go e... | Performance,NeedsInvestigation | low | Critical |
769,782,758 | pytorch | Pytorch mobile Vulkan API bug during call to ReLU | ## 🐛 Bug
I have a simple model in pytorch-nightly build (1.8.0a0+bdf360f). I traced it and try to run on android, using Java API.
It works on default device (CPU), but crashes on Vulkan (GPU). AARs for android are generated from the following commit f5b68e74d75c38d5e2044fc6b62112181080bb3f.
It reports: Tried to... | oncall: mobile,oncall: java | low | Critical |
769,811,636 | excalidraw | Separate Excalidraw canvas from application UI | This would make embedding much more powerful, and let me incorporate my own UI if I wanted to.
For instance, I want to incorporate exaclidraw in my app, but limited to only certain tools, and would like to use my own UI for tool selection.
If this is something that excalidraw thinks would be a useful addition, I ... | enhancement,package:excalidraw | low | Minor |
769,835,791 | TypeScript | Discriminated union narrowing fails when use template literal types as tag | <!-- 🚨 STOP 🚨 STOP 🚨 STOP 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps before lo... | Suggestion,Awaiting More Feedback | low | Critical |
769,897,784 | ant-design | Carousel当slidesToShow数量与实际item数量相同时,部分item的点击事件丢失。 | - [ ] 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/jiben-antd494-forked-miq4k)
### Steps to... | 🐛 Bug,Inactive | low | Minor |
769,898,087 | electron | geometry functions should be more consistent | <!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-... | enhancement :sparkles: | low | Minor |
769,915,205 | go | cmd/cgo: msvc created dll can be linked with cgo but executable fails with "The procedure entry point AddVectoredExceptionHandler could not be located" | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15.6 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><... | OS-Windows,NeedsInvestigation | low | Critical |
769,915,784 | vscode | Offer to open a workspace from empty explorer | The empty explorer currently looks like this:

I see how we want to save space and not show a "Open Workspace" button below the "Open Folder" button, but I think we could maybe leverage @sandy081 work and ... | feature-request,file-explorer,workbench-multiroot | medium | Major |
769,924,378 | godot | Shader uniforms has null as default value | <!-- 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.4 beta4
**Steps to reproduce:**
1. Create a 2D node with shader material
2. Paste thi... | bug,confirmed,topic:shaders | low | Major |
769,943,013 | TypeScript | Allow JSX intrinsics to have generic call signatures | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,In Discussion | low | Critical |
769,967,241 | rust | i686 GNU/Linux, seg-fault on executing rust tool-chain binaries | <!--
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.
-->
When I am running following,
`$rustc`
I see **Segmentation fault.** The same happens with other binaries as well.
This is the output of `uname -a` fr... | C-bug,O-x86_32,S-needs-repro | low | Critical |
770,015,795 | electron | No preflight requests when intercepting stream protocol for HTTP. | ### Preflight Checklist
* [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [x] I have sea... | platform/windows,platform/macOS,component/protocol,bug :beetle:,status/confirmed,11-x-y | medium | Critical |
770,033,293 | opencv | opencv can still read Orientation of my image, The EXIF of this image has been deleted! | ##### System information (version)
- OpenCV => 4.2.0.32
- Operating System / Platform => macos
- Compiler => python3.7
##### Detailed description
opencv can still read Orientation of my image,
The EXIF of this image has been deleted!

####... | question (invalid tracker) | low | Critical |
770,037,806 | next.js | Module not found: Can't resolve 'react' when importing local library with React as peerDependency | <!-- NOTE: This template is not optional. If you remove it or leave out sections there is a high likelihood it will be moved to the GitHub Discussions "Help" section -->
# Bug report
## Describe the bug
So I often develop libraries locally with React as a peer dependency. This, however, apparently doesn't work... | bug | medium | Critical |
770,041,707 | neovim | Spellsuggest=fast is still slow when using more than 1 language | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: NVIM v0.4.4
- `vim -u DEFAULTS` (version: 8.2.2050) works as it should, i.e. it is noticeably faster when using spellsuggest=fast, even with multiple spelllang configured.
- Operating system/version: macOS 10.15.7 Catalina
-... | bug,spell,needs:vim-patch | low | Major |
770,071,076 | rust | Compiler performance when compiling built-in derives is worse than desired | This is a follow-up issue to #80050 which was closed due to the implementation not being 100% correct.
Currently, adding `#[derive]` annotations for built-in traits such as a `PartialOrd` or `Debug` causes slower compile times than if the user implements these traits by hand. We should aim for getting these derives... | I-compiletime,A-macros,T-compiler | low | Critical |
770,098,695 | tensorflow | Invalid index list in batch_scatter_ops_test.py | **Describe the current behavior**
For current master the tests in batch_scatter_ops_test.py produce an invalid index list/tensor.
Check: https://github.com/tensorflow/tensorflow/blob/dec8e0b11f4f87693b67e125e67dfbc68d26c205/tensorflow/python/kernel_tests/batch_scatter_ops_test.py#L59-L62
The comment says, non-... | stat:awaiting tensorflower,type:bug,comp:gpu,regression issue,TF 2.11 | low | Critical |
770,110,120 | pytorch | jit tracer doesn't work with unflatten layer | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. Run the following code:
```
import torch ... | oncall: jit,weeks | medium | Critical |
770,131,182 | create-react-app | Could not create react app with custom react-scripts | ```bash
yarn create react-app react-app-demo --scripts-version 3.4.4
```
**then**
```
✨ Done in 48.51s.
internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module 'cra-template'
Require stack:
- /Users/jesse/workspace/react-app-demo/node_modules/react-scripts/scripts/init.js
- /Users/j... | needs triage,issue: bug report | low | Critical |
770,131,502 | pytorch | Improve AssertionError for torch.nn.functional.pad 'replicate' | Minor issue: the current AssertionError for torch.nn.funcional.pad mode='replicate' is confusing, if I run:
```
data = torch.zeros(100,3,63,64)
out = F.pad(data,(0,0,0,1,0,0,0,0),mode='replicate')
```
the error is:
```
AssertionError: 4D tensors expect 4 values for padding
```
given that there is a `value` in... | module: bootcamp,module: nn,triaged,enhancement,better-engineering | low | Critical |
770,141,508 | create-react-app | Update babel-preset-react-app package.json to use a more permissive dependency versions | ### Is your proposal related to a problem?
Currently `babel-preset-react-app` pulls in specific babel dependency of `7.12.3` for core, and `7.12.1` for several plugins.
As a result when installing packages using yarn it ends up pulling `7.12.10` for most packages, and a separate copy of `7.12.3` just for this pr... | issue: proposal,needs triage | low | Critical |
770,172,572 | rust | macOS bug with newest update | <!--
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.
-->
After installing the new macOS update (I am currently on macOS Big Sur 11.1), which also updated the XCode Command Line Tools, I am unable to compile anyth... | O-macos,T-compiler,C-bug | low | Critical |
770,229,402 | rust | Passing `--no-doc` to ./x.py test causes panic_abort tests to fail | Running `./x.py test --stage 1 --no-doc` on the latest version of nightly (#80114) causes the test suite to crash with the following error:
```
error: building tests with panic=abort is not supported without `-Zpanic_abort_tests`
error: aborting due to previous error
error: could not compile `panic_abort`
... | A-testsuite,T-bootstrap,C-bug | low | Critical |
770,233,808 | create-react-app | Bug: "useState, useEffect is called conditionally" -- while they aren't | Since an update to `react-scripts` 4.0.0, `react-scripts build` started failing for us in a weird way.
As viewed from an editor:

It fails in exactly the same way on CI — so it's not about my edi... | needs triage,issue: bug report | low | Critical |
770,241,157 | flutter | Refactor Spawn->Kill Integration test to be more independent | related issue: https://github.com/flutter/flutter/issues/72319
When I implemented the integration test to fix the attached issue I piggy backed on an existing integration test, the "Bogus Font Text" test. I planned on splitting it out but my environment became unworkable (I keep getting kernel version mixmatch erro... | a: tests,engine,P3,team-engine,triaged-engine | low | Critical |
770,241,697 | rust | Opt-out of std linking system libraries | In `library/std/src/sys/windows/mod.rs` some libraries, for either uwp or win32, get linked. The block that follows these linking statements contain no declarations, so to me it seems that these libraries are just linked for the sake of linking them, but it doesn't look like anything depends on them.
```rust
cfg_if... | A-linkage,T-libs-api,C-feature-request | low | Major |
770,244,901 | flutter | Spawn->Kill Integration test for Android | We implemented the test for iOS here: https://github.com/flutter/flutter/issues/72319 It was broken for a while because of errors in the embedder code. That points to a need to have an equivalent test for Android.
cc @xster | a: tests,platform-android,engine,P2,team-android,triaged-android | low | Critical |
770,286,422 | pytorch | Gunicorn preload flag not working with PyTorch library | Hello,
We have been developing a FastAPI application where we use some external libraries to perform some NLP tasks, such as tokenization. On top of this, we are launching the service with Gunicorn so that we can parallelize the requests.
However, we are having difficulties using [Stanza](https://stanfordnlp.github.... | module: nn,triaged | low | Critical |
770,286,643 | angular | enable whitespace preservation marker in XLIFF files by default | # 🐞 bug report
### Affected Package
The issue is caused by package `@angular/localize` / `@angular-devkit/build-angular`
### Is this a regression?
No
### Description
Localization files XLF (versions 1 & 2) are XML based and should default to using `xml:space="preserve"` rather than just allowing a us... | breaking changes,area: i18n,P3 | low | Critical |
770,302,499 | go | cmd/compile: missed opportunity to coalesce loads that compare with constants | ```go
func f(x *[16]byte) bool {
return x[0] == 0 && x[1] == 0 &&
x[2] == 0 && x[3] == 0 &&
x[4] == 0 && x[5] == 0 &&
x[6] == 0 && x[7] == 0 &&
x[8] == 0 && x[9] == 0 &&
x[10] == 0xff && x[11] == 0xff
}
```
This could compile on amd64 to something like MOVQ to load the first 8 bytes, TESTQ to che... | Performance,NeedsInvestigation,compiler/runtime | low | Minor |
770,325,593 | go | crypto/tls: Sending multiple messages via tcp4 connection encrypted by TLS1.3 doesn't work | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15.6 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><b... | NeedsInvestigation | low | Critical |
770,327,805 | flutter | Lower the default Dart VM old space size on Android | https://github.com/flutter/engine/pull/20473 introduced setting the `old_gen_heap_size` by default to roughly half of available physical memory.
This lowered the default from 32GB to something more sensible and safer, in a way that was intended to avoid introducing performance regressions for customers.
Ideally, ... | platform-android,engine,c: performance,perf: memory,P2,team-android,triaged-android | low | Major |
770,331,815 | pytorch | Batched gradient computation w/ vmap, feature rollup | ## 🚀 Feature
Support efficient batched gradient computation. The use cases for this are efficient jacobian and hessian computation. The way we support batched gradient computation is by performing a [`vmap`](https://pytorch.org/docs/master/generated/torch.vmap.html?highlight=vmap#torch.vmap) over the backward pass ... | triaged,actionable,module: vmap | low | Major |
770,350,601 | PowerToys | [KBM] Allow additional modifiers | I would like to be able to map keys to modifiers that are not in general use. There are a couple of ways I can think of doing this:
1. Allow keys to be toggled as modifier keys, e.g. I could map the key [right alt] to vk0, then toggle vk0 to be a modifier, then map vk0 + A to [HOME].
2. Invent new modifier keys e.g... | Idea-Enhancement,Product-Keyboard Shortcut Manager | low | Major |
770,410,243 | pytorch | Update jit/OVERVIEW.md | [jit/OVERVIEW.md](https://github.com/pytorch/pytorch/blob/master/torch/csrc/jit/OVERVIEW.md) is an extremely valuable resource to anyone interested in the JIT's internals.
A few parts of that document are incomplete and/or out-of-date though:
- TODO: differentiation, symbolic autograd
- TODO: fusion, operators
... | oncall: jit,weeks | low | Minor |
770,421,478 | godot | Key record mode keeps spamming errors if it's enabled when Animation is closed | <!-- 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.4 beta4
**Steps to reproduce:**
1. Add AnimationPlayer
2. Enable recording
 doesn't handle null characters (\u0000) correctly | **Godot version:**
`4.0.dev.custom_build.5332d212f`
**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`
**Issue description:**
When printing a string with a null character (`\u0000`), everything after that character is not printed. This issue i... | bug,topic:core | low | Minor |
770,479,940 | rust | Better suggestion for closure that needs to capture bindings, but not all | [Given](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=887faf2cf5ecc01cfbc3cbb1b1a8078a)
```rust
let numbers: Vec<i32> = (1..100).collect();
let len = numbers.len();
let _sums_of_pairs: Vec<_> = (0..len)
.map(|j| ((j + 1)..len).map(|k| numbers[j] + numbers[k]))
.f... | A-diagnostics,A-closures,T-compiler,A-suggestion-diagnostics,D-papercut,D-newcomer-roadblock,D-terse | low | Critical |
770,498,049 | youtube-dl | Re-add Nick.com video support | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | site-support-request,geo-restricted | low | Critical |
770,509,293 | opencv | warning: ‘cudaError_t cudaGLSetGLDevice(int)’ is deprecated [-Wdeprecated-declarations] |
- OpenCV => 4.5.0
- Operating System / Platform => Nvidia ubuntu18.04 aarch64
- Compiler => g++
When I compile opencv for opencl, there are some warnings . I want to konw how to fix warnings?
In file included from /home/nvidia/Downloads/opencv-4.5.0/modules/core/include/opencv2/core/private.cuda.hp... | category: build/install,category: gpu/cuda (contrib) | low | Critical |
770,542,839 | rust | #[should_panic]'s return-type check ignores procedural-macro transformations | When a procedural macro which transforms the return type of a function from `... -> SomeType` to `-> ()` is applied, the resulting function can be used with the attribute `#[test]` as expected. However, adding the attribute `#[should_panic]` to that test results in a compile-time error.
A (slightly simplified) motiv... | C-bug,A-proc-macros | low | Critical |
770,545,517 | storybook | Can storybook show typescript interface props without a component in mdx file? | **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 [...]
When I write typescript interface like this, I have to create a NoticeItem component in order to show NoticeItemProps.
```
export interface NoticeProps ext... | question / support,block: argstable | low | Major |
770,549,966 | pytorch | [JIT] Serialization forward compatibility tests | We should look into adding forward compatibility tests that check that old versions of JIT can import modules exported using new versions of PyTorch. If such tests already exist, we should make sure that they check that buffer and parameter metadata is preserved.
cc @gmagogsfm | oncall: jit,weeks | low | Minor |
770,606,043 | ant-design | <Pagination> support `total` to be `Infinity` or `undefined` | - [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
When the number of total data is unknown or actually infinity.
最右侧 ... 后面的页码不显示即可。
用Infinity表示数据无限,undefined表示数据数量未知。
可以在显示上... | Inactive | low | Minor |
770,626,099 | create-react-app | hanging after installing "node_modules" | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | needs triage,issue: bug report | low | Critical |
770,637,352 | flutter | Generalise AnimatedList functionality (AnimatedCollection ?) | ## Use case
I have a layout with a list of map overlay widgets (pin widgets) - I want to to animate in/out transitions when items are added/removed from a list.
## Proposal
The functionality is identical to AnimatedList - but I think this is just a common use case of a more general pattern, for eg. someone c... | framework,a: animation,f: material design,c: proposal,team-design,triaged-design | low | Minor |
770,669,996 | TypeScript | Provide a way to type a fix-length tuple-like generator/iterator | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,Awaiting More Feedback | medium | Critical |
770,670,209 | scrcpy | #low quality display issue in pocox3 | - [x] I have read the [FAQ](https://github.com/Genymobile/scrcpy/blob/master/FAQ.md).
- [x] I have searched in existing [issues](https://github.com/Genymobile/scrcpy/issues).
**Environment**
- OS: [Windows]
- scrcpy version: [e.g. 1.16.1]
- installation method: [Windows release...]
- device model:pocox3
... | quality | low | Critical |
770,696,743 | flutter | [google_map_flutter] Markers onTap area is shifted on screen when the app is registered as a game | Hello,
I am having an issue with Google Maps on my app in production. The app uses Google Maps to diplay markers, and users can tap on them to get more info.
The issue is : for some users, the clickable screen area is shifted a few pixels to te top left of the screen, making them miss the click most of the time (... | p: maps,package,a: production,team-ecosystem,P3,triaged-ecosystem | low | Major |
770,702,263 | flutter | Paragraph support for Canvas.drawShadow() | ## Use case
I need to render text with drop shadows to give it 3D look and export the final scene as PNG. While there is shadows support for Text widget (via TextStyle), there is no Canvas counterpart which could be recorded by PictureRecorder() and exported.
[Canvas.drawShadow()](https://api.flutter.dev/flutter/... | c: new feature,framework,engine,c: proposal,P3,team-engine,triaged-engine | low | Minor |
770,759,018 | opencv | How to load EfficientDet model with OpenCV dnn | ##### System information (version)
- OpenCV => 4.4
- Operating System / Platform => Windows 64 Bit and Ubuntu 20.04
- Tensorflow 2.3 and 1.15
Hello, i have generated a model by using https://github.com/google/automl/ code. Tensorflow 2.3 .
Optimize[#17384]('https://github.com/opencv/opencv/pull/17384'):
```
im... | question (invalid tracker) | low | Critical |
770,823,893 | go | cmd/link: -buildmode=c-shared not supported on linux/mips64le | <!--
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
1.15.6
</pre>
### Does this issue reproduce with the latest release?... | help wanted,NeedsFix,arch-mips | medium | Critical |
770,890,958 | godot | Tilemap Editor with Touchscreen 'draws line' between touched points | <!-- 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. -->
v3.2.3.stable.official
**OS/device including version:**
<!-- Specify GPU model, drivers, a... | bug,topic:editor,topic:input | low | Minor |
770,908,378 | deno | Using fetch for unix socket | Is it possible to use `fetch` for unix socket (e.g. to call [docker API](https://docs.docker.com/engine/api/))? If not, what is the best way to communicate via HTTP through unix socket? | suggestion,ext/fetch,needs discussion | medium | Major |
770,912,874 | go | x/pkgsite: Examples are missing the "Output:" label when example output provided | ### What is the URL of the page with the issue?
https://pkg.go.dev/strings#example-Compare
### What is your user agent?
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0
### Screenshot

Gradie... | stat:awaiting tensorflower,type:bug,comp:ops,TF 2.9 | low | Critical |
770,978,721 | create-react-app | How to run react app on VSCode live server? | There are a guy @chwasiq0569 who had been asking,
"How to run react app on VSCode live server?" here:
https://github.com/facebook/create-react-app/issues/8920
I've found the solution:
Just do not forget to put babel-link to your head element;
and do not use the E-explorer browser.
Like this: https://hacki... | issue: proposal,needs triage | low | Minor |
770,979,509 | create-react-app | react-scripts build: takes too long on CICD environment for a basic reactjs app (5mins minimum) | If you have a general question about Create React App or about building an app with Create React App we encourage you to post in GitHub Discussions instead of this issue tracker. The maintainers and other community members can provide help and answer your questions there: https://github.com/facebook/create-react-app/di... | needs triage | low | Critical |
770,989,656 | godot | ResourceLoader type_hint does not change type if already imported. | **Godot version:**
(2021-04-12) cee5414698b14be3ce837b4c9de3a3d500d28611
3.2.3
**OS/device including version:**
Manjaro 20.2
**Issue description:**
Running this code:
```swift
print(ResourceLoader.load("res://icon.png", "Image"))
```
Yields
`[StreamTexture:1180]`
`icon.png` is imported as a Texture.... | bug,topic:core | low | Minor |
771,010,504 | rust | MaybeUninit requires T: Sized but it should not | <!--
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
pub fn as_maybe_uninit<T: ?Sized>(t: &T) -> &MaybeUninit<T> {
unsafe {
mem::transmute(t)
}
}
```
I e... | T-lang,T-libs-api,A-raw-pointers | medium | Critical |
771,025,460 | TypeScript | Array spreads should be contextually typed | **TypeScript Version:** 3.8
**Search Terms:**
* array literal type
* array spread type inference
* implicit array literal type
* array destructuring type inference [sic]
**Response to Original Issue Post**
> We have "special" logic for unifying object literals in these cases; the spread syntax interferes... | Suggestion,In Discussion | low | Critical |
771,029,579 | rust | Bug in borrow checker with 'while let' | <!--
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 to simplify a `loop` and `match` combination using a `while let` expression, but the result fails to compile while the behavior should be the same.... | P-medium,A-borrow-checker,T-compiler,C-bug | low | Critical |
771,095,560 | rust | Confusing diagnostic for supertrait cycle | ```rust
pub trait Constant: From<Self::Value> + Into<Self::Value> + Copy + Eq + Ord {
type Value;
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=21e235bb28d5fe4e17898e3446fce4eb))
Errors:
```
Compiling playground v0.0.1 (/playground)
error[E0391]: cycle... | A-diagnostics,A-trait-system,T-compiler,D-papercut | low | Critical |
771,134,500 | opencv | Add USAC EstimationMethod::AffinePartial2D | ##### System information (version)
- OpenCV => 4.5
- Operating System / Platform => Ubuntu 20.04
- Compiler => g++ 9.3
##### Detailed description
A recent [GSOC contribution](https://docs.opencv.org/master/d1/df1/md__build_master-contrib_docs-lin64_opencv_doc_tutorials_calib3d_usac.html) added USAC options to ma... | feature,category: calib3d | low | Critical |
771,141,003 | pytorch | Improve error on missing/problematic Module member type annotation | ## 🚀 Feature
Error message here can be improved:
https://github.com/pytorch/pytorch/blob/daaf932a9934148273d90c7e8ca7ea087de689ee/torch/jit/_recursive.py#L272
Based on experiences, this error is always caused by
1) Module member type is not annotated.
2) Module member type is annotated to be unsupported types... | oncall: jit,days,TSRootCause:TypeChecking,TSUsability | low | Critical |
771,147,487 | flutter | Add the native keyboard actions bar such as the up/down/done buttons in iOS | <!-- 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,c: new feature,platform-ios,framework,engine,c: proposal,P3,team-ios,triaged-ios | medium | Critical |
771,212,360 | TypeScript | Number literal type sum bug | **TypeScript Version:** 4.12
**Search Terms:**
Sum, literal, not working correct
**Code**
```ts
namespace Shared {
export type Num = string | number | bigint;
export type Preformat<T extends Shared.Num, U extends string = `${T}`, Acc extends string[] = []> = U extends `${infer Head}${infer Rest}`
... | Needs Investigation | low | Critical |
771,216,989 | pytorch | Support scope in fx Node | ## 🚀 Feature
Scope support for a node in fx graph. scope means: full qualified path of the submodule the node belongs to.
## Motivation
Needed by quantization to assign the qconfig for a call_method node: https://github.com/pytorch/pytorch/blob/master/torch/quantization/fx/quantize.py#L315
## Pitch
```pyt... | triaged,module: fx | low | Minor |
771,226,205 | TypeScript | [ Feature Request ] - FileSystem<T> | ## Suggestion
FileSystem<T> type
Works with alot of simplicity
- If it hits a folder adds it into the 'object' type and its children as traversable keys
- If it hits a file thats a module it adds whatever its typeof import("..") type would be.
- Recursive
Similar behavior to import(".....") type.
Usage: F... | Suggestion,Awaiting More Feedback | medium | 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.