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
559,495,663
flutter
Specify tab size in Text widget
Hi, is there any parameter to specify tab size in text widget such as `Text` and `RichText`? Seems it is 8 by default. In some cases developers may want to specify it as 4 or 2, for example [code synatx highlighting lib](https://github.com/pd4d10/highlight), like the [`tab-size` prop](https://developer.mozilla.org/e...
c: new feature,framework,engine,a: typography,P3,team-engine,triaged-engine
low
Critical
559,520,192
godot
editor/editor_node.cpp:5268 - An EditorPlugin build callback failed
**Godot version:** 3.2 mono **OS/device including version:** Ubuntu 18.04 **Issue description:** Projects fail to run, error message is editor/editor_node.cpp:5268 - An EditorPlugin build callback failed. This happened on an imported project, and later happened in a blank project as well. On the blank project, ...
bug,topic:editor,confirmed,topic:dotnet
medium
Critical
559,583,674
rust
Misleading error when incorrectly using crate as a module.
I had a source file used as a module in my binary crate. At some point, I have decided to turn this file into a second binary crate instead. But I forgot to remove the corresponding `mod` statement in the first crate. It took me a while to figure it out because the error message was very misleading. Here is the situ...
A-diagnostics,T-compiler,D-terse
low
Critical
559,667,319
godot
HTTPClient is_response_chunked (seemingly) always returns false
**Godot version:** 3.2 Release **OS/device including version:** Linux Mint 19.3 **Issue description:** `httpclient.is_response_chunked() == false` even though the response is split into chunks **Steps to reproduce:** Load a file >4096 bytes and read the output. It will be chunked regardless of `is_response...
enhancement,documentation,topic:network
low
Minor
559,680,978
kubernetes
When a lot of persistentvolumes are created together, POST persistentvolume request latency grows significantly
**What happened**: I was running a scale test where I created ~8 PV/s for some period of time. I observed that POST persistentvolume latency started growing I debugged this already: * kube-controller-manager created PD objects in GCE * due to rate limited error, it failed to fetch labels for new disk: https://git...
kind/bug,sig/scalability,sig/storage,lifecycle/frozen
low
Critical
559,693,366
vscode
Allow to reveal an empty TreeView programmatically
Currently, it i possible to reveal/expand a TreeView only when there is an element in the TreeView. it is oputting revealing this element in the TreeView. it would useful to be abel to expand the TreeView even when there are no elements in the Tree. Use case: - when testing https://github.com/camel-tooling/vscod...
feature-request,api,tree-views,api-proposal
medium
Critical
559,699,002
rust
rustc generates a lot of LLVM IR when using a match in struct field initialization
In https://github.com/rusterlium/rustler/issues/299, we detected compile time to increase non-linearly when using a rather simple proc-macro. In https://github.com/rusterlium/rustler/issues/299#issuecomment-579213528, we found that our decoder function results in a lot of IR. We were able to fix the issue in https://gi...
C-enhancement,A-codegen,I-compiletime,T-compiler
low
Major
559,716,176
terminal
Ability (perhaps shortcut?) to evenly resize splits
Can we have added functionality that (via a keystroke) automatically resizes any multiple rows/columns equally within the window, please.
Help Wanted,Area-Settings,Product-Terminal,Issue-Task
low
Major
559,742,648
pytorch
which pytorch do i install for running this project in my windows.link for this is :: https://github.com/xiaojunxu/SQLNet .IN this they have used python 2.7 ,but i am unable to install pytorch on python 2.7 environment .help me with this
## ❓ Questions and Help ### Please note that this issue tracker is not a help form and this issue will be closed. We have a set of [listed resources available on the website](https://pytorch.org/resources). Our primary means of support is our discussion forum: - [Discussion Forum](https://discuss.pytorch.org/)...
module: binaries,triaged
low
Minor
559,786,792
tensorflow
How can I clear GPU memory in tensorflow 2?
### System information - Custom code; nothing exotic though. - Ubuntu 18.04 - installed from source (with pip) - tensorflow version v2.1.0-rc2-17-ge5bf8de - 3.6 - CUDA 10.1 - Tesla V100, 32GB RAM I created a model, nothing especially fancy in it. When I create the model, when using nvidia-smi, I can see t...
stat:awaiting tensorflower,type:bug,comp:gpu,TF 2.7
high
Critical
559,817,583
terminal
Add "Run As Administrator" menu option to Start Menu and Taskbar
# Description of the new feature/enhancement Ability, primarily in Windows, to easily open the terminal app in an elevated session. Either via the Start Menu icon, as the PowerShell app does it, or via the taskbar icon. Example for Start Menu: ![image](https://user-images.githubusercontent.com/11204251/73772649-...
Area-UserInterface,Product-Terminal,Issue-Task
high
Critical
559,818,952
react-native
Android: textInput: secureTextEntry toggle causes keyboard change; keyboard does not automatically come up
Description: When enabling the user to toggle the secure text entry flag on a text input, on Android, two issues are occurring: 1. The keyboard does not automatically come up when rendering; the user must tap on the field. 2. Tapping the 'eye' icon to toggle the secureTextEntry flag from false to true switches the k...
Platform: iOS,Issue: Author Provided Repro,Component: TextInput,Platform: Android,Needs: React Native Team Attention
medium
Critical
559,833,252
material-ui
[Select] VoiceOver & Chrome on native select is not announcing the newly chosen option when the select menu is closed
<!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x] --> - [x] The issue is present i...
accessibility,component: select
low
Minor
559,876,561
pytorch
[JIT] pytorch 1.4 breaks torch.jit.script(LSTM/GRU)
## 🐛 Bug ### LSTM/GRU cannot be torch scripted in new release (`1.4.0`) ## To Reproduce Steps to reproduce the behaviour: ```shell conda create -n pytorch1.4 python=3.7 pytorch=1.4 -c pytorch -y conda activate pytorch1.4 python3 ``` In `python3` interpreter ```python import torch input_size = 3 num_...
triage review,oncall: jit,triaged,has workaround
low
Critical
559,901,166
You-Dont-Know-JS
sync & async: research event loop
https://www.youtube.com/watch?v=cCOL7MC4Pl0
for second edition
medium
Minor
559,931,199
rust
Spurious 'conflicting implementations' error when specializing a type with a compilation error
The following code: ```rust #![feature(specialization)] struct BadStruct { err: MissingType } trait MyTrait<T> { fn foo(); } impl<T, D> MyTrait<T> for D { default fn foo() {} } impl<T> MyTrait<T> for BadStruct { fn foo() {} } ``` gives the following errors: ```rust error[...
A-diagnostics,E-needs-test,T-compiler,A-specialization,C-bug,F-specialization,D-verbose
low
Critical
559,965,321
godot
Calling signal callback with wrong parameter types raises confusing "Method not found" error.
[Networking.zip](https://github.com/godotengine/godot/files/4155965/Networking.zip) **Godot version:** 3.1.2 **OS/device including version:** Windows 10 **Issue description:** When the the server (specific godot project) received an event (signal) with the name "network_peer_packet", the system should fire th...
enhancement,topic:core,usability
low
Critical
559,979,678
go
x/pkgsite: invalidate cache for pkg.go.dev/<import-path> when a new latest version is available
### What is the URL of the page with the issue? https://pkg.go.dev/github.com/sethvargo/go-githubactions?tab=doc ### What is your user agent? <pre> Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.66 Safari/537.36 </pre> ### Screenshot <img width="...
NeedsInvestigation,pkgsite
low
Minor
559,997,792
flutter
Investigate/Remove usage of sync WebDriver APIs
The flutter_driver web implementation currently relies on sync sockets: https://github.com/flutter/flutter/blob/master/packages/flutter_driver/lib/src/driver/web_driver.dart#L12 We probably shouldn't be using these, since it can hang the tool or test script to block on a socket connection. It seems like the async ve...
tool,t: flutter driver,c: proposal,P3,team-tool,triaged-tool
low
Critical
560,013,379
TypeScript
Narrowed is fail when use as `T`
<!-- 🚨 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
560,033,032
pytorch
[jit] Dict set item type mismatch error doesn't say the type was inferred
This error doesn't include the fact that the compiler inferred the type of `out_dict` to be `Dict[str, Tensor]`, but it should have ```python def fn(): out_dict = {} M = torch.ones(2) out_dict[0] = M return out_dict ``` ``` RuntimeError: Arguments for call are not valid. The following va...
oncall: jit,triaged
low
Critical
560,054,435
rust
MBE (macro_rules!) pattern-matching is unnecessarily O(n) even in simple cases.
There are some crates which do something like this (e.g. [`string_cache_codegen`](https://github.com/servo/string-cache/blob/af2c7707e797768660b3db90066b80218dbca6f7/string-cache-codegen/lib.rs#L271-L275)): ```rust macro_rules! foo { ("a") => (A); ("b") => (B); ("c") => (C); // ... etc. (maybe hun...
C-enhancement,I-compiletime,A-macros,T-compiler
low
Major
560,060,341
kubernetes
say namespace of pods that could not be evicted to avoid search through all namespaces
when draining a node I often see errors and then have to grep through all pods in all namespaces to find out what the problem is (since `get pod foo --all-namespaces` does not work) ``` error when evicting pod \"foo\" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget. ``` p...
kind/feature,sig/cli,lifecycle/frozen
low
Critical
560,070,130
TypeScript
Variable aliasing this should be treated the same as this
<!-- 🚨 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
560,074,540
rust
Support for fatal compile_error that suppresses subsequent errors
If a crate includes something like: ```rust #[cfg(not(target_os = "linux"))] compile_error!("This crate only runs on Linux") ``` then it isn't helpful for rustc to report that error but then go on to emit many more cascading errors about failed `use` statements and types that don't exist and similar. It's e...
A-diagnostics,T-compiler,C-feature-request
low
Critical
560,093,543
pytorch
torch batchwise max with indices
## 🚀 Feature A batchwise verison of torch.max() or torch.argmax() or any other OP like sum etc. ## Motivation I have an array with elements coming from multiple examples where each example contributes an independent number of elements. I would like to have an efficient way to find the max element along with the i...
triaged,module: batching,function request,module: reductions
low
Major
560,120,128
flutter
TextField “onChanged” was called multi times when i use Chinese inputting mode!
## Steps to Reproduce ```dart import 'package:flutter/material.dart'; class SearchInputWidget extends StatefulWidget { final String preInputText; final Function(String text) onSubmitted; const SearchInputWidget({ @required this.onSubmitted, this.preInputText }); @override State<S...
a: text input,platform-ios,engine,a: internationalization,has reproducible steps,P2,found in release: 3.7,found in release: 3.10,team-ios,triaged-ios
low
Major
560,154,802
flutter
TextOverflow.ellipsis not applied properly with multi-line Text with maxLines set
``` Container( constraints: BoxConstraints( maxWidth: MediaQuery.of(context).size.width * 0.55, ), child: Text( "some text that changes lines \n\n\n\n a new line", style: TextStyle( color: Colors.black, fontSize: 14, ), maxLines: 1...
framework,engine,a: typography,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,found in release: 3.10,team-engine,triaged-engine
low
Critical
560,178,125
TypeScript
Accumulating type in TypeScript like powerful instrument for organizing code
## Main Idea Accumulating type is a type that combines the types of declarations that occur in different parts of the code with the same name. Type merging is done according to the OR principle. Principles and dogmas: * related code in one place * organizing separate and independent modules * write once use eve...
Suggestion,In Discussion
low
Critical
560,187,127
flutter
Need a line/word breaker for custom text rendering
This is a more specific issue that is a part of #35994. For doing custom text rendering on non-rectangular or non-rtl/ltr surfaces, developers need to measure the text that can fit in each line. In order to measure the text, developers need to know appropriate locations in the text where line breaks can occur. This fun...
c: new feature,framework,engine,a: internationalization,a: typography,c: proposal,P2,team-engine,triaged-engine
low
Major
560,212,366
go
x/review/git-codereview: package documentation for multi-commit branch workflow does not match behavior
The package documentation for `git-codereview` [says](https://godoc.org/golang.org/x/review/git-codereview#hdr-Multiple_Commit_Work_Branches): > The 'git codereview change' command amends the top commit in the stack (HEAD). However, [CL 20049](https://golang.org/cl/20049) appears to have removed this behavior, in...
Documentation,help wanted,NeedsFix
low
Minor
560,217,367
TypeScript
TypeScript: improve refactor-rename behavior for merged declarations
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Currently, if you have e.g. a function-namespace merged declaration, or an interface-namespace merged declaration...
Suggestion,Awaiting More Feedback
low
Critical
560,261,161
godot
ColorRect flickers when shown by mouse_entered signal
**Godot version:** 3.2 Stable **OS/device including version:** macOS Catalina 10.15.3 / MacBookPro11,1 **Issue description:** When calling show() inside a function on a ColorRect node, from mouse_entered signals, the ColorRect node flickers. **Steps to reproduce:** Use the Godot 3.2 project attached. **...
discussion,regression,topic:gui
low
Major
560,290,336
rust
Improve diagnostics for serializing 'static type from Deserialize<'de>
With this code: ```rust use serde_json; use serde::Deserialize; fn foo<'de, D>(b: Vec<u8>) where D: Deserialize<'de> { let _ = serde_json::from_slice::<D>(b.as_ref()).unwrap(); } ``` We get this error message: ```rust error[E0597]: `b` does not live long enough --> src/lib.rs:5:41 | 4 | fn f...
C-enhancement,A-diagnostics,A-lifetimes,T-compiler,D-confusing,D-newcomer-roadblock
low
Critical
560,370,257
flutter
Add FloatingActionButton to the end of FlexibleSpaceBar
<!-- Thank you for using Flutter! Please check out our documentation first: * https://flutter.dev/ * https://api.flutter.dev/ If you can't find the answer there, please consider asking a question on the Stack Overflow Web site: * https://stackoverflow.com/questions/tagged/flut...
c: new feature,framework,f: material design,d: stackoverflow,c: proposal,P3,team-design,triaged-design
low
Critical
560,382,882
pytorch
matmul: no warning when contracting differently named dimensions
## 🐛 Bug According to [documentation](https://pytorch.org/docs/stable/named_tensor.html) named tensors "use names to automatically check that APIs are being used correctly at runtime, providing extra safety". However, `matmul` does not warn when the dimensions that are being contracted have different names. ## To ...
triaged,module: named tensor
low
Critical
560,387,258
go
net: consider rejecting null byte in LookupHost (and similar) on all platforms consistently
This is a followup to issues #31597 and #37031. It is my current understanding that no valid host can contain the null byte ('\x00'), so any such string input is not valid. `net.LookupHost` currently operates differently when given an input that contains a null byte. For example, for `net.LookupHost("foo\x00bar")...
NeedsInvestigation
low
Critical
560,402,031
pytorch
Upper/Lower attributes for named dimensions for proper Ricci notation and to generalize matrix operations
## 🚀 Feature 1. Add an "upper|lower|unspecified" attribute to each (named) tensor dimension. 2. Honor the upper/lower distinction when checking dimension equality (upper!=lower, upper==unspecified, lower==unspecified, and of course lower==lower, upper==upper) in operations such as add, mul 3. Provide a method to ma...
triaged,module: named tensor
low
Critical
560,407,894
TypeScript
TS2536 thown when using keyof on a property of a generic type as key
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.8.0-dev.20200204 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** * TS2536 * generic typing * keyof **Code** ```ts ...
Bug
low
Critical
560,414,866
TypeScript
JSDoc @param does not work for function variables
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps b...
Needs Investigation
low
Critical
560,435,976
go
all: builders and TryBots should check documentation for broken links
We occasionally end up with broken or outdated links in documentation (see #46545, https://github.com/golang/go/issues/37042#issuecomment-582448476, #27860, #21951, #19244). Testing for broken links would not be entirely trivial, but nonetheless pretty straightforward to implement: we have an HTML parser in `golang....
Testing,Documentation,help wanted,Builders,NeedsInvestigation
low
Critical
560,437,899
kubernetes
Reevaluate flushing unschedulable pods into activeQ
/sig scheduling #72122 suggested the addition of flushing unschedulable pods into the active queue, to mitigate against unknown race conditions that would keep pods in the unschedulable queue forever. The scenario I can think of is that an event that makes the pod more schedulable comes while we are still in its sch...
sig/scheduling,lifecycle/frozen,needs-triage
high
Critical
560,462,454
flutter
Web: Cache-able code splitting, Tree Shaking and Routes grouping
Currently Flutter for web build command generates a big single Javascript file in release mode. It is proposed that new routing APIs should allow groping of related routes and then the build command should generate separate Javascript files for each group of routes these files can than be pre-fetched separately. Th...
c: new feature,framework,c: performance,dependency: dart,f: routes,customer: crowd,platform-web,c: proposal,a: build,P2,team-web,triaged-web
low
Critical
560,493,241
go
x/tools/go/analysis/analysistest: support modules
Currently the analysistest helper only supports a GOPATH like tree. This is fine for stand alone analyses, but does not help much for analyses designed to run against a particular module. For example, you have an analysis that checks all code in your module correctly/safely interacts with a specific package in your mod...
help wanted,NeedsInvestigation,Tools,Analysis
medium
Critical
560,499,146
flutter
RefreshIndicator hidden behind AppBar with `extendBodyBehindAppBar: true`
I found this issue that the `RefreshIndicator` doesn't work properly combined with the Scaffold property `extendBodyBehindAppBar: true`. Here is the code snippet that causes the error. In total the RefreshIndicator is pulled down from above the status bar and therefore the indicator has a long way till being dragged...
framework,f: material design,has reproducible steps,P2,found in release: 3.3,workaround available,found in release: 3.7,team-design,triaged-design
low
Critical
560,522,096
storybook
Add support for Vue SFC syntax to stories
**Is your feature request related to a problem? Please describe.** When writing a story for Vue components inside mdx files, it differs from the way one would write the code inside a .vue file. Also when reading the story source inside storybook, the code differs from the code one would normally put inside a .vue f...
feature request,vue,addon: docs
medium
Critical
560,522,320
flutter
Document how to publish module App and plugins frameworks in dependency management systems like CocoaPods and Swift Package Manager
<!-- 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: new feature,platform-ios,tool,d: api docs,a: existing-apps,c: proposal,P3,team-ios,triaged-ios
medium
Critical
560,578,165
godot
Import TextureAtlas as Mesh is not working properly
**Godot version:** 3.2 stable **OS/device including version:** Windows10 x64 1809 **Issue description:** Not sure that issues are the same: #32869 , #35756 Importing TextureAtlas as mesh gives an incorrect results when used in the Sprite and in the AnimatedSprite. The texture is shifted (1) and some frames ar...
bug,topic:core,topic:rendering,confirmed,topic:2d
low
Critical
560,612,191
TypeScript
Ensure generated `.d.ts` files compile with no errors under `noImplicitAny`
We recently just had https://github.com/microsoft/TypeScript/issues/36630 opened up on us. This is just a few weeks after #36216. I'm pretty sure we already check that our generated `.d.ts` files are valid when the input was valid, but apparently we're not checking under `noImplicitAny`. We would've avoided these b...
Bug,Infrastructure
low
Critical
560,651,524
flutter
Configured font weights do not align with custom font
I have a typeface with multiple weights I want access to, and font files for each of these weights. I've configured `pubspec.yaml` with those weights, but they are not used when the identical `FontWeight` is used in a `TextStyle`. pubspec: ``` fonts: - family: Chivo fonts: - asset: assets/...
framework,d: api docs,a: assets,a: typography,P2,team-framework,triaged-framework
low
Major
560,672,351
terminal
closePane vs. closeTab differences?
# Environment ```none Windows build number: 10.0.18362.592 Windows Terminal version (if applicable): 0.8.10261.0 Any other software? WSL 2 (Debian 10) bash 5.0.3 OpenSSH_7.9p1 Debian-10+deb10u1, OpenSSL 1.1.1c ``` Not entirely sure where this lies, but starting here since I can't recreate it elsewhere (p...
Help Wanted,Product-Conpty,Area-Server,Issue-Bug,Priority-2
low
Critical
560,685,818
pytorch
Torch not compiled with CUDA enabled
**Hi, I'm trying to run this code from the following repository (https://github.com/CorentinJ/Real-Time-Voice-Cloning), I already installed all requirements, however I'm getting this error when I run the demo_cli.py:** AssertionError: Torch not compiled with CUDA enabled **This is the full text I get when I run...
awaiting response (this tag is deprecated),module: binaries,module: cuda,triaged
low
Critical
560,697,466
svelte
SSR Actions
**Is your feature request related to a problem? Please describe.** It would be nice if actions could output attributes in SSR context. **Describe the solution you'd like** ```html <script> function myAction(node, params) { // the normal action stuff for client side } myAction.SSR = function (params)...
feature request
low
Major
560,698,082
vue
Slot wrapped in `v-if` disappears after re-render
### Version 2.6.11 ### Reproduction link [https://jsfiddle.net/y9kmcbg6/](https://jsfiddle.net/y9kmcbg6/) ### Steps to reproduce 1. JSFiddle will render both elements. 2. After 3s, it will toggle off 3. After 3s, it will toggle on 4. To see it happen again, rerun the jsfiddle ### What is expe...
bug,has workaround
low
Minor
560,712,484
pytorch
Scripting fails to preserve attribute aliasing
Script fails to preserve aliasing between attributes. As shown in example below: def test_module_with_aliased_attr(self): class M(torch.nn.Module): def __init__(self): super(M, self).__init__() self.a = [1, 2, 3, 4, 5, 6] self.b = self.a ...
oncall: jit,triaged
low
Minor
560,713,764
pytorch
Support batch linear transformation
## 🚀 Feature https://github.com/pytorch/pytorch/blob/1b746b95fb6f3df45bd2883045de9fbd82b72100/torch/nn/functional.py#L1362 expects the weight and bias tensors to have shapes `(out_features, in_features)` and `(out_features)`, respectively. We would like for this function to optionally support `(N, out_features, in_...
module: nn,triaged,module: batching,function request
low
Minor
560,721,433
go
x/crypto/ssh: Semantics of Conn.Wait and Conn.Close unclear in docs
The semantics of Conn.Wait and Conn.Close are unclear as of the docs currently. https://pkg.go.dev/golang.org/x/crypto/ssh?tab=doc ``` // Close closes the underlying network connection Close() error // Wait blocks until the connection has shut down, and returns the // error causing the shutdown. Wait(...
Documentation,NeedsInvestigation
low
Critical
560,776,613
rust
Poor error message when indexing result of dbg!()
Consider: ```rust fn main() { dbg!(1, 3)[1]; } ``` On nightly (2020-02-05) this yields the error: ``` error[E0608]: cannot index into a value of type `({integer}, {integer})` --> src/main.rs:2:3 | 2 | dbg!(1, 3)[1]; | ^^^^^^^^^^^^^ help: to access tuple elements, use: `($ ($ crate :: dbg ! ($ v...
C-enhancement,A-diagnostics,T-compiler
low
Critical
560,786,315
godot
Control focus inside viewport will get stuck after mouse wheel scroll (e.g. in a scroll container)
**Godot version:** 3.2-stable **OS/device including version:** Distributor ID: Ubuntu Description: Pop!_OS 19.10 Release: 19.10 Codename: eoan (Happens on windows as well) **Issue description:** When the mouse wheel is used to scroll a scroll container inside a viewport, the currently focused control wil...
bug,confirmed,topic:gui
low
Critical
560,809,097
go
go.dev: How to get listed in "In-person training"?
There are 4 companies mentioned in the "In-person training" section at https://learn.go.dev/. It's not clear why these companies where selected and now to get listed there. IMO there should be clear guidelines and instructions on how to get listed there. Also it might be a good idea to split these companies by co...
NeedsInvestigation,website
low
Minor
560,821,553
flutter
Error message should be more verbose when Navigator.pop() is called accidentally
## Steps to Reproduce <!-- You must include full steps to reproduce so that we can reproduce the problem. --> 1. Run `flutter create bug`. 2. Add `Navigator.pop()` to the `onPressed` method of the `FloatingActionButton`. 3. Run the app and press the button. 4. Hot reload the app. **Expected results:** Verbo...
framework,f: routes,a: error message,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-framework,triaged-framework
low
Critical
560,854,488
vscode
Add a task instancePolicy to task runOptions.
When a task has reached the max number of instances it can have (default is 1, can be changed with `instanceLimit`) the `instancePolicy` determines what happens when another instance is started. History: https://github.com/microsoft/vscode/issues/32264 PR for `insanceLimit` which is relevant to anyone interested in...
help wanted,feature-request,tasks
high
Critical
560,892,095
tensorflow
Loading Tensorflow models from disk is instant while loading from gcs is very slow
**System information** - OS Platform and Distribution: Both MacOS and Ubuntu 18 (Tensorflow/serving) - TensorFlow version (use command below): 2.0.0 - Python version: 3.6 **Describe the current behavior** I want to use Tensorflow serving to load multiple Models. If I mount a directory containing the model, loa...
stat:awaiting tensorflower,comp:apis,type:performance,TF 2.4
medium
Major
560,926,576
create-react-app
Provide stacktrace for react-scripts/build.js `build` function
### Is your proposal related to a problem? <!-- Provide a clear and concise description of what the problem is. For example, "I'm always frustrated when..." --> I've encountered a problem that I think could've been diagnosed more easily if `build` script were more verbose and provided a stack trace aside o...
issue: proposal,needs triage
low
Critical
560,930,463
material-ui
[material-ui][Button] Text not aligned vertically with icon
When button has an icon, text is not aligned vertically. You can see it at [example page](https://material-ui.com/components/buttons/#buttons-with-icons-and-label). ![image](https://user-images.githubusercontent.com/19357901/73930230-40cc5680-48e7-11ea-9782-d037e7e22443.png) I made an screenshot and check at graphic...
component: button,package: material-ui,ready to take
low
Major
560,936,566
material-ui
[Select] Pass rendered content of MenuItem to renderValue function
<!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x] --> - [x] I have searched the [i...
new feature,component: select,ready to take
low
Major
560,948,835
pytorch
[debatable] Better infer dtype in torch.as_tensor
Supporting generator inputs in `torch.tensor` / `torch.as_tensor` would save some keystrokes to the user. Converting the input to list internally would do the trick. On the contrary note: numpy does not support this. ``` >>> torch.as_tensor(list(False for i in range(3))) tensor([False, False, False]) >>> torch....
triaged,module: tensor creation
low
Critical
560,953,876
pytorch
bytearray(tensor) behaves very differently from bytearray(tensor.numpy())
```python import torch a = torch.ShortTensor([10000]) print(bytearray(a.numpy())) # bytearray(b"\x10\'") print(bytearray(a)) # bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 ............') ``` I thought this is the Python prescribed interface of getting byte representation of some object, but this f...
module: printing,triaged,module: numpy
low
Minor
560,954,250
scrcpy
Fire Stick 4K Low FPS
I am trying to copy my Amazon Fire Stick 4K display on my Laptop using the scrcpy. Everything seems to be working fine, but when I run the scrcpy.exe, the screen I see is super low FPS. I mean it is around 1FPS. And When I try scrcpy.exe -m640 it is almost 60fps, but it is unusable for me at that resolution. Any...
performance
low
Major
560,971,585
flutter
Flutter Web: JavaScript history.pushState raises an exception in Release Build.
## Steps to Reproduce <!-- You must include full steps to reproduce so that we can reproduce the problem. --> 1. Clone repo: https://github.com/gladimdim/push_history_bug. 2. Switch to Flutter beta channel & enable web ``` flutter channel beta flutter upgrade flutter doctor flutter config --enable-web ``...
c: crash,dependency: dart,platform-web,a: release,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-web,triaged-web
low
Critical
560,981,315
node
Improve performance of accessing globals in scripts running in `vm` modules
**Is your feature request related to a problem? Please describe.** Accessing globals from within a `vm.Script` is guarded by interceptors which makes accessing them slow, (from my understanding, @fhinkel has an excellent comment explaining some of this here: https://github.com/facebook/jest/issues/5163#issuecomment-...
vm,v8 engine,performance
medium
Critical
561,072,029
node
net: setKeepAlive options ignored before connect
<!-- Thank you for reporting a possible bug in Node.js. Please fill in as much of the template below as you can. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Subsystem: if known, please specify the affected core module name If possible, please pro...
net
low
Critical
561,091,706
pytorch
torch.nn.functional import grid_sample
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 torch.nn.fu...
needs reproduction,triaged
low
Critical
561,117,256
go
x/tools/gopls: add support for OnTypeFormatting
### What version of Go are you using (`go version`)? <pre> $ go version go version devel +b7689f5aa3 Fri Jan 31 06:02:00 2020 +0000 linux/amd64 $ go list -m golang.org/x/tools golang.org/x/tools v0.0.0-20200205190317-6e8b36d2c76b $ go list -m golang.org/x/tools/gopls golang.org/x/tools/gopls v0.1.8-0.202002051...
help wanted,FeatureRequest,gopls,Tools
low
Minor
561,121,403
pytorch
Warning when link libtorch and opencv4.2.0 together
## To Reproduce Steps to reproduce the behavior: 1. Download official opencv4.2.0 2. Download libtorch1.4.0 of windows 64 bits, cpu version 3. Create CMakeLists.txt ``` cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project(person_reid) set(LIBTORCH_PATH ${CMAKE_CURRENT_LIST_DIR}/../../...
module: build,triaged,better-engineering
low
Critical
561,150,502
opencv
matchTemplate returns different scores for same input with IPP
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). Please: * Read the documentation to test with the latest de...
bug,category: imgproc,category: 3rdparty
low
Critical
561,163,315
pytorch
Recover from CUDA runtime error
## ❓ Questions and Help I wanted to recover from RuntimeError: inverse_cuda: For batch 0: U(2344,2344) is zero, singular U. so I tried to catch the error and do torch.cuda.empty_cache() which leads to the another error RuntimeError: CUDA error: misaligned address without empty cache I got the illegal memory ...
module: cuda,triaged,module: third_party
low
Critical
561,209,478
go
misc/android: go_android_exec fails to copy other package sources in the main module when executing tests
In order to ensure that a test binary can find any associated test data, `go test` runs the resulting test binary in its own source directory. That implies that, if a `go` binary is present, the test can `go build` both files in its own directory and any associated packages in the same module. Unfortunately, `adb...
help wanted,NeedsFix,mobile
low
Minor
561,230,361
pytorch
[docs] Strange order of items in docs contents in left pane
``` torch.optim Quantization Distributed RPC Framework torch.random ``` why this order? not even alphabetical. I'd suggest that big special topics such as Quantization are presented on top in a separate section, and the rest to be in alphabetical order. ![image](https://user-images.githubusercontent.com/104175...
module: docs,triaged
low
Minor
561,235,303
flutter
Dynamically load ICU
I will fill this out more shortly, but want to brain dump some things before I forget: - Move ICU to a storage bucket - See if we can split ICU into a "core" package and language specific packages (for Burmese, Japanese, Thai, Lao, Khmer, and Finish). - Always grab the core package on first load - Grab language s...
engine,c: performance,a: internationalization,a: size,perf: app size,P3,team-engine,triaged-engine
low
Major
561,239,305
rust
Command causes subsequent ANSI codes to render incorrectly
I'm experiencing some odd behavior with ANSI codes and `std::process::Command`. The ANSI codes render differently after having executed a command. 1. In Git Bash using `\u{1b}[2m` (gray/dim) does not render at all, which is understanble as it might not be supported. However, after executing some command, then it ren...
O-windows,T-libs-api,A-docs,C-bug
low
Critical
561,268,822
go
text/template: Permit user of Reader objects in templates
In the case where we need to use a reader to avoid buffering large amounts of data in memory, there appears no way to use this reader in a go template. This issue was raised before here: https://github.com/golang/go/issues/25160 In summary, it was dismissed on the basis of "most people don't need this". I wou...
NeedsInvestigation,FeatureRequest
low
Major
561,269,929
three.js
Seams with normal map and mirrored uvs
##### Description of the problem I guess it may not be just a threejs issue but I ran into a problem when using a normal map with a mesh having mirrored uvs. With the current code, my understanding is that the RGB value (128, 128, 255) which is supposed to represent a non perturbed normal by convention is read as...
Needs Investigation
medium
Critical
561,271,836
godot
Outlines go around shadows on (non-RichText) Labels
**Godot version:** 3.2 **OS/device including version:** Windows 10 AMD FX-8320 GTX 1060 6GB **Issue description:** 3.2 caused (non-RichText) Label nodes with an outline and a shadow to have the outline to go around the shadow, instead of the outline going around the text and the shadow going underneath the o...
enhancement,discussion,topic:gui
low
Critical
561,296,086
flutter
Make ShellTestPlatformView fully runtime configurable
Right now there is #ifdef soup in ShellTestPlatformView.cc in order to determine which backends are available. We'd like to move to a system where all backends are built for `ShellTest` and at runtime we do proc resolution for GL or Vulkan symbols then determine which backends can be run based off that. This is c...
engine,platform-fuchsia,P3,team-engine,triaged-engine
low
Minor
561,311,734
terminal
TestMouseWheelReadConsoleInputHelper tests are flaky
In the InputTests, there are a handful of them that inject mouse events into the window handle. They center around the method `TestMouseWheelReadConsoleInputHelper`. They tend to fail when there are two input events in the queue instead of just the one they expect. My theory is that the extra event in the queu...
Product-Conhost,Help Wanted,Area-Input,Issue-Task,Area-CodeHealth
low
Minor
561,314,815
vscode
[Feature-request] Remove cursor
I would like the multi cursor to behave like this plugin - https://atom.io/packages/multi-cursor This plugin allows to remove last created cursor by adding new cursor in oposite direction. Exaple. ``` some text| some text 2 some text 3 ``` add cusor down ``` some text| some text| 2 some text 3 ``` add c...
feature-request,editor-multicursor
medium
Major
561,335,529
go
cmd/compile: ARM's MOVWnop causes regalloc to insert unnecessary copies
MOVWnop is a nop/copy designed to ensure type safety. It generates no code. However, it is not free; regalloc sometimes makes a copy of a value to provide to MOVWnop, since it doesn't know that MOVWnop doesn't modify its argument. I noticed this while tracking down regressions due to changes in rewrite rule order ap...
Performance,NeedsInvestigation,compiler/runtime
low
Minor
561,335,763
TypeScript
Support closed-file diagnostics in VS Code
For https://github.com/microsoft/vscode/issues/13953 ## Background Project wide diagnostics are the most requested VS Code JS/TS feature. However, we've been blocked on implementing them by the fact that TS server is single threaded. This means that computing these diagnostics could interrupt normal user operations...
Suggestion,Committed
medium
Critical
561,392,624
flutter
Scaffold body is hidden behind bottomSheet
<!-- 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,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design
medium
Critical
561,417,589
godot
Path (3D) is not selectable/editable near some objects
**Godot version:** 3.2 **OS/device including version:** Windows 10 **Issue description:** The path circles are hard to select whenever an object is near the point you select, selecting the object insterad of creating/selecting the circle you want to handle. **Steps to reproduce:** Place lot of objects and then...
bug,topic:editor,usability
low
Minor
561,432,520
pytorch
DataParallel gives different gradients when using LSTMs
## 🐛 Bug When using DataParallel on a model with LSTMs the losses obtained compared to the same model run on a single GPU are different. ## To Reproduce Here is a sample code block that seeds everything to ensure the weights are the same. Model: ``` python class Model(nn.Module): def __init__(self):...
triaged,module: determinism,module: data parallel
low
Critical
561,464,057
go
syscall/js: add support for fork/exec syscalls?
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version devel +b7689f5aa3 Fri Jan 31 06:02:00 2020 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What operat...
NeedsInvestigation,FeatureRequest,arch-wasm
low
Critical
561,489,820
angular
@HostBinding('attr.id') with dynamic attribute during testing conflicting Karma logic
# 🐞 bug report ### Affected Package The issue is caused by package @angular/core, @angular/core/testing ### Is this a regression? No ### Description Creating elements that bind to the id attribute of their host from an input causes Karma to display all previously tested elements instead of clearing aft...
type: bug/fix,area: testing,freq1: low,P3
low
Critical
561,507,967
three.js
Too dark edges due to new IBL multi-scattering approach
To continue the discussion of #16409, it still seems to me that three.js's new IBL multi-scattering code is yielding too strong dark edges on light fully glossy material. Maybe this is now something that is acted as acceptable or even an improvement (as the author of the [new approach's paper](http://www.jcgt.org/publ...
Needs Investigation
low
Major
561,537,539
pytorch
not able to import * from fastai.vision in Google collab
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce run in Google collab from fastai.vision import * Error: --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-...
triaged
low
Critical
561,551,233
TypeScript
Optional chaining should always include `undefined` in its resolved type
**TypeScript Version:** 3.7.5 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** optional chaining return type **Code** I have a formatting function, where the input should always be a string, but in certain cases, from the backend, it's `undefi...
Suggestion,In Discussion
low
Critical
561,552,358
flutter
Can't bring custom selection into view from Scrollable when showing keyboard
I have a forgot password screen that contains a button at the bottom of the ListView. ![image](https://user-images.githubusercontent.com/21172855/74021805-90b92500-499c-11ea-8a01-9643dcf71fb8.png) The default behaviour is the image below. But we want to make sure that the button is visible as well. ![image](http...
a: text input,framework,f: scrolling,f: focus,has reproducible steps,P3,team-framework,triaged-framework,found in release: 3.13,found in release: 3.17
low
Major
561,554,398
youtube-dl
zen.yandex.ru/media
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
561,562,678
godot
Borderless Windows Crash Desktop Environment
**Godot version: 3.2** **OS/device including version:** Linux Mint 19.3 Tricia x86_64 **Issue description:** Project > Project Settings... > Display > Window > Size: Borderless when set to True will cause Cinnamon Desktop to crash upon launching the game. When Cinnamon is restarted, game seems to work fine and no...
bug,platform:linuxbsd,topic:porting
low
Critical