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 |
|---|---|---|---|---|---|---|
387,965,588 | angular | feat(service-worker): minify SW script (+ sourcemaps) | Currently, the [SW script][1] generated by `@angular/service-worker` is unminified. This was intentional so that it was easier to debug and the stack traces (that people having issues might provide) would be easier to interpret. This is not a major concern, since the SW scripts are aggressively cached by the browser an... | feature,area: service-worker | low | Critical |
388,008,278 | TypeScript | Using VS Code Go to Declaration support | VS Code 1.30 adds support `go to declaration`. This supplements the existing `go to` commands we already have for TypeScript:
* `go to definition`
* `go to type definition`
* `go to implementation`
Although this was added mainly to support languages like C++, I wonder if typescript tooling could also use `go to... | Suggestion,In Discussion,Domain: Symbol Navigation | low | Minor |
388,063,179 | pytorch | Test OpenCV4 in CI | It's not tested, evidence https://github.com/pytorch/pytorch/pull/14356
cc @ezyang @seemethere @malfet @walterddr @pytorch/pytorch-dev-infra | module: ci,triaged | low | Minor |
388,071,929 | vscode | Endless 100% CPU when search/replace many TS files at once | - VSCode Version: insiders
- OS Version: macOS 10.14
Steps to Reproduce:
1. open the `vscode` workspace
2. search for "`copyright`" in `*.ts`
3. replace with "`copyright2`"
4. run and wait
=> the TS extensions seems to go up to a 100% and stays there without ever recovering.
Full command line:
`bpase... | bug,upstream,typescript,javascript,freeze-slow-crash-leak,verification-found,workspace-edit | low | Major |
388,098,374 | pytorch | Negative indexing for nn.Embedding inputs | ## ๐ Feature
<!-- A clear and concise description of the feature proposal -->
Negative indexing for nn.Embedding inputs
## Motivation
<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub... | module: nn,triaged,needs design,function request | low | Critical |
388,108,462 | go | cmd/go: improve error message from '-mod=readonly' | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.2 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are ... | NeedsInvestigation,GoCommand,modules | low | Critical |
388,128,335 | flutter | Requesting Feature: Add DoubleTapDetails params in GestureDoubleTapCallback like GestureTapDownCallback | for now, if a Gesture was detected as a DoubleTap, the previous TapDown event will not trigger onTapDown. I think it is reasonable.
BUT here is the problem: I want to add a icon and play animations on the double-tap point of the screen but GestureDoubleTapCallback doesn't provide any tap information and I also can n... | c: new feature,framework,f: gestures,P2,team-framework,triaged-framework | low | Minor |
388,211,396 | godot | Online Docs button and other docs links should redirect to translated pages. | **Godot version:**
3.1 alpha 2
**OS/device including version:**
Windows 10
**Issue description:**
When I have open Godot Engine with other than English language, I expect that all docs links will point to translated docs site(of course if its available even in some part). There is a lot of hardcoded links wi... | enhancement,topic:editor,usability | low | Minor |
388,214,523 | vscode | Highlight file containing definition | There is already `Go to Definition` in vscode, so that's usually not the file you're looking for.
Maybe it should also work with [Expanding folder options](https://github.com/Microsoft/vscode-references-view/issues/28) - When file has 1 reference and that reference is the definition - file shouldn't auto expand. | help wanted,feature-request,references-viewlet | low | Minor |
388,214,640 | vscode | F4 conflict between text search and references list | Testing https://github.com/Microsoft/vscode/issues/64227.
Here is my scenario:
1) search for references
2) <kbd>F4</kbd> to jump to a particular reference
3) selected some text in the editor and <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>F</kbd>
4) <kbd>F4</kbd>
=> we jump to the next reference but I'd expect it to j... | search,under-discussion,references-viewlet | medium | Major |
388,264,035 | react | calculating context changes in componentDidUpdate | <!--
Note: if the issue is about documentation or the website, please file it at:
https://github.com/reactjs/reactjs.org/issues/new
-->
**Do you want to request a *feature* or report a *bug*?**
Bug
**What is the current behavior?**
There is no way to see if `componentDidMount` was caused by a context cha... | Type: Feature Request | medium | Critical |
388,304,856 | flutter | Provide a way to give Widgets negative spacing attributes. | Sometimes, it is desirable to give related Widgets negative spacing so that they appear closer together than they would being lined up in a Column. For example, if you build a Column of Text widgets with all-cap strings like "HELLO", there will be blank vertical space between each Text widget due to the ascender and de... | c: new feature,framework,P3,team-framework,triaged-framework | medium | Major |
388,373,462 | rust | inferrable lifetime not being removed by `cargo fix --edition --edition-idioms` | https://github.com/amethyst/amethyst/blob/863b795ddf76a27107334f15113b5da8323b5207/src/state.rs#L30
This requirement can be inferred in Rust 2018 however the fix tool is not automatically removing it. | C-enhancement,A-lints,A-diagnostics,T-compiler,A-suggestion-diagnostics,A-edition-2018 | low | Minor |
388,414,733 | vscode | Interactive Diagnostics | ## Problem
JS and TS diagnostic messages can get quite large, especially when dealing with frameworks like Vue or react. The TS team has worked to significantly improve and shorten diagnostic messages, including replacing complex type information with `...`, however there are still cases where you need to see the fu... | feature-request,api,under-discussion,languages-diagnostics | high | Critical |
388,421,410 | rust | Tracking issue for future-incompatibility lint `incorrect_macro_fragment_repetition` | > [!IMPORTANT]
> This lint has not been implemented yet! See #55373.
### Status
- [x] Preliminary implementation started (#55373)
- [ ] Preliminary implementation available
- [ ] Stabilization proposed
- [ ] Stabilized
### Known bugs
None.
### Unresolved questions to be answered before stabilization
... | A-lints,A-parser,A-macros,T-lang,T-compiler,C-future-incompatibility,C-tracking-issue,S-tracking-unimplemented | low | Critical |
388,437,262 | TypeScript | Pick<T, Exclude<keyof T, K>> & Pick<T, Extract<keyof T, K>> should be assignable to T | **TypeScript Version:** 3.2.1
**Search Terms:**
3.2.1
extends
intersection generic
**Code**
```ts
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
type Func<T> = (arg: T) => null
type Context = 'Context';
export function withRouteContextPropConsumer<
T extends { routeContext: ... | Suggestion,Experience Enhancement,Domain: Conditional Types | medium | Critical |
388,458,339 | angular | Router state is Mutable via ActivatedRouteSnapshot | # ๐ bug report
### Affected Package
@angular/router (probably)
### Is this a regression?
No. It appears to have existed for a while. See #17609
### Description
If you mutate existing properties on the queryParams object of an ActivatedRouteSnapshot without making a deep copy, it appears to mutate the ... | area: router,P3 | low | Critical |
388,459,561 | pytorch | [discussion] Recommend a different file extension for models (.PTH is a special extension for Python) | *.pth files are used by Python to list additional package search paths: https://docs.python.org/3/library/site.html
The pth files will be loaded as text files by Python interpreter. At some point when I had some PyTorch model pth file placed along with the sources, it caused a hang of Python at startup (it was tryin... | triaged | medium | Major |
388,462,701 | pytorch | [C++/Pytorch] Get input shapes | Is there a way to get the input shapes from ```torch::jit::script::Module```? For example, if we want to resize the input image to the correct shape to perform classification using the traced module, we need this information. | oncall: jit | low | Major |
388,464,767 | flutter | Allow native code to use asset variants in flutter_assets folder | <!-- 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.io/
* https://docs.flutter.io/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have... | c: new feature,engine,a: assets,P2,team-engine,triaged-engine | low | Critical |
388,478,820 | godot | Degraded quality of rendered content in Viewport in another Viewport | **Godot version:**
3.0 and 3.1 alpha2
**OS/device including version:**
Arch Linux, GPU: NVIDIA GTX 770 (415.18.04)
Android, Xiaomi Redmi Note 4
**Issue description:**
I wrote small script that adapts game UI to match screen DPI:
`get_tree().set_screen_stretch(1, 4, new_size)`
And everything looks crispy... | enhancement,discussion,topic:rendering,confirmed,topic:2d | medium | Critical |
388,483,616 | go | cmd/go: packages that use cgo not cached when cross-compiling android .so file | Here is my build command (fast in go1.9.2), I used goroutines and waitgroup to make it build two android cpu arch in two processes to make it faster:
```
go build -buildmode=c-shared -i -pkgdir /xxx/pkg/android_386_shared -tags "android linux" -ldflags "-s -w" -gcflags=-trimpath=/xxx/ -o=bin/jniLibs/x86/libxxx.so xxx... | ToolSpeed,NeedsInvestigation | low | Minor |
388,527,545 | TypeScript | Dynamic TagName causing error after version upgrade | typescript version: 3.2.2
IDE: VS Code
Description:
I updated from v3.1.6 to v3.2.2. This is my code:
```
import * as React from 'react';
export interface Props {
tag?: string,
};
const MyComponent: React.FunctionComponent<Props> = ({
tag: Tag = 'div', children
}) => {
return (
<Tag> // t... | Bug,Domain: JSX/TSX | medium | Critical |
388,536,852 | TypeScript | is out-of-bounds in tuple of length๏ผbut the introduction in the document can be out of bounds | <!-- ๐จ STOP ๐จ ๐ฆ๐ง๐ข๐ฃ ๐จ ๐บ๐ป๐ถ๐ท ๐จ
I think this should be the document not updated๏ผPlease update the official documentation๏ผBecause it makes people confused
-->
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.2.0
**Code**
This ... | Docs | low | Critical |
388,537,940 | TypeScript | "2 definitions" returned when defaultProps exists in JS component. | VSCode Version: 1.29.1
tsc Version: Version 3.3.0-dev.20181206
OS Version: macOS 10.14.1
> Test.js

> TestOuter.js
 | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.2 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
- This is the latest release.
- code is identical in the mast... | Performance,NeedsInvestigation | low | Critical |
388,621,554 | vscode | Using OS user name / git user name inside code snippets | I'd like to add the following code snippet and share it with the whole team:
```json
{
"Comment todo": {
"prefix": "//",
"body": [
"// TODO (${MY_NAME}) [${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}]: $1"
]
}
}
```
This should produce `// TODO (Alexander Kachkaev) [2018-12-07]... | help wanted,feature-request,snippets | medium | Major |
388,684,319 | TypeScript | Partial type for reduce initialValue |
## Search Terms
reduce initialvalue partial type assertion
## Suggestion
Add a signature to the type for `Array.reduce<U>` to allow the initialValue to be a `Partial<U>`
## Use Cases
Many cases where the reduce function is used to build an object that will eventually conform to `U`, but starts with an ... | Suggestion,Awaiting More Feedback | low | Major |
388,736,310 | rust | Coercing &mut to *const should not create a shared reference | It has long been a rule in Rust that you must not mutate through a shared reference, or a raw pointer obtained from a shared reference.
Unfortunately, that rule currently forbids the following code:
```rust
fn direct_mut_to_const_raw() {
let x = &mut 0;
let y: *const i32 = x;
unsafe { *(y as *mut i3... | T-lang,A-raw-pointers,I-lang-radar | high | Critical |
388,742,882 | rust | Error using associated constant in return type of generic function | Consider the following code:
```rust
trait ArrayGenerator {
const LEN: usize;
}
fn generate<T>(obj: T) -> [u8; T::LEN] where T: ArrayGenerator {
[0; T::LEN]
}
struct Foo { }
impl ArrayGenerator for Foo {
const LEN: usize = 8;
}
fn main() {
println!("{:?}", generate(Foo{}));
}
```
The... | A-associated-items,T-lang,T-compiler | low | Critical |
388,762,105 | go | net: cross compiled Go has lengthy timeouts when resolving names if a DNS server is invalid | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
go version go1.11 darwin/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```... | NeedsInvestigation | low | Critical |
388,770,451 | godot | Dictionary keys are stored by reference | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.0.6 stable
**OS/device including version:**
Ubuntu Bionic 64bit
**Issue description:**
var xx = {}
var k1 = [[1,2], [3,4]]
var k2... | bug,discussion,topic:core,confirmed | medium | Critical |
388,771,357 | TypeScript | Method decorators in class expressions are silently ignored. | <!-- ๐จ STOP ๐จ ๐ฆ๐ง๐ข๐ฃ ๐จ ๐บ๐ป๐ถ๐ท ๐จ
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug | low | Critical |
388,796,520 | opencv | lazy Mat::create() when data size match | The Mat::create() function will allocate new data if the new size() and type() do not match the previous ones.
Wouldn't it be a legible optimization to also keep the currently allocated data when the raw memory size matches `(this->rows*this->elemSize1()*this->step1() == CV_ELEM_SIZE(newType)*newWidth*newHeight) `?
O... | category: core,RFC | low | Minor |
388,798,135 | go | cmd/compile: compiler hangs without optimizations | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.2 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes, reproduced using go 1.11, 1.11.2 and 1.10
### What o... | ToolSpeed,NeedsInvestigation,compiler/runtime | low | Critical |
388,803,741 | pytorch | Missing dilation from several pooling modules (AvgPool) | ## ๐ Feature
<!-- A clear and concise description of the feature proposal -->
The dilation parameter is a common between all kernelized operations like convolution and pooling. Currently _MaxPoolNd, _ConvNd, _ConvTransposeNd, etc... do support this parameter, but it is noticeably missing from _AvgPoolNd, _LPPoolN... | hackamonth,triaged,module: pooling,function request | low | Major |
388,805,897 | go | go/parser: fails when a valid function declaration follows an broken one | Repro case:
```go
package main
type e struct {
error
}
func (*e) random() {}
func main() {
var diags []error
for _, err := range diags {
handled := handle(err)
handled.
}
}
func handle(err error) *e {
return &e{err}
}
```
The selector with no "`Sel`" field breaks parsi... | NeedsInvestigation | low | Critical |
388,814,263 | TypeScript | CFA with deep expressions doesn't work correctly | <!-- ๐จ STOP ๐จ ๐ฆ๐ง๐ข๐ฃ ๐จ ๐บ๐ป๐ถ๐ท ๐จ
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Domain: Control Flow | low | Critical |
388,822,880 | flutter | [WebVIew] Add page loading failure callbacks. | *Splitting this from https://github.com/flutter/flutter/issues/24981* | c: new feature,p: webview,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
388,823,210 | go | go/parser: fails to parse an invalid switch statement | Repro case:
```go
package main
import "go/ast"
func main() {
var node ast.Node
var lit *ast.CompositeLit
switch n := node.(type) {
case *ast.CompositeLit:
lit = n
lit.
case *ast.KeyValueExpr:
}
}
```
In this case, `lit.
case *ast.KeyValueExpr:` gets parsed into an *ast.Bad... | NeedsInvestigation,gopls/parsing | low | Critical |
388,832,337 | flutter | FloatingActionButton should attach to AppBar | It should be possible to set the position of a `FloatingActionButton` relative to the `AppBar` not just the `BottomAppBar`. See https://material.io/design/components/buttons-floating-action-button.html#placement | c: new feature,framework,f: material design,a: quality,c: proposal,P2,team-design,triaged-design | low | Minor |
388,834,026 | TypeScript | Change Diagnostic.code to 'string | number' | I'm writing a LanguageService plugin for TypeScript that returns custom diagnostics. A `Diagnostic` needs to have a `code` property of type number.
I don't have a number. Instead I can provide a string that represents the name of the rule producing the diagnostic. In addition a random number I would choose looks qui... | Suggestion,Breaking Change,API,Experience Enhancement | low | Minor |
388,860,771 | kubernetes | `failed to garbage collect required amount of images. Wanted to free 473842483 bytes, but freed 0 bytes` | <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!-->
**What happened**: I've been seeing a number of evictions recently that appear to be due to disk pressure:
```yaml
$$$ kubectl get pod k... | kind/bug,sig/node,help wanted,good first issue,triage/accepted | high | Critical |
388,861,857 | godot | Getting "Loaded resource as image file" warning, but the code is legit because it runs in editor | Godot 3.1 alpha2
In my terrain plugin, I deal with images often and also save and load them with `Image.load()` and `Image.save_png()` using the project resource paths. The reason I'm doing this is because I want them to be editable in the editor, and textures are `ImageTextures`, while they will be `StreamTextures`... | discussion,topic:editor,topic:import | medium | Critical |
388,866,664 | storybook | Storysource unable to parse Flow type annotations | **Describe the bug**
Storysource is unable to parse Flow type annotations. When the type annotations are removed or by wrapping it around a flow comment the error will go away.
**Code snippets**
Error message from Console
```
./src/form/form.stories.js
Module build failed: SyntaxError: Unexpected token (43:5)
... | feature request,good first issue,addon: storysource | low | Critical |
388,882,051 | pytorch | Am I able to run caffe2 and gloo example: resnet50_trainer.py using pytorch v1.0rc1? | Hello, I was able to run resnet50_trainer.py at the beginning of this year. I noticed that caffe2 merged into pytorch in this October. I am successful in installing pytorch v1.0rc1 and succeed in running pytorch/example/imagenet/main.py in both single node and distributed situation.
However, I still wanted to run caf... | caffe2 | low | Minor |
388,884,277 | react | eslint-plugin-react-hooks should report errors inside unnamed functions | I want to report a bug for the hooks plugin.
**What is the current behavior?**
There was no error report after running eslint, but the component failed when running in the browser.
From the chrome dev console it reported "Uncaught Error: Rendered fewer hooks than expected. This may be caused by an accidental early... | Type: Feature Request,Component: Hooks | medium | Critical |
388,890,891 | vscode | Way to Re-enter Context of the Placeholder Tab Progression While Using Snippets | When going through tab progression of a long snippet with many different placeholder values to enter, it can be possible to accidentally click a mouse or hit a wrong key that exits from the snippet context altogether. In ST3, if you hit ctr+z, you are taken back within the context of the snippet's tab progression to th... | feature-request,snippets | low | Minor |
388,902,677 | vscode | Support multiple lineComments in a language config to allow "Remove Line Comment" to work more reliably | In some languages, there may be multiple single-line comment markers, like `//` and `///`. However the language configs can only provide a single lineComment setting which is used by the `Remove Line Comment` command. This makes it hard to uncomment. For example, take this C# code:
```cs
/// <summary>
/// The GetZ... | feature-request,editor-comments | medium | Major |
388,909,234 | rust | absolute-paths-not-starting-with-crate gives bad suggestion for string-based attribute path | Running
```
cargo fix --features "test" --all --edition
```
(Note that https://github.com/lalrpop/lalrpop/issues/426 forces some manual fixup to make generated files writeable)
on https://github.com/gluon-lang/gluon gives a lot of errors (`
cargo fix --features "test" -p gluon_base --edition` to only fix the... | A-lints,A-edition-2018 | low | Critical |
388,913,282 | opencv | RGB frames for video files with Alpha channel support | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
Please:
* Read the documentation to test with the latest de... | feature,category: videoio | low | Critical |
388,919,236 | rust | error[E0275]: overflow evaluating the requirement only with incremental build involved | Steps to reproduce:
1. clone https://github.com/upsuper/telegram-rustevalbot (and checkout 2502973017d39a867dc2cde089b535127bc86e3b which is what I'm currently seeing)
2. run `cargo build`
3. then run `cargo build` again
It builds correctly in step 2, but fails in step 3 and shows the following error:
<details>
... | T-compiler,A-incr-comp,C-bug | low | Critical |
388,944,104 | pytorch | caffe2/predictor missing from libtorch | ## ๐ Bug
I want to use the `caffe2::Predictor` API, but when I download `libtorch` from the website, even on the current stable (1.0) zip file, `libtorch/include/caffe2/predictor` folder is entirely missing.
## To Reproduce
Steps to reproduce the behavior:
1. Download `libtorch` from https://pytorch.org (L... | caffe2 | low | Critical |
388,950,448 | godot | Overdraw viewport mode is not affected by vertex shader displacement | Godot 3.0.6
Out of curiosity, I wanted to check what the overdraw viewport mode would look like with my terrain plugin.

But with overdraw mode:
` where each `net` is of type `caffe2::NetDef` (devicetype set to `caffe2::CUDA`) raises an error that says `Cannot find operator schema for GivenTensorFill. Will skip schema checking.`
-- EDIT --
I found a couple of other similar issues ([this](https... | caffe2 | low | Critical |
388,956,758 | rust | Custom section generation under `wasm32-unknown-unknown` is inconsistent and unintuitive | Assume we have a crate named `dependency` with the following content:
```rust
pub fn trigger() {
submodule::call();
}
pub mod submodule {
pub fn call() {
#[link_section = "some-custom-section"]
static SNIPPET: [u8; 3] = [b'X', b'Y', b'Z'];
extern "C" {
fn requir... | A-linkage,O-wasm | low | Critical |
388,968,511 | pytorch | [Feature request] create sparse coo matrix w/o index check | ## ๐ Feature
<!-- A clear and concise description of the feature proposal -->
Currently, creating a sparse coo matrix requires checking all the provided indices are within bound. However, this is costly and sometimes not needed (e.g. when the sparse matrix is from a graph adj). Request to provide a way to create spa... | module: performance,module: sparse,triaged,enhancement | medium | Major |
388,975,390 | terminal | WSL: Pasting text from a clipboard manager doesn't insert text at the console's cursor | Microsoft Windows [Version 10.0.17763.134]
---
I'm using Ubuntu WSL and the default `ubuntu.exe` terminal. It's been configured so that `CTRL+Shift+C/V` allow for copy / pasting, which by itself is working.
However, I use Ditto which is an open source clipboard manager which allows you to write to and access m... | Issue-Question,Product-Conhost,Area-Interaction | medium | Major |
388,977,370 | ant-design | Make it possible to directly turn a Slider into a flexbox | - [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?
Currently - in order to use flexbox to style the elements inside a `Sider`, you have to do this:
<Sider style={{ ba... | Inactive,IssueHuntFest | low | Major |
389,003,883 | vscode | Slow syntax highlighting | - VSCode Version: Insider 1.30
- OS Version: Windows 10 1607 LTSB x64
Steps to Reproduce:
1. Load large C++ file (60k LOC)
2. Observe the slowness. Takes like 10s to highlight the code.
Does this issue occur when all extensions are disabled?: Yes
| feature-request,tokenization | medium | Major |
389,022,799 | go | net/http: support "gzip" as a Transfer Encoding | ### What version of Go are you using (`go version`)?
go version go1.10.3 windows/amd64
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
set GOARCH=amd64
set GOBIN=
set GOCACHE=C:\Users\xxxx\AppData\Local\go-build
s... | help wanted,FeatureRequest | medium | Critical |
389,024,601 | pytorch | get/set device in c++ | ## Issue description
itโs been tricky to chase down the various ways to get/set current cuda device as the c++ interface has evolved.
recently, _current_device()_ has been dropped from Context,
_at::detail::DynamicCUDAInterface::set_device(d.index())_ no longer exists,
etc.
currently, the best way i know is... | module: cpp,triaged,small | low | Major |
389,034,138 | pytorch | PyTorch 1.0 source build fails (error in caffe2/utils/fatal_signal_asan_no_sig_test.cc) | I was trying to build PyTorch 1.0 from source and ended up getting this error:
```
Scanning dependencies of target simple_queue_test
[ 86%] Linking CXX executable ../bin/fatal_signal_asan_no_sig_test
[ 86%] Building CXX object caffe2/CMakeFiles/simple_queue_test.dir/utils/simple_queue_test.cc.o
CMakeFiles/fatal_si... | caffe2 | low | Critical |
389,049,444 | rust | rustc_llvm fails to build if source directory contains whitespace | Hi all,
I have followed the instructions to build Rust on Windows with the MSVC toolchain (note: this issue is not windows specific) and hit a build error in rustc_llvm; here's the output:
```
error: failed to run custom build command for `rustc_llvm v0.0.0 (C:\Users\Krzysztof Lesiak\Desktop\devel\rust\src\librust... | A-LLVM,T-compiler,T-bootstrap,C-bug,A-contributor-roadblock | low | Critical |
389,053,600 | javascript-algorithms | QuickSort : Instead of taking pivot as 1st element, we should take the pivot as last element, due to time complexity |
Instead of this
`const pivotElement = array.shift();` // O(n)
we should use
`const pivotElement = array.pop();` // O(1)
When taking the pivot as last element 2 test cases are failing.
1. QuickSort โบ should do stable sorting
2. QuickSort โบ should visit NOT SORTED array element specified number of times
| enhancement | medium | Minor |
389,053,658 | vscode | Allow to configure cursor keys for input fields | Version 1.29.1 Linux 64 bit
Consistency issue.
Steps to Reproduce:
1. Configure anything (e.g. Ctrl+B) for cursorLeft (Global)
2. Find all other conflicting key bindsings and remove them.
3. Observe that key works in an editor.
3. Open Search Bar (for example) or Find Widget (for another example) or search ... | feature-request,keybindings | medium | Critical |
389,064,342 | go | cmd/compile: optimize variables in function calls as equivalent to constant-derived variables | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.2 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
### What operating system and processor architecture are ... | Performance,NeedsInvestigation,compiler/runtime | low | Critical |
389,074,516 | pytorch | [Caffe2] "Same" padding | Hello,
I tried to use "same" padding through the legacy_pad parameter of conv and maxpool, however, it does not work.
`conv1 = brew.conv(model, 'data', 'conv1', dim_in=1, dim_out=20, kernel=5, stride=1, legacy_pad=2)`
I always get a BAD ARGUMENT ERROR or something similar.
How can I achieve the "same" paddin... | caffe2 | low | Critical |
389,095,755 | flutter | `flutter drive --tags` or `flutter drive -t` does not focus on tag-specific test | ## Steps to Reproduce
<!-- Please tell us exactly how to reproduce the problem you are running into. -->
1. write integration test as instructed from https://flutter.io/docs/cookbook/testing/integration
2. mark one test case with tag "ios" as instructed from https://pub.dartlang.org/packages/test#platform-specif... | a: tests,tool,t: flutter driver,P2,team-tool,triaged-tool | low | Major |
389,113,038 | opencv | dnn vulkan for android | - OpenCV => 4.0
- Operating System / Platform => Ubuntu/Android
- Compiler => Android Studio
##### Detailed description
I try to run dnn network by vulkan in Android. After I compiled opencv 4 android (ver 4.0) with vulkan enabled, I made a simple test app to run a simple dnn network(containing few conv layers).
... | optimization,feature,platform: android,category: dnn | low | Critical |
389,127,168 | flutter | CupertinoNavigationBar should support custom box decoration | Hi. I am trying to make a `CupertinoSliverNavigationBar` with a gradient background, but currently `CupertinoNavigationBar` or `CupertinoSliverNavigationBar` only support `backgroundColor` property, and don't allow to specify an **image or a gradient as a background**.
I am not sure if it's intended, but I can' figu... | c: new feature,framework,f: cupertino,P2,team-design,triaged-design | low | Major |
389,128,935 | angular | Angular inconsistently animates children | # ๐ bug report
### Affected Package
@angular/animation or @angular/platform-browser
### Is this a regression?
Not recently.
### Description
Please retitle this if there is something clearer; I don't know what to call this as animating child elements seems extremely fragile and situation-specific. Thi... | type: bug/fix,area: animations,freq1: low,P4 | low | Critical |
389,197,170 | TypeScript | instanceof AbstractClass.constructor should narrow to typeof AbstracClass | > Please try to reproduce the issue with `typescript@next`. It may have already been fixed.
**TypeScript Version:** 3.3.0-dev.20181208
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** static instanceof constructor
**Code**
```ts
type Meta =... | Suggestion,In Discussion | low | Critical |
389,204,172 | flutter | Network traffic hook issues | well,I would like to find a method which could transfer and redirect another app's stream or create a tunnel which could be used in system proxy.
However, I didn't find some similar wheels in dart nor in flutter.
So, I wonder if flutter is just for UI or even powerful , basic and sensitive operations for app? | c: new feature,framework,engine,P2,team-engine,triaged-engine | low | Major |
389,210,915 | godot | Editor reloads and parses unrelated files on save | **Godot version:**
11d7738
**OS/device including version:**
4.19.4-arch1-1-ARCH
**Issue description:**
I noticed that, when saving a scene, Godot is parsing GDScript files that are completely unrelated to the scene.
I could notice that because that script contains an error and it showed up in the terminal... | enhancement,topic:editor | low | Critical |
389,264,608 | vscode | [folding] Preview folded content on hover | Found no existing issues
It would be cool to preview folded content without actual unfolding it, using peek
For example, how it's done in WebStorm:
<details><summary>small gif</summary><img src="https://user-images.githubusercontent.com/599439/49730695-38986d00-fc8a-11e8-88b7-c07fffb9b45b.gif" /></details>
... | feature-request,editor-folding | low | Major |
389,277,022 | flutter | Google Maps Official Plugin Flutter API and Callbacks: zoom level change, center map change, etc | <!-- Thank you for using Flutter!
Please check out our documentation first:
* https://flutter.io/
* https://docs.flutter.io/
If you can't find the answer there, please consider asking a question on
the Stack Overflow Web site:
* https://stackoverflow.com/questions/tagged/flutt... | c: new feature,p: maps,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
389,290,705 | pytorch | [Caffe2] CNN Training on CPU is faster than GPU | ## ๐ Bug
Hi all,
**while training a CNN called DPNet I noticed that training was faster on CPU(i7) than GPU(NVIDIA GTX 1050). As far as I understand, GPU should be faster than CPU for training CNNs.**
**Any ideas/reasons for this behavior?**
Training configuration:
Dataset: 40,000 samples
Batch size: 64
... | caffe2 | low | Critical |
389,291,675 | rust | Uninhabited types in recursive types with "infinite" size | This enum is in theory finitely sized, though it's being detected as infinitely sized.
```rust
#![feature(never_type)]
enum Enum<T> {
A,
B(Enum<!>, T)
}
```
([Playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=f547579d4ba703c02943c2eda6bd598a))
```
error[E0072... | A-type-system,T-compiler,T-types | low | Critical |
389,308,955 | TypeScript | HOC returned component props can not differ from HOC generic props | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.3.0-dev.20181208
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- HOC
- react
- higher order component
**Code**
`... | Bug,Domain: JSX/TSX | high | Critical |
389,316,071 | TypeScript | Allow tsserver to log to stderr instead of logfile | <!-- ๐จ STOP ๐จ ๐ฆ๐ง๐ข๐ฃ ๐จ ๐บ๐ป๐ถ๐ท ๐จ
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
<!-- List of keywords you searched for before creating this issu... | Suggestion,In Discussion | low | Critical |
389,332,397 | rust | How to read `argc` and `argv` without allocating and modify them | I need to read `argc` and `argv`, ideally without allocating any memory, and I want to modify them on initialization such that subsequent accesses to them only see the modified version (in particular, libraries querying these via `std::env::args()` and similar APIs).
Why? Some runtimes require argument handling to ... | T-libs-api,C-feature-request,A-process | low | Minor |
389,389,752 | pytorch | as_tensor does not use the device of the default tensor type | ## ๐ Bug
According to the [doc](https://pytorch.org/docs/stable/torch.html?highlight=torch%20as_tensor#torch.as_tensor) for `torch.as_tensor`, the input should be copied to a cuda device if the default tensor type is a cuda tensor.
> Default: if None, uses the current device for the default tensor type (see tor... | module: docs,module: cuda,triaged | low | Critical |
389,432,609 | pytorch | [Caffe2] How to link Caffe2 in cmake file for C++ compilation? |
I tried-->find_package(Caffe2 REQUIRED)
Here is the error
By not providing "FindCaffe2.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "Caffe2", but
CMake did not find one.
Could not find a package configuration file provided by "Caffe2" wit... | caffe2 | low | Critical |
389,462,524 | pytorch | [Caffe2] Caffe2Config.cmake | After installation
This is from Caffe2Config.cmake
Caffe2Config file is located in build folder and utils.cmake is located in cmake folder. I was not able to find public folder.
include("${CMAKE_CURRENT_LIST_DIR}/public/utils.cmake")
| caffe2 | low | Minor |
389,494,085 | TypeScript | Smarter error messages for JSX accidentally put outside a JSX expression | ## Search Terms
TS2657 TS2695 TS2304 JSX map label:"Domain: JSX/TSX"
## Suggestion
TS should emit clearer error messages for invalid JSX caused by the case where a developer expected code to be in a JSX expression context but instead it's evaluated in a non-JSX context (regular code). A signpost for these ki... | Suggestion,In Discussion,Domain: Error Messages | low | Critical |
389,507,340 | create-react-app | Option to exit dev server on build errors? | We currently run our integration test suite (via [Cypress](https://www.cypress.io/)) against the dev server (`react-scripts start`). [start-server-and-test](https://github.com/bahmutov/start-server-and-test) is very handy for starting the server, waiting for it to listen on a port, and then shut down the server after t... | issue: proposal | low | Critical |
389,549,724 | electron | Support more control of `Menu.popUp` placement | This is a duplicate of #15096, but I'm opening a new issue since the original was incorrectly closed and then ignored.
---
> **Is your feature request related to a problem? Please describe.**
> I'd like to be able to display a popup menu either above or below a button depending on the location on screen. Example... | enhancement :sparkles: | low | Minor |
389,565,951 | opencv | UMat (GPU) functions in multithreading environment | I detected strange behavior of many JavaCPP OpenCV functions, working with UMat, in our multithreading system. When I use functions with UMat arguments (i.e. GPU) from different threads, our system sometimes fails: the results are incorrect! In my last example, I used very simple call "opencv_core.max(m, m, result)" (I... | incomplete | low | Minor |
389,578,073 | TypeScript | JSX.ElementChildrenAttribute values are never considered excess properties in JSX | <!-- ๐จ STOP ๐จ ๐ฆ๐ง๐ข๐ฃ ๐จ ๐บ๐ป๐ถ๐ท ๐จ
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Domain: JSX/TSX | low | Critical |
389,591,644 | pytorch | [JIT] jit.trace fails with custom GRUs and CUDA when the sequence is longer | ## ๐ Bug
<!-- A clear and concise description of what the bug is. -->
When `jit.trace` is applied to a custom GRU with CUDA enabled, the call fails when seq_len is longer than 200.
With CUDA, the call succeeds with smaller seq_len such as 100 or 120.
With CPU, the call succeeds even with seq_len >= 200.
#... | oncall: jit | low | Critical |
389,600,335 | TypeScript | Proposal: stronger JSX types through conditional types | <!-- ๐จ STOP ๐จ ๐ฆ๐ง๐ข๐ฃ ๐จ ๐บ๐ป๐ถ๐ท ๐จ
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Suggestion
The current way the `JSX` namespace works and is implemented in th... | Suggestion,In Discussion | low | Critical |
389,601,691 | neovim | Lua: show VimL (eval) backtrace | * nvim --version: NVIM v0.3.2-707-g082e14557, LuaJIT 2.0.5
Test.vim
```viml
function! g:RunTest()
throw "foo"
endfunction
```
Case 1
- Open Test.vim
- `:source %`
- `:call g:RunTest()`
- Observe error information
```
Error detected while processing function RunTest:
line 1:
E605: Exception not... | enhancement,api,lua | low | Critical |
389,632,086 | vue-element-admin | ๅฐ่ฃ
็tinymce็ปไปถ่ฆๅvue-test-utils็ๆถๅๆฅโCannot read property 'init' of undefinedโ่ฏฅๅฆไฝไฟฎๆนๅข | ๆฐๅ
ฅๆvue-test-utils๏ผๆณๆต่ฏๅฐ่ฃ
ๅจcomponent/tinymce/index็vueไปฃ็ ๏ผ
ไฝๆฏๅด็ดๆฅๆฅ้่ฏดwindow.tinymceๆฏundefined
ๆ็น็ๆๆๅคง็ฅ่ฝ่งฃ็ญๅ๏ผ
```
import Tinymce from '@/components/Tinymce/index'
import { mount, createLocalVue, shallowMount } from '@vue/test-utils'
import Element from 'element-ui'
const localVue = createLocalVue()
localVue.use(Eleme... | 4.0 | low | Minor |
389,645,911 | angular | HTTP request triggers change detection twice | # ๐ bug report
### Affected Package
```
@angular/http@6.1.10
zone.js@0.8.26
```
### Description
An HTTP request via `HttpClient#get` triggers change detection twice once the response is available.
## ๐ฌ Minimal Reproduction
There is a minimal example at https://stackblitz.com/edit/angular-issue-repro2-u... | type: bug/fix,freq2: medium,area: zones,area: common/http,state: confirmed,P4 | low | Critical |
389,663,926 | angular | InputDecorator should have more specifiy return type than "any" | <!--๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
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.
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๐
๏ฟฝ... | type: bug/fix,freq2: medium,area: core,state: confirmed,core: inputs / outputs,core: host and host bindings,cross-cutting: types,P4 | low | Critical |
389,668,914 | rust | Documentation should list the supported target platforms so the list can be exported on the site and be accesible to people evaluating Rust as a possible language choice | C-enhancement,T-infra | low | Major | |
389,722,278 | opencv | CL_INVALID_WORK_GROUP_SIZE issue | I have short test program trying to use OpenCL version of functions ...
```
cv::ocl::setUseOpenCL(true); // enable || disable OpenCL in the processing of UMat
UMat img,gray;
imread("lena30.jpg", 1).copyTo(img);
cvtColor(TIimg, TIgray, COLOR_BGR2GRAY);
GaussianBlur(TIgray, TIgray, Size(5, 5), 1.25);
Canny(T... | priority: low,category: ocl,platform: other | 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.