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 |
|---|---|---|---|---|---|---|
433,042,897 | rust | Investigate supporting filesystem overlay in rustc | ## Rationale
This would allow us to support in-memory/patched (mainly for IDEs, maybe would be useful for build systems?) versions of source code when invoking rustc as a separate process.
While it's possible to provide a [`FileLoader`](https://github.com/rust-lang/rust/blob/00856722bad5e9d96048319fb41f4b7e249820cd... | T-compiler,T-dev-tools,C-feature-request | low | Major |
433,052,170 | godot | [Bullet] Raycasting a BoxShape hints round edges/artifacts | Godot 3.1
I wanted to use `BoxShape` to make cubes which I can raycast, but I quickly found that the normals I get from raycasting behave as if the cubes had round edges Oo
Not only on the edges, but also a little bit on the faces, there is a spot where normals become oblique.
 platform and have several questions about that:
1) Can I port the flutter engine on the rtos?
2) If can , which system interfaces the OS must support for the flutter engine. You know the linux platform has a libc(glibc) to provide the interface for... | engine,d: wiki,P3,team-engine,triaged-engine | low | Major |
433,134,945 | TypeScript | Allow `export type Foo;` as valid syntax | ## Search Terms
Exporting a type defined elsewhere. Export a defined type. Type alias circularly references itself. Can't export a type with the same name.
## Suggestion
Currently you can only export types right when you declare them:
```typescript
export type Foo = string | number;
```
But many people often u... | Suggestion,Awaiting More Feedback | low | Minor |
433,157,743 | react | Field type="email" with multiple attribute cursor jumps to start | <!--
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?**
While adding multiple comma separated email addresses the cursor will jum... | Type: Bug,Component: DOM | low | Critical |
433,192,899 | ant-design | TreeSelect树选择 组件,多选情况下,子节点选择后禁用,仍可在input中通过关闭,将选择后禁用的节点删除选中 | - [ ] 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/wkp7xw7p47)
### Steps to reproduce
- tr... | 🐛 Bug,Inactive | low | Minor |
433,241,209 | rust | Cycle error from pretty printer with RUST_LOG | *(I wasn't able to find any existing discussion, issues or PRs about this, I'd not be surprised if someone had found it already, so my bad if this isn't a new problem)*
Yesterday, I was about to take a look into #59494 (the test case for that will trigger this), running that test case with `RUST_LOG=rustc::traits` m... | A-pretty,T-compiler,C-bug,I-cycle | low | Critical |
433,269,672 | vue | Custom directive binds differs on components vs elements | ### Version
2.6.10
### Reproduction link
[https://jsfiddle.net/bponomarenko/uom10qd2/](https://jsfiddle.net/bponomarenko/uom10qd2/)
### Steps to reproduce
1. Open browser console.
2. Click on Toggle button two times.
### What is expected?
Directive will emit the same console messages when app... | bug,has workaround | low | Major |
433,280,346 | vue-element-admin | 全局配置,fixedHeader 设置为true时,引导页,圈定内容被遮挡,显示空白 | <!--
注意:为更好的解决你的问题,请参考模板提供完整信息,准确描述问题,信息不全的 issue 将被关闭。
Note: In order to better solve your problem, please refer to the template to provide complete information, accurately describe the problem, and the incomplete information issue will be closed.
-->
## Bug report(问题描述)
全局配置,fixedHeader 设置为true时,引导... | not vue-element-admin bug | low | Critical |
433,351,819 | go | crypto, x/crypto: apply golang.org/wiki/TargetSpecific policy | A lot of packages need to be adapted to follow the new https://golang.org/wiki/TargetSpecific policy.
In particular, point 1 would make the generic code always available for testing, fuzzing, and analysis like https://github.com/golang/go/issues/31456#issuecomment-483104913. | NeedsFix | low | Major |
433,369,749 | pytorch | GCP Base Image Wrong CUDA Version | ## 🐛 Bug
Working through the suggested PyTorch GCP base image, the wrong version of CUDA was installed.
## To Reproduce
Steps to reproduce the behavior:
1. On "New Deep Learning VM deployment" select "Intel Optimized Base 9.2"
1. Deploy and SSH into the machine
1. ``nvidia-smi`` shows CUDA Version is at ... | triaged,module: doc infra | low | Critical |
433,378,298 | godot | Inspector audio preview is tied to the master bus state | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.1 & 9612303
**Issue description:**
<s>When trying to preview a sound resource in the inspector, no sound will come out of it.</s>
I closed this ... | bug,topic:editor,confirmed | low | Minor |
433,394,456 | rust | Support Windows kernel mode for driver development | Several people have approached me about this, and I definitely think this is an area Rust should try to support.
* [ ] Add targets for Windows kernel mode.
* [ ] Update `cc` to be able to locate kernel mode libraries instead of user mode libraries for those targets.
* [ ] Update `winapi` to link to kernel mode lib... | A-linkage,O-windows,T-libs-api,T-compiler,O-windows-msvc,C-feature-request | medium | Critical |
433,422,231 | pytorch | torch.distributed.broadcast should default to current stream | ## 🐛 Bug
This is the `torch.distributed` portion of #19219.
Repeated calls to `torch.distributed.broadcast` (and other distributed ops) with the NCCL backend will eat up all available GPU memory. This leads to repeated CUDA synchronizations and bad performance.
The `torch.distributed` ops should **default to ... | oncall: distributed,triaged | low | Critical |
433,468,414 | TypeScript | jsDoc intellisense support for @typedef in another file | Issue Type: <b>Feature Request</b>
Intellisense uses @typedef tags in other files but only if the file is opened in current window. Please allow any typedef tag to be used inside current working directory even if file containing typedef is not opened.
Here is what i mean. I annotated a variable with type. This v... | Suggestion,Awaiting More Feedback | low | Major |
433,472,906 | flutter | ImageStream's onError listener catches all errors | When using `ImageStream.addListener(..., onError: ...)`, the `onError` callback will be invoked with anything that's thrown, including `Error` types. Once I add an `onError` callback, `assert` failures, for example, are no longer reported and instead get swallowed.
There is no way for callers to specify what except... | framework,a: quality,c: proposal,a: error message,P3,team-framework,triaged-framework | low | Critical |
433,489,774 | flutter | Would like the ability to stop the gradle daemon from flutter tool | I regularly see gradle consuming nearly 700+ MB of RAM on my Linux system. I consider that to be a lot, especially when it's sitting there doing nothing.
The path to my gradle binary is convoluted (e.g. `~/.gradle/wrapper/dists/gradle-4.4-all/9br9xq1tocpiv8o6njlyu5op1/gradle-4.4/bin/gradle`) and changes with gradle... | c: new feature,tool,t: gradle,P2,team-tool,triaged-tool | low | Major |
433,495,035 | TypeScript | jsDoc intellisense support for @augments/@extends | Issue Type: <b>Feature Request</b>
Please make intellisense support @augments/`@extends` tags. Currently intellisense is not showing base class properties both prototype and own.
Here is my base class
```
const fs = require('fs');
/**
* Used as an abstract base class for file classes.
* @param {string} f... | Suggestion,Awaiting More Feedback,Domain: JSDoc,Domain: JavaScript,Add a Flag | medium | Major |
433,579,881 | TypeScript | Order destructuring Iterable<keyof T> changed from 3.2.4 -> 3.4.x | In 3.2.4, destructuring a value whose type is the intersection of `Pick<T, keyof T> & Iterable<T[keyof T]>` inferred types at assignment whose order followed the `keyof T` order. In 3.4.x and above it seems the `keyof T` order isn't respected at assignment, but is inferred correctly later. Screenshots attached below.
... | Bug | low | Critical |
433,595,980 | TypeScript | Alias for TypeScript declaration emitting | ## Search Terms
* alias
* declaration
## Suggestion
A way to configuration alias for declaration files.
## Use Cases
Related: #10866
I understand that TypeScript team want to leaves module resolving for other tools like Webpack. However, most of the tools are focus on emitting JavaScript. If you wan... | Suggestion,Awaiting More Feedback | high | Critical |
433,617,464 | TypeScript | TypeScript not enforcing the return type of optional methods defined in interfaces implemented by parents of classes | <!-- 🚨 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 |
433,632,988 | flutter | Android license status unknown. | <!-- 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://docs.flutter.io/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | platform-android,tool,d: api docs,t: flutter doctor,a: first hour,customer: crowd,P3,team-android,triaged-android | high | Critical |
433,756,525 | node | Crash in wrap_js_stream.js during doClose | * **Version**: v10.15.3
* **Platform**: Linux zagentXXXX 4.4.0-141-generic #167~14.04.1-Ubuntu SMP Mon Dec 10 13:20:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
* **Subsystem**: net
I've debated whether this belongs in node/help, but due to potential of being a node bug I've decided to post here (apologize in advanc... | stream | low | Critical |
433,813,386 | opencv | ncurses.h incompatibility | ##### System information (version)
- OpenCV => 3.4
- Operating System / Platform => openSUSE Tumbleweed
- Compiler => gcc8-c++
##### Detailed description
Incompatibility with ncurses.
I was using opencv2 on Debian, and today I moved to openSUSE Tumbleweed, which has opencv3, and my first make failed with ... | category: build/install,future,category: 3rdparty | low | Critical |
433,842,979 | go | x/text/transform: errInconsistentByteCount should be returned by too big nSrc | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are ... | NeedsInvestigation | low | Critical |
433,844,335 | vscode | [folding] selecting first line of folded range does not select full folded range | Issue Type: <b>Bug</b>
1. Create a variable with an array
2. Collapse the array
3. Mark the line with the array and copy it
5. Paste below
**Actual result:**
the only array name with open bracket is copied
**Expected result:**
whole array is copied
**PFA**
VS Code version: Code 1.33.1 (51b0b28134d... | feature-request,editor-folding | low | Critical |
433,856,417 | flutter | Camera plugin do not save images from rear camera | I'm building the app which takes photos and using the Camera plugin. The images from front camera are saved and displayed. The images from the rear camera are saved, but not displayed.
To reproduce it you may use the example app connected with the plugin:
https://github.com/flutter/plugins/tree/master/packages/cam... | p: camera,a: images,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
433,874,640 | flutter | Feature Request: Add minLines to Text (Not TextField) | I've seen many requests from other user to add minLines into **TextField**. But please also add it for **Text**. Thanks | c: new feature,framework,P3,team-framework,triaged-framework | high | Critical |
433,895,053 | TypeScript | JSDoc multi-line properties within Array<Object> syntax parse differently than Object[] | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.5.0-dev.20190416
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
JSDoc @type @param @arg multi-line type literal Array<>
... | Bug | low | Critical |
433,906,878 | go | cmd/compile: additional internal debugging support for escape.go | esc.go and escape.go both support -m=1 for emitting diagnostics about escape analysis results, but esc.go additionally supported -m=2 and above for emitting diagnostics about internal code execution and decision making. escape.go should provide similar functionality for compiler maintainer use. | NeedsInvestigation,compiler/runtime | medium | Critical |
433,907,721 | go | net: KeepAlive is disabled by write to dead link | _Was: net.Dialer.Dial() doesn't respect .KeepAlive_
<!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Haven't ... | Documentation,NeedsInvestigation | medium | Critical |
433,908,352 | godot | Children list of inherited scene doesn't update after add/delete nodes in parent scene | **Godot version:**
3.1 stable
**OS/device including version:**
Windows 7 x64
**Prerequisites:**
1. Create scene 1 - "Level",
2. Create scene 2 - "Parent",
3. Create scene 3 - "Something" as "New inherited scene" of "Parent"
**Steps to reproduce:**
1. In "Level" scene make instance of "Something",
2. Set... | bug,topic:editor,confirmed | low | Critical |
433,910,335 | create-react-app | CRA sourcemaps do not conform to the specification | ### Is this a bug report?
Yes
### Did you try recovering your dependencies?
No
### Which terms did you search for in User Guide?
sourcemap
### Environment
Observed in several different environments
### Steps to Reproduce
1. Create an app with `create-react-app`
2. start the dev-server
3. lo... | issue: needs investigation | low | Critical |
433,956,232 | flutter | Support flutter run -d all when using different compilers | Currently the flutter tool assumes that it can share a single resident runner across an arbitrary number of FlutterDevice types. With the introduction of the web and fuchsia, this will no longer be the case, as each will require a slightly different resident runner implementation.
We need to make the following tooli... | tool,platform-fuchsia,platform-web,P3,team-web,triaged-web | low | Minor |
433,963,246 | kubernetes | Next steps after Events API v1beta1: migrate all components; event style guide; pipeline for persistent event storage | **Overview**:
After [kubernetes/enhancements#383](https://github.com/kubernetes/enhancements/issues/383) is implemented ([#65782](https://github.com/kubernetes/kubernetes/pull/65782)), new v1beta1 events API will be ready to use. ([Latest approved design doc](https://github.com/kubernetes/community/blob/master/contrib... | sig/scalability,kind/feature,sig/instrumentation,lifecycle/frozen | medium | Critical |
433,980,392 | godot | Change missing scene to self cause editor silently crash | **Godot version:**
3.2 5823b5d
3.2.3 rc 2
**OS/device including version:**
Linux Mint 19
**Issue description:**
When I set one of missing scene to root scene, then editor crash after a while. Shouldn't be possible to attach scene to itself.
Probably crash will happen if someone change scene directly in .ts... | bug,topic:editor,confirmed | low | Critical |
433,990,090 | go | cmd/compile: run escape analysis on SSA form | Placeholder issue for discussion about running escape analysis on SSA form instead of the Node AST. I don't expect us to get to this for quite a while, but I think it's useful to have a single issue for cross-referencing related issues. | NeedsInvestigation,compiler/runtime | low | Major |
434,007,934 | go | test: fixedbugs/issue30908.go failing on Plan 9 | CL [168957](https://golang.org/cl/168957) added `fixedbugs/issue30908.go`. This test is failing on Plan 9.
```
cpu% go run run.go -- fixedbugs/issue30908.go
# go run run.go -- fixedbugs/issue30908.go
exit status: 'go 527129: 1'
cmd/link: while reading object for 'a': duplicate symbol 'go.info.go.builtin.error.Er... | help wanted,OS-Plan9,NeedsInvestigation | low | Critical |
434,019,036 | TypeScript | error TS5071: Option '--resolveJsonModule' can only be specified when module code generation is 'commonjs', 'amd', 'es2015' or 'esNext' | <!-- 🚨 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... | Suggestion,Awaiting More Feedback | low | Critical |
434,027,215 | TypeScript | Declaring index signature based on property type gives invalid error | **TypeScript Version:** latest, demonstrable on playground (links below)
**Search Terms:** index signature diagnostics property type
**Code**:
```ts
interface BaseNode {
kind: string;
[key: string]: string | TokenNode["data"];
}
interface TokenNode extends BaseNode {
kind: 'token';
data: To... | Bug | low | Critical |
434,039,832 | TypeScript | Make `DOMStringList` generic | <!-- 🚨 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
DOMStringList, DOMStringMap, DOMString
<!-- List of keywords ... | Suggestion,Awaiting More Feedback | low | Critical |
434,051,757 | go | x/tools/go/ssa: SrcFuncs is missing top-level anonymous functions | buildssa walks the AST, collecting all *ast.FuncDecl and all anonymous functions declared inside of those. This misses top-level anonymous functions a la
```
package pkg
var Fn = func() {}
```
Such a function is owned by the init function, which has no syntactic representation in the AST.
/cc @ianthehat | NeedsFix,Tools | low | Minor |
434,053,529 | pytorch | Multiprocessing on distributed Multi-nodes shutdown error: ‘spawn’ on slave node leads to semaphore_tracker leaked | Hi Masters,
I am trying the following code on 2 nodes with diff num of CPU/GPU devices, running one parameter server (ps) process and diff num of worker processes on each node.(e.g. global_ranks:[ [0(ps), 2(worker), 3(worker)], [1(ps), 4(worker)] ])
For CUDA init reasons, I turned mp.set_start_method('spawn', for... | oncall: distributed,triaged | low | Critical |
434,064,382 | pytorch | CUDA optimization: using `__restrict__` whenever possible | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
## Motivation
to increase throughput
## Pitch
for every feasible CUDA kernel, take input as `THCDeviceTensor<T, DIM, IndexT, RestrictPtrTraits>` instead of `DefaultPtrTraits` in order to add `__restrict__` keyword to the device te... | module: cuda,triaged | low | Major |
434,085,801 | godot | Sync Script Changes Does Not Resume After Error in Code is Fixed | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.1
**OS/device including version:**
Mac OS Sierra 10.12.6
**Issue description:**
<!-- What happened, and what was expected. -->
When sync s... | enhancement,topic:editor,usability | low | Critical |
434,175,304 | neovim | floating :pedit (Vim's `:help preview-popup`) | First of all, sorry if this has been suggested before, I haven't found anything about it, but there's a lot of issues on here regarding floating windows, and it's a tricky subject to search...
I recently wrote a short [blog article](https://www.zingiber.nl/blog/hacking-neovims-new-floating-windows/) about a simple, ... | enhancement,has:vim-patch,core,floatwin | low | Minor |
434,183,521 | flutter | PageView should preload pages | Page view should preload at least its next page otherwise user can experience delay when changing pages. In the following example I'm using larger images ~5mb. I'm aware that there are already topics that image load is slow, but I can imagine there are other examples to demonstrate this problem with page view as well. ... | c: new feature,framework,a: accessibility,f: scrolling,customer: crowd,P3,team-framework,triaged-framework | high | Major |
434,203,803 | go | compress/flate: implement partial flush | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
go-1.11.5
while trying to implement zlib compression for SSH (by internal Google request,
https://github.com/golang/go/issues/31369), I stumbled on lack of support for partial flu... | help wanted,NeedsFix,FeatureRequest | medium | Critical |
434,216,957 | pytorch | Different behavior when trace model. | ## 🐛 Bug
When I use torch.jit.trace() to trace a model, it gives me different results with same code.
## To Reproduce
I write a simple test example
```python
import torch.nn as nn
import torch
class Net(nn.Module):
def __init__(self):
super(Net, self).__init__()
print()
... | oncall: jit,triaged | low | Critical |
434,245,661 | flutter | Icon button with padding with wrong splash and highlight position | I am using an IconButton on my application like this:
```dart
IconButton(
// highlightColor: Colors.transparent,
// splashColor: Colors.transparent,
padding: EdgeInsets.only(top: 32),
icon: Icon(
Icons.next_we... | framework,f: material design,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
434,261,736 | TypeScript | ConstructorParameters is not working for private constructors (and protected constructors) | **TypeScript Version:** 3.4
**Search Terms:** ConstructorParameters, private constructor
**Code**
```ts
class Foo
{ public constructor(a: number, b: boolean, c: string) { } }
class Bar
{ private constructor(a: number, b: boolean, c: string) { } }
type FooCtorArgs = ConstructorParameters<typeof Foo>;
t... | Suggestion,Awaiting More Feedback | medium | Critical |
434,315,813 | go | cmd/cover: add number of uncovered lines | The coverage HTML file generated by `go tool cover -html=coverage.out` only displays the coverage *percentage* per package; as a result it's hard to identify, by just glancing at the list of packages and their coverage, where the coverage is lacking because small packages and giant packages are treated the same.
This ... | NeedsInvestigation,FeatureRequest,compiler/runtime | low | Major |
434,390,336 | rust | Missed NonZero optimization opportunity | Godbolt [link](https://rust.godbolt.org/z/lc6Jl0)
When a `NonZeroUsize` is created through `new_unchecked` and wrapped in a `Some`, the optimizer does not recognize that the value is always `Some`. This can be fixed by adding a `std::intrinsics::assume(value != 0)` line before creating the NonZero type.
```rust
... | A-LLVM,I-slow,E-needs-test,T-compiler | low | Major |
434,412,122 | create-react-app | react-scripts v3 via npm requires a peer of typescript@* | The inclusion of @typescript-eslint/eslint-plugin and @typescript-eslint/parser in react-scripts means there are now a lot of warnings about typescript being an unmet peer dependency when part of a project not using typescript.
I understand it is just a warning and I know I can ignore it, but I still wanted to bring... | issue: needs investigation | medium | Critical |
434,412,767 | TypeScript | Refactoring to convert destructuring declaration to property accesses | From https://github.com/Microsoft/vscode/issues/72502
**Feature request**
Add a refactoring that converts a destructured local to normal propery access:
```ts
const {x, y, z} = someObject;
console.log(x + y * z);
```
Would be converted to:
```ts
const newLocal = someObject;
console.log(newLocal.x + ne... | Suggestion,Awaiting More Feedback,Domain: Refactorings | low | Minor |
434,416,290 | go | cmd/compile: more fine-grained mechanism for escape analysis of assembly functions | test/escape_runtime_atomic.go is failing on linux/arm. E.g., https://build.golang.org/log/b9cb939c683aed32bfa9ce69dbf44df63e291507 | NeedsFix,compiler/runtime | low | Major |
434,416,558 | create-react-app | Style sheets referenced in XML or SVG | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
Maybe?
I'm trying to use an SVG which references an external CSS file. When the browser requests the external style sheet, create-react is redirecting the request to the index page with a status of 304.
This does work correctly if I... | issue: needs investigation | low | Critical |
434,423,764 | opencv | Feature request: cv::erf() and cv::erfc() | - OpenCV => 3.4.5
- Operating System / Platform => Ubuntu 16.04
- Compiler => GCC 5.4.0
##### Detailed description
This is a feature request for two core functions/operations on arrays:
`void cv::erf(InputArray src, OutputArray dst)` and
`void cv::erfc(InputArray src, OutputArray dst)`
These would provide th... | feature,priority: low | low | Critical |
434,452,754 | vscode | index.js/index.ts file should show at top of file picker when searching for the name of the directory | - VSCode Version: Version 1.34.0-insider (1.34.0-insider) 6d5feae57959287fb116467f4eb6c7079571b466
- OS Version: MacOS 10.14.4
**Expected:** In TypeScript, index.js should show up at or near the top of the list, identically to if it was called `./MyComponent.ts`. (Since index.ts is a shorthand for "whatever this d... | feature-request,search,quick-open | medium | Critical |
434,463,077 | godot | Can't access rotation and transform in Node2Ds and call functions on Transform2Ds | In VisualScript you can only get access to members that show up in the inspector, which means that rotation (not rotation_degrees) and transform members of Node2D are inaccessible. Furthermore, you can't call functions on a Transform2D object as you would with others, you have to search for Transform in the node search... | bug,confirmed,usability,topic:visualscript | low | Major |
434,494,477 | godot | WorldEnvironment Glow not working when background is transparent | **Godot version:**
3.1
**OS/device including version:**
Linux 5.0.5-1-MANJARO
GPU: AMD Radeon R7 260X using AMDGPU driver.
**Issue description:**
When setting the viewport to have a transparent background, the Glow effect from the WorldEnvironment gets disabled (Possibly other effects to, haven't tested).
... | discussion,topic:rendering,confirmed,topic:3d | low | Major |
434,495,383 | go | cmd/go: no way to `go get` source code for editing in module mode | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.4 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture a... | NeedsInvestigation,FeatureRequest,modules | medium | Critical |
434,502,246 | TypeScript | String literals widened to string when destructuring function return | <!-- 🚨 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 |
434,532,494 | rust | -Clinker-plugin-lto doesn't work without extra manual work | ```
$ cargo new testcase
$ cd testcase
$ RUSTFLAGS="-Clinker-plugin-lto" cargo run --release
```
Yields the following on mac:
```
Compiling testcase v0.1.0 (/Users/glandium/testcase)
error: linking with `cc` failed: exit code: 1
|
= note: "cc" "-m64" "-Wl,-plugin-opt=O3" "-Wl,-plugin-opt=mcpu=core2"... | A-linkage,O-macos,T-compiler | medium | Critical |
434,538,420 | opencv | Building OpenCV 4.1.0 / 3.4.6 with OpenGL, CUDA 10.1 and OpenCL | <!--
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... | priority: low,category: build/install,category: gpu/cuda (contrib),category: ocl | low | Critical |
434,544,660 | rust | Generators should implement either Iterator or IntoIterator. | Generators (currently unstable) are used as an implementation detail for async/await support in rust, but they can also be useful for writing Iterators and similar.
If you want to turn a Generator into an Iterator, you must wrap it in a new type, but it'd be useful to implement Iterator directory on Generator.
He... | T-lang,T-libs-api,C-feature-request,A-coroutines,A-iterators | low | Major |
434,556,998 | vue-element-admin | 编译的时候element的chunk出现了两处for(let i...),已经加了babel | <!--
注意:为更好的解决你的问题,请参考模板提供完整信息,准确描述问题,信息不全的 issue 将被关闭。
Note: In order to better solve your problem, please refer to the template to provide complete information, accurately describe the problem, and the incomplete information issue will be closed.
-->
## Bug report(问题描述)
编译后的代码除了这两处都正常转换成for(var i..... | need repro :mag_right: | low | Critical |
434,573,733 | three.js | Editor:could the editor add Group/Ungroup function ? use ctrl + mouse-left select meshes。 | Enhancement,Editor | low | Minor | |
434,590,680 | pytorch | [jit] requires_grad in JIT constructor/factories | Something like:
```
t = torch.ones(2, requires_grad=True)
```
fails with:
```
RuntimeError:
arguments for call are not valid:
for operator aten::ones(int[] size, *, Tensor out) -> Tensor:
argument out not provided.
@torch.jit.script
def foo():
t = torch.ones(2, requires_grad=True)
... | high priority,triage review,oncall: jit | low | Critical |
434,611,207 | vscode | Support restart of remote EH to avoid window reloads | It looks like we added code to the workbench to reload the window in certain cases when entering a workspace or folders change:
https://github.com/Microsoft/vscode/blob/053a32e2bbc354af2b19cb40758f615cefcb714e/src/vs/workbench/services/workspace/electron-browser/workspaceEditingService.ts#L366
https://github.com/... | feature-request,extension-host | low | Major |
434,651,024 | go | x/net/http2: stream was reset: PROTOCOL_ERROR | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
### What operating system and processor architecture are y... | NeedsInvestigation | low | Critical |
434,669,614 | ant-design | Layout.Sider should be allowed to used classes to solve width problems in responsive layouts instead of specifying width attribute | ### What problem does this feature solve?
Currently the the [Layout.Sider](https://ant.design/components/layout/) allows specifying both - **className** and **width**. **Width** is used to manually set the style width of the Sider's `<Div/>` div component in expanded mode.
This works beautifully in most of the case... | Inactive | low | Minor |
434,719,128 | rust | Implementation of Trait for different type of Fn doesn't work | Implementing a Trait for a type T (where T is a function with a given a signature) and then trying to implement the same trait for another type T (where T is a function with a different signature) doesn't compile.
I tried this code:
```Rust
trait MyTrait {}
impl<F> MyTrait for F where F: Fn(u32) -> u32 {}
im... | A-trait-system,A-closures,T-lang | medium | Critical |
434,799,918 | pytorch | Massive memory overhead over NumPy | ## 🐛 Bug
The memory usage comparison between the same data structures implemented with different backends (PyTorch tensors and NumPy arrays) shows over 4x higher usage when using PyTorch. Data structure consists of a list containing 5kk small tensors/arrays.

## To Reproduce
... | module: internals,module: memory usage,triaged | low | Critical |
434,835,251 | storybook | Ability to specify version in AboutScreen | **Is your feature request related to a problem? Please describe.**
We build a static storybook to deploy for our designer to review and then also for reviewing code changes before approval. Currently, it's not possible to see when the storybook was built and what commit was used to build it.
**Describe the solution... | feature request,ui,has workaround | low | Minor |
434,844,025 | react-native | [a11y] Nested accessibility items are not respected on iOS | React Native apps often have many UI components that are touchable but also contain nested elements that are also touchable. For example, an entire list row may be touchable as a primary navigation option, but it might also have an auxiliary button nested inside of it for taking a specific action, like delete or save. ... | Platform: iOS,Ran Commands,Accessibility,Bug,Accessibility Team - Evaluated,Never gets stale | low | Major |
434,847,956 | react | Events before Client Side Hydration | Recently I detected a problem using React in SSR. Maybe is quite obvious, but all the JavaScript events that are fired before the JavaScript is loaded, are lost...
This is something normal. The JS is not there yet... Ok. However, I expect to have some utility to do some exceptions.
I'm going to try to explain my ... | Resolution: Backlog | high | Critical |
434,859,596 | rust | Add a new `--error-format` `human-sorted` for the test harness `libtest` // `--message-format` for `cargo test` | I run `cargo test` from the command line many times every day, always with the default `--message-format human` value. Usually, I have a quick scan through the list of test cases and look for any red FAILED text.
I have three very minor annoyances about the `human` message format:
1. The list of tests isn't orde... | T-compiler,C-feature-request,A-libtest,needs-rfc,A-CLI | low | Critical |
434,867,737 | flutter | Make Tab widget _warpToCurrentIndex transition more robust | _warpToCurrentIndex is called when you jump more than two tabs.
During the warping, didUpdateWidget will delay until warping finish. That mean any change to the widget will be postpone during warping. We should come up a better way to do this.
This issue come up during the discussion in https://github.com/flutter/... | framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Major |
434,873,040 | go | x/tools/gopls: improve suggestions in completion placeholders | Context: #31547.
We should suggest in-scope identifiers of the matching type when adding placeholders for a function.
We would also need to develop some heuristics to determine which identifier to suggest, if there are multiple in scope. (Ideas: most recently declared, closest name to the one declared in the func... | help wanted,FeatureRequest,gopls | low | Minor |
434,875,813 | go | cmd/go: 'go mod init' should validate module paths for v2+ dependencies | ### What version of Go are you using (`go version`)?
go 1.12.4
### Does this issue reproduce with the latest release?
Yes, including tip.
### What did you do?
Observed problems in modules that were ultimately traced back to losing information in the `go mod init` process.
### What did you expect to se... | NeedsInvestigation,GoCommand,modules | low | Critical |
434,897,291 | pytorch | [caffe2]Reloading model gives segmentation fault | Here is the code
```python
def create_model(hp_space):
workspace.ResetWorkspace()
with core.DeviceScope(core.DeviceOption(caffe2_pb2.CUDA, 0)):
train_model = ModelHelper(init_params=True)
if hp_space['model'] == 'DenseNet':
obj_train = DenseNet((1, 3, 224, 224), model=train_... | caffe2 | low | Minor |
434,948,257 | flutter | Add more tool analytics dimensions | Currently, the Usage.sendTiming sends a bunch of useful dimensions to the flutter run invocations such as success/failure, target platforms etc. But timing data is sampled and sendCommand / Screens should be the primary data gathering mechanism. But we don't have any data in terms dimensions besides the flutter tools c... | c: new feature,team,tool,P3,team-tool,triaged-tool | low | Critical |
434,974,567 | pytorch | The `unary_kernel` call should be pushed into CopyKernel.cpp and it should completely replace the current `copy_kernel`. | The `unary_kernel` call should be pushed into CopyKernel.cpp and it should completely replace the current `copy_kernel`.
i.e. _copy_same_type__cpu should just be:
```
void _copy_same_type__cpu(Tensor& self, const Tensor& src) {
if (self.is_same(src)) {
return;
}
if (self.numel() == src.numel() && !(s... | module: cpu,triaged | low | Minor |
434,979,127 | TypeScript | Removing optional modifier also removes `undefined` from value type | <!-- 🚨 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 | medium | Critical |
434,995,966 | go | net/http: roundtrip_js.go unusable in Node.js tests | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.3 darwin/amd64
</pre>
### Does this issue reproduce with the latest release? Yes.
### What operating system and processor architecture... | NeedsInvestigation,arch-wasm | low | Critical |
435,011,295 | flutter | On Windows, check if aria2, curl or wget are installed before downloading via BITS | **I'm just nitpicking**, I admit, but on my Windows systems I use [`Scoop`](https://github.com/lukesampson/scoop) and that allows me to install a bunch of commands like `aria2c`, `curl` and `wget`, all of which are incredibly faster than BITS.
You see, I like to *not* have to wait for an eternity to download somethi... | c: new feature,tool,P3,team-tool,triaged-tool | low | Critical |
435,023,886 | pytorch | How to load PyTorch model with LSTM using C++ api | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. Establish a PyTorch model with LSTM module using python, and store the script module after using torch.jit.trace. Python code like this:
```python
class MyModule(nn.Module):
de... | module: cpp,triaged | medium | Critical |
435,160,732 | vscode | [scss] Incorrect selector specificity in hover tooltip | <!-- 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 fixed: https://code.visualstudio.com/insiders/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.33.1
- OS Version: Windo... | bug,css-less-scss | low | Minor |
435,161,931 | TypeScript | flatMap errors when callback returns certain union types | <!-- 🚨 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... | Suggestion,Awaiting More Feedback | low | Critical |
435,214,388 | rust | Type alias definition changed during reexport | Consider the following crate (`test2`):
```rust
pub trait Foo { }
pub type FooDyn = dyn Foo;
pub struct Bar;
impl Bar {
pub fn bar(&self) -> &FooDyn {
unimplemented!();
}
}
```
Documentation for this crate says that `FooDyn` and `bar` signatures are the following:
```rust
type FooDyn ... | T-rustdoc,C-bug | low | Critical |
435,253,645 | pytorch | C++ API 'nn::Sequential' has inconsistent behavior with python conterpart | ## 🐛 Bug
## To Reproduce
C++ version
```c++
class FakeNet : public torch::nn::Module {
public:
FakeNet() {
id = register_module("id", nn::Sequential());
}
torch::Tensor forward(torch::Tensor x) {
// Runtime Error: Cannot call forward() on an empty Sequential
return id->... | module: cpp,triaged | low | Critical |
435,254,548 | godot | Importer cannot load materials before images | **Godot version:**
3.1 stable
**OS/device including version:**
Windows 10, GTX 1080, 419.67
**Issue description:**
Imported a bunch of 3D Objects (Wavefront) and Textures at once. Godot couldn't load the Materials (.mtl) properly.
**Steps to reproduce:**
- Create a new Project
- Close Godot
- Make inside... | bug,confirmed,usability,topic:import | low | Critical |
435,256,029 | godot | Thirdparty Base64 license is *possibly* missing | **Godot version:**
**All** versions of Godot starting with **1.0**, maybe even **before the first release**.
**Issue description:**
**/thirdparty/misc/base64.[c|h]** (**/core/io/base64.[c|h]** in Godot 1.0) claim that the files are in public domain and provide a link to the site of the author. The same is stated i... | discussion,topic:thirdparty | low | Minor |
435,278,129 | pytorch | [jit] Bad error when calling `ScriptModule`s with attributes/parameters | ```python
class Vocab(torch.jit.ScriptModule):
def __init__(self):
self.i = torch.jit.Attribute(2, int)
@torch.jit.script_method
def forward(self, x):
return x + self.i
v = Vocab()
@torch.jit.script
def lookup(y):
return v(y)
```
results in
```
for operator forwa... | oncall: jit,triaged | low | Critical |
435,284,450 | godot | Can't create function named "_text_changed" in LineEdit | **Godot version:** 3.1
**Issue description:**
Trying to create a function named `_text_changed` without any arguments in a script which extends `LineEdit` works fine. Trying to add an argument creates an error:
![image](https://user-images.githubusercontent.com/8056898/56441078-18d61d00-62ec-11e9-8d19-4d6da274341... | bug,topic:core,confirmed | low | Critical |
435,304,231 | godot | Use the same region for equal images in Texture Atlas importer | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
1120b0b
**OS/device including version:**
5.0.7-arch1-1-ARCH
**Issue description:**
Just a suggestion, atlas pack could be even better if we d... | enhancement,topic:editor | low | Minor |
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.