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
549,326,425
TypeScript
JSDoc support for @memberof and @namespace
I work on a NodeJS Javascript codebase which uses plain JSDoc (i.e. no Typescript/Closure specific syntax). It uses `require()` rather than ES6/Typescript-style imports. Our codebase has JDoc'ed code which lives under arbitrary `@namespace` declarations, meaning they do not correspond to actual code 'namespaces'. Fo...
Suggestion,Awaiting More Feedback,Domain: JSDoc
low
Minor
549,337,402
rust
std::fs: change ownership or Improvements for UNIX Domain Socket creation.
https://gitlab.com/cheako/files-rs/blob/c993fc0ce90fcacc1b8821035027baf623366ab8/src/main.rs#L72-127 If there was an interface to assist with changing ownership that would make this code nicer. I can only speak about UNIX systems, not including Mac and even then only about using libc.
T-libs-api,C-feature-request,A-io,A-filesystem
low
Minor
549,400,539
rust
Overhead of core::sync::atomic::* primitives in dev builds
The primitives provided by `core::sync::atomic` come with a binary overhead in dev builds which also partly contradicts the documentation, e.g. `compiler_fence` states: > compiler_fence does not emit any machine code However when we compile trivial program for an embedded target: ``` #![no_main] #![no_std] ...
C-enhancement,T-compiler,WG-embedded,I-heavy,C-optimization
low
Critical
549,401,392
pytorch
Using Tensor.to(device) after distributed all_reduce intermittently causes deadlock with NCCL
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Hello, I'm a beginner of pyTorch, and learning it with [pytorch tutorials](https://pytorch.org/tutorials/) and at [Writing Distributed Applications with PyTorch](https://pytorch.org/tutorials/intermediate/dist_tuto.html), I...
oncall: distributed,triaged,module: nccl
low
Critical
549,416,853
go
x/text/currency: supported currency codes need an update (MRO->MRU, VEF->VES)
<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.4 darwin/amd64 </pre> ### Does this issue reproduce ...
NeedsFix
low
Minor
549,439,271
TypeScript
Allow augmentation of the async function prototype
## Search Terms AsyncFunction ## Suggestion In JavaScript, We can get constructor of async function via ```javascript const AsyncFunction= (async()=>{}).constructor; ``` And we can do something interesting with it's prototype: ```javascript AsyncFunction.prototype.callConcurrently = async function (concu...
Suggestion,Awaiting More Feedback
low
Minor
549,448,371
rust
Infinite types not detected
Gentlemen, The following code causes my computer to freeze when attempting compilation (variant: takes a long time to compile and errs with "...infinite size..."). It should have warned about the infinite size type. ```rust // /!\ DO NOT COMPILE THIS CODE FOR FUN /!\ fn main() { #[derive(Debug)] ...
T-compiler,I-compilemem,C-bug
low
Critical
549,465,774
pytorch
Serialization inconsistency with pickling tensors breaks caching
## πŸ› Bug Serializing tensors with pickle yields inconsistent result. **Expected:** IFF `tensorA == tensorB` then `serialize(tensorA) == serialize(tensorB)` Additionally, I suspect this behavior breaks caching solutions: functools.lru_cache (see example below), redis (https://github.com/pytorch/pytorch/issues/1974...
module: serialization,triaged
low
Critical
549,476,090
TypeScript
DOM suggestion: customisable `history.state` type
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ, especia...
Suggestion,Awaiting More Feedback
low
Critical
549,481,162
pytorch
C++ randint returns float32, python returns int64
## πŸ› Bug This has come up before, issue #14079 and pr #11040 It looks like the python side was fixed to return longs (but documentation still has: "_dtype (torch.dtype, optional) – the desired data type of returned tensor. Default: if None, uses a global default_") ## To Reproduce ``` >>> import torch >>...
module: cpp,triaged
low
Critical
549,495,990
rust
The bounds information of associated types is not propagated correctly when used with trait aliases.
Hi! The following code does not compile, while it should. The functions `test1` and `test2` do the same thing, while `test1` compiles and `test2` does not: ```rust #![feature(trait_alias)] use std::marker::PhantomData; pub struct X{} pub trait T2 = where PhantomData<Self>: Into<X>; pub trait T { ty...
A-trait-system,T-lang,T-compiler,C-bug,F-trait_alias,requires-nightly
low
Critical
549,536,475
flutter
[Feature-Request] Delayed Animations with Built-in Animated Widgets
## Use case Delayed Animations with Built-in Animated Widgets , like : ``` AnimatedOpacity( duration: const Duration(milliseconds: 250), // TODO : animate after backdrop opened delay: const Duration(milliseconds: 350), // REQUESTED FEATURE opacity: isBackDropOpen ? 1 : 0, ch...
c: new feature,framework,P3,team-framework,triaged-framework
low
Major
549,546,392
pytorch
Support in-place pinning of memory
## πŸš€ Feature Provide a `pin_memory_` method on tensors (note the trailing underscore) which operates in-place. ## Motivation Pinning memory using the current `pin_memory` method creates a copy of the memory. This is problematic when the data that needs to be pinned is too large to hold two copies of it at once. A...
module: serialization,triaged
low
Critical
549,570,665
godot
Gridmap doesn't update in parent scene when "Editable Children" is enabled
**Godot version:** Occurs in both 3.1.2 and the latest release of 3.2 **OS/device including version:** Linux - Ubuntu 18.04 **Issue description:** I have a gridmap in a child scene, which exists as an instanced scene in a parent scene. I have "Editable Children" set to true here. However, when I add or remove ...
bug,topic:core,confirmed
low
Minor
549,572,462
godot
Shader editor should be shown when shader compilation error is raised
**Godot version:** 3.2 master (ea4c88f3) **OS/device including version:** Any **Issue description:** When a compilation error happens in a shader, the compilation error and problematic line are properly displayed in the shader text editor. But it's not always visible when the error is raised, so the UX is n...
enhancement,topic:editor,usability,topic:shaders
low
Critical
549,586,484
go
x/tools/go/packages: Load returned packages with errors when specifying GOOS
<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> $ go version $ go version go version go1.13.5 darwin/amd64 </pre> ### Does this ...
NeedsInvestigation,Tools
medium
Critical
549,589,543
rust
Don't render text from implementors file
Currently, we generate some HTML directly into the implementors file which is then used to add the missing implementors on some traits. This shouldn't be done this way, instead we should just provide the needed information and then generate the tag on the front-end to prevent some malicious insertions.
T-rustdoc
low
Minor
549,608,952
TypeScript
Mark function expressions differently from variables
## Search Terms Differentiate JS function vars from other vars, outline, breadcrumb, variable, function expression, arrow function expression ## Suggestion With the addition of `outline.showVariables` setting in VS Code, I would like to have this issue reconsidered. https://github.com/microsoft/vscode/issues/...
Suggestion,Awaiting More Feedback
low
Major
549,616,995
go
x/crypto/acme/autocert: Manager.RenewBefore must be >1hour
<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.6 linux/amd64 $ go list -m golang.org/x/crypto golan...
NeedsInvestigation
low
Minor
549,628,762
vue
VSCode "auto import" of ESM module broken in 2.6.11 with umd namespace
### Version 2.6.11 ### Reproduction link [https://imgur.com/a/RxJz6fT](https://imgur.com/a/RxJz6fT) ### Steps to reproduce Since the 2.6.11 my IDE (VSCode) now suggest me import Vue from the 'vue/types/umd' namespace instead of the ESModule 'vue' I'm using Vue 2.6.11 Vue-CLI 4.1.0 VScode 1...
typescript
low
Critical
549,634,668
TypeScript
Add diff chunk header lines to Git
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ, especia...
Suggestion,Help Wanted,Community Tooling,Experience Enhancement,PursuitFellowship
low
Critical
549,693,894
vscode
onDebugInitialConfigurations activation event causes extensions to load when pressing F5 to run other projects
This has bugged me forever, but @isidorn [informs me](https://github.com/microsoft/vscode-python/issues/9557#issuecomment-574259357) this isn't intended. 1. Clone [mock-debug](https://github.com/Microsoft/vscode-mock-debug) 2. Replace `activationEvents` with `"onDebugInitialConfigurations"` 2.5 Change vscode engin...
bug,debug
low
Critical
549,745,987
vscode
[folding] seperate color for line numbers at collapsed row
When we collapse rows, it's difficult to tell that we have, especially since hovering over the line numbers gutter causes all of the expand/collapse indicators to return. I realize that, currently, a sticky expand indicator is left behind when rows are collapsed, but I propose that the line numbers themselves be lit...
feature-request,editor-folding
low
Minor
549,753,586
go
gollvm: document that building requires a POSIX compliant shell
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.6 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes - I'm following exactly the directions at https://go.googlesource.com/gollvm/. (I am using the LLVM `release/9.x` branch rather than LL...
Documentation,NeedsDecision
low
Critical
549,758,272
go
cmd/link: add a flag to the linker to do not write function names to runtime.pclntab
### What version of Go are you using (`go version`)? <pre> go version go version devel +71154e061f Tue Jan 14 17:13:34 2020 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? <details><summ...
NeedsInvestigation,compiler/runtime
medium
Critical
549,773,962
angular
Unable to navigate to previous route path after navigating multiple times during the initial load of the project window
<!--πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”… Oh hi there! πŸ˜„ To expedite issue processing please search open and closed issues before submitting a new one. Existing issues often contain information about workarounds, resolution, or progress updates. πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…πŸ”…...
type: bug/fix,freq2: medium,area: router,state: confirmed,router: navigation pipe,P3
low
Critical
549,782,173
terminal
Explore whether Terminal could be 'runas' a different user identity
Related to #2485, #1053, #3534 This issue is a fork from a conversation started in #146 (specifically [this comment onwards](https://github.com/microsoft/terminal/issues/146#issuecomment-572636545)) discussing if/whether Terminal can/could support being `runas` a different user identity than the currently logged-in ...
Issue-Feature,Product-Terminal,Product-Meta,Needs-Tag-Fix
high
Critical
549,810,061
flutter
Update internal engine toolchain to VS 2019
Currently the bots are [pulling VS 2017 via gclient](https://github.com/flutter/buildroot/blob/master/build/vs_toolchain.py#L416) to build the Windows engine. This means that errors building with VS 2019, which is what most people would now install, go undetected; currently there are at least some type conversion issue...
engine,platform-windows,P2,team-engine,triaged-engine
low
Critical
549,813,906
rust
declarative macro results in `rustc` entering infinite loop
Rustc: `rustc 1.40.0 (73528e339 2019-12-16)` `uname -a`: Darwin Carls-MacBook-Pro-2.local 18.7.0 Darwin Kernel Version 18.7.0: Sun Dec 1 18:59:03 PST 2019; root:xnu-4903.278.19~1/RELEASE_X86_64 x86_64 I have crafted a declarative macro that results in `rustc` entering an infinite loop and never completing. Re...
A-macros,T-compiler,C-bug,I-hang
low
Minor
549,826,283
go
cmd/go: confusing error message for invalid package path
I made a mistake in `gopls` (corrected in [CL 214717](https://go-review.googlesource.com/c/tools/+/214717)), which resulted in us passing multiple package paths as one argument to `go list`. The resulting error message did not make this easy to debug, as it wasn't clear that that was the issue. `-: module golang.org...
NeedsInvestigation,modules
low
Critical
549,835,924
kubernetes
kube-apiserver: limit request handling before apiserver is healthy
**What would you like to be added**: The idea is to 429 or 500 certain requests until apiserver becomes healthy for the first time. Requests which would not be blocked: * self-requests (required for apiserver to become healthy) * healthz / livez / readyz * componentstatuses (maybe) **Why is this needed**: ...
sig/api-machinery,kind/feature,lifecycle/frozen
low
Major
549,837,480
flutter
Support multiple windows on iPad
## Use case https://developer.apple.com/news/?id=01132020b > Support for Multitasking on iPad is strongly encouraged. Adding support for multiple windows [...] will ensure your app delivers a modern and complete experience on iPadOS. See desktop efforts at https://github.com/flutter/flutter/issues/30701 Catalys...
platform-ios,tool,t: xcode,P3,team-ios,triaged-ios
low
Major
549,843,170
vscode
Moving lines of code up and down breaks indentation
Issue Type: <b>Bug</b> See screen recording: ![Kapture 2020-01-15 at 11 01 14](https://user-images.githubusercontent.com/490562/72386529-694caf00-3786-11ea-9d86-a998a7b3ff38.gif) Language: javascript Sample code: ```js module.exports = async function() { //Get club const club = await mongoose ....
typescript,javascript,editor-autoindent,under-discussion
low
Critical
549,849,272
pytorch
Can't import torch on latest master
## πŸ› Bug ``` (/scratch/rzou/pt/master-env) [0] rzou@devfair0317:/scratch/rzou/pt/master (master) $ python Python 3.7.5 (default, Oct 25 2019, 15:51:11) [GCC 7.3.0] :: Anaconda, Inc. on linux Type "help", "copyright", "credits" or "license" for more information. >>> import torch Traceback (most recent call las...
module: build,triaged
low
Critical
549,857,758
rust
Sealed traits for rustdoc
In #67562, it was proposed to make `trait Any` an unsafe trait. This was ultimately rejected, as we do not currently want downstream users to see that it is unsafe. However, we wanted a way to have both. The suggestion is that rustdoc could have an (unstable, for now) attribute that indicates that a trait is "sealed," ...
T-rustdoc,A-trait-system,C-feature-request,A-rustdoc-ui,T-rustdoc-frontend
low
Minor
550,013,038
pytorch
dist.send/recv "IndexError: map::at" error when bool tensors are used with mpi backend
## πŸ› Bug I am building a model parallel MLP network and as a method to accelerate it, I am trying to minimize communication between nodes as much as possible. So I have the need to communicate a bool (instead of torch.int8 which works fine) tensor between nodes. For this I am using pytorch with ompi (with ucx and g...
triaged,module: boolean tensor
low
Critical
550,040,085
pytorch
Pytorch compilation error
Hi, I tried to build a docker container with the following Dockerfile. But the compilation of pytorch failed with the following error. I succeed building the container with python 2.7. But, when i changed the Dockerfile content to using python 3.5, the error occurs. Does anyone know why this happen and what can i d...
module: build,triaged
low
Critical
550,052,873
create-react-app
Allow to import a CRA app as a node.js package
### Is your proposal related to a problem? > Sometimes, you start a project as an "app", and it perfectly fits. But then, later, your app grows, and what was an "app" before becomes a "module" within a bigger app. > > And at this point you may get stuck because you can't import that "module" as a node dependency...
issue: proposal,needs triage
low
Minor
550,117,390
pytorch
[Feature proposal] improved algorithms for checkpointing
## Feature We would like to propose a replacement for `torch/utils/checkpointing.py` which provides more efficient checkpointing strategies. We already have a working prototype called `rotor`, and available [on our gitlab](https://gitlab.inria.fr/hiepacs/rotor). We are opening an issue to discuss the opportunity t...
feature,triaged
low
Minor
550,139,919
rust
Expand `unreachable_code` lint to support detecting unreachable code after panicking.
This seems a useful lint, but I'm not sure whether this is implementable in `clippy`.
A-lints,T-lang,T-compiler,C-feature-request
low
Major
550,162,229
TypeScript
Object is possibly null inside a closure defined within a const constraint
Search: Object is possibly null, narrowed type, type constraint, closure **Code** ```ts const foo: string | null = 'bar' if (foo) { function baz() { console.log(foo.length) // Object is possibly 'null' } } ``` **Expected behavior:** Compiles **Actual behavior:** ``` const foo:...
Suggestion,In Discussion
medium
Major
550,163,711
go
cmd/go: dylib on macos with rpath fails to run with go run/test
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.6 darwin/amd64 </pre> ### What version of macOS are you using (`go version`)? <pre> $ sw_vers -productVersion 10.15.2 </pre> ### Does this issue reproduce with the latest release? Yes ### What operating syste...
OS-Darwin,NeedsInvestigation
medium
Critical
550,174,986
godot
Bug: particles_2d + lightmask + viewport
**Godot version:** 3.1.1.stable.official **OS/device including version:** Ubuntu 18.04.3 LTS **Issue description:** 1. If you mask particles with a light (light_2d: mode = mask), weird visual bugs happen in the Editor. If you F6 ..., the visual bugs are gone and everything looks fine. 2. Now, if you instantia...
bug,topic:rendering,confirmed,topic:particles
low
Critical
550,229,454
terminal
Tab titles are truncated but not ellipsized
I see that tabs in WT 0.8 have fixed length and that, if the case, their title is truncated, the same occurs in other GNU/Linux terminals only that these add `...` to the truncated title: also WT should do this, I think, maybe `~/work/...` is better than `~/work/`. I see that the `+V` on the window title is attached...
Issue-Bug,Area-UserInterface,Product-Terminal,Priority-3,Tracking-External
low
Minor
550,288,089
pytorch
0 INTERNAL ASSERT FAILED at /pytorch/c10/util/intrusive_ptr.h:348, please report a bug to PyTorch.
I had tried to run below code but it throws below error terminate called after throwing an instance of 'c10::Error' what(): owning_ptr == NullType::singleton() || owning_ptr->refcount_.load() > 0 INTERNAL ASSERT FAILED at /pytorch/c10/util/intrusive_ptr.h:348, please report a bug to PyTorch. intrusive_ptr: Can o...
triaged,module: assert failure
low
Critical
550,296,263
flutter
ERROR: Running multiple emulators with the same AVD is an experimental feature.
From crash logging. ``` ProcessException: Process exited abnormally: emulator: ERROR: Running multiple emulators with the same AVD is an experimental feature. Please use -read-only flag to enable this feature. Command: C:\Users\...\AppData\Local\Android\sdk\emulator\emulator.exe -avd Pixel_3_API_24 Β  | atΒ Run...
c: crash,platform-android,tool,P2,team-android,triaged-android
low
Critical
550,298,517
flutter
ToolExit for missing CFBundleVersion
From crash logging, from a `flutter run` command: ``` ProcessException: Process exited abnormally: An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=22): Failed to install the requested application The application's Info.plist does not contain CFBundleVersion. Ensure your bundle c...
c: crash,platform-ios,tool,P2,team-ios,triaged-ios
low
Critical
550,350,226
go
x/build/maintner: track GitHub Projects
Maintner doesn't track GitHub Projects. @rsc wanted to use them recently in gopherbot but couldn't. This is a tracking bug for supporting them.
Builders,NeedsFix,FeatureRequest
low
Critical
550,351,474
flutter
If a label has been manually removed, fluttergithubbot should not re-add it
When somebody decides that a label is not relevant for a PR and removes it, the bot should not re-add it when a new commit is pushed. /cc @dnfield
team-infra,P3,triaged-infra
low
Major
550,368,742
terminal
initialPosition should set both coordinates when one number exists
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Help Wanted,Area-Settings,Product-Terminal,Issue-Task,good first issue
low
Critical
550,374,268
godot
AnimationPlayer saved multiple values for same keyframe
**Godot version:** Godot_v3.1.2-rc1_win64 **OS/device including version:** Windows 7 **Issue description:** Sometimes the AnimationPlayer saves bad keyframe data **Steps to reproduce:** This is happening randomly I do not know how to reproduce this Video showing the problem: https://streamable.com/nq0m...
bug,topic:editor
low
Major
550,374,439
go
x/build: use Google Cloud for aix/ppc64 and linux/ppc64x builders
Google Cloud now supports POWER: https://cloud.google.com/blog/products/gcp/ibm-power-systems-now-available-on-google-cloud Maybe we can start running the AIX and linux/ppc64x builders on GCP (and scale VMs dynamically as needed) instead of OSUOSL (where we have a fixed and limited capacity). /cc @laboger @tre...
Builders,NeedsInvestigation,new-builder,arch-ppc64x
low
Minor
550,387,669
go
x/tools/go/analysis/passes/shadow: shadowing not detected on deferred usage
<!-- Please answer these questions before submitting your issue. Thanks! For questions please use one of our forums: https://github.com/golang/go/wiki/Questions --> ### What version of Go are you using (`go version`)? <pre> go version go1.13.4 darwin/amd64 </pre> ### What did you do? ran ``` go install...
NeedsInvestigation,Tools,Analysis
low
Critical
550,405,328
pytorch
PyTorch C++ API docs only tracks master branch
## πŸ“š Documentation Currently, PyTorch C++ API docs (https://pytorch.org/cppdocs/) only tracks the master branch. Ideally we should add PyTorch version selector into it, similar to the Python API docs (https://pytorch.org/docs/stable/index.html). cc @yf225 @ezyang @zou3519
module: cpp,triaged,module: doc infra
low
Minor
550,406,908
rust
lint on dbg! of non-reference with return value not used
The `dbg!` macro takes its argument by value, so that it can return that same value. See https://github.com/rust-lang/rust/issues/59943 for some background. We should lint on code that calls `dbg!` on a non-reference value (thus consuming that value) and doesn't do anything with the return value. The lint could sugg...
A-lints,T-lang,C-feature-request
low
Minor
550,410,338
rust
Don't infer regions in type checking
This is a tracking issue for avoiding region inference in item body type checking. The goal would be to use `ReErased` where we currently use `ReVar` as much as possible. The motivations for this are: * It would avoid doing region inference twice (once in typeck, once in borrowck). * It might improve caching sin...
C-enhancement,A-lifetimes,T-compiler,A-inference,A-NLL
low
Minor
550,458,518
flutter
[flutter_tools] Migrate platforms away from .flutter-plugins
https://github.com/flutter/flutter/pull/48614 moves the plugins list to `.flutter-plugins-dependencies`. `.flutter-plugins` will be kept for a whilee to avoid breaking existing apps, but should be removed after the migration is complete
tool,c: API break,P2,team-tool,triaged-tool
low
Major
550,462,106
go
testing,go/doc: no way to properly distribute non-trivial runnable examples
I filed #35852 as a proposal to try to describe this problem and propose a solution, but since it was declined, I'm falling back to simply filing an issue about the problem. The fact that the solution got rejected doesn't mean that the problem doesn't exist. -- We can have examples which show up in the godoc but ...
NeedsInvestigation
low
Minor
550,463,895
flutter
[New Feature] TextStyle.verticalShift property
It is now becoming easier to precisely position text as desired, however the vertical axis is still lacking in the ability to shift up and down relative to the baseline. Currently, to accomplish shift, it is difficult if not impossible, making aligning slightly misaligned fonts a pain to do, as we always layout along t...
c: new feature,framework,engine,a: typography,P2,team-engine,triaged-engine
low
Minor
550,471,066
rust
Support whole program devirtualization
When doing LTO, LLVM supports a devirtualization pass that converts some indirect calls to static, inlineable calls. This can unlock a lot of optimizations when dynamic dispatch is used frequently in a program. I don't know how hard this would be to support in Rust. Clang has a flag `-fwhole-program-vtables` which w...
A-LLVM,C-enhancement,A-trait-system,T-compiler,C-optimization
medium
Major
550,482,168
TypeScript
Enable a library to support an older compiler than the one used to build it
## Search Terms TS1086, getter, incompatible, 3.7 ## Use Case Consider a library API like this: ```ts export class Book { get title(): string { return "Untitled"; } } ``` If I compile this library using TypeScript 3.7, the resulting .d.ts file cannot be consumed by a project that uses TypeScript 3....
Suggestion,Awaiting More Feedback
medium
Critical
550,487,597
godot
String nodes cannot grab focus even with set_focus_mode(FOCUS_ALL)
**Godot version:** v3.1.2 **OS/device including version:** Windows 10 Pro education 64 bit **Issue description:** Clicking on the String node with the mouse doesn't grab the focus and redirect it to the SubBtn node even though I use set_focus_mode() **Steps to reproduce:** download the project if you don't...
bug,topic:gui
low
Critical
550,488,342
godot
Forwarding focus neighbours causes odd side effects
**Godot version:** v3.1.2 **OS/device including version:** Windows 10 Pro education 64 bit **Issue description:** selection from alternative version does opposite of expected. setting focus neighbour in Menu1 scene doesn't allow one below it to be selected unsetting focus neighbour allows the one below it to...
bug,confirmed,topic:gui
low
Critical
550,503,295
pytorch
[TorchScript] Device comparison implemented in eq but not ne
## πŸ› Bug In a scripted module "a.device != b.device" doesn't work because of no matching signatures, while "not a.device == b.device" works. ## To Reproduce Minimal example: ```import torch from torch import nn class MyModel(nn.Module): def __init__(self): super().__init__() def forwar...
oncall: jit,triaged
low
Critical
550,532,965
pytorch
models after prepare/prepare_qat contains `qconfig` which prevents pickling
We should remove qconfig after module swapping cc @jianyuh @raghuramank100 @jamesr66a @vkuzo @jgong5 @Xia-Weiwen @leslie-fang-intel @jerryzh168 @dzhulgakov
oncall: quantization,low priority,triaged
low
Minor
550,549,091
pytorch
torch.nn.functional.threshold not work with LongTensor
## πŸ› Bug **torch.nn.functional.threshold** and **torch.nn.Threshold** can work on **Tensor** but not work correctly for **LongTensor** variables. ## To Reproduce Steps to reproduce the behavior: Follow the following steps or just run the code below. 1. apply `F.threshold` on **LongTensor** 2. apply `F.th...
module: nn,triaged,enhancement
low
Critical
550,561,453
storybook
[addon-docs] Add support for providing remark plugins in docs
**Is your feature request related to a problem? Please describe.** See the [twitter discussion](https://twitter.com/kevin940726/status/1217637106182307840) I had with @shilman. Currently if the user wants to add new remark plugins to docs, they have to manually create the loader in conjunction with `createCompiler`...
feature request,addon: docs
low
Major
550,571,250
pytorch
Numpy array functionality in torchscript.
I am quantizing one of my model in Linux Machine. I am using jit to trace and save the model. One of my function forward path look like this - ``` def forward(self, image): image_shape = image.shape[2:] image_shape = np.array(image_shape) image_shapes = [(image_shape + 2 ** x - 1) // ...
oncall: jit,triaged
low
Critical
550,579,013
pytorch
Support strategy to train large model that exceeds GPU mem and DRAM mem
## πŸš€ Feature Support strategy to train large model that exceeds GPU mem and DRAM mem. ## Motivation Models [e.g. **Factorization Machines**(1) or **DeepFM**(2)] in **recommendation task**s are usually very large , **billions of features**(including user id and product id) are used. Training data in recommendat...
feature,triaged,module: rpc
low
Minor
550,588,058
scrcpy
Wireless major frame drops and latency
On a note 9. when I'm connected USB, it's delayed a bit more than the standard 70-100ms. That's fine, would like it to be better, but when I swap to wireless, it's horrible. 10-20 second delay.
performance
low
Major
550,590,126
go
x/tools/gopls: diff metadata before invalidating on changes to go.mod
Right now, `gopls` invalidates all workspace metadata if there is a change to the user's `go.mod` file. This is unnecessary if the metadata remains valid after the change. @heschik proposes running `go list -m all` as a gate during the snapshot cloning to determine if we should invalidate all metadata or keep it in the...
NeedsInvestigation,gopls,Tools
low
Minor
550,601,606
rust
Unexpected 'static lifetime requirement
Attempting to compile ```rust trait Trait<T> { } impl<A: Trait<T> + ?Sized, T> Trait<T> for Box<A> { } fn foo<T>(s: &Box<dyn Trait<T>>) { let _: &(dyn Trait<T> + 'static) = s; } ``` yields the following error. ``` error[E0310]: the parameter type `T` may not live long enough --> src/lib.rs:5:40 ...
A-borrow-checker,T-compiler
low
Critical
550,621,530
go
go/parser: inconsistent error messages when missing braces after struct/interface in return type
Please answer these questions before submitting your issue. Thanks! #### What did you do? Three files. `what.go`: ```go package what func doSomething() { var s SomeStruct _ = s.StringAbove() _ = s.StringBelow() } type SomeStruct struct { readyChan chan struct{} } // StringAbove is a functio...
NeedsFix,gopls/parsing
low
Critical
550,673,884
flutter
How to pass parameters to flutter web app
This query was originally asked on StackOverflow but since I have got no reply and there is no particular answer resolving this query I am posting it here [https://stackoverflow.com/q/59698200/9236994](https://stackoverflow.com/q/59698200/9236994) After hours of searching about the topic and due to lack of docume...
c: new feature,framework,f: routes,d: stackoverflow,platform-web,P2,team-web,triaged-web
low
Major
550,675,593
TypeScript
Type inference regression due to circular type definition
<!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 3.8.0-dev.20200115 <!-- Search terms you tried be...
Needs Investigation
low
Critical
550,682,131
TypeScript
Use absolute file paths in error messages
## Search Terms absolute ## Suggestion Output absolute paths in type errors for `tsc`, or at least a way to specify this. ## Use Cases When type checking in monorepositories, typically `tsc` is run for each workspace. `tsc` is then run relative to the workspace it is run from, whereas developers are most...
Suggestion,In Discussion,Domain: Error Messages
medium
Critical
550,726,789
go
runtime/cgo: add cgosymbolizer package to provide default Traceback
Go runtime has all the necessary machinery to resolve symbols from platform specific debug data (such as dwarf). It makes sense, therefore, to actually provide the default handlers for `SetCgoTraceback` out of the box, instead of forcing users to use somewhat under maintained and not always wieldy miniport of the GCC ...
NeedsInvestigation,FeatureRequest,compiler/runtime
low
Critical
550,727,836
flutter
Be able to restart/reinstall application during UI test execution
## Use case I'd like to restart application between each UI test run. Actually and as workaround we have something that via dataHandler we're doing on each test `setUp()` that's restarting the activity but it's not ideal as we're not properly cleaning memory. As a QA I think that's mandatory that each test has to be...
a: tests,c: new feature,framework,t: flutter driver,c: proposal,P3,team-framework,triaged-framework
medium
Critical
550,746,953
flutter
Flutter drive tests suddenly stop working
## Steps to Reproduce 1. We have a suite of ~30 UI tests that are executed sequentially. In order to restart the application between each scenario, we are doing some workaround (already opened this feature request https://github.com/flutter/flutter/issues/48955 to restart app easily). Execute the tests on that suite...
c: crash,tool,t: flutter driver,P2,team-tool,triaged-tool
low
Critical
550,753,022
go
cmd/compile: decide how to better document -wb write barrier flag
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> Output</summary>...
Documentation,NeedsDecision,compiler/runtime
low
Critical
550,775,609
flutter
FadeInImage() needs a ImageLoadingBuilder just like Image.network()
We are able to get the `loadingBuilder` using `Image.network()` and this allows us to implement the `LinearProgressIndicator()` or any other progress indicator and having a similar `ImageLoadingBuilder` for `FadeInImage()` would really be helpful.
c: new feature,framework,a: images,P3,team-framework,triaged-framework
low
Minor
550,785,387
vue
Sometimes bubbling stops working on Safari
### Version 2.6.11 ### Reproduction link [https://codesandbox.io/s/vue-safari-error-tg4mm](https://codesandbox.io/s/vue-safari-error-tg4mm) ### Steps to reproduce The bug reproduction is quite specific, so please be patient - open "App.vue" in safari (my version is 13.0.4 (15608.4.9.1.3)) - ope...
browser quirks
low
Critical
550,805,395
pytorch
Python 3.8 Windows JIT test failure
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> Error text: ```pytb ====================================================================== FAIL: test_unmatched_type_annotation (__main__.TestScript) ---------------------------------------------------------------------- RuntimeError: N...
oncall: jit,triaged
low
Critical
550,812,123
scrcpy
Change and listen to Window Position, Title, and Size while running
I would really like to know if there is a way to change window position, title, and size while the scrcpy already running (and/or connected to a device), and probably event listener based on console log. For example: console log output ``` event window-shown <x> <y> <width> <height> <is borderless> event window-mo...
feature request
low
Minor
550,814,808
pytorch
Allow range in dim argument of reducing operations such as sum
I am trying to sum a tensor over its first `n` axes, where `n` is a parameter I may not know in advance. Why something like the following doesn’t work? ``` v = torch.randn(100, 20, 10) torch.sum(v, range(2)) # I would write range(n) here. ``` This gives an error: ``` TypeError: sum() received an invalid c...
triaged,module: ux,function request,module: reductions
low
Critical
550,822,029
godot
GI Probe Broken when using procedural meshes
**Godot version:** 3.2b5 **OS/device including version:** Windoze 10 / Ryzen 5 2600 / RX 5700 XT **Issue description:** GI probe is not properly calculating lighting for surfaces from an omni-light source (perhaps others, I've only tested the OmniLight) and is dependent on the orientation of the GI probe. It a...
bug,topic:rendering,confirmed,topic:3d
low
Critical
550,834,231
terminal
Open a new pane with the environment vars of the parent
> > > Just chiming in; > > > _ (profile,working dir, environment var, etc)._ > > > > > > Anything about the _actual process_ on the other end is, in the general case, impossible to replicate. The connected process could be `ssh.exe`, whose environment variables and working directory have no bearing on the detec...
Area-Settings,Product-Terminal,Issue-Task,Priority-3
low
Major
550,850,561
TypeScript
Using Array and Boolean in condition does not trigger a warning
<!-- 🚨 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
550,887,720
pytorch
Truncated normal distribution
## πŸš€ Feature Implement truncated normal distribution. ## Motivation A truncated normal distribution is useful as initializer of weights or when sampling from ReLU potentials. This has been requested before (https://github.com/pytorch/pytorch/issues/2129, https://discuss.pytorch.org/t/implementing-truncated-no...
module: distributions,feature,triaged
medium
Major
550,919,120
flutter
Convert android devicelab tests to use --fast-start where disabled
Several devicelab tests will have fast-start disabled (https://github.com/flutter/flutter/pull/48851/files) due to the different log messages breaking stdout parsing or other test assumptions. The tests will need to be investigated to determine what the fix is to remove the `--no-fast-start`.
team,tool,P2,team-tool,triaged-tool
low
Minor
550,945,196
react
Bug: DevTools DOM highlighting gets stuck after a prolonged hover
## Steps To Reproduce 1. Hover a component in DevTools 2. *Keep hovering it for a second or so* 3. Quickly move the cursor out of the DevTools without hovering anything else Expected: DOM highlighting goes away. Actual: DOM highlighting gets stuck. ![](https://d1sz9tkli0lfjq.cloudfront.net/items/2o2r240l0o3...
Type: Bug,Component: Developer Tools
low
Critical
550,956,059
pytorch
[jit] Various problems calling `@staticmethod`s in 1.4.0
## πŸ› Bug Calling `@staticmethod` on a plain class from a `@torch.jit.script` annotated function fails to compile. I suspect that I'm seeing two separate bugs, so I could split this report up and file two issues if that's better. ## To Reproduce ```Python3 class Foo: @staticmethod @torch.jit.script d...
oncall: jit,triaged
low
Critical
550,960,215
go
runtime: sysUsed often called on non-scavenged memory
In working on #36507, I noticed that one source of regression on Darwin was that `sysUsed`, as of Go 1.14, is now called on the whole memory allocation, even if just one page of that is actually scavenged. This behavior was already present in Go 1.11, went away in Go 1.12, and is now back. On systems where `sysUsed`...
Performance,NeedsFix,compiler/runtime
low
Major
550,972,733
pytorch
[FR] histc should (optionally) return a long tensor
It always returns integral values. Similar op `bincount` also returns a long tensor (when no `weights` is given). cc @heitorschueroff
triaged,module: sorting and selection,function request
low
Major
550,973,031
pytorch
[FR] bincount along arbitrary dimension
It currently only accepts a 1D tensor. We should make it work along any dimension. cc @heitorschueroff
triaged,module: sorting and selection,function request
low
Minor
550,981,379
terminal
Investigate include order issue with `InputBuffer`, `readData`
Found in #4213. I had to fwddecl `InputBuffer`, because I _think_ there's a include order problem with in `InputBuffer.hpp` and `readData.hpp`. `readData.hpp` uses `InputBuffer` in a bunch of places, but doesn't include it first `InputBuffer.hpp` includes `readData.hpp` before it defines `InputBuffer` So if...
Product-Conhost,Help Wanted,Issue-Task,Area-CodeHealth,Priority-3
low
Critical
551,002,726
flutter
Include a keyboard dismissal callback in TextField
## Use case When using `TextField`s in Flutter to prompt users for text input, I want to easily detect and react to the user dismissing the keyboard for the current field, via the dismissal button. Though it is possible to write a wrapper around `TextField` that provides a new callback, based on listening directl...
a: text input,c: new feature,framework,f: material design,c: proposal,P3,team-text-input,triaged-text-input
low
Minor
551,005,857
go
proposal: cmd/compile: make 64-bit fields be 64-bit aligned on 32-bit systems, add //go:packed directive on structs
**Summary**: We propose to change the default layout of structs on 32-bit systems such that 64-bit fields will be 64-bit aligned. The layout of structs on 64-bit systems will not change. For compatibility reasons (and finer control of struct layout), we also propose the addition of a `//go:packed` directive that applie...
Proposal,Proposal-Hold
high
Critical
551,077,292
TypeScript
Infer non returning function to be returning `undefined`, not `void`
## Search Terms non returning, undefined instead of void, undefined or unknown instead of void <!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> ## Suggestion - Change return of non returning functions to `undefined` ins...
Suggestion,In Discussion
medium
Critical
551,078,198
pytorch
deadlock when using mp.spawn multiprocessing
## πŸ› Bug PyTorch deadlocks when using queues and events with `mp.spawn`. ## To Reproduce Minimal example: ``` import torch.multiprocessing as mp def main_worker(gpu, queue, event): print(f'gpu {gpu} putting into queue') queue.put({'gpu': gpu}) print(f'gpu {gpu} waiting') event.wai...
module: multiprocessing,triaged
low
Critical