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 |
|---|---|---|---|---|---|---|
404,384,033 | godot | Unstable RigidBody when adding/applying forces/torque | **Godot version:**
3.0/3.1 Bullet physics engine (Godot internal doesn't even work)
**Issue description:**
Applying torque on a RigidBody leads into strange behavior, tested using Cylinder and Sphere collision shapes. The wheel (rigidbody) that I want to simulate rolls normally at first while trying to go threw th... | bug,confirmed,topic:physics | low | Critical |
404,418,489 | go | net: better documentation of UNIX sockets | The documentation on how to use the various net.Unix* features is rather thin. I don't mind reading man pages for the underlying system calls, but it's often unclear what the abstractions actually do in terms of those system calls. Some substantial examples would help, including ones that show how to pass a file descri... | ExpertNeeded,Documentation,NeedsFix | low | Minor |
404,481,828 | pytorch | The word "ints" is not rendered correclty in docs. | ## π Documentation
See attached image. "Tuple of ints" is rendered as "Tuple of python:ints" instead of "int" being converted into a cross-reference.
<img width="536" alt="image" src="https://user-images.githubusercontent.com/1893159/51939676-10053780-23de-11e9-80e2-7fa091ea4396.png">
<!-- A clear and conci... | todo,module: docs,triaged | low | Minor |
404,489,042 | kubernetes | StatefulSetStatus CurrentRevision doesn't update with OnDelete update strategy | Note: This may be an enhancement request, but I'm writing it up as a bug since it took me by surprise given how Status was being updated for certain fields and not for others.
**What happened**: I have a statefulset with the `OnDelete` strategy and I deleted the pods, which successfully restarted with the correct, u... | kind/bug,sig/apps,needs-triage | medium | Critical |
404,521,747 | go | sizeof: new package with constants for Int, Uint, Uintptr, Int8, Float64, etc | See the tail of the (closed) proposal #5602. There I suggested that instead of making unsafe.Sizeof a safe thing, which it still kinda isn't in general, we solve 90% of the problem by add easy-to-use constants to a safe package, such as:
```
package reflect
const (
SizeofInt = <size on this machine>
Sizeof... | help wanted,Proposal,Proposal-Accepted,Proposal-Hold | high | Critical |
404,522,278 | kubernetes | predictable memory usage by reflector | **What would you like to be added**:
Predictable memory usage by reflector. I mean, the memory used by reflector does not have to be linear to the total number of objects in apiserver, since the list call can be paged, so I would expect the memory used should just be enough to handle a single page ideally.
**Why ... | sig/scalability,sig/api-machinery,kind/feature,priority/important-longterm,lifecycle/frozen | medium | Major |
404,525,878 | create-react-app | Discussing Advanced Configuration Options | I believe there's a great need for CRA to support advanced configuration. [React-app-rewired](https://github.com/timarney/react-app-rewired) was the first to let users patch their CRA configs. Then CRA changed (2.0+ and the merging of dev & prod builds). So... I made [Rescripts](https://github.com/harrysolovay/rescript... | issue: proposal | high | Critical |
404,589,478 | pytorch | Error with setting tensors to use cpu in packed_padded_sequence when CUDA tensor is set as default | ## π Bug
@ptrblck helped me diagnose the issue
<!-- A clear and concise description of what the bug is. -->
if Default tensors are set to gpu, setting length to cpu for pack_padded_sequence doesn't work
## To Reproduce
Steps to reproduce the behavior:
`import torch`
`torch.set_default_tensor_type(torch.c... | module: rnn,module: cuda,triaged | medium | Critical |
404,598,280 | rust | error: undefined symbol: __chkstk in compiling UEFI application on ARM64 | Hi,
I'm creating a UEFI application on ARM64. My target .json file is as follows and it works well for a simple hello_world application.
```
{
"llvm-target": "aarch64-pc-windows-msvc",
"target-endian": "little",
"target-pointer-width": "64",
"target-c-int-width": "32",
"os": "uefi",
"arch": "aa... | A-linkage,O-AArch64 | low | Critical |
404,691,635 | pytorch | KeyError: 'No translator registered for layer: name: "res3b_relu_norm"\ntype: "Normalize"\nbottom: "res3b"\ntop: "res3b_relu_norm"\nnorm_param | It looks like "Normalize" op is not supported in 'caffe_translator.py' when i convert my model from caffe to caffe2.right? I just call the script directly from command line:
`python -m caffe2.python.caffe_translator deploy.prototxt pretrained.caffemodel`
Will you guys add this op to 'caffe_translator.py' in near fu... | caffe2 | low | Critical |
404,731,830 | flutter | Additional TextOverflow variants: middle, start | need an equivalent like an android: middle, start
https://developer.android.com/reference/android/widget/TextView#attr_android:ellipsize | c: new feature,framework,engine,a: typography,P2,team-engine,triaged-engine | low | Minor |
404,749,040 | go | x/tools/go/analysis: golang-x-tools doesn't build with gccgo (testsuite failures) | Trying to build golang-x-tools with gccgo from gcc-8 fails due to multiple testsuite failures:
<details>
<summary>build log</summary>
```
cd build && go test -vet=off -v -p 64 -test.short golang.org/x/tools/benchmark/parse golang.org/x/tools/blog golang.org/x/tools/blog/atom golang.org/x/tools/cmd/benchcmp go... | NeedsInvestigation,Analysis | low | Critical |
404,807,095 | flutter | Wrapped Text has unexpected intrinsic size | I'd expect wrapped Text to have an intrinsic size that fits the text. However, if I wrap such a text with an `IntrinsicHeight` widget, the height includes the first line, only. If wrapped with an `IntrinsicWidth` widget, on the other hand, the width does not only fit the text, but stretches to the available width.
H... | framework,a: typography,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-framework,triaged-framework | low | Critical |
404,849,630 | go | go/parser: keep parsing after error limit is reached? | This issue and repro case was raised by @rogpeppe:
This file fails to parse:
```go
package m
func _() {
_(_
}
func _() {
if _ {
_
}
if _ {
}
_ = _
if _ {
_
}
}
```
However, commenting out one line (unrelated to the error) causes the file to parse correctly.
```go
package m
... | NeedsInvestigation | low | Critical |
404,899,054 | vscode | Revealing in the editor should be aware of how much space the command palette is using | Was trying to navigate symbols but I couldn't see the active symbol:

This was with editor.zoomLevel: 0 and and terminal with 13 rows active. | feature-request,quick-pick | low | Minor |
404,911,538 | opencv | UBSan runtime errors in imgproc/src/drawing.cpp | ##### System information (version)
- OpenCV => 3.1.0
- Operating System / Platform => Fedora 28
- Compiler => Clang 7.0 @2018/10/09
##### Detailed description
The imgproc drawing.cpp code relies upon undefined behavior in the C++ compiler to handle its translation between integral and fixed point position repr... | priority: low | low | Critical |
404,970,074 | opencv | Compilation (master with contrib) fails at debayer.cu compilation | Compilation fails with : i:\opencv-master\opencv\modules\core\include\opencv2\core\cuda\detail/color_detail.hpp(535): error : dynamic initializa
tion is not supported for a __constant__ variable [I:\opencv-master\build\modules\cudaimgproc\opencv_cudaimgproc.vcxpro
j]
i:\opencv-master\opencv\modules\core\include\op... | category: build/install,category: gpu/cuda (contrib) | low | Critical |
405,030,612 | flutter | Embedder proc resolver API requires questionable cast | Following on from discussion [here](https://github.com/google/flutter-desktop-embedding/pull/184#pullrequestreview-188183991).
Unless I'm confused, the current API requires clients to cast between a function pointer and an object pointer (void*). The standard does *not* require that this is a safe/valid cast, which ... | engine,a: quality,e: embedder,P2,team-engine,triaged-engine | low | Minor |
405,049,299 | TypeScript | Readonly type breaks Set and Map | <!-- π¨ 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,In Discussion | low | Critical |
405,054,406 | pytorch | Make sure `data_ptr` for non-zero-size input tensors stays the same after the VariableType dispatch | In VariableType.cpp, https://github.com/pytorch/pytorch/pull/16305 adds checks to make sure we are still using the same input `TensorImpl` and `Storage` after we call the non-autograd in-place function. However, it is still possible that the in-place function changes the `data_ptr` of the input tensors without changing... | module: autograd,module: molly-guard,triaged,module: assert failure | low | Minor |
405,057,497 | pytorch | Benchmarking pre-trained model in Caffe2 | If you have a question or would like help and support, please ask at our
[forums](https://discuss.pytorch.org/).
If you are submitting a feature request, please preface the title with [feature request].
If you are submitting a bug report, please fill in the following details.
## Issue description
I am trying t... | caffe2 | low | Critical |
405,060,481 | pytorch | [JIT] NVRTC unknown error | ## π Bug
I have consistently run into NVRTC unknown error.
```RuntimeError: /pytorch-atg/torch/csrc/jit/fuser/cuda/fused_kernel.cpp:138: NVRTC_ERROR unknown```
I ran with `export PYTORCH_FUSION_DEBUG=1`
and I got this:
```
fusion code:
typedef unsigned char uint8_t;
typedef signed char int8_t;
type... | needs reproduction,oncall: jit,has workaround | medium | Critical |
405,081,769 | pytorch | Feature Request: Earth Mover's Distance Loss | ## π Feature
(Approximate) Earth Mover's Distance Loss Function
## Motivation
This is a common function used in deep learning papers for point cloud generation and distribution matching.
## Pitch
This ought to be added to the loss function library as it is only increasing in usage in deep learning literature.... | module: loss,triaged,function request | low | Critical |
405,099,184 | pytorch | Error while installing pytorch | I am trying to install pytorch with caffe2 support. After cloning the library, I ran this command:
> FULL_CAFFE2=1 python setup.py install
Error
```
make: *** No rule to make target 'install'. Stop.
Traceback (most recent call last):
File "setup.py", line 720, in <module>
build_deps()
File "setu... | module: build,caffe2 | medium | Critical |
405,183,069 | flutter | Debug console spew from WebView plugin on Android | When running WebView widget on Android Simulator I see constant stream of messages in the console like the following:
```
I/zygote ( 5185): NativeAlloc concurrent copying GC freed 14(32KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 1597KB/3MB, paused 271us total 241.543ms
W/zygote ( 5185): Attempt to remove ... | platform-android,a: quality,p: webview,package,has reproducible steps,P2,found in release: 3.10,found in release: 3.11,team-android,triaged-android | low | Critical |
405,227,835 | godot | Materials are rendering black if there are no lights in the scene (Intel driver bug) | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:3.1**
<!-- Specify commit hash if non-official. -->
**OS/device including version:Windows 7 64 bit**
Intel g41 express chipset
Open Gl 2.1
<!-- Spe... | bug,platform:windows,topic:rendering,confirmed,topic:thirdparty,topic:3d | medium | Critical |
405,313,862 | rust | Unnecessary implicit reborrow cause confusing compiler error | When calling a function with mutable reference itself, it will cause unnecessary implicit reborrow, which may produces "cannot borrow ... because it is also borrowed as mutable", though there is "no borrow" in the error line.
[Example](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=5276b24d... | C-enhancement,A-diagnostics,T-compiler,D-papercut | low | Critical |
405,366,338 | go | x/build/cmd/gerritbot: not possible to make cherry-pick CLs via PRs | I investigated whether it's possible to create cherry-pick CLs by making a Pull Request, a question that was brought up on the golang-dev mailing list [here](https://groups.google.com/d/msg/golang-dev/Tc8OlLRsju0/AysH6zdeAwAJ) and in issue #25020.
In order to learn whether it's supported, I made an attempt and learn... | Builders,NeedsInvestigation,FeatureRequest | low | Minor |
405,372,476 | go | xerrors: allow accessing the frame for each error directly | When using structured logging with errors, we don't want a string representation of the error + the frame, we want to access the error string, function name and file:line separately to make them separate fields in the UI and to make it easier to analyze logs. For now, I've written an `xerrors.printer` that just stores ... | NeedsDecision | low | Critical |
405,436,533 | vscode | Auto-indent on closing brace | VSCode Version: Code 1.30.2
OS Version: Windows_NT x64 10.0.17763
Extensions: Extensions are enabled

on typing the closing brace. Meaning VSCode should take the current tab indentation size in account an... | feature-request,typescript,javascript,editor-autoindent,on-unit-test | medium | Critical |
405,502,220 | flutter | Add lints to catch common DiagnosticsProperty related bugs | The goal of these lints is to catch cases where a developer added properties to a class implementing Diagnosticable class but forgot to update the debugFillProperties method to include the properties.
Additionally we can add lints for trivial to spot cases where the right DiagnosticsProperty subclass wasn't used for... | team,framework,dependency: dart,P2,team-framework,triaged-framework | low | Critical |
405,503,053 | rust | Inconsistencies when exporting dynamic symbols from executables | I'm working on a project that uses dynamic loading with callbacks back into the Rust executable. Now that the project is big enough to require some of these callbacks to be defined in separate crates, I'm finding the behavior of when a symbol is exported or not to be very inconsistent.
I've tried to shrink the issue... | A-FFI | low | Major |
405,548,767 | rust | self-less method missing return type lifetime should suggest adding &self | I frequently find myself forgetting to write the `&self` on methods. In the scenario where I write a method whose return type has a lifetime that I've elided, it would be nice if the compiler could include a note suggesting that I might have meant to add `&self` on the method, instead of (or in addition to) suggesting ... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
405,553,077 | godot | 2D Inverse Kinematics: Add a bool property to control the IK's bend orientation | The 2D IKs orient based on how you move bones in the chain. Often the limbs bend the wrong way and there's no control to fix that:

You generally want 2d IKs to bend only one way. in Spine2D, you have a b... | enhancement,topic:core | low | Minor |
405,554,057 | godot | 2D Inverse Kinematics only work with the "Make Custom Bones" tool, not Bone2D nodes | "Make IK Chain" doesn't work with Bone2D nodes. Even if you have a chain of Bone2Ds, you must first select them, go to the bones menu in the toolbar and click "Make Custom Bones From Nodes".
Instead, I would expect to:
1. Select a chain of Bone2D nodes
2. Open the bones menu in the toolbar, click "Make IK chain"... | enhancement,topic:editor,usability,topic:2d | low | Major |
405,586,551 | rust | Expose core::intrinsics::volatile_copy_nonoverlapping_memory as core::ptr::volatile_copy_nonoverlapping | I propose that we expose [`core::intrinsics::volatile_copy_nonoverlapping_memory`](https://doc.rust-lang.org/core/intrinsics/fn.volatile_copy_nonoverlapping_memory.html) as the stable `core::ptr::volatile_copy_nonoverlapping`. It might make sense to stabilize other intrinsics while we're at it; I only mention this one ... | T-lang,T-libs-api,C-feature-request | medium | Major |
405,602,439 | vscode | Reveal in sidebar by double-click breadcrumb | I've set the `explorer.autoReveal: false` in my settings.
It would be great, if i am double-click the file or folder in the breadcrumbs it would be reveal in sidebar/explorer. | feature-request,breadcrumbs | medium | Major |
405,651,482 | pytorch | pytorch was blocked at loss.backward | The pytorch version is 0.4.0
The call stack in python as follow:
```
File "/home/admin/code/PROPAGATE/tools/0_train_base.py", line 290, in <module>
process(sys.argv[1], sys.argv[2], int(sys.argv[3]), sys.argv[4])
File "/home/admin/code/PROPAGATE/tools/0_train_base.py", line 212, in process
solver.solv... | needs reproduction,oncall: distributed,triaged | low | Major |
405,652,372 | angular | compareWith for RadioControlValueAccessor | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
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.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
οΏ½... | feature,freq1: low,area: forms,feature: under consideration | low | Major |
405,654,178 | opencv | Loss of type of fixed-type matrix `cv::Mat_<T>` when initialized with empty matrix | ##### System information
- OpenCV = 4.0.1
- Compiler = MSVC
##### Description
I have a fixed-type matrix that is initialized by some other matrix:
cv::Mat_<double> A = B.clone();
So, when matrix `B` is empty, type of `A` becomes `UINT_8` | RFC | low | Minor |
405,656,651 | pytorch | CUDA cache doubles on the second batch and causes OOM, `empty_cache` doesn't empty it | I am trying to train an FCN8s net on full-sized VOC2012 data with batch size 1. I use Pytorch 1.0.0a0 and 32Gb GPU. Note, that the original model was trained on a 12Gb card.
Here is this question on the forum: https://discuss.pytorch.org/t/fcn-training-on-full-size-voc-data-cuda-oom/36074
## Issue description
CU... | module: dependency bug,module: cudnn,triaged | medium | Critical |
405,707,078 | kubernetes | Scalability tests: Apiserver latency metrics have 0s as latency values | <!-- 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**:
Some of calls latencies have 0 values in scalability performance test APIResponsiveness summary.
https://storage.goog... | kind/bug,sig/scalability,lifecycle/frozen | low | Critical |
405,711,646 | rust | Annotating higher-ranked lifetimes on closures is arduous | Executive summary: If you want to make a closure returning a higher-ranked lifetime, you need to use a helper like `fn annotate<T,F>(f: F) -> F where F: Fn(&T) -> &T { f }`. We could probably do better.
----
Spawned off of https://github.com/rust-lang/rust/issues/22557#issuecomment-77467069 (and possibly a duplic... | A-lifetimes,A-closures,T-lang | medium | Critical |
405,724,273 | create-react-app | Creation of production build is compiling files in __mocks__ folders | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
Yes
### Did you try recovering your dependencies?
Yes
### Environment
Environment Info:
System:
OS: Windows 10
CPU: x64 Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz
Binaries:
npm: 6.4.1 - C:\Program Files\node... | issue: needs investigation | low | Critical |
405,732,522 | go | cmd/go: validate GOBIN early as possible | <pre>
GO111MODULE=on GOPATH=`mktemp -d` GOBIN=. tipgo get golang.org/x/tools/cmd/godoc
go: finding golang.org/x/tools/cmd/godoc latest
go: finding golang.org/x/tools/cmd latest
go: finding golang.org/x/tools latest
go: downloading golang.org/x/tools v0.0.0-20190131163942-067a2f313b69
go: extracting golang.org/x/t... | ToolSpeed,NeedsDecision,GoCommand | low | Critical |
405,779,505 | go | testing: move gomaxprocs to key-value pair in benchmark output | It's been a few releases since we introduced the new `key: value` syntax in benchmark output. When we first introduced it, we left the `-P` suffix to signal the GOMAXPROCS setting, to avoid disruption for tools that didn't know about the new syntax. At this point I think we can safely move that into the key-value secti... | NeedsFix,early-in-cycle | low | Minor |
405,813,319 | flutter | Video player: add the absolute position property for the live stream | The idea is to add the absolute position date time property for the currently playing stream. It's a necessary feature for the app with highly usage of live streams(HLS or DASH).
The aspects where it can be useful:
- Correct progress indicator positioning on the timeline
- Easy selection of the currently playing pro... | c: new feature,p: video_player,package,team-ecosystem,P3,triaged-ecosystem | low | Minor |
405,816,825 | angular | [Bug]: Namespaced Custom Events | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
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,breaking changes,freq1: low,area: core,state: confirmed,core: event listeners,design complexity: major,P3 | low | Critical |
405,825,518 | pytorch | new_zeros is not traced correctly | ## π Bug
If the model contains tensor.new_zeros, the tracer only generates a constant tensor. However, we expect it generates the right zero operator/function.
## To Reproduce
```
import torch
from torch import nn
from torch import jit
from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequen... | oncall: jit,good first issue,triaged | low | Critical |
405,843,942 | pytorch | numa_test.py fails with AssertionError | ## π Bug
caffe2/python/numa_test.py fails intermittently. It seems as if Caffe2 ignores whatever numa_node_id is set in the numa_device_option when running ConstantFill for output_blob_0 and output_blob_1. This test case will also print out some warnings about `1` not being a valid NUMA node when run on POWER. Just... | caffe2 | low | Critical |
405,861,475 | pytorch | Reduce fragmentation with CUDA caching allocator when using many streams | At the moment, once we retrieve a block from `cudaMalloc` for the CUDA caching allocator, it is permanently associated with whatever stream was current at the time it was allocated. Even if it is subsequently split, all splits of the block live on the same stream. This means that if you have a program which uses many s... | module: cuda,module: memory usage,triaged | low | Minor |
405,872,584 | angular | Add documentation for zone.js in Angular | <!--π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
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.
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
π
... | effort2: days,freq2: medium,state: community,P3,area: docs | low | Critical |
405,931,534 | rust | Add lints for all common traits | The [interoperability API guidelines](https://rust-lang-nursery.github.io/api-guidelines/interoperability.html#c-common-traits) suggest that all of the following traits should be eagerly implemented for types where it's appropriate:
* `Copy`
* `Clone`
* `Eq`
* `PartialEq`
* `Ord`
* `PartialOrd`
* `Hash`... | A-lints,T-compiler,C-feature-request | low | Critical |
405,938,180 | rust | Recursive Drop causes stack overflow even for object trees | The issue seems to be that the way Drop is currently compiled is fatally flawed for recursive data structures.
The following code doesn't seem to have an fundamental issues that would cause it to fail, but it ends up causing a stack overflow, even for the version which uses Box instead of CustomBox.
```rust
use ... | C-enhancement,A-destructors,T-lang,A-docs | low | Critical |
405,939,491 | TypeScript | Relations based on variance markers do not take into account parameters used as key 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... | Bug | low | Critical |
405,960,038 | kubernetes | RawExtension yaml/json doesn't roundtrip to equal objects - causes ControllerRevisions that can break update validation | /sig api-machinery
/kind bug
@kubernetes/sig-api-machinery-bugs
One controller revision can be un-updatable if its content's order isn't forced by k/k codec stack
**What happened**:
Initially I found some error logs in garbage-collector/kube-controller-manager which was trying to orphaning a ControllerRev... | kind/bug,priority/important-soon,sig/api-machinery,lifecycle/frozen | low | Critical |
405,983,980 | rust | Expand implicit conversion of functions to function pointers | (I'm not sure if this requires a RFC, if so please let me know.)
Allow implicit conversion of functions to function pointers when trait is implemented on a function pointer. The code below shows the problem I'm having.
Calling `accepts_fn` works fine today, however calling `accepts_my_fn` doesn't work, even thoug... | A-trait-system,T-lang,C-feature-request,A-coercions | low | Critical |
406,000,308 | kubernetes | TTL support for ConfigMaps tied to job completion | /sig api-machinery
<!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
Ability to set ConfigMap lifecycle to delete after the completion of a Job resource object.
**Why is this needed**:
Job objects are inherently ephemeral. And support for thi... | sig/api-machinery,kind/feature,sig/apps,lifecycle/frozen | medium | Critical |
406,016,032 | rust | Field ordering still causes extra memcpy | This is similar to #56356 except this time with more fields:
```rust
use std::mem;
struct SV {
capacity: usize,
disc: usize,
data: [usize; 40],
}
impl SV {
fn new() -> SV {
SV { data: unsafe { mem::uninitialized() },
disc: 0,
capacity: 0 }
}
}
p... | A-LLVM,I-slow,C-enhancement,E-needs-test,T-compiler,A-mir-opt,A-mir-opt-nrvo | low | Critical |
406,016,961 | pytorch | Check whether _cudnn_rnn_flatten_weight can avoid changing the TensorImpl or Storage pointer of tensors in `weight_arr` | https://github.com/pytorch/pytorch/pull/16305 adds checks for TensorImpl and Storage pointer equality when a function modifies its input tensors (via inplace or out-variants) in VariableType functions. However, `_cudnn_rnn_flatten_weight` doesn't currently pass this check because it does in-place update into `weight_ar... | module: cudnn,triaged,module: assert failure | low | Minor |
406,023,626 | godot | Improve nonexistent input action message when using a Shortcut resource in a Button's Shortcut property | x11
https://github.com/godotengine/godot/commit/869887641f3d31f19837a34da116039a26618cb0
Is there a way to make the error more specific? (point to the Button/ShortCut)

Steps:
1. Create a Button
2. A... | enhancement,usability,topic:input,topic:gui | low | Critical |
406,030,269 | opencv | Regression: TiffDecoder fails to read 32F tiled tiffs | ##### System information (version)
- OpenCV => 3.4.1 or greater
##### Detailed description
As of the 3.4.1 release the TiffDecoder no longer reads single channel tiled 32 bit floating point tiffs. It fails with the error message `Can not read scanlines from a tiled image` this looks to be the result of #10493 ... | priority: low,category: imgcodecs | low | Critical |
406,031,416 | TypeScript | Feature Request: LanguageServiceHost plugin | ## Search Terms
language service host compiler plugin
Refs #16607
## Suggestion
Currently, TypeScript only supports proxying the [language service](https://github.com/Microsoft/TypeScript/wiki/Writing-a-Language-Service-Plugin). It would be good to have an officially supported way of being able to proxy th... | Suggestion,In Discussion | low | Major |
406,042,358 | flutter | Some problem caused by the Android multitasking window | 1.When you return to the app from the multitasking window interface, the screen will blink
screen captureοΌhttps://drive.google.com/open?id=1cNeIJFWwFLDMY7QDli8REf1myiHb2nRo
2.When you open the multitasking window interface, if you accidentally touch the bottom navigation bar, after returning, the effect will not di... | team,platform-android,engine,customer: alibaba,P2,found in release: 1.22,team-android,triaged-android | low | Major |
406,053,293 | TypeScript | TS is overly picky when declaring a class constructor type | **TypeScript Version:** 3.4.0-dev.20190202
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** class, extend, constructor, any[]
**Code**
```ts
type ClassConstructor = new(...args: any[]) => {}
function mixin<C extends ClassConstructor>(Class:... | Bug,Help Wanted,Good First Issue | low | Critical |
406,058,411 | pytorch | [feature request] Store accumulated gradients in separate GPU or on CPU memory | When using the DataParallel, accumulated gradients seem to be gathered and stored on the primary GPU. Since the primary GPU is also used to compute forward passes and store optimizer states, it uses disproportionately more memory than other GPUs. Due to the large size of my model, I am unable to store accumulated gra... | triaged,module: data parallel | low | Major |
406,073,631 | pytorch | split_with_sizes should accept a LongTensor as the split_sizes parameter | ## π Feature
The function `torch.split` partitions a tensor into chunks of equal size (except last) if called with an `int` parameter:
```python
torch.split(torch.arange(10), split_size_or_sections=3)
(
tensor([0, 1, 2]),
tensor([3, 4, 5]),
tensor([6, 7, 8]),
tensor([9])
)
```
or chucks o... | feature,triaged,module: numpy | low | Critical |
406,090,743 | rust | "--emit mir" does not emit drop shim | When compiling code that generates drop shims, such as
```rust
struct Bar(u16); // ZSTs are tested separately
static mut DROP_COUNT: usize = 0;
impl Drop for Bar {
fn drop(&mut self) {
assert_eq!(self.0 as usize, unsafe { DROP_COUNT }); // tests whether we are called at a valid address
un... | C-enhancement,A-destructors,T-compiler,A-MIR | low | Minor |
406,097,735 | godot | Light2d shadows do not seem to affect polygons | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.1 beta 3
**OS/device including version:**
windows 10, nvidia gtx 1070
**Issue description:**
light2d does not affect polygons
**Steps ... | bug,topic:rendering,confirmed,topic:2d | low | Minor |
406,105,242 | godot | The theme editor preview is tiny on hiDPI displays |
**Godot version:**
<!-- Specify commit hash if non-official. -->
v3.1.beta3.official
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
Model Name: MacBook Pro
Model Identifier: MacBookPro14,3
Processor Name: Intel Core i7
Processor Speed: 3.1 GHz
10.14.... | enhancement,topic:editor,confirmed,usability | medium | Critical |
406,121,060 | godot | Path2D and RayCast2D line width doesnΒ΄t adapt to canvas editor zoom | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
869887641f3d31f19837a34da116039a26618cb0
**OS/device including version:**
<!-- Specify GPU model and... | enhancement,discussion,topic:editor,usability | low | Minor |
406,139,660 | TypeScript | `symbol` does not match interface | **TypeScript Version:** playground and 3.3
**Search Terms:** symbol interface
**Code**
```ts
const sym: symbol = Symbol();
function f(arg: { constructor?: unknown }): void {
}
f(sym);
```
**Expected behavior:**
`symbol` is a non-nullish primitive, as such, it should be able to potentially match a... | Bug,Domain: lib.d.ts | low | Critical |
406,145,772 | pytorch | Very poor Uniform() sampling near floating 0.0 | ## π Bug
When using uniformly-distributed random number generation, especially using `float32`, over a range including 0, the sampling code ignores the extra precision of floating-point around 0, leading to very bad sampling.
The generated floats also have at most 24 (`float32`) or 53 (`float64`) bits of entropy... | triaged,module: random | medium | Critical |
406,164,110 | pytorch | Better include path when compiling mkldnn | Today I got hit by a similar issue as https://github.com/pytorch/pytorch/issues/14995, due to that I have `conda` `mkldnn` installed. Since we only compile mkldnn from source now, we should be able to do some cmake stuff to make sure it includes the correct headers.
cc @malfet @seemethere @walterddr | module: build,triaged | low | Minor |
406,171,324 | pytorch | culibos linker errors on binary_linux_conda_3.6_cu90_build | binary_linux_conda_3.6_cu90_build is failing on master
```
/opt/conda/conda-bld/pytorch-nightly_1549230224750/work/build/lib/libcaffe2_gpu.so: undefined reference to `culibosInitializeCriticalSection'
/opt/conda/conda-bld/pytorch-nightly_1549230224750/work/build/lib/libcaffe2_gpu.so: undefined reference to `culibo... | module: build,triaged | low | Critical |
406,264,763 | TypeScript | Object non-literal keys breaks parameter type guard in callback value | <!-- π¨ 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 |
406,290,569 | go | cmd/compile: add a README section on developing the compiler | For example, such a section could mention:
* https://godoc.org/golang.org/x/tools/cmd/toolstash, to make backups of a working/previous Go compiler
* General recommendations like `toolstash restore && go install cmd/compile` to rebuild the compiler in a fast and stable way
* Tips to ensure that the compiler hasn't ... | Documentation,NeedsInvestigation,compiler/runtime | medium | Critical |
406,313,471 | flutter | Improve error messages for indirectly caused type-errors | So, I already found the solution and it was definitely my problem. However, I think the error message can be improved. Basically, I wanted to write a `StreamToListWidget` with dynamic typing. The following code (1) can compile, but when used like this (2) it gives the error message (3). I could fix it by changing this ... | team,framework,a: error message,P2,team-framework,triaged-framework | low | Critical |
406,332,949 | TypeScript | tsc counts errors twice | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.2.4
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** error double, error twice
, although these are probably two separate issues and I'm personally more interested in `OMP_NUM_THREADS=1` behaviour because it gets maxima... | module: performance,module: cpu,triaged,module: single threaded | low | Critical |
406,393,283 | rust | [rustdoc] Tracking issue for `--show-coverage` | cc @QuietMisdreavus | T-rustdoc,B-unstable,C-tracking-issue,A-doc-coverage | low | Major |
406,452,175 | go | cmd/compile: compileSSA takes a long time on very large (generated) functions | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12beta2 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summ... | ToolSpeed,NeedsInvestigation | low | Critical |
406,461,456 | rust | Linker error for no_std binary using musl | I tried to build a simple `no_std` "Hello World!" program using the `x86_64-unknown-linux-musl` target. The source code (in `src/main.rs`) is here:
```rust
#![no_std]
#![no_main]
use libc::{c_char, c_int, exit, puts};
#[no_mangle]
pub extern "C" fn main(_: c_int, _: *const *const c_char) -> c_int {
uns... | A-linkage,T-libs-api,T-compiler,O-musl | low | Critical |
406,478,917 | godot | Circle gizmo losing its looking transform in Overdraw mode | **Godot version:**
3.1 beta 3
**Issue description:**
I dont know whether its bug or is it intended : in overdraw mode that gizmo looking incorrect(cuz it start to use transformation instead face it to user) compared to other draw modes
Take for example an OmniLight node -
 calls prevent error output on stack overflow | This seems familiar, but I cannot recall if this was considered wontfix.
See report on SO: https://stackoverflow.com/questions/54508290/maximum-calls-does-not-exceed-on-certain-code-inside-function-in-nodejs
This is not reproducible in Node.js 6 and 8, but is reproducible in Node.js 10 and 11, at least in Windows... | windows,tty,stdio | low | Critical |
406,522,073 | TypeScript | Overload gets lost in mapped type with conditional 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... | Suggestion,In Discussion | medium | Critical |
406,544,749 | three.js | ObjectLoader: Add support for helpers | ##### Description of the problem
If you serialize a Box3Helper object it drops the reference to `box`, which means that parsing it always returns the default Box3Helper. In the snippet below, it should appear as if there is only one box, but instead two boxes of different sizes show up.
Relevant snippet:
```javasc... | Enhancement | low | Major |
406,550,447 | node | Workers affected by V8 aborting on virtual allocation failure | * **Version**: 4b6e4c1eb110
* **Platform**: Linux 4.19.15 x86_64
* **Subsystem**: `worker_threads`
A process aborts when V8 fails to allocate virtual memory. This is detremental to using `Workers` because:
1. If a `Worker` fails to allocate virtual memory during initialization the process aborts.
2. V8's virtu... | confirmed-bug,v8 engine,worker | low | Critical |
406,561,673 | rust | Error duplicate definitions for impls on distinct associated types | As a minimal example of the error I'm running into (using the [`typenum`](https://crates.io/crates/typenum) crate although I don't think it's specific to that):
```rust
use core::{marker::PhantomData, ops::Add};
use typenum::*;
struct Wrapper<T>(PhantomData<T>);
type X = <U2 as Add<U3>>::Output;
type Y = <U7 ... | A-type-system,A-associated-items,T-compiler,C-bug,T-types | low | Critical |
406,562,500 | pytorch | torch.save overwrite | ## π Feature
<!-- A clear and concise description of the feature proposal -->
Add an overwrite feature to torch.save (default: True) or throw a warning that a file will not overwrite an already existing file.
## Motivation
The current [workaround](https://discuss.pytorch.org/t/how-to-save-a-model-from-a-previous... | module: docs,triaged,enhancement | low | Major |
406,565,998 | flutter | Cupertino Time picker hour plural label should fade in and out | Right now on the plural 's' pops in and out when you scroll past 1 when selecting hours with the Cupertino time picker. It should instead fade to 'hour' or to 'hours' after drag up when scrolling the hour dial. | framework,f: date/time picker,a: fidelity,f: cupertino,c: proposal,good first issue,P2,team-design,triaged-design | low | Minor |
406,568,183 | go | proposal: add x/tools/cmd/mapper | I can offer the tool `mapper` as a sort of sibling to `stringer`. It is part of my [`maps`](https://github.com/drgrib/maps) repo and can be installed using
``` bash
go get -u github.com/drgrib/maps/cmd/mapper
```
And used with
``` bash
mapper -types string:CustomType
```
To generate the file `map_string... | Proposal,Proposal-Hold | low | Minor |
406,568,569 | flutter | Add mechanism in RenderSliver to check pointer status. | I'm trying to create a custom refresh indicator similar to `CupertinoRefreshControl` but that doesn't trigger the refresh action until the user has released the drag. To do this I need to know when the user has released the drag and then determine if they dragged enough to trigger it.
It'd be a lot nicer to be able ... | c: new feature,framework,f: scrolling,P2,team-framework,triaged-framework | low | Minor |
406,622,821 | TypeScript | 3.3.1 regression in type inference | <!-- π¨ 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 |
406,637,641 | godot | DynamicFontData can't store antialias or hinting property value unless it's saved to a `.tres`/`.res` file (fixed in `master`) |
Godot v3.1 Beta 3
Windows 10.
GeForce GTX 550
Can't switch off Anti-Aliasing of some Dynamic Fonts (.ttf) in game, only Editor.
I would expect to be able to turn off the Anti-Aliasing for low res retro games. I would expect the game to mimic the Editor settings. Some fonts work, some don't. Size of font does... | enhancement,confirmed,documentation,topic:gui | medium | Critical |
406,656,607 | flutter | Cursor should snap back into another inside the viewport when scrolling a text field | Take a TextField and put the cursor somewhere.
Scroll the whole textfield putting the cursor outside the viewport. The cursor should change its position to another place in the text that's currently in the viewport to match native Android behavior. | a: text input,platform-android,framework,f: material design,f: scrolling,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework,fyi-text-input | low | Minor |
406,659,597 | go | cmd/go: warn when `go get` removes a module that provides a package in the import graph? | ### What version of Go are you using (`go version`)?
<pre>
go version go1.11.4 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
yes it does
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br>... | NeedsInvestigation,modules | low | Critical |
406,847,420 | flutter | Feature request: Add a widget to relatively position a child to its parent | In some cases it can be useful to relatively position a child to its parent.
For example let's say we want a container positioned at 10% from the left edge of its parent, 20% from the top, 30% from the right and 40% from the bottom:
<img width="108" alt="capture d ecran 2019-02-05 a 16 23 19" src="https://user-imag... | c: new feature,framework,P3,team-framework,triaged-framework | low | Major |
406,896,979 | flutter | Google Map's camera is not positioned correctly at initialization. | This is a follow-up ticket for https://github.com/flutter/flutter/issues/24806.
The original issue is fixed by a temporary workaround https://github.com/flutter/plugins/pull/1157.
We suspect the bug is in the iOS Google Maps SDK. We will use this ticket to track the status of the Goole Maps SDK fix; and once it is... | customer: crowd,p: maps,package,team-ecosystem,P2,triaged-ecosystem | 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.