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 |
|---|---|---|---|---|---|---|
758,510,446 | pytorch | Domain Specific Batch Normalization | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Domain-specific Batch Normalization ([paper](https://openaccess.thecvf.com/content_CVPR_2019/html/Chang_Domain-Specific_Batch_Normalization_for_Unsupervised_Domain_Adaptation_CVPR_2019_paper.html), [github](https://github.com/wgchang/DSBN... | triaged,enhancement | low | Critical |
758,547,992 | deno | Implement Deno.permissions.requestAll | The basic idea for this is to allow for requesting multiple permissions as a block by using a array. This would allow a script (when well written) to request the permissions it knows it needs all at once instead of individually.
It's the difference between the new android model of asking for permission when the app ... | permissions,public API,suggestion | low | Major |
758,592,493 | next.js | [i18n] Can't link to/access pages in locale directories | # Bug report
## Describe the bug
It's not possible to link to or access a page located in a folder with the same name as a configured locale, e.g.
```
pages/
de/
impressum.tsx
```
## To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
1. Go to https://... | Internationalization (i18n) | low | Critical |
758,601,461 | pytorch | Unknown builtin op: torchvision::nms when loading scripted FasterRCNN | ## 🐛 Bug
Scripted FasterRCNN saved to a .pt-file cannot be loaded via torch.script.load due to Unknown builtin op: torchvision::nms.
Could not find any similar ops to torchvision::nms. This op may not exist or may not be currently supported in TorchScript.
## To Reproduce
Steps to reproduce the behavior:
... | oncall: jit | low | Critical |
758,715,620 | angular | Consider populating the router.config…children array the same for static and lazy loaded routes | # 🚀 feature request
### Relevant Package
This feature request is for @angular/router
### Description
Consider populating the router.config…children array the same for static and lazy loaded routes.
### Describe the solution you'd like
Some developers including myself like to create navigation elements, s... | feature,area: router,router: lazy loading,feature: under consideration,feature: votes required | low | Major |
758,800,148 | TypeScript | Richer Diagnostic Display Meta-Issue | This issue tracks a couple of different useful ideas for making diagnostics "richer" for display purposes. We've wanted some of these for a while, and they're partially inspired by testing tools like Jest and Mocha. We've also seen tools like Rust, Rome, and Flow prove them out to some extent.
Long-term, you could i... | Discussion,Domain: Error Messages,Meta-Issue | medium | Major |
758,810,838 | pytorch | CUDA error: illegal memory access Conv3d | ## 🐛 Bug
I get this error:
RuntimeError: CUDA error: an illegal memory access was encountered
with the following code:
## To Reproduce
Steps to reproduce the behavior:
import torch
torch.backends.cuda.matmul.allow_tf32 = True
torch.backends.cudnn.benchmark = True
torch.backends.cudnn.deterministic = F... | module: cudnn,module: convolution,triaged | low | Critical |
758,819,874 | go | flag: fails to parse flags with particularly-placed (but valid) double-quotes inside executable path on windows | <!--
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`)?
go version go1.15.2 darwin/amd64, cross-compiling for and running on win
I noticed this is... | OS-Windows,NeedsInvestigation | low | Critical |
758,824,872 | flutter | Handling non-square pixels | Some displays, especially in the embedded world (e.g. the [official Raspberry Pi touchscreen](https://www.raspberrypi.org/products/raspberry-pi-touch-display/)), have non-square pixels. Right now, we report the devicePixelRatio as a single number. I think we should add a field that reports the Size, and have devicePixe... | c: new feature,e: device-specific,framework,engine,a: quality,e: embedder,P3,team-engine,triaged-engine | low | Minor |
758,839,291 | rust | `overflow evaluating the requirement` when trait bound is added | ### Source
```rust
pub trait Baz<S> {
type Quaks;
}
impl Baz<[(); 8]> for bool {
type Quaks = u8;
}
impl<T, S> Baz<[S; 3]> for T
where
T: Baz<S>,
<T as Baz<S>>::Quaks: Copy,
{
type Quaks = [<T as Baz<S>>::Quaks; 3];
}
pub trait Bar
where
Self: Sized,
bool: Baz<Self>,
... | A-trait-system,T-compiler,C-bug,T-types | low | Critical |
758,869,611 | flutter | [ios] [integration_test] avoid using preprocessor macros to make it easier to use from Swift | The iOS implementation of integration_test uses a C preprocessor macro to make it easier to avoid some boilerplate. This makes it impossible to reuse that code from Swift, or to set breakpoints.
Rather than defining and encouraging users to use `INTEGRATION_TEST_IOS_RUNNER`, we should just have users call the right ... | a: tests,platform-ios,f: integration_test,P3,c: tech-debt,team-ios,triaged-ios | low | Major |
758,869,773 | opencv | accessviolationexception |
opencv version --- 4.1
windows 10
vs 2019
x64 release
code :
System::String^ __clrcall AlgoCpp::Class1::template_match(System::Drawing::Bitmap^ sourceImage_bitmap, int pos_no)
{
try
{
std::cout << std::endl;
std::cout << std::endl;
std::cout << "***************** template_match output from... | incomplete | low | Minor |
758,870,656 | flutter | Update the create template to better support integration_test with a proper testing target in the Xcode workspace | Depends on https://github.com/flutter/flutter/issues/71873, since we'd want to do this in both the Swift and ObjC templates.
Today, for a user to use integration_test without `flutter drive`, they would have to manually change their Xcode project. This could be added to the template so they don't have to do that, wh... | a: tests,c: new feature,platform-ios,tool,f: integration_test,P3,team-ios,triaged-ios | low | Minor |
758,906,817 | material-ui | Add useBreakpointValue hook | - [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 💡
Provide a JavaScript API as a counterpart to the CSS [sx breakpoint's API](https://next.material-ui.com/system/basics/#responsive-values).
## Examples 🌈
... | new feature,priority: important | medium | Critical |
758,916,038 | pytorch | [Poll] Support DistributedDataParallel (DDP) in PyTorch C++ API (libtorch) | We have seen several requests to support distributing training natively as part of the PyTorch C++ API (libtorch), namely [1](https://github.com/pytorch/pytorch/issues/40581), [2](https://github.com/pytorch/vision/issues/3052) (in torchvision repo), [3](https://discuss.pytorch.org/t/libtorch-c-mpi-example/39671/4), and... | oncall: distributed,feature,triaged,module: ddp | medium | Critical |
758,929,401 | rust | Tracking Issue for denying trailing semicolons in expression macro bodies | This is a tracking issue for MCP https://github.com/rust-lang/lang-team/issues/70
### What is this issue?
If you're a crate author who's been linked here, this issue tracks emitting a hard error when a trailing semicolon occurs in a macro used in expression position. See https://github.com/rust-lang/lang-team/iss... | A-macros,T-lang,C-tracking-issue,S-tracking-needs-to-bake | low | Critical |
758,936,919 | puppeteer | preferCSSPageSize option for PDF generation doesn't do anything | We have upgraded the Chromium 80.0.3987.0 - Puppeteer v2.1.0 to the newest Chromium 88.0.4298.0 - Puppeteer 5.5.0 to pursue the taggable PDF output. After the upgrade the following HTML ...
<html xmlns="http://www.w3.org/TR/REC-html40">
<head>
<style>
@page section
{size:612.0pt 792.0pt;
margi... | bug,confirmed,P3 | low | Major |
758,951,451 | pytorch | non-negative least squares solver feature request | ## 🚀 Feature
non-negative least squares solver.
## Motivation
Scipy has [nnls](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.nnls.html#scipy.optimize.nnls) which is useful when solving linear least squares with non-negativity constraint.
## Pitch
The solution to the least squares should ... | feature,triaged | medium | Major |
758,979,587 | pytorch | Scripting silently ignores methods of class derived from `NamedTuple` | ## 🐛 Bug
When a Python class derives from `NamedTuple`, its methods and staticmethods are silently ignored at compile time until their callsite.
## To Reproduce
```
import torch
from typing import NamedTuple, Tuple
class Pair(NamedTuple):
x: int
y: int
@staticmethod
def from_tuple... | oncall: jit | low | Critical |
758,981,554 | angular | Patch `requestIdleCallback` for ZoneJS | `requestIdleCallback` doesn't appear to be patched by ZoneJS. | area: zones,P3 | low | Minor |
758,990,996 | godot | Visual glitch with WorldEnvironment dof_blur_near & HTML | **Godot version:**
3.2.3 stable
**OS/device including version:**
i7-7700 CPU, Gforce 1080, gles 3
**Issue description:**
Visual glitch with **WorldEnvironment** in **canvas mode**, with **dof_blur_near enabled**, exported to HTML
**Steps to reproduce:**
create node2d main scene, add sprite, add WorldEnviro... | bug,platform:web,topic:rendering,confirmed | low | Minor |
759,036,964 | pytorch | Torch1.2 can't be downloaded! | The day before yesterday,I have successfully downloaded torch1.2 by the command provided by office,however I can't download it today using the same command 'pip install torch==1.2.0 torchvision==0.4.0'. Is there someone like me? | triaged | low | Minor |
759,042,600 | neovim | :messages shows "search hit BOTTOM, continuing at TOP" | Searches and jumps w/ `n`, `N` are written to the message log. I'm guessing (though am not sure) that `echomsg` is used to display the search information. Is there a setting I can toggle to use `echo` instead, so the search info still appears on the bottom but does not appear when I run `:messages`?
Example (in case... | enhancement,complexity:low,messages | low | Minor |
759,047,494 | material-ui | [Accordion] Cannot create custom <AccordionSummary> variants | - [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 💡
Right now it's not possible to customize `<AccordionSummary>` if your customization cannot be done via props adding styles and stuff into the `content` div.
... | new feature,component: accordion,ready to take | medium | Major |
759,072,115 | vscode | Pressing `shift-left/right` will exit multi-caret mode | When multiple carets are inserted, no matter with or without selections, pressing `shift-left` or `shift-right` exits the multi-caret mode (in some cases), and selecting texts only under the first caret, instead of initiate(or adjust) text selections for every caret.
Scenario:
* If entered multi-caret mode with `s... | bug,editor-columnselect | low | Critical |
759,072,313 | deno | Line number only coverage reporter | From discord (copy link is not working in safari, eh)
> Would it be a good idea to add a flag for deno test --coverage to tell it to output the line numbers of uncovered code instead of the actual lines of code? Maybe --line-numbers. Early in testing when there are many uncovered lines, it feels like seeing the unco... | cli,suggestion | low | Minor |
759,287,034 | storybook | Storybook get access to hidden tabs | **Describe the bug**
Hi everyone! Our design system contains documentation and stories apart from each other. (common documentation, like color palette, icons, etc.). The documentation section doesn't have a canvas tab at least we use out-of-box modules, like ColorPalette and it cannot be rendered in canvas. See mor... | bug,ui | low | Critical |
759,386,267 | PowerToys | [Feature Request] Add background acrylic to Color Picker | Seeing as Image Resizer and Color Picker PowerToys have both had a recent makeover to fit in with the Fluent UI guidelines it'll be nice to go a bit further and to introduce Acrylic into the mix with background acrylic.
I have tested this in a small sample app with [ModernWPF](https://github.com/Kinnara/ModernWpf) (... | Status-In progress,Area-User Interface,Product-Color Picker | low | Major |
759,413,559 | go | html/template: Tree is only updated after Execute is called | <!--
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 linux/amd64
</pre>
### Does this issue reproduce... | Documentation,NeedsFix | low | Critical |
759,420,152 | godot | Reverting a resource with editor doesn't properly update the editor (e.g. CollisionShape2D) | <!-- 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 beta3
**Issue description:**
When a resource has a dedicated editor (e.g. CollisionS... | bug,topic:editor | low | Minor |
759,431,763 | opencv | Support for array-like classes in Python | ##### System information (version)
- OpenCV => 4.4
- NumPy => 1.16
- Operating System / Platform => Windows 64 Bit
##### Detailed description
NumPy allows [writing custom N-dimensional array containers](https://numpy.org/doc/stable/user/basics.dispatch.html) by relying on `__array__` interface.
We can convert... | feature,category: python bindings | low | Critical |
759,432,536 | pytorch | Discrete Cosine Transform | ## 🚀 Feature
Dear developers, i hope that the new version supports Discrete Cosine Transform (DCT).
## Motivation
The third-party library torch-dct (https://github.com/zh217/torch-dct) who depends on the function torch.fft(), is the only method for implementing DCT with pytorch. However, Pytorch 1.7.0 has a new ... | feature,triaged | medium | Major |
759,446,941 | three.js | Inherit group render order | **Is your feature request related to a problem? Please describe.**
We frequently work with deep scene graphs featuring lots of 2D objects in the same Z-plane. Render order is our go-to feature to ensure things are drawn on top of each other in the correct order.
I began to notice that our code was getting littere... | Suggestion | low | Major |
759,463,680 | flutter | [gen_l10n] Documentation regarding plugins & modules | As stated in #70840 I kindly ask to update the documentation of the l10n integration regarding plugins and modules. For instance how synthetic package needs to be disabled etc. Thank you! | a: internationalization,d: api docs,P2,a: plugins,team-tool | low | Major |
759,522,161 | go | time: test timeout in TestAfterFunc on linux-s390x-ibm builder | [2020-12-08T01:46:45-9c91cab/linux-s390x-ibm](https://build.golang.org/log/be12aab3e9f6b31097a8836a8d920dd5438b7283)
```
panic: test timed out after 3m0s
goroutine 39 [running]:
testing.(*M).startAlarm.func1()
/data/golang/workdir/go/src/testing/testing.go:1702 +0xda
created by time.goFunc
/data/golang/wor... | Builders,NeedsInvestigation,arch-s390x | low | Critical |
759,541,155 | go | net: TestDialerDualStackFDLeak failures on BSD builders | [2020-06-24T16:12:25-320e4ad/dragonfly-amd64-5_8](https://build.golang.org/log/06647e92e9c2f02aa6eea41a370f73821b56d1a8)
[2019-10-21T23:36:02-a59808e/netbsd-arm-bsiegert](https://build.golang.org/log/31404a3b300b2c8478081555f3c9a53641b158bb)
```
--- FAIL: TestDialerDualStackFDLeak (0.30s)
dial_test.go:132: go... | OS-Dragonfly,OS-NetBSD,NeedsInvestigation | low | Critical |
759,544,460 | PowerToys | [PowerRename] variable pattern notation for parent folder | ## 📝 Description
Similar to [File Creation Date Replace Notation](https://learn.microsoft.com/en-us/windows/powertoys/powerrename#replace-using-file-creation-date-and-time), have a variable pattern notation `$PF` (Parent Folder) which can be used in the `Replace with:` field to add the parent folder name to the out... | Idea-Enhancement,Product-PowerRename | medium | Critical |
759,556,795 | go | x/tools/gopls: add go-to-examples and go-to-tests action | ### What did you do?
Tried to find examples/tests for the identifier under my cursor.
### What did you expect to see?
Some type of `GoExamples` or `GoTests` command to navigate to relevant example/tests.
### What did you see instead?
For examples, I had to open the http://pkg.go.dev and for tests I need ... | help wanted,FeatureRequest,gopls,Tools | low | Minor |
759,566,890 | pytorch | Automatically rerun tests with CUDA_LAUNCH_BLOCKING=1 when they fail with CUDA errors in CI | CUDA errors are delayed and may occur several calls after the real error site. This can make it difficult to debug in CI if you can't reproduce locally. One way to make debugging easier for people is to (1) make sure we synchronize at the end of each test and (2) rerun the failing test with CUDA_LAUNCH_BLOCKING=1 so th... | module: cuda,module: tests,triaged | low | Critical |
759,623,096 | PowerToys | Relocation of Notification Toasts on UltraWide Monitors (via FancyZones or othewise) | Hello all,
I've recently started using a 38" ultrawide monitor (3820x1600 resolution), and am using FancyZones to divide into 2 or more splits. This makes working on an ultrawide really productive.
However one issue there's seemingly no good workaround for is relocating notification toasts. They will only show u... | Idea-New PowerToy | low | Major |
759,627,162 | vscode | Downloading files and folders should preserve executable bit | **Describe the bug**
When you download a file from a remote (e.g. Codespaces), attributes such as the executable bit are removed. This is a (somewhat minor) annoyance when you are downloading files such as compiled binaries.
**To Reproduce**
Steps to reproduce the behavior with Codespaces:
1. Within a codespace, ... | feature-request,file-explorer,file-io | low | Critical |
759,663,526 | flutter | [WebView] Flutter webView plugin has no resourceId on web inputs below api 29 with SurfaceAndroidWebView() | Flutter webView plugin has no resourceId on web inputs below api 29 with SurfaceAndroidWebView(). It's ok on api 29 and further.
## Steps to Reproduce
1. Make a widget in the default demo app with webview_flutter: ^1.0.7 wich return a webView Widget :
```
WebView(
initialUrl: widget.initialUrl,
j... | platform-android,p: webview,package,e: OS-version specific,P2,team-android,triaged-android | low | Critical |
759,679,083 | opencv | Java: incorrect handling of enums with default values | PR: https://github.com/opencv/opencv_contrib/pull/2774
```
CV_WRAP static Ptr<BEBLID> create(float scale_factor,
BEBLID::BeblidSize n_bits = BEBLID::SIZE_512_BITS);
```
Compilation error:
```
In file included from /build/precommit-contrib_linux64/build/modules/jav... | bug,category: build/install,category: java bindings | low | Critical |
759,692,696 | flutter | [video_player] jumpy video playback only on iOS | The video https://cdn.vidcamera.io/videos/cb/1e/66/15/5f68cb17e0cb0a18ec57d62e/cb1e6615-a1de-4e57-95e6-37ee871317f5.mp4 is jumpy on iOS when I'm trying to play it
`VideoPlayerController.network('https://cdn.vidcamera.io/videos/cb/1e/66/15/5f68cb17e0cb0a18ec57d62e/cb1e6615-a1de-4e57-95e6-37ee871317f5.mp4');`
It's ... | platform-ios,a: video,p: video_player,package,has reproducible steps,P2,found in release: 2.2,found in release: 2.3,team-ios,triaged-ios | low | Major |
759,703,537 | rust | Backtraces through system libraries give bad symbols on macOS 10.15 | ```bash
$ git clone https://github.com/jrmuizel/bt-test/
$ cd bt-test
$ RUST_BACKTRACE=1 cargo run
thread 'main' panicked at 'food', src/main.rs:15:9
stack backtrace:
0: std::panicking::begin_panic
at /Users/jrmuizel/.rustup/toolchains/1.47.0-x86_64-apple-darwin/lib/rustlib/src/rust/library/std/s... | A-runtime,O-macos,C-bug | low | Major |
759,715,772 | excalidraw | Changing the sloppines of straight arrows/lines changing their width. It shouldn't | 
Not sure if other shapes are affected by it. | bug | low | Minor |
759,761,865 | vscode | Add exists() function to FileSystemProvider | <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
When trying to write a file to a file system, it... | feature-request,api,file-io | low | Critical |
759,773,166 | pytorch | Make the forward function of a nn.Module and/or a certain function to work with only float32 when used with autocast | Hi,
I'm working on a complex extension of PyTorch using the new complex tensors.
https://github.com/soumickmj/pytorch-complex
Now there are certain functions I want to be in a certain list (or do it using decorators) to make sure they are called only with float32.
Like, https://pytorch.org/docs/stable/amp.html#ops-... | module: nn,triaged,module: amp (automated mixed precision) | low | Critical |
759,776,665 | excalidraw | The text elements seems to have a background color set, but they shouldn't | When selecting multiple elements with the same color the background shows correctly the same color.. but when the group contains a text it doesn't show the color, which means that they have different background color. We should ignore that for text elements (and possibly for arrows, because with the lines if they are c... | bug | low | Minor |
759,778,463 | go | net/http: Request with canceled context produces undefined behaviour | **What version of Go are you using (go version)?**
```
go version go1.15.5 darwin/amd64
OS: macOS Catalina 10.15.7
```
**Does this issue reproduce with the latest release?**
Yes. Just do any request on canceled context.
**What did you do?**
Hi there. I got undefined behaviour of stdlib http client. The li... | NeedsInvestigation | low | Critical |
759,789,792 | node | [FR] Provide a Conan recipe | I would like to be able to easily embed nodejs in my C++ application using the C++ Embedder API. This integration would be much easier if I could add nodejs dependencies via Conan package manager.
It appears that there may have been some form of nodejs Conan recipe but it it quite a bit out of date.
The Plan-B a... | c++ | low | Minor |
759,805,821 | godot | Modifying a resource whose file is read-only keeps modification until editor is restarted | **Godot version:**
3.2.1 stable
**OS/device including version:**
Windows 10 x64
**Issue description:**
To reword the title, if a resource is modified and saved while its file is read-only, the editor does fail and report the problem, but the resource keeps its modified value, even if it is cleared and reloaded... | bug,topic:editor | low | Critical |
759,834,487 | terminal | initialRows/initialColumns still doesn't work quite right | By default WT starts with `"initialRows": 30', and this is true when there is not the tab row. After opening the first tab, tha tab row shows up and WT really displays 28 rows (it conserves the window height).
Is there an option to conserve the `initiaRows', 30, for example? (the window height should increase a bit... | Help Wanted,Issue-Bug,Area-UserInterface,Product-Terminal,Priority-2 | medium | Major |
759,867,012 | youtube-dl | Batch download screen output |
## Checklist
- [X] I'm reporting a feature request
- [X] I've verified that I'm running youtube-dl version **2020.12.09**
- [X] I've searched the bugtracker for similar feature requests including closed ones
## Description
I like the batch download function iterating through text files which contai... | request | low | Critical |
759,899,156 | PowerToys | [Color Picker] Option to close popup when clicking outside it | ## 📝 Option to make clicking outside of the color picker popup close it
The color picker is nice, and being able to select between multiple formats is good, too. But closing the popup whenever I pick a color gets annoying quickly. Being able to close the color picker popup when you click outside the box would be a ... | Idea-Enhancement,Product-Color Picker | low | Minor |
759,909,959 | godot | Spatial visibility has no effect on Node2D children | **Godot version:**
3.2.1 stable
**OS/device including version:**
Windows 10 x64
**Issue description:**
Node2D child under a Spatial. Hide Spatial parent, Node2D stays visible. Waste your time debugging the wrong object.
**Steps to reproduce:**
- Node2D child under a Spatial.
- Hide Spatial parent, Nod... | discussion,topic:core | low | Critical |
759,964,112 | transformers | Marge - Pre-training via Paraphrasing | # 🌟 New model addition
## Model description
| New model | low | Minor |
759,978,524 | kubernetes | ServicePort -> DNS SRV does not allow services with same name but different protocol | **What happened**:
Creating a service with two ports that have the same name, but different protocol, fails:
```
$ cat service-test.yaml
apiVersion: v1
kind: Service
metadata:
name: service-test
labels:
app: service-test
spec:
selector:
app: service-test
clusterIP: None
ports:
- na... | kind/bug,sig/network | medium | Critical |
759,986,489 | transformers | AlbertTokenizer handles special tokens incorrectly | If I download the pretrained vocab `https://huggingface.co/albert-base-v1/resolve/main/spiece.model` to the local file system and use the following snippet, the tokenizer does not handle the special tokens properly:
```
tokenizer = AlbertTokenizer('spiece.model')
tokenizer.tokenize('[CLS] Hello World ! [SEP]')
['▁[... | Good Second Issue | low | Major |
760,028,411 | flutter | Detect hidden-camera | I'm not sure that it's a question, feature request or bug report!
I am using `SafeArea` in flutter, But in galaxy-s10-plus my view is under camera, Both `MediaQuery.of(context).viewInsets` and `MediaQuery.of(context).padding` are zero
How can I detect camera padding in flutter?
 of this repository and believe that this is not a duplicate.
### Reproduction link
[](https://codesandbox.io/s/antd-reproduction-template-forked-f555x?fil... | Inactive | low | Minor |
760,109,317 | transformers | 🌟 CTRLsum | # 🌟 New model addition
## Model description
>Current summarization systems yield generic summaries that are disconnected from users’ preferences and expectations. To address this limitation, we present **CTRLsum**, a novel framework for controllable summarization.
>
> Our approach enables users to control mul... | New model | low | Major |
760,121,345 | storybook | Controls and Docs not working when used 'export default...' | **Describe the bug**
Controls and Docs not working when used 'export default...'
**Code snippets**
1. Component (export default ButtonNamed),Controls and Docs not working
```javascript
import React from 'react';
import './button.css';
interface ButtonNamedProps {
/**
* Is this the principal call to act... | bug,typescript,block: argstable | low | Critical |
760,133,493 | pytorch | Add List Type Data through add_hparam method in torch.utils.tensorboard.SummaryWriter | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Commanly, I use `SummaryWriter.add_hparam(hparam_dict,metric_dict)` to record the hyperparamters and result of experiment.
But in pramameter `hparam_dict`, we can not record `List` value. The type of the value only can be one of `bool`, `... | feature,triaged | low | Critical |
760,165,972 | vscode | Respect the system setting for mouse scroll speed | <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been... | feature-request,trackpad/scroll,editor-scrollbar | medium | Critical |
760,168,069 | godot | Git plugin blocks Windows export from Linux (due to the editor attempting to export a GDNative plugin for a platform it's not compiled for) | <!-- 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, 3.2.3 mono
**OS/device including version:**
<!-- Specify GPU model, drivers, and th... | bug,topic:gdextension,topic:export | low | Critical |
760,197,278 | go | cmd/go: unresolved import masks vet warnings in 'go test' and 'go vet' | ### 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><... | NeedsInvestigation,GoCommand,Analysis | low | Critical |
760,198,477 | ant-design | The form is stuck when using type=url verification | - [ ] 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/basic-usage-antd492-forked-epl2d?file=/inde... | help wanted,Inactive | low | Major |
760,213,609 | create-react-app | [Bug] caused the create-react-app web page become freezing. | ```json
"react-error-overlays": "6.0.8"
"mobx": "5.15.7",
"mobx-react": "6.3.1",
```
Our project are built with **MobX** & **MobX-React** when the DOM diff changed frequently. The page looks like freeze, and the other callstack like, setTimeout, Promise, console.log, will be execute very slowly.
We di... | needs triage,issue: bug report | low | Critical |
760,238,918 | storybook | ArgsTable with Property and Event with the same name | **Enviroment**
- Storybook version 6.1.10
- Web Components
**Describe the bug**
The ArgsTable with a property and an event with the same name only display the event.
**To Reproduce**
This is the `custom-elements.json`:
```json
{
"version": "experimental",
"tags": [
{
"name": "gy-te... | bug,web-components,block: argstable | low | Critical |
760,245,876 | create-react-app | including external javascript libraries in CRA project |
Hello world !
I've downloaded a theme which have external javascript libraries. i.e : app.min.js , toast.js, slider.js , datatable.js .
I created a **CRA project** and i copied all the external javascript libraries and css files in index.html of the public folder.
After, I copied all the html from index.html (... | needs triage | low | Minor |
760,261,599 | TypeScript | expose API for --explainFiles | <!-- 🚨 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 |
760,263,625 | ant-design | [Tabs] tab width is not correct in IE11 | - [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/huadong-antd492-forked-vdi1j)
### Steps ... | Internet Explorer,help wanted,Inactive,IE | Firefox | Safari | low | Minor |
760,264,621 | pytorch | swa_utils.bn_update is too opinionated in how it calls the model | ## 🚀 Feature
Add a `call_fn` kwarg to [`torch.optim.swa_utils.update_bn`](https://github.com/pytorch/pytorch/blob/master/torch/optim/swa_utils.py#L115) with default `None`.
## Motivation
This function when used with custom models that have a non-standard call signature throws errors like
```
TypeError: fo... | feature,module: optimizer,triaged | low | Critical |
760,267,771 | godot | Text hint on code editor is hidding under visible area |
3.2.4-beta macOS (from Github e8fb0c32304a3dc68a541894276c2ebd2e70b8fb)
Branch (3.2)
<img width="1165" alt="image" src="https://user-images.githubusercontent.com/582516/101625243-e5349300-39f9-11eb-9dd4-59e44ab8adab.png">
OS: macOS Big Sur 11.0.1 20B50 x86_64
Kernel: 20.1.0
CPU: Intel i9-9880H (16) @ 2.30G... | bug,topic:editor,topic:gui | low | Minor |
760,343,415 | svelte | @html directive doesn't work as direct child of svg | **Describe the bug**
If I have a component like this
```svelte
// dynamic.svelte
{@html `<circle cx="500" cy="500" r="200"></circle>`}
```
and try to render it like this
```svelte
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080">
<Dynamic />
</svg>
```
The circle isn't rend... | stale-bot,temp-stale | low | Critical |
760,360,434 | TypeScript | `esModuleInterop: true` cause runtime error | Hi there, problems happened when I toggled `esModuleInterop` flag for my project, I have to because one library it depends enabled this flag.
**TypeScript Version:** 2.7+
**Search Terms:**
esModuleInterop
allowSyntheticDefaultImports
**Code**
```ts
import * as apmStar from 'elastic-apm-node'
import Sen... | Needs Investigation | low | Critical |
760,383,992 | PowerToys | When plug the external storage or mount the ISO/SMB/NFS,show the drive icon in desktop | like in macOS
<img width="122" alt="截屏2020-12-09 下午10 33 52" src="https://user-images.githubusercontent.com/14149967/101643017-a4c32c80-3a6e-11eb-826d-4915f32452bd.png">
when try to “delete(like ctrl + D)” the icon,the drive will remove/umount | Idea-New PowerToy,Product-Tweak UI Design | low | Minor |
760,414,868 | go | net/http: Memory usage increases on client side when server does not read request's body | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15.6 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes, go1.15.6 is the latest release at the moment.
### What operating system and processor architecture are you using (`go env`)?
<deta... | NeedsInvestigation | low | Critical |
760,430,305 | flutter | Better/More efficient Keyboard accessibility for TimePicker dialog. | 
## Use case
We have a web app where users can add events to an calender.
The user needs to pick a start and end time for this event.
We want this time picking to be ac... | framework,f: material design,a: accessibility,f: date/time picker,c: proposal,f: focus,P2,team-design,triaged-design | low | Major |
760,432,239 | rust | Cargo bench eats excessive memory on WSL2 ubuntu | This issue supersedes https://github.com/rust-lang/cargo/issues/8961
## TL;DR
This can be worked around by setting `CARGO_BUILD_JOBS`.
## Description
Briefly, `cargo bench` eats excessive memory on WSL2 with a 10-core 20-thread i9-10900K Intel CPU and 32GB memory, due to:
1. Since the number of CPUs are ... | T-compiler,I-compilemem,C-bug,A-const-eval | low | Critical |
760,452,511 | flutter | ValueListenableBuilder with an Animation<> rebuilds even when the value didn't change | You can see this running at https://codepen.io/ravenblack/pen/OJRROgm
```
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: MyWidget(),
),
);
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaff... | framework,a: animation,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework | low | Major |
760,479,781 | pytorch | NCCL Error when training with 2x 3090s. | Cross post from here: https://discuss.pytorch.org/t/nccl-error-2-when-training-with-2-gpus/105465 -- because I'm getting a bit desperate in terms of getting to the bottom of this.
I am training a model with 2 GTX 3090 GPUs. Driver is 455.32.00, CUDA version is 11.1, and torch.cuda.nccl.version() yields 2708.
To e... | module: multi-gpu,module: cuda,triaged | medium | Critical |
760,519,209 | opencv | cv::normalize dst parameter type | ##### System information (version)
<!-- Example
- OpenCV => 4.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
-->
- OpenCV => 4.5
- Operating System / Platform => Ubuntu 20.04
- Compiler => g++ 9.3.0
##### Detailed description
The parameter `dst` to `cv::normalize()` is ... | category: core,RFC,future | low | Critical |
760,564,390 | godot | Light2D inside Light Occluder lights it up | <!-- 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 Official
**OS/device including version:**
<!-- Specify GPU model, drivers, an... | discussion,topic:rendering,documentation,topic:2d | low | Minor |
760,583,818 | pytorch | [RFC] RemoteTensor: Use Remote Devices as Local Devices | Please comment below if `RemoteTensor` can be useful to your application. Please also let us know if the preliminary API thoughts missed anything. Thx!
## Motivation:
The [RPC package](https://pytorch.org/docs/master/rpc.html) offers a flexible way to allocate data and run computation on remote machines and remot... | oncall: distributed,feature,triaged,module: rpc | low | Major |
760,586,588 | material-ui | [Autocomplete] Differentiate hover & keyboard states | With the current implementation, if you hover over an option, and then move your cursor outside of the option menu, the last option you were hovering over remains highlighted. I would like to remove this highlight programmatically.
- [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of... | new feature,component: autocomplete,ready to take | medium | Critical |
760,662,442 | pytorch | [RFC] Integrate DeepSpeed CUDA kernels | **Motivation**
On May 27th DeepSpeed [achieved the fastest BERT training time.](https://www.deepspeed.ai/news/2020/05/27/fastest-bert-training.html) with a claimed speedup of 28% over [NVIDIA BERT](https://github.com/NVIDIA/DeepLearningExamples/blob/master/PyTorch/LanguageModeling/BERT/modeling.py), which is similar... | feature,triaged | low | Major |
760,706,213 | flutter | Material text selection menu overflow buttons should be full-width | Tapping in the empty space to the right of "Custom button 2" should hit the button. Currently, it has no effect.
<img width="391" alt="Screen Shot 2020-12-09 at 1 59 45 PM" src="https://user-images.githubusercontent.com/389558/101693752-ec25ca80-3a26-11eb-81ce-deafb7852883.png">
### To fix this:
1. Make the... | a: text input,framework,f: material design,team-design,triaged-design | low | Minor |
760,714,694 | godot | Huge memory consumption when importing large obj files | **Godot version:**
3.2.3
**OS/device including version:**
OS: ArchLinux
Linux Kernel: 5.4.80-2-lts
GPU: RX Vega 64
drivers: mesa-20.3.0-3
backend: GLES3
**Issue description:**
I imported a ~600MB OBJ file in Godot. It filled up nearly my entire 32GB of RAM. Importing the same 3D model in Blender only consu... | bug,topic:import | low | Major |
760,723,166 | material-ui | [Popover] Repositions After Pinch Zoom Safari Mobile | <!-- Provide a general summary of the issue in the Title above -->
When selecting an item from a MenuItem, if you try to zoom in it will go out of sight and when you zoom back in, the list will be repositioned away from its original position
<!--
Thank you very much for contributing to Material-UI by creating an... | bug 🐛,component: menu,component: Popover,component: select | low | Critical |
760,724,734 | flutter | Asynchronous Shell and VM creation | Some previous work and exploration were done in this area such as https://github.com/flutter/engine/pull/20433, https://github.com/flutter/engine/pull/18047 and https://github.com/flutter/engine/pull/20142.
1- Split out a path to asynchronously create the VM in the FlutterEngineGroup ahead of engine creation.
@... | platform-android,platform-ios,engine,P3,team-engine,triaged-engine | low | Minor |
760,725,388 | flutter | Selection toolbar/handler should disappear when it is opened and user clicks outside of it | ## Steps to Reproduce - Issue /1
1. Run the code bellow as mobile-web (or go to this deployed website: https://epic-thompson-badb9e.netlify.app/#/).
2. Select text in the text_field/selectable_text.
3. Tap outside of the text_field/selectable_text
**Expected results:** The selection toolbar/handler should disap... | a: text input,framework,f: material design,a: fidelity,has reproducible steps,P2,found in release: 1.22,found in release: 1.25,found in release: 2.11,team-framework,triaged-framework | low | Major |
760,725,994 | flutter | Create a Software Transactional Memory sharing mechanism between platform and isolates | Described in https://docs.google.com/document/d/1NwiZPWHd1te46eP2GWwIezDV9CdMQkODAMuF5kWdtLw/edit#heading=h.ydac865pjhl of flutter.dev/go/multiple-engines
Create a solution to let isolates share data without using the Isolate SendPort mechanism manually.
| c: new feature,platform-android,platform-ios,framework,engine,p: pigeon,P2,team-engine,triaged-engine | low | Major |
760,727,505 | flutter | Garbage collect only when all isolates are idle | We're currently signaling the Dart garbage collector to collect when the animator/engine is notifying idle. To avoid one isolate signaling idle and causing a garbage collection which would jank another rendering isolate, alter the logic to let the garbage collection only occur when all isolates are idle.
https://gi... | platform-android,platform-ios,engine,dependency: dart,P2,team-engine,triaged-engine | low | Major |
760,732,566 | flutter | Share image cache between multiple engines | For multiple engines in a FlutterEngineGroup, each has an instance of [ImageCache](https://api.flutter.dev/flutter/painting/ImageCache-class.html) and may cause undesirable effects. For instance, if 3 engines with 3 separate ImageCaches specified a maximum size of 100MB each, there might be a memory footprint of 300MB ... | platform-android,platform-ios,engine,a: images,perf: memory,P2,team-engine,triaged-engine | low | Major |
760,757,786 | PowerToys | Option to disable light dismiss for Action Center | ## 📝 Add an option to disable Action Center auto dimiss
There are many cases where someone would like to have the Action Center still open when working on other stuff. A simple registry hack allows to disable the auto-dismiss feature of the Action Center and you can toggle it open/closed from its icon in the taskba... | Idea-New PowerToy,Product-Tweak UI Design | low | Critical |
760,765,455 | rust | Associated types weirdness | <!--
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 have two code snippets [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=ee9edf7f1486729032d7c8a3e28e9f14)
```rust
... | A-trait-system,A-associated-items,C-bug,T-types | low | Critical |
760,768,384 | rust | asm! doesn't accept `offset` syntax, but gcc does | In Intel-syntax assembly, to refer to the address of a symbol rather than the memory pointed to by that symbol, you have to write `offset symbol` rather than just `symbol`. For instance, `mov rax, 1f` is equivalent to `mov rax, qword ptr 1f` and moves the memory pointed to by `1f` into `rax`, while `mov rax, offset 1f`... | A-LLVM,O-x86_64,A-inline-assembly,T-compiler,C-bug,F-asm | 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.