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 |
|---|---|---|---|---|---|---|
426,894,448 | go | runtime: stop single goroutine | During debugging it would be useful to resume all goroutines except a single one, as it's the case in other programming languages.
In #25578 we have the request to resume a single goroutine while all others are stopped so this would be the similar/opposite request.
I'm sorry I don't know what else I could put in ... | NeedsInvestigation,Debugging,compiler/runtime | low | Critical |
426,899,836 | go | cmd/compile: keep variable declaration order in debug_info | Rather than adding `DeclColumn` info to `debug_info`, it would be great to write the variables in the declaration order. This would make it easier to display the variables in a predictable and consistent order while debugging and thus better align with the source code presentation. | NeedsInvestigation,Debugging,compiler/runtime | low | Critical |
426,908,858 | rust | unreachability warning inconsistently provided with thread spawn | Hi,
`charmander` on `#rust` discussed an interesting issue where unreachability of code was inconsistently reported when threads return `!`. We reduced it to the following example:
```rust
#![feature(never_type)]
fn run() -> ! {
loop {}
}
#[allow(dead_code)]
fn spawny<F>(closure: F) -> std::thread::J... | A-lints | low | Minor |
426,952,925 | material-ui | Implement DrawerMenuItem | <!--- Provide a general summary of the feature in the Title above -->
Drawer MenuItem: https://material-components.github.io/material-components-web-catalog/#/component/drawer
Demo:
https://material-components.github.io/material-components-web-catalog/#/component/drawer
1. The Drawer MenuItem could capture the key... | new feature,design: material | low | Major |
426,978,175 | godot | AnimationPlayer not emiting animation_finished for queued animations | **Godot version:**
3.1.stable.official
**OS/device including version:**
Windows 10
**Issue description:**
When several animations are queued in an AnimationPlayer, signal `animation_finished` is not emited when changing between animations, but `animation_started` is.
?
<pre>
$ go version
go version go1.12.4 linux/amd64
$ go list -m golang.org/x/tools
golang.org/x/tools v0.0.0-20190428024724-550556f78a90
</pre>
### Does this issue reproduce wi... | help wanted,FeatureRequest,gopls | medium | Critical |
427,119,179 | vscode | Task input parameters from showOpenDialog | It sure would be helpful if the task and launch input pickers implemented by #4758 were expanded to include one that wrapped the [`window.showOpenDialog` API](https://code.visualstudio.com/api/references/vscode-api#window) with its options for file vs. folder and filtering.
The [`window.showOpenDialog` API](https:... | feature-request,api,tasks | medium | Critical |
427,134,415 | godot | Exported variable named "script" breaks the actual script | Godot v3.1.stable.official
Linux Mint 19.1
In visual script, if a variable is called "script" (all lowercase), the script breaks.
If the project is restarted, the script is cleared from the inherited node.
**Steps to reproduce:**
Attach a visual script to a node, add a variable, name that variable "script" (... | bug,confirmed,topic:visualscript | low | Critical |
427,141,502 | go | gccgo: dereference of nil pointer to zero-width type does not panic | The Go spec says "For an operand x of pointer type *T, the pointer indirection *x denotes the variable of type T pointed to by x. If x is nil, an attempt to evaluate *x will cause a run-time panic."
This program correctly panics with cmd/compile, but does not with gccgo 8.0.0:
package main
func main() ... | NeedsInvestigation | low | Major |
427,144,400 | godot | High RAM usage of visual scripts | Godot v3.1.stable.official
Linux Mint 19.1
In my project, not the one linked here, literally 60% of the RAM usage is caused by visual scripts attached to instanced scenes. (GDscript only 6,7%)
Is it possible to share scripts (or parts of scripts) attached to instanced scenes by all instances of that scene and ... | bug,discussion,confirmed,topic:visualscript,performance | medium | Major |
427,145,334 | node | Supported asymmetric key types | This is a meta issue to keep track of asymmetric key types supported by OpenSSL and node. The following list includes all key types supported by OpenSSL 1.1.1b. Checked items are fully supported by node's `KeyObject` API:
- [x] `EVP_PKEY_RSA`: https://github.com/nodejs/node/pull/24234
- [ ] `EVP_PKEY_RSA2`: appears... | crypto,openssl | low | Minor |
427,155,667 | flutter | Clearly document relationships between WidgetsBindingObserver/WidgetsBinding/RouteObserver/RouteAware/NavigatorObserver/Navigator | Extracting from #29596
It's very easy to get them all mixed up but `WidgetsBindingObserver.didPopRoute` `RouteObserver.didPop` `RouteAware.didPop` `NavigatorObserver.didPop` all sound like the same thing while WidgetsBindingObserver.didPopRoute and NavigatorObserver.didPop for instance are completely unrelated.
... | framework,d: api docs,f: routes,P2,team-framework,triaged-framework | low | Minor |
427,159,939 | go | x/build/cmd/gopherbot: too aggressive for issue titles that contain the word "document" | `gopherbot` is too aggressive when it comes to [identifying issues](https://github.com/golang/build/blob/c72a0eda0790357f78aaa0ea71fd3cf88015facc/cmd/gopherbot/gopherbot.go#L1915-L1916) to be labelled "documentation":
```go
func isDocumentationTitle(t string) bool {
if !strings.Contains(t, "doc") && !strings.Cont... | Documentation,Builders,NeedsFix | low | Critical |
427,161,406 | pytorch | documentation for C++ / libtorch autograd profiler | ## 📚 Documentation
<!-- A clear and concise description of what content in https://pytorch.org/docs is an issue. If this has to do with the general https://pytorch.org website, please file an issue at https://github.com/pytorch/pytorch.github.io/issues/new/choose instead. If this has to do with https://pytorch.org/... | module: docs,module: cpp,triaged | low | Minor |
427,166,006 | pytorch | FP32 depthwise convolution is slow in GPU | Just tested it in IPython
```
import torch as t
conv2d = t.nn.Conv2d(32,32,3,1,1).cuda()
conv2d_depthwise = t.nn.Conv2d(32,32,3,1,1,groups=32).cuda()
inp = t.randn(2,32,512,512).cuda()
# warm up
o = conv2d(inp)
o = conv2d_depthwise(inp)
%timeit conv2d(inp)
%timeit conv2d_depthwise(inp)
```
get
``... | high priority,module: dependency bug,module: performance,module: cudnn,module: cuda,module: convolution,triaged | high | Major |
427,175,144 | pytorch | Speed-up torch.cat on CPU | ## 🚀 Feature
Please speed-up torch.cat on CPU. It should generally be about as fast as a `clone()` call on the output, since both read and write the same number of elements.
It should have good single-threaded and multi-threaded performance.
On large tensors, it seems to be ~4x slower than I would expect.
##... | module: performance,module: cpu,triaged | medium | Major |
427,177,295 | TypeScript | Conjunction of two disjunctions cause incorrect errors | **TypeScript Version:** 3.3
**Search Terms:**
* Conjunction
**Code**
```ts
interface Small {
small: true,
callbackWhenSmallIsFalsy?: undefined;
}
interface NotSmall {
small?: false;
callbackWhenSmallIsFalsy: () => void;
}
interface Green {
green?: false
numberWhenGreenT... | Suggestion,Experience Enhancement | low | Critical |
427,223,291 | pytorch | Memory not being deallocated in backward() | ## 🐛 Bug
I've recently discovered an issue with memory not being freed after the first iteration of training. It's not a leak, as memory usage stays consistent after the second pass through the loop. It appears on both CPU and GPU, however it is much more significant when running on CPU.
The issue seems to come ... | module: autograd,module: memory usage,triaged,quansight-nack | medium | Critical |
427,231,957 | TypeScript | intellisense typeroots for jsconfig.json |
## Suggestion
Add the `typeRoots` property for jsconfig.json like tsconfig.json
## Use Cases
In an Asp.net Core project , there are no intellisence for `view.cshtml` file's `<script>` when my type definition file put in `wwwroot/@typings`
## Examples
```
/aspnetcoreproject
| wwwroot
|@typin... | Suggestion,Experience Enhancement | low | Major |
427,243,609 | TypeScript | Better support for global registration patterns | ## Suggestion
It seems likely the compiler logic used for globalThis could be reused to support automated global types for custom elements , which is especially annoying and difficult to deal with in jsx
## Use Cases
this is the current dev workflow for creating and using custom elements
The custom element
l... | Suggestion,Needs Proposal | low | Critical |
427,256,298 | neovim | Remove insert delay for read-only files | https://vi.stackexchange.com/questions/3001/remove-the-insert-delay-after-entering-insert-in-a-read-only-file
This is standard vim behavior hence skipping neovim specific details.
-------
When I edit a file marked read-only, there is a jarring delay upon editing it. Please make it configurable if possible. Tha... | enhancement,ux,core | low | Major |
427,278,683 | rust | Missing line information for calls to diverging functions | Under some circumstances, `rustc` emits debug information with missing line numbers for calls to diverging functions.
```rust
fn main() {
if True == False {
// unreachable
diverge();
}
diverge();
}
#[derive(PartialEq)]
pub enum MyBool {
True,
False,
}
use MyBool::... | A-debuginfo,E-needs-test,T-compiler,C-bug | low | Critical |
427,289,818 | godot | Inconsistent Behavior For String/Bool Conversion | When converting a bool to a String, the String is set to "True" and "False" for the appropriate boolean values. However, when converting a String to a bool, the bool is set to true if the string is non-empty, regardless of the contents.
This inconsistent behavior means that if a bool set to false is converted to a s... | discussion,topic:core | low | Major |
427,296,349 | neovim | folding by column | could neovim support folding by column? for example
```c
if (a > 1) {
printf("xxx")
} else {
printf("yyy")
}
```
will be folded
```c
if (c > 1) {...} else {...}
``` | enhancement,needs:discussion | low | Major |
427,321,619 | rust | Implement a custom allocator to provide detailed memory usage info during compilation | Idea from @eddyb:
It would be great if we could measure the memory used by the compiler during compilation in a very fine-grained way. One idea to do this would be to implement a custom allocator which could record statistics for memory allocated and deallocated. This allocator could also be integrated with rustc's ... | T-compiler,C-feature-request,I-compilemem,A-self-profile | low | Minor |
427,323,973 | pytorch | [FR] add CPU information in collect_env.py | module: collect_env.py,triaged,enhancement | low | Minor | |
427,329,977 | TypeScript | Document --preserveWatchOutput in tsc --help | **TypeScript Version:** 3.4.1
I had to look up https://github.com/Microsoft/TypeScript/issues/26873 to find what the flag was in order to use it in a `--build` setup as it's not documenting in `--help`. | Docs | low | Minor |
427,335,488 | pytorch | [FR] Warn in cuda init if cuda < 10 is used with RTX cards | There are a lot of bug reports from users trying to use CUDA 9 builds with RTX cards. We should warn about the incompatibility. | module: cuda,module: molly-guard,triaged | low | Critical |
427,339,643 | TypeScript | bug: Decorator Method Name Type Restriction By Enum | **TypeScript Version:** 3.3.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
is:issue decorator type method name propertyKey
**Code:**
this works as expected:
```ts
interface SomeTypeMap {
fieldOne: string;
fieldTwo: number;
}
... | Needs Investigation | low | Critical |
427,357,439 | neovim | dot-repeat fold operation | - `nvim --version`: v0.3.4
- Vim (version: ) behaves differently? no
- Operating system/version: macOs
- Terminal name/version: iTerm
- `$TERM`: xterm-256color
### Steps to reproduce using `nvim -u NORC`
```
nvim -u NORC
move to one code block type
zfa{
will fold the block code
move to next code bloc... | enhancement,folds,normal-mode | low | Minor |
427,369,621 | TypeScript | event argument has no target.result property on IDBRequest: success event | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.4.0-dev.201
updated mar 1 & still no fix
https://github.com/Microsoft/TypeScript/blob/00bf32ca3967b07e8663d0cd2b3e2bbf572da88b/lib/lib.webworker.d.ts
goto line 1860
**Search Terms:**
ons... | Bug,Domain: lib.d.ts | low | Critical |
427,372,406 | rust | Check that non-overwrite accesses to downcast projections are dominated by variant checks. | Pattern-matching in Rust, e.g.:
```rust
fn f<T>(_: T) {}
fn g<T>(_: T) {}
// T and E have Copy bounds to reduce MIR verbosity.
pub fn foo<T: Copy, E: Copy>(r: Result<T, E>) {
match r {
Ok(x) => f(x),
Err(e) => g(e),
}
}
```
turns into this MIR (slightly cleaned up):
```rust
fn... | C-enhancement,A-codegen,T-compiler,A-MIR | low | Minor |
427,385,727 | go | x/net/http2: sendWindowUpdate may send invalid window size increment | Disclaimer: I didn't run into an issue here, but I'm working on an HTTP/2 implementation and saw something that could possibly not be according to the spec.
The code linked below contains a loop that sends multiple `WINDOW_UPDATE` frames if the window size increment is higher than the allowed by the HTTP/2 spec. It ... | NeedsInvestigation | low | Critical |
427,392,193 | vscode | Smart Backspace feature | There is a good example of how PHPStorm handles it, https://blog.jetbrains.com/phpstorm/2014/09/smart-backspace-in-phpstorm-8/ VSCode really lacks feature like this as it requires to delete all the spaces / tabs before the cursor when you want to go back to previous line end using backspace.
| feature-request,editor-commands | high | Critical |
427,402,680 | TypeScript | Synchronize unsaved config files with the TS Server | **Request**
TS Server currently only reads `tsconfig` and `jsconfig` files from disk. When editing a config file in an editor like vscode, you have to save it to the disk for the project configuration changes to take effect.
We'd like to be able to synchronize unsaved config files with the tsserver as well, the sam... | Suggestion | low | Critical |
427,402,897 | flutter | FlutterPlatformViewFactory always passes a CGRectZero | It seems like we always receive a CGRectZero when creating a platform view. Why? Shouldn't it receive the size from flutter?
https://github.com/flutter/engine/blob/f3ec767458f12bb3099248fdc57d6c0d1051f042/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm#L78 | framework,engine,a: platform-views,P2,found in release: 1.21,team-engine,triaged-engine | low | Major |
427,408,691 | opencv | Request to change the test code(or interface?) | Hello! I just submitted a [pr](https://github.com/opencv/opencv/pull/14189), and the robot reports errors on *modules/python/test/test_facedetect.py**, as
> Traceback (most recent call last):
File "/build/precommit_linux64/opencv/modules/python/test/test_facedetect.py", line 55, in test_facedetect
rects = de... | category: python bindings,RFC | low | Critical |
427,409,597 | godot | Material assigned to OBJ mesh doesn't display in the running project | **Godot version:**
v3.1.stable.official
**OS/device including version:**
Windows 10
**Issue description:**
Imported model has textures in editor, but when I press F5 (in-game) it appears white, like without textures.
**Steps to reproduce:**
Not sure, imported obj file, then double clicked, tried to change ... | bug,topic:rendering,topic:editor,confirmed,topic:3d | low | Minor |
427,453,460 | react | useMemo / useCallback cache busting opt out | According to the `React` docs, `useMemo` and `useCallback` are subject to cache purging:
> You may rely on useMemo as a performance optimization, not as a semantic guarantee. In the future, React may choose to “forget” some previously memoized values and recalculate them on next render, e.g. to free memory for offsc... | Type: Discussion | high | Major |
427,454,006 | go | cmd/go: support easy way to install a remote binary while respecting remote 'replace' and 'exclude' directives | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.1 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes, including tip.
### What did you do?
```
cd /tmp
go get foo
```
where:
* `foo` is a module with `replace` directives chosen by th... | NeedsDecision,early-in-cycle,modules | medium | Critical |
427,474,639 | go | cmd/compile: internal compiler error: Type.Elem UNSAFEPTR | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +4091cf972a Sun Mar 31 23:35:35 2019 +0000 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
reproducible only on t... | NeedsInvestigation,compiler/runtime | medium | Critical |
427,505,079 | flutter | Dead code in scaffold.dart | There's some code that can be cleaned out of scaffold.dart to make it faster and smaller:
https://github.com/flutter/flutter/pull/21535/files | team,framework,f: material design,P2,team-design,triaged-design | low | Minor |
427,539,538 | neovim | node-client: autocmd error not raised when command invoked from RPC client | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: NVIM v0.4.0-442-g0920c6ca8
- Vim (version: ) behaves differently? Yes
- Operating system/version: MacOS
- Terminal name/version: iTerm2
- `$TERM`: xterm-256color
### Steps to reproduce using `nvim -u NORC`
Create a nod... | bug,api,provider,remote-plugin | low | Critical |
427,540,512 | pytorch | How to compile/install caffe2 with cuda 9.0? | I'm building caffe2 on ubuntu 18.04 with CUDA 9.0? But when I run "python setup.py install" command, I have met issue about version of CUDA. It needs to CUDA 9.2 instead of 9.0 but i only want to build with 9.0.
How to pass it?
Thank you! | caffe2 | low | Minor |
427,555,623 | go | x/crypto/ssh/terminal: ReadPassword keeps echo disabled when stopped with Ctrl+C | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.1 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
Linux and macOS
### What did you do?
Tried to use ... | NeedsInvestigation | low | Major |
427,573,473 | kubernetes | Reduce default CPU requests of kube system services | By default some system services request too much CPU resources:
* fluentd-gcp (100mCPU)
* kube-dns (260mCPU)
* heapster (138mCPU)
However their real life those services consume maximum 10mCPU. And such requests doesn't allow to create small clusters. Also services mentioned above are running on all pods in cluste... | sig/scalability,kind/feature,lifecycle/frozen | medium | Major |
427,623,677 | vue-element-admin | How to change to tabs-like multi-page to support iframe caching | How does router-view change to tabs-like multi-page when you click on the left routing menu? Because I need to embed external iframe, and I need caching, I won't reload iframe when I switch tabs. | feature | low | Minor |
427,659,866 | kubernetes | Cannot drain node with pod with more than one Pod Disruption Budget | **What would you like to be added**:
When attempting to drain a node that has a pod scheduled on it with more than one PodDisruptionBudget the drain fails with the following message:
"Err: This pod has more than one PodDisruptionBudget, which the eviction subresource does not support."
It would be great if this wa... | kind/bug,priority/important-soon,area/usability,kind/feature,sig/apps,lifecycle/frozen,needs-triage | medium | Critical |
427,713,480 | TypeScript | Reflect.has fails to act as type guard (should act same as "in" operator) | **TypeScript Version:** ^3.4.0-dev.20190330
**Search Terms:**
Reflect.has
in operator
**Code**
```ts
const test1 = (a: { field: number } | {}) => (("field" in a) ? a.field : 0);
const test2 = (a: { field: number } | {}) => Reflect.has(a, "field") ? a.field : 0;
```
**Expected behavior:**
Both c... | Suggestion,Domain: lib.d.ts,Experience Enhancement | low | Critical |
427,733,904 | go | runtime: TestLldbPython failing with 'no intvar' | During all.bash, I 100% reproducibly get:
```
--- FAIL: TestLldbPython (7.82s)
runtime-lldb_test.go:187: Unexpected lldb output:
Created target
Created breakpoint
Process launched
Hit breakpoint
Stopped at main.go:10
no intvar
FAIL
FAIL runtime 35.143s
`... | Testing,NeedsFix | medium | Major |
427,733,947 | opencv | stitching detailed | ##### System information (version)
opencv version = 3.4.5
Linux Mint 19 Kernel version = 4.15.0-46-generic
gcc compiler 7.3.0
Qt Creator 4.5.2 Based on Qt 5.9.5 (GCC 7.3.0, 64 bit)
CPU: Intel Core i5-7600K
GPU: GeForce GTX 1060, Driver Version: 418.39, CUDA Version: 10.1
##### Detailed description
When I tr... | priority: low,category: gpu/cuda (contrib),category: stitching | low | Critical |
427,784,285 | flutter | Flutter App in Profile mode cannot install on Samsung J7 Prime | I create this issue again because this two issues are already closed.
#19751 #20062
I also facing that issue when I run flutter app in profile mode. I cannot install flutter app exported with profile mode in Samsung J7 Prime.
Here is log file.
Flutter crash report; please file at https://github.com/flutter/fl... | platform-android,tool,P3,e: samsung,team-android,triaged-android | low | Critical |
427,787,929 | TypeScript | [RFC] Improved UX via --noExplicitErrors | Leading up to TypeScript 3.0, we actively sought out users across different companies to discuss their biggest pain-points with TypeScript. One common theme truly stood out: error messages and UX.
It turns out that at these organizations, TypeScript is often the first typed language that their engineers encounter. I... | Suggestion,In Discussion,Domain: Error Messages,Add a Flag | high | Critical |
427,795,080 | pytorch | Add build tests for feature environment vars | We have quite a few feature toggle env vars. Sometimes, build error only emerges by setting specific feature vars (#18691 #18582). Shall we have build CI tests to cover all of them? | todo,module: ci,triaged | low | Critical |
427,835,517 | create-react-app | Different Hash Names in AWS CodePipeline | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
Yes
<!--
If you answered "Yes":
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't fee... | issue: bug | low | Critical |
427,857,395 | rust | Synchronization primitives not robust against unwinding | Various synchronization primitives in `std` are not robust against unwinding triggered inside the `std` implementation. This may result in
* double panics
* deadlocks
* Mutexes being poisoned that shouldn't be
Such unwinding may be triggered in many different ways, for example:
* pthread_cancel on certain pt... | A-concurrency,C-bug,T-libs | low | Critical |
427,860,856 | TypeScript | If not all sources are under rootDir, you only get an error message when combined with outDir, not with outFile | I realize this may be the currently intended behavior — somewhere, I think I saw it explained that rootDir only affects the layout of files under the output directory. However, I argue that its current behavior, when combined with outFile, can be improved.
The issue is this: Suppose you specify a rootDir, and at lea... | Bug | medium | Critical |
427,878,214 | flutter | Add ability for text field TextInputAction to be dynamic | The textInputAction for a text field is hardcoded at creation of the field. I would like the ability for the text input action to change dynamically based on the content of the field. E.g. if the text field has valid text in it, make the action show send, but if the field is blank, switch to done. | a: text input,c: new feature,framework,f: material design,P2,team-framework,triaged-framework | low | Major |
427,886,499 | kubernetes | APIserver logs status code 200 instead of 500 for serialization errors | <!-- 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!
If the matter is security related, please disclose it privately via https://kubernetes.io/security/
-->
**What happened**:
I submitted a... | kind/bug,sig/api-machinery,priority/important-longterm,lifecycle/frozen | low | Critical |
427,894,419 | go | cmd/compile, runtime: reduce function prologue overhead | As of Go 1.12, the stack bound check in every function prologue looks like
```
MOVQ FS:0xfffffff8, CX
CMPQ 0x10(CX), SP
JBE 0x4018e4
```
(or some variation thereof). This involves a chain of three dependent instructions, the first two of which are memory loads and the last of which is a conditional branch. I ... | Performance,NeedsInvestigation,compiler/runtime | low | Critical |
427,895,564 | TypeScript | 3.4 Regression on Type inference with 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... | Needs Investigation | low | Critical |
427,899,601 | rust | Tracking issue for HashMap::extract_if and HashSet::extract_if | The feature gate for the issue is `#![feature(hash_extract_if)]` (previously `hash_drain_filter`)
Currently only Vec and LinkedList have a drain_filter method, while other collections such as HashMap and HashSet do not.
This means that currently, removing items from a collection, and getting ownership of those it... | A-collections,T-libs-api,proposed-final-comment-period,C-tracking-issue,disposition-merge | high | Critical |
427,919,004 | go | strconv: document exact grammar of Parse{Float,Int,Uint} | `strconv.Parse{Float,Int,Uint}` is frequently used in the implementation of other grammars (e.g., [JSON](https://json.org/)), which may be a subset or superset of what `strconv.ParseX` currently does today. However, what `strconv.Parse` does today is not well-specified. What exactly is the input grammar that is accepte... | Documentation,NeedsFix | low | Critical |
427,930,765 | TypeScript | Support custom typeof functions | ## Search Terms
- custom typeof
- custom typeof function
- custom type guard
## Suggestion
When using a custom `typeof`‑like function, I’d like TypeScript compiler to be able to infer the correct type in the scope guarded by the custom `typeof`‑like function.
## Use Cases
I need this... | Suggestion,Awaiting More Feedback | low | Major |
427,941,519 | go | cmd/compile: unexpected difference in compiled code for returned array | ### 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 did you do?
I compiled this code:
```go
package test
func test() [16]byte {
x := [16]byte{0}
return x
}
```
... | NeedsInvestigation,binary-size,compiler/runtime | low | Major |
427,990,728 | go | cmd/compile: add line numbers for function exit paths? | Noticed while looking at https://github.com/golang/go/issues/31193.
```go
func count(x uint) {
if x != 0 {
count(x - 1)
}
}
```
compiles to:
```
"".count STEXT size=70 args=0x8 locals=0x10
0x0000 00000 (count_test.go:8) TEXT "".count(SB), ABIInternal, $16-8
0x0000 00000 (count_test.go:8) MOVQ (T... | NeedsInvestigation,Debugging,compiler/runtime | low | Critical |
428,015,084 | create-react-app | create react app not wroking | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
(write your answer here)
<!--
If you answered "Yes":
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're ... | issue: question | low | Critical |
428,016,977 | godot | Opengles 2.0 BUG BackBufferCopy child node, change the ZIndex buffer to screen cache. BackBuffer Copy cannot be sampled correctly | **Godot version:**
3.2 dev
**OS/device including version:**
windows N 1080ti opengles 2.0
**Issue description:**
BackBufferCopy child node, change the ZIndex buffer to screen cache. BackBuffer Copy cannot be sampled correctly
| bug,topic:rendering,confirmed | low | Critical |
428,032,141 | react | Is it recommended to fetch in effect or should it be imperative | In out team we encountered a explosive discussion on how we should handle the relationship of a fetch and its parameters, after searching in community I still find various solutions to this, I'd like to raise this discussion to find a best practive.
## Background
Suppose we have a simple list view like:
<img w... | Type: Discussion,Component: Hooks | low | Minor |
428,051,691 | rust | Thread locals keep Rust shared library from unloading `dlclose`. | OS: Ubuntu 18.04
Doesn't seem to happen on Windows, untested on MacOS.
I created [`cr-sys`](https://github.com/Neopallium/cr-sys) crate to wrap [cr.h: A Simple C Hot Reload Header-only Library](https://github.com/fungos/cr).
It works, except that each version of the plugin isn't unloaded correctly, if the plugin... | O-linux,A-thread-locals,C-bug,T-libs | low | Minor |
428,176,679 | scrcpy | flatpak package | Hi,I have packaged scrcpy with flatpak.You can find it in https://github.com/12wk34/scrcpy-flatpak
Could you add it to flathub.org cause they require the developer to do it.
The more information about app submission: https://github.com/flathub/flathub/wiki/App-Submission | distrib | medium | Critical |
428,221,838 | kubernetes | single-use controller config defaults should auto-apply | The functions added in https://github.com/kubernetes/kubernetes/blob/master/pkg/controller/apis/config/v1alpha1/defaults.go#L68-L105 should be normal defaults. The "RecommendedDefaults" helper function approach was only needed for config structs used in multiple contexts (like client configuration, rate limiting, leade... | priority/backlog,kind/cleanup,lifecycle/frozen,wg/component-standard | low | Minor |
428,266,989 | go | x/tools/cmd/goimports: do not prefix packages from GOROOT if it is inside a module | ### What version of Go are you using (`go version`)?
<pre>
go version go1.12beta2 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
<details>
<pre>
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/do... | help wanted,NeedsFix,Tools | low | Critical |
428,267,939 | pytorch | MaxPool with n-dimensional tensors | ## 🚀 Feature:
Currently `MaxPoolxd(...)` accepts only up to `x+2`-dimensional input tensors.
The idea is to make `MaxPool` to work with any `n`-dimensional tensor, such that the maxpooling operation is applied only on the last `x` dimensions.
## Motivation
It can be useful to avoid verbose reshaping from/to ... | module: nn,triaged,enhancement,module: pooling | low | Minor |
428,282,339 | pytorch | Numerical instability KL divergence RelaxedOneHotCategorical | ## 🐛 Bug
It seems that computing the KL divergence RelaxedOneHotCategorical leads to numerical instabilities.
## To Reproduce
```python
import torch
from torch.distributions import RelaxedOneHotCategorical
p_m = RelaxedOneHotCategorical(torch.tensor([2.2]), probs=torch.tensor([0.1, 0.2, 0.3, 0.4]))
ba... | module: numerical-stability,module: distributions,triaged | low | Critical |
428,318,364 | TypeScript | Nested conditional type with generic tuple argument always expands to false branch. | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** next (`3.4.0-dev.20190330`), latest (`3.4.1`)
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
* tuple conditional type
* tu... | Bug | low | Critical |
428,347,793 | TypeScript | TS 3.4: Error when passing dynamically imported generic type as a function argument | <!-- 🚨 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 |
428,366,060 | rust | Re-enable LLVM and debug assertions for slow builders | Assertions are currently disabled on a number of builders:
* test-various - debug asserts, intentional - needed to properly test code size of some tests
* dist-x86_64-apple - llvm, debug
* dist-x86_64-apple-alt - llvm, debug
* x86_64-apple - llvm, debug
* dist-aarch64-apple - llvm, debug | O-macos,P-low,T-infra | low | Critical |
428,418,595 | go | x/fuzzdata: new repository for fuzzing corpus data | ### Summary
In #30719 and #30979, `dvyukov/go-fuzz` compatible fuzz functions were landed in:
* the standard library in [src/image/png/fuzz.go](https://github.com/golang/go/blob/master/src/image/png/fuzz.go)
* `golang.org/x` in [golang.org/x/image/tiff/fuzz.go](https://github.com/golang/image/blob/master/tiff/fuzz... | NeedsDecision | low | Critical |
428,466,635 | flutter | Engine often does not correctly handle errors from the Dart embedding API | The DART_CHECK_VALID macro had incorrect behavior in the face of Isolate.kill and Dart_Cleanup. It was removed upstream.
The engine is still in maybe places calling Dart_PropagateError in a context where is not Dart frame to which the error can be propagated. One example is the initialization of the core libraries t... | engine,dependency: dart,P2,team-engine,triaged-engine | low | Critical |
428,479,730 | pytorch | Value of torch.backends.cudnn.benchmark Baked into JIT-Traced Modules ( 150x slowdown on ConvTranspose2d() ) [jit] [libtorch] [cudnn] | ## 🐛 Bug
If you trace a module with `torch.jit.trace(...)` and load that script module in C++ via LibTorch, the resulting behavior in C++ depends on whether or not the `torch.backends.cudnn.benchmark` flag was set. Calls to `at::globalContext().setBenchmarkCuDNN(true/false)` from the C++ API at runtime appear to ha... | oncall: jit,triaged | low | Critical |
428,492,147 | TypeScript | Suggestion: support compile time annotations alongside runtime decorators | ## Search Terms
annotation
compile time decorator
## Suggestion
The way that decorators are currently implemented in TypeScript mirrors their functionality in JS in that they exist at run time and work on run time objects. Because of TypeScript's transpiled nature, a tremendous amount of important metadata i... | Suggestion,Awaiting More Feedback | medium | Major |
428,525,508 | rust | Why are 'maybe' bounds not permitted in trait objects? | For example,
```rust
type Foo = dyn Send + ?Sized;
```
gives the error `` `?Trait` is not permitted in trait object types ``.
Is there any good reason for this rule? Either from a language-theoretic or implementation viewpoint.
I ask mainly because I'm try to enforce this for trait objects that use trait ... | C-enhancement,A-trait-system,T-lang,A-trait-objects | low | Critical |
428,550,192 | rust | Run-pass checks for warnings, notes, etc. | When writing https://github.com/rust-lang/rust/pull/59658, I found it neccesary to check for warnings in a `run-pass` test because `deny(warning)` would observably change the warning pattern I was testing for in the first place.
It would be nice if `run-pass` would check for `WARN`, `NOTE`, `HELP`, etc. and cause a ... | A-testsuite,A-lints,T-compiler | low | Critical |
428,640,454 | nvm | Node installed via nvm is not available in tools which weren't run from a terminal |
- Operating system and version:
Ubuntu 18.04 (Version doesn't seem to be relevant, I have seen this behavior on various versions)
- `nvm debug` output:
<details>
```sh
nvm --version: v0.33.11
$SHELL: /bin/bash
$SHLVL: 1
$HOME: /home/norbert-sule
$NVM_DIR: '$HOME/.nvm'
$PATH: $NVM_DIR/versions/node/... | installing nvm: profile detection | low | Critical |
428,666,288 | TypeScript | `pipe` loses generics | <!-- 🚨 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... | Needs Investigation | low | Critical |
428,722,604 | pytorch | [Feature Request] Flattened indices option for max pooling | ## 🚀 Feature
Option to return flattened indices for max pooling layers.
## Motivation
Some operations require to have access to the flattened indices that ONNX returns initially. For instance, let's consider this vision example: I am working on a layer that counts how many times the element (pixel) at position `i... | module: nn,triaged,enhancement,module: pooling | low | Major |
428,751,207 | godot | Create Outline Mesh unexpected result for PlaneMesh and flat CubeMesh | **Godot version:**
Godot v3.1.stable.official
**OS/device including version:**
Windows 10 64bit
**Issue description:**
The "Create Outline Mesh" doesn't work properly for PlaneMesh (or CubeMesh with x xor y xor z set to 0), creating an outline that is just a copy of the original mesh offset by the specified ... | topic:rendering,topic:editor,documentation | low | Minor |
428,870,399 | pytorch | Running custom operator tests manually is too difficult | To compile/run custom operator tests one needs to:
1. build the repo normally
2. find the folder where the custom operator tests live
3. make a new cmake build folder for them
4. build cmake, setting the CMAKE_PREFIX_PATH correctly, otherwise the FindTorch.cmake file is not found and it doesn't work
5. figure ou... | module: cpp-extensions,module: tests,triaged,enhancement | low | Minor |
428,906,438 | flutter | Touching the screen should be represented as 0x01 in buttons | ## Reasoning
Currently, "touching" is not considered as a button. More specifically,
| Action | Dispatched `PointerDownEvent` |
| -- | -- |
| Touch screen tap start | `buttons = 0x0` |
| Stylus tap start | `buttons = <0_or_other_buttons>` |
| Inv-stylus tap start | `buttons = <0_or_other_buttons>` |
However... | framework,f: gestures,c: proposal,P3,team-framework,triaged-framework | low | Minor |
428,950,128 | rust | Move the compiler flags in the unstable book to the rustc book | # Description
Currently the unstable book contains three sections:
- Unstable compiler flags
- Unstable language features
- Unstable library features.
As has been mentioned in #41142 it might be better to move the unstable compiler flags to the rustc book. I see the following reasons why:
- Compiler flags... | A-frontend,C-enhancement,T-compiler,A-docs | low | Minor |
428,978,599 | storybook | Javascript heap out of memory when doing build-storybook | **Describe the bug**
When trying to do build-storybook it gets to 92% and then fails with the following out of memory error:
```
92% chunk asset optimization TerserPlugin
FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
1: 00007FF7CF93EEE5
2: 00007FF7CF... | question / support,has workaround,performance issue | high | Critical |
428,989,944 | node | Documented way to add certificates to existing SecureContext | In some cases, I've found that I've wanted to add a single CA to the list of trusted CAs that Node.js uses by default. There seems to be no documented way to do this. As it stands, officially, if you want to use non standard CAs, you can, but must also specify all CAs that might have otherwise been loaded automatically... | tls,crypto,feature request,never-stale | medium | Critical |
428,990,855 | flutter | Make IgnorePointer more customizable | We wrap the entire scrollable's child in an IgnorePointer which is the right behavior on Android. But for iOS, even though the large title nav bar moves with the scrollable, it's not 'part of the scrollable'.
Vertical drag gestures on the nav bar doesn't apply to the scrollable and the contents of the nav bar shoul... | platform-ios,framework,a: fidelity,c: proposal,P2,team-ios,triaged-ios | low | Minor |
428,992,483 | three.js | Non POT ImageBitmap texture can be upside down | ##### Description of the problem
Non POT `ImageBitmap` texture can be upside down.
Demo: https://jsfiddle.net/7do6um2f/ (Use Chrome)
Non POT image can be resized to POT `canvas` in `WebGLRenderer(WebGLTexture)`. If original image is `ImageBitmap` and `texture.flipY` is `true`, `texture` will be upside down.
... | Bug | low | Major |
429,004,896 | flutter | Write gesture test for GoogleMap#onTap once we have end to end testing | We don't support testing gestures on platform views yet. | team,platform-android,platform-ios,a: platform-views,p: maps,package,team-ecosystem,P2,c: tech-debt,triaged-ecosystem | low | Minor |
429,059,722 | TypeScript | Add JSDOC @module support for intellisense. | ## Search Terms
Intellisense jsdoc support for modules
## Suggestion
When adding `/** @module moduleName Module Description. */` to a module, then doing this:
import * as myName from "./moduleName";
I think it makes sense, when importing the whole namespace, to include the jsdoc `@module` comment.
... | Suggestion,Awaiting More Feedback | low | Major |
429,062,162 | flutter | _scaffoldKey.currentState.showBottomSheet with grey background overlay | I'm using _scaffoldKey.currentState.showBottomSheet instead of showBottomSheet because it handle the keyboard better than showBottomSheet. But the problem is when I'm using _scaffoldKey.currentState.showBottomSheet, it not showing grey background overlay. It is possible to add the background overlay ? | framework,f: material design,a: quality,P2,workaround available,team-design,triaged-design | low | Major |
429,093,686 | frp | proposal - reload config file on save | ## abstract
I'd like to contribute to this project by adding a new feature. I wish to support reloading the config files automatically on save.
## details
Users can enable this feature in `frpc.ini`
```
reload_on_save = true
```
and whenever the config file is written, a `reload` is automatically triggered.
###... | proposal | low | Major |
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.