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
676,276,845
pytorch
checkpoint_sequential breaks backpropagation
## ๐Ÿ› Bug checkpoint_sequential breaks backpropagation when applied, making nn.Sequential models impossible to train. ## To Reproduce Steps to reproduce the behavior: ``` torch.manual_seed(42) input = torch.randn(1, 10) label = torch.randn(1,1) model = nn.Sequential(*[nn.Linear(10,10),nn.Linear(10,1)]) ...
module: checkpoint,module: autograd,triaged
low
Critical
676,283,341
TypeScript
JSDoc property description containing "@" character seems to make everything below this as undefined
<!-- ๐Ÿšจ STOP ๐Ÿšจ STOP ๐Ÿšจ 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 before lo...
Bug
low
Critical
676,292,413
pytorch
Add a guide for what to do when you think there's a memory leak
## ๐Ÿ“š Documentation Memory leaks are reported relatively frequently but it's often a different issue, e.g. that there's a caching allocator and/or you are doing worst-case allocation (increasing the size each time). Here's a recent example: https://github.com/pytorch/pytorch/issues/42557. We should have a guide ...
high priority,module: docs,module: memory usage,triaged
low
Critical
676,299,069
TypeScript
TypeScript module not follow specification in some cases when compilerOptions.module = commonjs
**TypeScript Version:** 3.9.7 When, in a index file, it is exported the content of another file, and tsconfig compilerOptions.module = commonJs, tsc transpiles it with read-only accessors, which is not complying with the behavior described in the [official documentation](https://www.typescriptlang.org/tsconfig#modu...
Docs
low
Critical
676,319,457
pytorch
Can't registered boxed kernel for operator that doesn't support boxing
## ๐Ÿ› Bug From https://github.com/pytorch/pytorch/pull/42617#discussion_r467124816, I wanted to register a kernel that would raise an error message for certain operators. The use case is to blocklist certain operators from running when a certain dispatch key is enabled. One such example of a kernel that raises an...
triaged,module: dispatch
low
Critical
676,341,426
flutter
Add option to disable splash screen transition on iOS
iOS by default re-displays the splash screen while the engine draws its first frame. Add a flag on FlutterViewController to disable this mechanism. This is useful for add-to-app cases etc.
c: new feature,platform-ios,a: existing-apps,P2,team-ios,triaged-ios
low
Minor
676,343,042
node
FileHandle don't allow close while writing/reading
I think I've brought up something similar in the past. Regarding the data race issue with closing file descriptions while they are actively used. I believe we could enforce this through `FileHandle` and possibly deprecating non `FileHandle` based fs ops? i.e. move the `kIsPerformingIO` logic from fs streams up on...
fs
low
Major
676,374,024
angular
Template type-checker: enable `strictInputAccessModifiers` by default
# ๐Ÿš€ feature request ### Relevant Package @angular/compiler-cli ### Description PR #38249 adds the compiler option `"strictInputAccessModifiers"` which causes the template type checker to honor `private`/`protected`/`readonly` modifiers and reports an error when assigning into it. This option is currently disab...
feature,area: compiler,compiler: template type-checking
low
Critical
676,386,711
go
cmd/go: package resolution fails after selecting incorrect module when using multiple proxies
<!-- 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 prime@bee /t/b/bugmod> go version go version go1.14.6 linux/amd64 </pr...
NeedsFix,modules
low
Critical
676,391,438
rust
8.5% runtime performance degradation for GNU-toolchain 1.45.x vs. 1.44.x in Windows
Hello, For some time now I've been writing a chess engine in Rust. I develop on Windows at this time, but because I wanted to use only open source software for this engine, the GNU toolchain has been my primary target. I've been using the MSVC toolchain for profiling. Generally, This was the speed ranking: 1. GNU...
I-slow,P-medium,T-compiler,regression-from-stable-to-stable,O-windows-gnu,E-needs-bisection
low
Critical
676,393,583
pytorch
torch/library.h doc rendering issue
https://pytorch.org/cppdocs/api/file_torch_library.h.html code block renders wrong cc @jlin27
module: docs,triaged
low
Minor
676,400,633
pytorch
Undocumented parameters in the Variables section of the recurrent bidirectional layers regarding the backward pass
## ๐Ÿ“š Documentation In the [docs](https://pytorch.org/docs/stable/generated/torch.nn.RNN.html) (the same applies to LSTM and GRU) in case of the reccurent **bidirectional** layer, it is not mentioned that there is an additional set of parameters suffixed with `_reverse` that are used in the backward pass: (k repres...
module: docs,triaged
low
Minor
676,431,981
flutter
ThemeData default ColorSchemes primary/onPrimary contrast is insufficient
The [color schemes](https://api.flutter.dev/flutter/material/ColorScheme-class.html) for the current default themes, ThemeData.light() and ThemeData.light(), do not have sufficient primary/onPrimary or primary/surface contrast. By default, TextButton and OutlineButton use the primary color for the foreground (text/i...
framework,f: material design,a: accessibility,a: quality,team-design,triaged-design
low
Minor
676,432,319
go
cmd/go: allow 'go list' to accept '-u' without '-m'
`go list` with the `-f` flag can print a lot of information about the module associated with a package. Unfortunately, we don't populate the `Module.Update` field unless the `-u` flag is set, and the `-u` flag can only be set today if the `-m` flag is also set: ``` example.com$ go version go version devel +ba9e...
NeedsInvestigation,FeatureRequest,GoCommand,modules
low
Minor
676,438,019
go
runtime: lock held checking
As an extension of @danscales' work on lock ordering, we can extend the runtime to check that functions hold their prerequisite locks when staticlockranking is enabled.
NeedsFix,compiler/runtime
low
Major
676,487,015
pytorch
RuntimeError: "triangular_solve_cuda" not implemented for 'Half'
## โ“ Questions and Help I am running my code on a cluster and running into this issue in the torch.distributions library for MultivariateNormal. I do not encounter this issue while training locally on a single GPU but it happens on the cluster. I would appreciate any help with this. Relevant part of the error is li...
module: cuda,triaged,module: half,module: amp (automated mixed precision)
low
Critical
676,502,809
flutter
CanvasKit: allocate SkVertices data on the WASM heap
Filing so we don't forget. When converting Flutter vertex data for CanvasKit we convert it to objects that are still in the JS heap. This means when rendering vertices we still need to copy them to WASM. We can avoid having to do that by writing to WASM immediately. However, this needs to be done considering that Safar...
engine,c: performance,platform-web,perf: speed,e: web_canvaskit,P3,team-web,triaged-web
low
Minor
676,509,742
pytorch
Documentation mistake of Adam in v1.6.0?
## ๐Ÿ“š Documentation The documentation of Adam since v1.6.0 suggests that it uses the weight decay fix proposed by paper "Decoupled Weight Decay Regularization": https://github.com/pytorch/pytorch/blob/4b4273a04e566dcdf4cb96882f49c41127e8d3f1/torch/optim/adam.py#L10-L11 However I found this to not be the case. Th...
module: docs,module: optimizer,triaged
low
Major
676,520,775
pytorch
Get test_jit.py below 10k lines
Update: the test_nn.py part of this is now tracked by https://github.com/pytorch/pytorch/issues/63085 Currently, many files, such as `test_jit.py` and `test_nn.py`, are larger than what GitHub can handle. For these files, you will not be able to use GitHub's review and browse source well: In the review UI, some l...
oncall: jit,module: tests,enhancement,better-engineering
low
Major
676,527,266
pytorch
Add support for user defined types in serialization in libtorch
## ๐Ÿš€ Feature It would be great for the serialization to be much broader than what it is now in libtorch. at least by providing a way for the users to be able to use existing functionality to serialize their objects. ## Motivation I was trying to serialize a `std::vector<std::tuple<std::string, torch::Tensor>>`...
module: cpp,feature,module: serialization,triaged
low
Minor
676,534,777
node
domain: should variable domain in EventEmitter be private
* **version: Node v10.5**: * **platform: Darwin Kernel Version 19.3.0**: * **core module name: domain**: ### What steps will reproduce the bug? The domain module overwrites the EventEmitter and mounts the domain on the EventEmitter. This causes a problem. If a third-party library mounts a variable named domain ...
domain
low
Critical
676,549,707
pytorch
[RFC] DeepSpeed + PT Distributed Integration
## Background [DeepSpeed](https://github.com/microsoft/DeepSpeed) reduces distributed data parallel training memory footprint by partitioning parameters, gradients, optimizer states, and recomputing activations. See [this link](https://www.microsoft.com/en-us/research/blog/zero-deepspeed-new-system-optimizations-e...
oncall: distributed,feature,triaged
medium
Critical
676,558,729
flutter
Provide AppInfo.xcconfig to define ${PRODUCT_NAME} ${EXECUTABLE_NAME} and ${TARGET_NAME}
XCode need so many names: ${PRODUCT_NAME} ${EXECUTABLE_NAME} and ${TARGET_NAME}. I noticed `macos/Runner/Configs/AppInfo.xcconfig` already did this. Is it possible to provide file `AppInfo.xcconfig` in iOS project too? ``` Bundle Display Name - ${PRODUCT_NAME} Executable File - ${EXECUTABLE_NAME} Bundle Name -...
platform-ios,tool,t: xcode,c: proposal,P3,team-ios,triaged-ios
low
Minor
676,565,181
TypeScript
[feature request] Better error messages for decorators (they are completely not understandable)
<!-- ๐Ÿšจ 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...
Bug,Help Wanted,Effort: Moderate,Domain: Error Messages
low
Critical
676,617,367
react-native
KeyboardAvoidingView mistakingly adds white space on screen bottom after being untangled
## [Description] I wrapped a view as a footer inside KeyboardAvoidingView. It works properly before the keyboard has been untoggled. However, after the keyboard is untoggled, it adds a white space on the bottom of the screen. The height of the white space is as big as the keyboardVerticalOffset. This white space shoul...
Component: KeyboardAvoidingView,API: Keyboard,Needs: Attention
high
Critical
676,682,331
flutter
Simulate invokeMethod in MethodChannel from native to Flutter
I'm developing a native plugin and trying to do unit tests. All unit tests will be done in Dart (No native code). Flutter has a test example of how you can test call method channel from Dart to native using `setMockMethodCallHandler`. The problem is I've not found the way to test method channel that calls from na...
a: tests,framework,c: proposal,P3,a: plugins,team-framework,triaged-framework
low
Major
676,730,976
PowerToys
Integrate the "The Microsoft Keyboard Layout Creator" into Powertoys
## ๐Ÿ“ Integrate the "The Microsoft Keyboard Layout Creator" into Powertoys _The Microsoft Keyboard Layout Creator (MSKLC) extends the international functionality of Windows 2000, Windows XP and Windows Server 2003 systems_ _Would be nice to get this Microsoft application integrated into Powertoys, so it's support...
Idea-Enhancement,Product-Keyboard Shortcut Manager
medium
Critical
676,733,629
node
stream: remove destroy thenable duplication
In https://github.com/nodejs/node/pull/34416 we introduced thenable support for some stream methods. However, this has lead to a lot of code duplication which will make it harder to maintain. We should clean it up at some point. Opening this issue to keep track of this.
stream
low
Minor
676,734,360
flutter
Flutter Datatable crashes with List view in cell - error: missing column size?
I am seeing this error message on my mobile, even though the same code worked just fine in the Android Emulator... Other users have this error as well, eg https://stackoverflow.com/questions/58132781/flutter-can-i-use-listviewbuilder-inside-a-datacell-of-a-row-in-datatable ``` NEEDS-COMPOSITING-BITS-UPDATE ... par...
c: crash,framework,f: material design,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Critical
676,803,077
vscode
Support touch scrolling
Issue Type: <b>Bug</b> On Linux+Wayland at least, touch can only be used to place the cursor somewhere, but you can't scroll the pane, and you can't even select (which is what I would expect if scroll wasn't working) On top of that, if you touch an identifier, it will sometimes jump to the definition of that id...
feature-request,linux,touch/pointer
low
Critical
676,810,237
PowerToys
Run At Startup + Always Run As Administrator does not work if Admin User is different user
## โ„น Computer information: Windows 10 1909 Build 18363.959 Following Problem: I have two users, user1 and user1admin. user1 does not have admin rights on the maschine, user1admin does. 1. I am working as user1 - my windows boots as user1 2. I start Power Toys I can check Run At Startup 3. But for Always Run a...
Product-Settings
medium
Critical
676,815,872
react
DOM attribute stringification fixes
This is regarding the discussion in #17773. React-DOM currently stringifies DOM attribute values before passing them to `Element.setAttribute(NS)` functions. This might be unnecessary, as these functions implicitly stringify attribute values on their own (WebIDL attributes typed as `DOMString`). It also makes it d...
Type: Feature Request
low
Critical
676,869,120
rust
Tracking Issue for pointer methods returning `MaybeUninit<T>`
This is a tracking issue for methods on pointer types returning `MaybeUninit`: `as_uninit_ref/mut` and `as_uninit_slice(_mut)` on mutable and const raw pointers and `NonNull`. The feature gate for the issue is `#![feature(ptr_as_uninit)]`. ### About tracking issues Tracking issues are used to record the overall ...
C-tracking-issue,S-tracking-design-concerns
low
Critical
676,880,203
TypeScript
Detect unreachable code in more scenarios
## Search Terms logical assignment binary expression dead never truthy falsy ## Suggestion Raise compiler errors when the left side of an expression using a logical operator (`&&` or `||`) is unrechable. Also detect unreachable branches of ternary expressions. ## Use Cases Code that is statically veri...
Suggestion,Awaiting More Feedback
low
Critical
676,909,013
flutter
Material German translation of pasteButtonLabel is incorrect
Copied from https://github.com/flutter/flutter/pull/63126, thanks for the report by @lazylazyllama: After #63026 was merged, the German translation of `pasteButtonLabel` was changed from `EINFรœGEN` to `Einsetzen`, but I as a native German speaker can tell you that `Einsetzen` is a very weird translation and not comm...
framework,f: material design,a: internationalization,team-design,triaged-design
low
Minor
676,909,675
PowerToys
Animated Portable Network Graphics (APNG) Support in File Explorer
## ๐Ÿ“ Animated Portable Network Graphics (APNG) Support in File Explorer _Expected Behavior:_ File Explorer should display a thumbnail and preview image for all animated PNG (.apng) files in a given directory. While the image is _NOT_ explicitly selected, File Explorer should initially display the .apng file as a...
Idea-New PowerToy,Product-File Explorer
medium
Major
676,918,211
scrcpy
arm64
I'm using scrcpy 1.12.1, it's on ubuntu arm64 repositorys in snap it is armhf (32 bits) only. I think snap could be simplest to add an updated arm64.
snap
low
Major
676,926,662
PowerToys
Add Preview for Adobe Illustrator Files (.ai)
## ๐Ÿ“ Provide a description of the new feature _What is the expected behavior of the proposed feature? What is the scenario this would be used?_ In Mac we can preview .ai files without opening Adobe Illustrator. Most of the designers would not have to open the files to see what art is inside the file. --- If y...
Idea-New PowerToy,Product-File Explorer
low
Major
676,932,943
flutter
Debugger lost connection soon after ~35 sec after iPhone is locked meanwhile xcode doesn't kill even after 2 minutes
## Steps to Reproduce 1. Run the app on iOS physical device in debug mode using Android Studio (probably starting the app in run mode is the same) 2. Lock iPhone 3. Observe "lost connection" log in Android studio after a minute or sooner ## Comments It's very hard to develop background processes of the app o...
platform-ios,tool,a: debugging,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-ios,triaged-ios
low
Critical
676,959,984
vscode
Add an api to determine runtime host environment (node, webworker)
As we get closer to support running extensions in a webworker extension host, it would be valuable to have an API that extensions can use to reliably detect the runtime host. ```ts export enum ExtensionRuntime { Node = 1, Webworker = 2 } export interface ExtensionContext { readonly extensionRunti...
feature-request,api,api-proposal,web
low
Major
676,963,341
pytorch
prelu_backward, hardshrink_backward shouldn't be a method
Currently, we have: ``` - func: prelu_backward(Tensor grad_output, Tensor self, Tensor weight) -> (Tensor, Tensor) use_c10_dispatcher: full variants: function, method dispatch: CPU: prelu_backward_cpu CUDA: prelu_backward_cuda ``` This means we generate a `Tensor::prelu_backward` method. The...
triaged,module: dispatch
low
Minor
676,963,938
TypeScript
Suggestion: perform excess property checks when spreading an inline object literal
<!-- ๐Ÿšจ STOP ๐Ÿšจ STOP ๐Ÿšจ 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 before lo...
Suggestion,Awaiting More Feedback
high
Critical
677,004,069
terminal
Allow display of HTML output by a console application to enable some nice graphical/interactive features.
# Description of the new feature/enhancement Continuing from https://github.com/microsoft/terminal/issues/5746#issuecomment-671601536 It would be fantastic if I could just pipe out HTML5 from my console app and have it display on the terminal. # Proposed technical implementation details (optional) I'm imagi...
Area-VT,Area-Extensibility,Product-Terminal,Issue-Scenario
low
Major
677,005,859
pytorch
Can not get pytorch working with tensorboard
## ๐Ÿ› Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Steps to reproduce the behavior: I follow the tutorials in pytorch.org It occurs error๏ผšTensorBoard logging requires TensorBoard version 1.15 or above, but I have install TensorBoard already. When I run `tensorboard --logd...
triaged,module: tensorboard
low
Critical
677,019,299
pytorch
TensorOptions extensibility has rusted shut
One of the original motivations for introducing TensorOptions was to make it easier to add new parameters to factory functions, should the need arise, without having to modify all function signatures; it'd just be a new field in TensorOptions. Furthermore, as TensorOptions were always kwarg-only arguments on Python sid...
triaged,module: codegen
low
Minor
677,171,776
flutter
ide_templates hardcode Android SDK version instead of using `{{androidSdkVersion}}`
See https://github.com/flutter/flutter/blob/75b737ff695afba5ec8b4e313c130c520b3651fb/packages/flutter_tools/ide_templates/intellij/examples/platform_channel/android.iml.copy.tmpl#L8 versus https://github.com/flutter/flutter/blob/ff25edd3ad38d8845df1e3905f193da7d9004d00/packages/flutter_tools/templates/app/android-ko...
platform-android,tool,P2,team-android,triaged-android
low
Minor
677,177,728
pytorch
Tensorpipe requires setting both GLOO_SOCKET_IFNAME and TP_SOCKET_IFNAME
## ๐Ÿ› Bug On the FAIR cluster, `nslookup $(hostname)` reports `127.0.1.1` on every host, and this confuses gloo/tensorpipe, requiring me to pass GLOO_SOCKET_IFNAME and TP_SOCKET_IFNAME in the environment for each worker, with the value set to the right interface for each worker. This is frustrating as it requires en...
oncall: distributed,triaged
low
Critical
677,222,856
flutter
Margin/padding moves with drag on children Card items in ReorderableListView
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
framework,f: material design,f: scrolling,a: quality,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Critical
677,233,326
pytorch
Support for defining/saving custom operators with dynamic schema
## โ“ Questions and Help Hi All, Is there a way to define and save an operator which could potentially take any number of inputs and return any number of outputs of any data types. Somewhat similar to saving a node with `Subgraph` attribute. If yes, how would that operators schema look like? Thanks, ### Plea...
oncall: jit,triaged
low
Minor
677,238,101
pytorch
Unable to call `super` method with TorchScript
## ๐Ÿ› Bug I have a derived `nn.Module` which calls `super.forward(...)` in its own implementation. When I try to compile the code to TorchScript, I get: ``` Tried to access nonexistent attribute or method 'forward' of type 'Tensor'.: File "test.py", line 7 def forward(self, x): return super().forward(...
triage review,oncall: jit,TSRootCause:DynamicBehaviors,TSUsability,TSRootCause:ModuleInheritance
medium
Critical
677,240,318
go
internal/goversion: increment Version at start of cycle
[`goversion.Version`](https://pkg.go.dev/internal/goversion@master#Version) needs to be incremented by one at the start of each development cycle, to match the upcoming major Go release version. Once done, this issue should be moved to the next major release milestone. (CC @golang/release.)
NeedsFix,early-in-cycle,release-blocker,recurring
medium
Major
677,258,939
flutter
Flutter tries to install old android build tools/platforms to build APK
## Steps to Reproduce <!-- You must include full steps to reproduce so that we can reproduce the problem. --> 1. Running `flutter create xelophone_flutter`: ![01 Create](https://i.imgur.com/FYMVINx.jpg) ![02 Create](https://i.imgur.com/XlLVq8M.jpg) 2. Files modified: ![03 modified](https://i.imgur.com/b3FH5Q5...
platform-android,tool,t: gradle,has reproducible steps,P3,team-android,triaged-android,found in release: 3.19,found in release: 3.22
medium
Critical
677,270,160
storybook
Addon-docs: DocsPage Controls don't update iframe stories
Controls don't update iframed stories on the `Docs` tab, but **do** update on the `Canvas` tab. ![controls-bug](https://user-images.githubusercontent.com/488689/89959664-8fc8bf00-dc6f-11ea-8388-f2418fbd9ea7.gif) For frameworks that support inline rendering (`react`, `vue`, `web-components`, etc.), making the docs...
bug,has workaround,addon: docs,addon: controls,block: argstable,sev:S2
high
Critical
677,309,186
godot
SoftBody doesn't follow the fixed point in real time.
<!-- 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 using non-official build. --> 3.2.1.stable.official **OS/device including version:** <!-- Specify GPU model, drivers, an...
bug,topic:physics,topic:3d
low
Major
677,310,005
flutter
Tell user about "--device-id" after the interactive multiple devices "flutter run" prompt
`flutter run` now interactively prompts for which device to run when multiple devices are available, and no `--device` flag was specified. ``` Multiple devices found: iPhone 6s (mobile) โ€ข <device-id-1> โ€ข ios โ€ข iOS 13.5.1 iPhone 8 Plus (mobile) โ€ข <device-id-2> โ€ข ios โ€ข com.apple.CoreSi...
tool,a: first hour,P3,team-tool,triaged-tool
low
Minor
677,317,548
terminal
Un-snapping Terminal Placing Cursor in Middle of Previous Command's Output
<!-- ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ 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...
Area-Output,Issue-Bug,Product-Terminal,Priority-2
low
Critical
677,318,128
flutter
Flutter - material support onLongPress on BottomNavigationBar
the solution out there is adding a gesture detector inside the bar items. this is not clean, and i suggest long press for bottom navigations are valid and adopted ux. so material's BottomNavigationBar should have onLongPress interface provided to developers. https://stackoverflow.com/questions/56387160/long-press-...
framework,f: material design,f: gestures,c: proposal,P3,team-design,triaged-design
low
Minor
677,361,934
TypeScript
QuickInfo for ElementAccessExpression show original type when its type should be narrowed.
<!-- ๐Ÿšจ STOP ๐Ÿšจ STOP ๐Ÿšจ 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 before lo...
Bug
low
Critical
677,431,178
pytorch
Avoid dynamic isCustomClassRegistered() checks in kernel call paths
Currently, we ensure that classes of non-primitive op arguments have been registered to the custom class system by calling `isCustomClassRegistered()` in the op call path[1]. It would be excellent to avoid this overhead, but the obvious change - move the check to kernel registration time - isn't possible because we don...
triaged,module: dispatch
low
Critical
677,492,648
storybook
Controls: subcomponents doesn't show controls column in prop tables.
**Describe the bug** subcomponents doesn't show controls column in prop tables. **To Reproduce** my component is like this, it has a father component ConditionPanel, and a child component Item which would be passed into ConditionPanel as children props. While the father component is showing the controls column, t...
feature request,has workaround,addon: controls
medium
Critical
677,513,125
go
x/tools/gopls: add a regression test for adding a new function to a replace target
<!-- 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.14.7 darwin/amd64 </pre> <pre> # gopls version gola...
Testing,gopls,Tools,gopls/workspace
low
Critical
677,538,382
deno
Add support for PAC proxies
Hello, My company has multiple proxies managed by a [PAC](https://developer.mozilla.org/en-US/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_(PAC)_file) . While I don't have a good design in mind to make `HTTP_PROXY` environment and a PAC configuration coexist, but this is a feature that woul...
cli,suggestion,tls
low
Minor
677,628,111
go
runtime: bad p & random crashes since 1.14 on linux 3.18.11
Summary: a simple test program built with go1.14 & go1.15 crashes randomly (~92% cases) on a specific Linux server. No problem with 1.13.15. ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.14 linux/amd64 </pre> ### Does this issue reproduce with the latest release? ...
OS-Linux,NeedsInvestigation
low
Critical
677,653,931
storybook
addon-docs not showing all props for styled-component
**Describe the bug** Please note this is for the **pre-release** version as styled-components were not able to be documented until [this issue](https://github.com/storybookjs/storybook/issues/10197) was resolved. When documenting a styled-component, not all props are rendered out into the props table. **To Rep...
bug,compatibility with other tools,has workaround,block: argstable
high
Critical
677,686,261
pytorch
Add typing information into variable declarations for JIT script ".code" output
Python does support adding typing information at variable declaration site (even if it's always FloatTensor/LongTensor). It would be good for better code inspection and comprehension Compare (pay attention to typing in variable declaration): ``` graph(%self : __torch__.decoder.transformer.modules.decoder.AcousticT...
oncall: jit,feature,triaged,days
low
Minor
677,686,641
rust
expected suffix token in proc macro
Picked up by the beta crater run * https://crater-reports.s3.amazonaws.com/beta-1.46-rustdoc-1/beta-2020-07-24/gh/retro486.task-progress/log.txt * https://crater-reports.s3.amazonaws.com/beta-1.46-1/beta-2020-07-24/reg/woff2-sys-0.0.1/log.txt * https://crater-reports.s3.amazonaws.com/beta-1.46-1/beta-2020-07-24/r...
P-medium,T-compiler,regression-from-stable-to-stable,C-bug,E-needs-mcve,A-proc-macros
low
Minor
677,713,951
go
cmd/compile: switch to a register-based calling convention for Go functions
I propose that we switch the Go internal ABI (used between Go functions) from stack-based to register-based argument and result passing for Go ~1.16~ 1.17. I lay out the details of our proposal and the work required in [this document](https://golang.org/design/40724-register-calling). The ABI specification can be...
Proposal,Proposal-Accepted,compiler/runtime
high
Critical
677,729,307
pytorch
Build problems caffe2 -- pytorch from source & CUDA 11.0
## Issue description Issue building caffe2 when building Pytorch from source with CUDA 11.0 and cuDNN 8.0 ## Code example ``` [4206/4964] Building CXX object caffe2/CMakeF...11_state_gpu.dir/python/pybind_state_gpu.cc.o FAILED: caffe2/CMakeFiles/caffe2_pybind11_state_gpu.dir/python/pybind_state_gpu.cc.o /us...
module: build,module: cuda,triaged
low
Critical
677,778,270
youtube-dl
Update DirecTV Now to AT&T TV
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
request
low
Critical
677,789,688
terminal
wt --help should print text to terminal, instead of popping open a modal dialog ("Add a CLI executable for interacting with WT")
<!-- ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ๐Ÿšจ 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...
Issue-Feature,Product-Terminal,Area-Commandline
low
Critical
677,794,004
pytorch
Legacy Python2 and early Python3 leftovers
1. A lot of references to Python 2 and workarounds: https://github.com/pytorch/pytorch/blob/master/torch/tensor.py 2. L631: ``` if array.dtype == bool: # Workaround, torch has no built-in bool tensor array = array.astype('uint8') ``` But PyTorch has built-in bool tensor since a lo...
triaged,better-engineering,shadow review,OSS contribution wanted
low
Minor
677,803,851
node
"Support" static import in repl
Right now we can only support dynamic import in the repl as the repl is running in the script goal (rather than module). Currently there is experimental support in place for Top-Level Await, which is not supported in the script goal either. This is accomplished by using acorn to transpile the submitted code that is rea...
repl,esm
medium
Major
677,811,200
flutter
Crash when compiling flutter_tools.dart at character offset null: Unsupported operation: Cannot extract a non-Windows file path from a file URI with an authority
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you hav...
c: crash,tool,dependency: dart,P2,team-tool,triaged-tool
low
Critical
677,839,703
terminal
Anti-Aliasing for powerline font icons is poor when using 12 pt or lower
# Environment ```none Windows build number: 19041.388 Windows Terminal version:1.1.2021.0 ``` # Actual behavior Icons in powerline fonts are blurred in the Windows Terminal using 12 pt or lower, therefore ,they are hardly recognizable The following sample is the Windows logo icon in Windows Terminal, Gnome ...
Help Wanted,Area-Rendering,Issue-Bug,Product-Terminal,Priority-3,Impact-Visual
low
Minor
677,850,907
rust
Documentation pages are not displayed in Opera Mini
[Migrated from the www.rust-lang.org repository.](https://github.com/rust-lang/www.rust-lang.org/issues/1223) ### Page(s) Affected For example, http://doc.rust-lang.org/std/vec/struct.Vec.html (lots of them actually, probably all). ### What needs to be fixed? It's just a typical case when Opera Mini transcoders...
T-rustdoc,C-bug
low
Critical
677,877,809
scrcpy
Terminating scrcpy when screen is off (normally via POWER) would turn it on with all-black display
- [x] I have read the [FAQ](https://github.com/Genymobile/scrcpy/blob/master/FAQ.md). - [x] I have searched in existing [issues](https://github.com/Genymobile/scrcpy/issues). **Environment** - OS: Windows - scrcpy version: 1.15, 1.15.1, 1.16 - installation method: Windows release - device model: A: OnePlu...
screenoff
low
Critical
677,894,259
PowerToys
Keyboard Manager requires integration tests for the remapping logic
Currently each of the remap methods have been unit tested, i.e. Remapping keys and remapping shortcuts. This doesn't however test the scenarios where a user remaps a key, and those key remaps are reflected in the shortcut remap. To do this we need to add integration tests for the `HandleKeyboardHookEvent` method https:...
Product-Keyboard Shortcut Manager,Area-Tests,Issue-Task
low
Minor
677,895,968
PowerToys
Keyboard Manager UI needs Win App Driver tests
Unit tests for the UI logic for validating shortcut and key selections was added in #5718, however these tests only cover the scenarios of a single drop down changing. In order to test more complex interactions where an error while changing one drop down results in multiple warnings and multiple drop downs getting modi...
Product-Keyboard Shortcut Manager,Area-Tests,Issue-Task
low
Critical
677,949,395
TypeScript
Clean up old branches in the repo?
Would you consider cleaning up unused branches? There are a lot of unmerged branches that are 5 years old that could probably be deleted. I think GitHub lets you recover branches if you really need them back. <img width="1258" alt="Screen Shot 2020-08-12 at 13 12 04" src="https://user-images.githubusercontent.com/58...
Infrastructure
low
Minor
677,949,593
node
esm: Modify ESM Experimental Loader Hooks
<!-- Thank you for suggesting an idea to make Node.js better. Please fill in as much of the template below as you're able. --> This issue is regarding #34144 . The original proposal on that PR was to modify the `getSource` loader hook to be able to optionally return a `format` in its return object that overrides...
discuss,esm
low
Minor
677,952,474
TypeScript
Improving documentation for built-in type declarations
Looking at for instance `lib.dom.d.ts`, what I notice is that the documentation isn't what it could be. Is there any policy w.r.t. improving on this? I think the benefits of better docs are quite obvious, for instance adding examples or stating browser support for certain features. However I wonder if: - Since the ...
Suggestion,Awaiting More Feedback
low
Major
677,974,122
TypeScript
Language service support for classic JavaScript patterns meta-issue
One consistent piece of feedback from users who have been using Visual Studio long-term to develop JavaScript-only projects is that the old, execution-based language service in Visual Studio 2015 did a better job picking up certain common JavaScript patterns than the TypeScript language service. This is a meta-issue...
Meta-Issue
low
Minor
678,023,765
godot
Exporting to Android with AOT succeeded but with ExitCode 255
<!-- 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 using non-official build. --> 3.2.3.rc3.mono **OS/device including version:** <!-- Specify GPU model, drivers, and the backend (G...
bug,platform:android,topic:editor,topic:porting,topic:dotnet
low
Major
678,025,167
pytorch
[jit] std::exception_ptr can't be torchbind/convert to ivalue
We want to convert ProcesssGroup::Work to Torchscript using Torchbind See https://github.com/pytorch/pytorch/blob/ecb88c5d11895a68e5f20917d27a0debbc0f0697/torch/lib/c10d/ProcessGroup.hpp#L52 cc @suo @gmagogsfm
oncall: jit
low
Minor
678,025,624
pytorch
[jit] TorchBind std::chrono::milliseconds
Find a way to Torchbind function with arguments `std::chrono::milliseconds` https://github.com/pytorch/pytorch/blob/ecb88c5d11895a68e5f20917d27a0debbc0f0697/torch/lib/c10d/ProcessGroup.hpp#L88 cc @suo @gmagogsfm
oncall: jit
low
Minor
678,026,539
pytorch
Verify TorchBind works with nested class type
We want to TorchBind `ProcessGroup::Work` and `ProcessGroup`, not sure if torchbind nested class types works directly, need to verify. https://github.com/pytorch/pytorch/blob/ecb88c5d11895a68e5f20917d27a0debbc0f0697/torch/lib/c10d/ProcessGroup.hpp#L118
triaged,enhancement,module: torchbind
low
Minor
678,026,919
pytorch
TorchBind C++ Enum Class
Need to find a way/verify that C++ Enum class can be TorchBinded, or using the existing JIT Enum somehow. See https://github.com/pytorch/pytorch/blob/945d7a7408891e25bc54a65015724f6d2de644e6/torch/lib/c10d/Types.hpp#L8
triaged,enhancement,module: torchbind
low
Minor
678,034,459
go
x/tools/cmd/goimports: recent commit using 700% of CPU
I try to stay close to the tip of `x/tools` (generally compiling every day or other day). Today I noticed goimports using 700% of my CPU after several hours of the fan being on (not unusual for the fan to go on on my machine, but unusual for it to go for several hours.) I'm running darwin and Go tip. It was not using t...
Performance,NeedsInvestigation,Tools
low
Major
678,037,451
godot
EditorPlugin.AddCustomType breaks when used custom inheritance
**Godot version:** 3.2.2.stable.mono **Issue description:** _EditorPlugin.AddCustomType_ not includes custom base script. If custom base script is passed (_Pic1_) child script is not shown in "Add Node" Window at all (_Pic2_). Expected behavior like GDScript class_name (_Pic3_). `**Pic1**` ![ะธะทะพะฑั€ะฐะถะตะฝะธะต](ht...
bug,topic:editor,topic:plugin,topic:dotnet
low
Minor
678,049,373
flutter
[Add Official Support] Add Support for Flutter Installer
I would like to propose adding official support for Flutter Installer, a tool I made using Flutter to install Flutter on any desktop OS. Link to GitHub repo: https://github.com/yazeedalkhalaf/Flutter_Installer
c: new feature,tool,a: first hour,a: quality,c: proposal,P3,team-tool,triaged-tool
medium
Critical
678,059,774
TypeScript
Allow tsconfig.yaml in addition to tsconfig.json
## Search Terms yaml tsconfig format ## Suggestion I suggest allowing the `tsconfig.json` file to be replaced with `tsconfig.yaml`. This would be implemented by simply converting the yaml to json and passing it to whatever method currently interprets the contents of `tsconfig.json`. Additionally, I woul...
Suggestion,Awaiting More Feedback
high
Critical
678,076,755
pytorch
[feature request] Faster specialized int16->float32 conversions to match speed with NumPy
I found that int16->float32 conversion in PyTorch is at least 3x slower than in NumPy. How can we properly measure wall clock time ("real" time) when using multi-threaded code? Is there a context manager for disabling multi-threading reliably for a block of code? (taking care of MKL_NUM_THREADS / OMP_NUM_THREADS/et...
module: performance,module: cpu,triaged
medium
Critical
678,093,041
flutter
Remove the -fno-ident flag when compiling engine translation units.
The comment above the specification of the flag states: ``` # Don't emit the GCC version ident directives, they just end up in the # .comment section taking up binary size. ``` The size savings looks dubious and prevent toolchain maintainers from identifying the compiler used to compile the engine. Thi...
customer: fuchsia,engine,platform-fuchsia,P2,team-engine,triaged-engine
low
Minor
678,147,410
ant-design
[Statistic.Countdown] Would be nice to have a pause/start api.
- [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? In some cases, countdown might need to be paused and continue later on. ### What does the proposed API look like? const { Cou...
help wanted,Inactive
low
Minor
678,148,621
pytorch
Enable torch.testing._internal typechecks during CI
`TestTypeHints.test_run_mypy_strict` should pass with `[mypy-torch.testing._internal.*]` deleted from `mypy.ini` cc @ezyang @malfet @rgommers
module: typing,triaged
low
Minor
678,149,122
pytorch
Enable torch.quantization.fuse_modules typechecks during CI
`TestTypeHints.test_run_mypy_strict` should pass with `[mypy-torch.quantization.fuse_modules]` deleted from `mypy.ini` cc @ezyang @malfet @rgommers
module: typing,triaged
low
Minor
678,222,781
scrcpy
"sudo ninja -Cx install" consistently failing on Ubuntu 16.04
- [Yes, no such issue reported ] I have read the [FAQ](https://github.com/Genymobile/scrcpy/blob/master/FAQ.md). - [[Yes, no such issue reported for -v1.16- ] I have searched in existing [issues](https://github.com/Genymobile/scrcpy/issues). **Environment** - OS: [Ubuntu 16.04] - scrcpy version: [latest versi...
build
low
Critical
678,292,268
flutter
[in_app_purchase] When reporting an error, PurchaseDetails has a null Product ID and null Purchase ID (Android)
I'm testing IAP on Android using a Play Store test account. I launch the purchase flow as usual. If I do anything to trigger an error in the purchase flow, the `PurchaseDetails` instance that is sent to my listener contains the reported `error`, but reports `null` for `productId` and `null` for `purchaseId`. With...
p: in_app_purchase,package,team-ecosystem,P2,triaged-ecosystem
low
Critical
678,293,597
flutter
Building getFlutterView with enableTransparentBackground in new v2 embedding based on kotlin
According to recommendations provided by @leisim and others here: - [1] [https://github.com/NMateu/flutter_transparent_app/ ](https://github.com/NMateu/flutter_transparent_app/ ) - [2] [https://github.com/flutter/flutter/issues/28844#issuecomment-478939888 ](https://github.com/flutter/flutter/issues/28844#issuecom...
platform-android,engine,d: examples,a: existing-apps,P2,team-android,triaged-android
low
Critical
678,304,644
go
cmd/link: help text for linkmode isn't helpful
``` $ go version go version devel +5c7748dc9d Mon Aug 10 23:44:58 2020 +0000 linux/amd64 $ go tool link -h 2>&1 | grep -A1 linkmode -linkmode mode set link mode ``` At least, it could tell me what the modes are, and ideally point me at the docs for what they do. I realise that the compiler and linker...
Documentation,NeedsInvestigation,compiler/runtime
low
Minor