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
578,045,699
go
cmd/go: 'go mod why' should return module results even without '-m'
<!-- 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 darwin/amd64 </pre> ### Does this issue reproduce ...
NeedsFix,modules
low
Critical
578,109,290
nvm
Error EACCES -13 when using npm globally
#### Operating system and version: Ubuntu 18.04.4 (WSL) #### `nvm debug` output: <details> <!-- do not delete the following blank line --> ```sh $ nvm debug nvm --version: v0.35.3 $SHELL: /usr/bin/zsh $SHLVL: 1 ${HOME}: /home/mithic ${NVM_DIR}: '${HOME}/.nvm' ${PATH}: ${NVM_DIR}/versions/node/v12.16.1/b...
OS: windows,needs followup
low
Critical
578,145,666
TypeScript
Incorrect codegen and error detection for static property used as computed key in instance property of the same class
<!-- 🚨 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
578,160,659
flutter
Consider adding Performance overlay to platform-web
**Note:** I'm not sure how this would work or how much work this entails. But it came up as a topic from conversations with @liyuqian, and we noticed there is no bug tracking it. ## Use case * Performance optimization: Running a Flutter app on the web and seeing some skipped frames, I'd like to reuse my knowledge...
c: new feature,framework,platform-web,c: proposal,P2,team-web,triaged-web
low
Critical
578,187,259
angular
Using slot API with Angular Elements throws an error
# 🐞 bug report ### Affected Package angular/elements ### Description I am making a container component in Angular 9 to be turned into a web component. The container component is first turned into a Web Component once that is done ANY children can be passed into it and manipulate it. I have code that wraps t...
type: bug/fix,area: elements,state: confirmed,state: needs more investigation,P4
low
Critical
578,189,795
flutter
Add check for existence of system requirement command line tools
Check for the presence of all required executables as soon as possible (before artifacts are downloaded) in the tool and give a good error message. `flutter doctor` makes sense but the validators may be run too late to catch `git` or `zip` exceptions. https://flutter.dev/docs/get-started/install/windows#system-requ...
tool,t: flutter doctor,P3,team-tool,triaged-tool
low
Critical
578,190,383
storybook
storySort isn't find all stories in project.
**Describe the bug** To control the order of my stories I have the following storySort function: ``` storySort: (a, b) => { // Control root level sort order. const sort = [ 'Library/Base Components', 'Library/Abstractions', 'Library/Modules', 'Library/Transient...
question / support,core
low
Critical
578,201,800
rust
Detect introduction of deadlock by using `if lock.read()`/`else lock.write()` in the same expression
A coworker came across the following: ```rust use std::sync::RwLock; use std::collections::HashMap; fn foo() { let lock: RwLock<HashMap<u32, String>> = RwLock::new(HashMap::new()); let test = if let Some(item) = lock.read().unwrap().get(&5) { println!("its in there"); item.clon...
C-enhancement,A-lints,T-lang,C-feature-request
low
Minor
578,202,524
create-react-app
When Ejecting - should not use scripts folder
I have a scripts folder already in my project - when I ran `npm run eject` it complains about a clash with existing scripts folder. I assume it might be a good idea to move react scripts to a folder with a slightly less common name?
issue: proposal,needs triage
low
Minor
578,203,856
flutter
flutter clean times out on Runner.xcworkspace clean
<!-- 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...
tool,platform-mac,P2,team-tool,triaged-tool
low
Critical
578,207,346
rust
Compiler selects invalid `--lldb-python` path
<!-- Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for how to create smaller examples. http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/ --> For my mac (macOS Mojave), the `--l...
A-testsuite,A-debuginfo,T-compiler,T-bootstrap,C-bug,A-compiletest
low
Critical
578,252,732
pytorch
Expose chunk_sizes for DataParallel
## 🚀 Feature <!-- A clear and concise description of the feature proposal --> Allow users to add custom chunk_sizes when running DataParallel. ## Motivation <!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is rela...
module: nn,triaged,enhancement,module: data parallel
low
Minor
578,265,139
flutter
Add an example project to the new package template
All Flutter packages should include an example project that demonstrates how to use the packages. Typically developers create a Flutter project under `/example` for this purpose. Flutter should automatically create a new Flutter project under `/example` when creating a new Flutter package using the Flutter tool. ...
tool,P3,team-tool,triaged-tool
low
Major
578,342,473
vscode
Welcome -> Interface Overview Screen - Title Text for the first two features (Search & File explorer) Needs to change/swap
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> Interfa...
bug,workbench-welcome
low
Minor
578,436,730
TypeScript
Type definitions overshadowing
<!-- 🚨 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
578,440,025
rust
todo! and unimplemented! does not work with impl Trait return types
This code ``` trait SomeTrait { fn some_func(); } fn todo_impl_trait() -> impl SomeTrait { todo!() } ``` does not compile because `the trait `SomeTrait` is not implemented for ()` But such code ``` trait SomeTrait { fn some_func(); } fn todo_impl_trait<T: SomeTrait>() -> T { todo!() } ``` ...
C-enhancement,A-diagnostics,T-compiler,A-impl-trait
medium
Critical
578,459,689
vscode
SCM - Provide multiple ScmResourceGroup in menu commands
Hi, When implementing a menu on a ResourceGroup in SourceControl view. There is always only one group in command args even if the user select multiple ResourceGroup and perform a common menu action there. ```ts // groups length is always 1 even when multiple group selected commands.registerCommand("commandId", (...
help wanted,feature-request,scm
low
Minor
578,496,930
angular
Dynamic FormControl binding is broken
<!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 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,area: forms,state: confirmed,forms: Controls API,P4
low
Critical
578,517,755
TypeScript
A way to ignore prefix/suffix in module ID, then resolve the remaining ID as usual
<!-- 🚨 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,In Discussion
low
Critical
578,598,402
vscode
Settings Sync : Allow for custom backend service end points
<!-- 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. --> According to the Settings Sync Plan #90129 and to the Settings Sync documentation ( https://code.visualstudio.c...
feature-request,settings-sync
high
Critical
578,604,488
youtube-dl
https://nation.foxnews.com support request
<!-- ###################################################################### 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
578,652,575
TypeScript
Recognize JS namespace pattern in TS
I short, I propose two things: 1. In TS files recognize JavaScript namespace patterns that are recognized in JS files with `--allowJs`. Like `var my = my || {}; my.app = my.app || {};` (#7632) 2. Recognize methods that create global JavaScript namespaces from provided string. For example calling [`Ext.na("Company.dat...
Suggestion,In Discussion
low
Critical
578,655,245
node
No stack trace with missing async keyword and dynamic imports
<!-- Thank you for reporting an issue. This issue tracker is for bugs and issues found within Node.js core. If you require more general support please file an issue on our help repo. https://github.com/nodejs/help Please fill in as much of the template below as you're able. Version: output of `node -v` P...
esm
low
Critical
578,682,986
flutter
DropdownButton does not grows based on content when isDense is true.
https://b.corp.google.com/issues/151121131.
framework,f: material design,d: api docs,customer: money (g3),has reproducible steps,found in release: 3.0,found in release: 3.1,team-design,triaged-design
low
Major
578,731,505
godot
Tilesets behave incredibly buggy when multiple Tiles share the same texture
**Godot version:** 3.1.2 stable **OS/device including version:** Win64 **Issue description:** Because the same texture can't be added more than once ![Tileset_cant_add_texture_more_than_once](https://user-images.githubusercontent.com/47016402/76337578-d8163680-62f7-11ea-9426-b0b171fc9620.png) and because cli...
bug,topic:core,topic:editor
low
Critical
578,777,312
pytorch
Strange behaviour of F.interpolate with bicubic mode.
## 🐛 Bug Input: X with shape (2,3,256,256) RUN: Y = F.interpolate(X, [256,256], mode='bicubic', align_corners=True) Z = F.interpolate(Y, [256,256], mode='bicubic', align_corners=True) ISSUE: Y[1,:,:,:] = zeros and Z[1,:,:,:] = zeros. Following is my code: ``` def in...
module: nn,triaged
low
Critical
578,802,347
flutter
Changing MaterialApp to CupertinoApp exceptions on routes.
Hi, I have changed my flutter app from MaterialApp to CupertinoApp. It has error on routes. Tested on Android Device and Android Emulator. Following codes works with MaterialApp. ``` import 'package:flutter/material.dart'; import 'package:wasd/onboarding.dart'; import 'strings.dart'; void main() => runAp...
framework,f: material design,d: api docs,has reproducible steps,found in release: 3.0,found in release: 3.1,team-design,triaged-design
low
Critical
578,842,855
kubernetes
Issues in published repos are not very visible
E.g. https://github.com/kubernetes/apimachinery, https://github.com/kubernetes/client-go, etc People file issues there because it's logical, but we (api machinery) don't include them in our triage meeting. We should either adjust our query, change our process in some other way (like tag issues when we've looked a...
kind/bug,sig/api-machinery,lifecycle/frozen
low
Major
578,871,592
godot
Tileset: Neither Autotile nor Atlas Tile Priority allow "per Tile" priority
**Godot version:** 3.2.1.stable **OS/device including version:** Win64 **Issue description:** My goal is to have a Tile with 8 Subtiles and every time I paint a tile, a random one out of those 8 is picked. This is what the "Priority" tab in the Tileset is for. Both Atlas texture as well as a Autotile have Pr...
bug,enhancement,topic:core,topic:editor,topic:2d
medium
Major
578,877,320
go
x/pkgsite: search algorithm doesn't find similarly named packages
<!-- Please answer these questions before submitting your issue. Thanks! For questions, please email go-discovery-feedback@google.com. --> ### What is the URL of the page with the issue? https://pkg.go.dev/search?q=blake2 ### What did you do? Searched for `blake2` at pkg.go.dev ### What did you expec...
NeedsInvestigation,pkgsite,pkgsite/search
low
Minor
578,886,341
flutter
Standardize FPS computation
Investigating what’s the best way of measuring FPS in Flutter with sporadic user inputs and animations. On top of that, there are also multiple threads and pipelining. This seems to also be a common issue for Chrome-based OS and Fuchsia. We can either come up with an API, or at least document some standardized al...
c: new feature,engine,c: performance,perf: speed,P3,team-engine,triaged-engine
low
Major
578,886,968
terminal
Disable (or Customize) key to suppress mouse events
# Description of the new feature/enhancement Work item introduced by #4856. Shift is used to suppress mouse events. A user may want to disable this feature. If we want to be able to customize it (which I don't think anybody is asking for but I'll include the idea in here anyways), this may be a part of #1553.
Issue-Feature,Area-Settings,Product-Terminal
low
Major
578,924,054
terminal
shift+left at the end of a line in the console selects a non existent character
# Environment 19582 rs_prerelease # Steps to reproduce open cmd type: type f:\mx\public\x86fre.nocil\onecore\external\sdk\inc\crt\direct.h # Expected behavior shift+left should select the h, and ctrl+shift+left should select the whole path # Actual behavior * shift+left selects the empty character after the...
Product-Conhost,Area-Input,Issue-Bug,Priority-3
low
Minor
578,950,867
TypeScript
Disable or remove specific code action/fixes/refactoring
## Search Terms ## Suggestion https://github.com/microsoft/vscode/issues/92305 Because when some code action is available, there will be a icon shows on the code editing area. If some fixes I always not want, it's annoying that the clickable icon will show every time my cursor move on the code or select some co...
Suggestion,In Discussion
low
Major
578,974,017
flutter
Prevent status and system bar appearance on touch or on keyboard in flutter
I have asking my problem in [stackoverflow](https://stackoverflow.com/questions/60611854/prevent-status-and-system-bar-appearance-on-touch-or-on-keyboard-in-flutter) but no answer or comment as for now. My problem is a below. I have flutter app that will be put within public in tablet or in android box. My app sh...
platform-android,framework,c: proposal,a: layout,P3,team-android,triaged-android
low
Major
578,974,275
pytorch
Restructure `multi_head_attention_forward`
## 🚀 Feature Restructure the function `multi_head_attention_forward` in [nn.functional](https://github.com/pytorch/pytorch/blob/23b2fba79a6d2baadbb528b58ce6adb0ea929976/torch/nn/functional.py#L3573) into several functions to improve the ability to experiment. In particular, decompose the function so that the follo...
module: nn,triaged
medium
Critical
578,987,703
pytorch
Significant speed difference between P100 and V100
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> P100 (running time is about 30 seconds ) is much slower than V100 (2-3 seconds) when running `affine_grid` and `grid_sample` forward/backward pass ## To Reproduce My code is like: <!-- If you have a code sample, error messages, stack traces, ...
module: performance,module: cuda,triaged,module: cublas
low
Critical
579,006,294
create-react-app
support to use resourceQuery to match `css module` css rule.
### 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..." --> It is not a problem but an idea. CRA support use file extension such like `.module.css` or `.module.scss` to enable css module. I think using `r...
issue: proposal,needs triage
low
Minor
579,051,999
TypeScript
Enforce correct bounds on assignability when the target is a lookup type on a constrained type parameter
<!-- 🚨 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,In Discussion
low
Critical
579,056,469
rust
"cannot borrow a constant which may contain interior mutability" for local variable inside constant evaluation
This code [(playground link)](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=9eaf4438991432c41b272b35023cdc82): ```rust #![feature(const_raw_ptr_deref)] use std::cell::UnsafeCell; const FOO: u32 = { let x = UnsafeCell::new(42); unsafe { *x.get() } }; ``` produces on latest nig...
T-lang,T-compiler,C-bug,A-const-eval
low
Critical
579,088,587
ant-design
Sizing class suffixes are inconsistent
- [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. ### Reproduction link [https://gist.github.com/romu70/6f56ecace444fc68c02d309b06f4c0c0](https://gist.github.com/romu70/6f56ecace444fc68c02d309b06f4c0c0) ### Steps to re...
help wanted,Inactive,improvement
low
Major
579,115,152
opencv
Error loading ONNX model (FasterRCNN50 from Torchvision)
I am trying to load FasterRCNN model of torchvision but facing some errors. Here is the code for the model:- ``` import torch import torchvision model = torchvision.models.detection.fasterrcnn_resnet50_fpn(pretrained=True) x = [torch.rand(3, 300, 400), torch.rand(3, 500, 400)] model.eval() predictions = model(...
category: dnn,category: dnn (onnx)
low
Critical
579,128,936
TypeScript
No error with Partial<Record<number, {}>> in object spreading
<!-- 🚨 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
579,226,837
opencv
How to call a saved_model formatted model via opencv
We know that saved_model is often used for tfserving for model deployment. It has the following structure: `assets/ assets.extra/ variables/ variables.data-?????-of-????? variables.index saved_model.pb|saved_model.pbtxt` Now I want to call the saved_model format model through opencv,How can I do this, ...
feature,priority: low,category: dnn
low
Major
579,243,485
rust
Can't use anonymous functions with calling conventions other than Rust
Hi all Compiler refuses to compile functions when other than "Rust" calling convention used. I tried this code: ```rust #![feature(abi_vectorcall)] type Dyad = unsafe extern "fastcall" fn(u32, u32) -> u32; // DOES NOT WORK // type Dyad = unsafe extern "vectorcall" fn(u32, u32) -> u32; // DOES NOT WORK //...
A-closures,T-lang,C-feature-request
low
Minor
579,289,228
go
runtime: TestGdbPythonCgo is flaky on linux-mips64le-rtrk builder
[2020-03-10T16:25:09-9f74f0a/linux-mips64le-rtrk](https://build.golang.org/log/831e6d961dc437580e7a28b21de9eda7f58bc052) [2020-02-01T06:01:05-866920a/linux-mips64le-rtrk](https://build.golang.org/log/ad72868121a4b2d90e55564ce3555ccb31990fb1) [2019-11-27T16:41:28-b11d02e/linux-mips64le-rtrk](https://build.golang.org/l...
NeedsInvestigation,arch-mips,compiler/runtime
low
Critical
579,328,266
TypeScript
Call hierarchy becomes infinitely nested on derived class methods using super call
<!-- 🚨 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,Help Wanted,Domain: Signature Help
low
Critical
579,395,692
TypeScript
@description JSDoc tag interferes with callback parameter documentation
**TypeScript Version:** 3.8.3 **Search Terms:** jsdoc param **Expected behavior:** Below code creates no errors, type of `x` is recognized as `(value: number) => boolean` **Actual behavior:** Type of `x` is `() => boolean`, the invocation creates a type error. Removing the `@description` tag makes the co...
Bug,Help Wanted,checkJs,PursuitFellowship
low
Critical
579,433,921
node
Move to Electron's docs-parser tooling for Node.js documentation
Over the past four months, I've gotten more and more involved in Electron as a project. Generally, they are extremely forward on automation and tooling intended to reduce maintainer burden since they are such a small team maintaining such a large project. One of the tools they created, [docs-parser](https://github.c...
doc,discuss
medium
Critical
579,450,224
go
x/pkgsite: searching by smartcontractkit and chainlink does not show github.com/smartcontractkit/chainlink
There's a fairly active Go project on GitHub that's not found on go.dev so there might be others. [smartcontractkit/chainlink](https://github.com/smartcontractkit/chainlink) has 6 releases this year, 42 contributors, and 9,372 commits. ![image](https://user-images.githubusercontent.com/57072051/76448037-b5d3f580...
NeedsInvestigation,pkgsite,pkgsite/search
low
Major
579,478,841
kubernetes
Cannot set the eventTime field when creating/updating Events
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: We cannot c...
kind/bug,sig/api-machinery,lifecycle/frozen,triage/accepted
low
Critical
579,495,648
go
cmd/go: "+build comment … blank line" warning not produced by "go run" or "go build"
<!-- 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 linux/amd64 </pre> ### Does this issue reproduce w...
NeedsInvestigation
low
Critical
579,509,580
pytorch
Multiple CMake target errors ever since commit 0e52627358
## 🐛 Bug Building pytorch on platform `ppc64le`, since Feb 28, has resulted in a flurry of CMake Error messages partway through the build. An example of the error message appears below, though the error will repeat with some variations and different target names: ```core header install: /home/jenkins/pytorch/b...
module: build,triaged
medium
Critical
579,521,840
pytorch
Eigen version for PyTorch ?
Which version of eigen is working for PyTorch? ``` In file included from /usr/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h:14:0, from /usr/include/eigen3/unsupported/Eigen/CXX11/Tensor:31, from ....../pytorch/caffe2/operators/conv_op_eigen.cc:10: /usr/include/ei...
module: build,triaged
low
Critical
579,525,002
kubernetes
Stateful set controller does not appear to backoff when pods are evicted
The SS controller appears to go into a very tight loop when the `Should recreate evicted statefulset` e2e test runs. The controller should go into backoff after an eviction for that pod instead of hammering the node. ``` I0311 16:27:00.916503 1968 kubelet.go:1913] SyncLoop (ADD, "api"): "ss-0_e2e-statefulset-1...
kind/bug,sig/apps,lifecycle/frozen,needs-triage
low
Critical
579,527,734
kubernetes
Kubelet has no rate controls after a pod was evicted
There is no mechanism today to prevent abusive eviction loops (controller recreates a pod that was just evicted). #89067 seems to indicate that the kubelet and the controller will just fight until the controller stops. It seems reasonable that an eviction decision should perform some rate limit on subsequent pods fro...
sig/node,kind/feature,needs-triage
low
Major
579,539,725
rust
VecDeque should support splice / extend_front
`VecDeque` should support `splice` for convenience. ([`SliceDeque`](https://docs.rs/slice-deque/0.3.0/slice_deque/struct.SliceDeque.html#method.splice) supports it, but it doesn't build on wasm and seems kind of abandoned (several unmerged PRs with no updates).) `VecDeque` should also support `extend_front` (like repe...
A-collections,T-libs-api,C-feature-request
medium
Major
579,558,253
excalidraw
Investigate simplifying collaboration session workflow
There are two main pain points: 1. Too much text. 2. User having to manually start the sharing session. @vjeux suggests that we should remove the `start session` button in favor of automatically starting it when user clicks on the menu :busts_in_silhouette: button. His proposal (as I understand it) would be a...
enhancement,discussion,collaboration
low
Major
579,559,717
pytorch
A better way to show users all build options
We currently have build options enumerated at the top of setup.py. This, however, is redundant (as the info is largely available in CMakeLists.txt) and is pretty fallible and confusing. We should make it more user-friendly, say, `python setup.py help` should list the options extracted from `CMakeLists.txt`. --- T...
module: build,triaged
low
Minor
579,592,292
go
net/textproto: reduce allocations in ReadMIMEHeader
### What version of Go are you using (`go version`)? <pre> 1.14 </pre> ### What did you do? For our use-case (a HTTP proxy) `textproto.ReadMIMEHeader` is in the top 3 in term of allocations. In order to ease the GC, we could pre-allocate 512 bytes to be used for small header values. This can reduce by half t...
NeedsDecision
medium
Critical
579,628,574
rust
Tracking Issue for Read::is_read_vectored/Write::is_write_vectored.
### Unresolved Questions - [ ] What's the right naming for these methods? ### Implementation history * #67841
T-libs-api,B-unstable,C-tracking-issue,A-io,Libs-Tracked,Libs-Small
low
Major
579,690,901
flutter
Refactoring FlutterViewController to support addToExistingApp better
<!-- 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...
platform-ios,engine,customer: alibaba,a: existing-apps,c: proposal,P3,team-ios,triaged-ios
low
Critical
579,701,624
flutter
[Camera] Audio stream
`[✓] Flutter (Channel stable, v1.12.13+hotfix.8, on Mac OS X 10.15.3 19D76, locale en-TW) • Flutter version 1.12.13+hotfix.8 at /Users/tonypottera/.flutter_stable • Framework revision 0b8abb4724 (4 周前), 2020-02-11 11:44:36 -0800 • Engine revision e1e6ced81d • Dart version 2.7.0` I'm building a vi...
c: new feature,p: camera,package,team-ecosystem,P3,triaged-ecosystem
low
Critical
579,764,074
TypeScript
Order member intellisense by inheritance
## Suggestion I would like to see an optional way to allow the members of an object be displayed in the order in which they are inherited. In other words, the members should be listed from most specific to most general. Subclasses before superclasses. Perhaps a user could have this be their default intellisense beha...
Suggestion,Awaiting More Feedback
low
Major
579,855,250
neovim
Add flag and environment variable to _not_ touch STDIN
The change to default STDIN handling from #2087 is very welcome, but the current situation leaves a whole set of possible use cases. Consider a pattern like this: ``` find -type d | while read dir; do (cd $dir && zsh -i); done ``` This is greatly simplified from actual usage and obviously if I was _only_ try...
enhancement
low
Minor
579,863,726
svelte
Event bindings on animate directive
It would be nice to be able to bind events on the `animate:*` directive, much like the one that are available with the [transition directive](https://svelte.dev/docs#Transition_events) (`introstart`, `introend,` `outrostart`, `outroend`). This feature would be useful in order to prevent other changes to the current ...
feature request,temp-stale
medium
Major
579,892,885
rust
Add in memory object files support to CompiledModule and ArchiveBuilder
https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/struct.CompiledModule.html https://doc.rust-lang.org/nightly/nightly-rustc/rustc_codegen_ssa/back/archive/trait.ArchiveBuilder.html rustc_codegen_cranelift can emit object files to memory without writing them to the disk. With the current setup the...
C-enhancement,A-codegen,I-compiletime,T-compiler,A-cranelift
low
Minor
579,911,394
pytorch
Support creating a CPU tensor from ctypes pointer in Python / from_blob(ptr, shape, strides, dtype)
NumPy has utilities that allow to create an array from a ctypes pointer in pure Python (without C++ extensions): - https://docs.scipy.org/doc/numpy/reference/routines.ctypeslib.html#module-numpy.ctypeslib: - https://numpy.org/doc/stable/reference/routines.ctypeslib.html#numpy.ctypeslib.as_array - https://docs.scip...
module: docs,module: memory usage,triaged,enhancement,module: numpy
low
Major
579,942,508
node
buffer: ~2x slowdown in master compared to v12.x
* **Version**: master * **Platform**: `Linux foo 5.0.0-36-generic #39~18.04.1-Ubuntu SMP Tue Nov 12 11:09:50 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux` * **Subsystem**: buffer I was running some benchmarks (for private code) and noticed a significant slowdown with some Buffer methods. Here is a comparison of the C++...
buffer,c++,performance
medium
Major
579,951,854
opencv
Feature request: equivalent of moveaxis (Python/Numpy) and permute (MATLAB)
References: https://docs.scipy.org/doc/numpy/reference/generated/numpy.moveaxis.html https://nl.mathworks.com/help/matlab/ref/permute.html As far as I know, this operation is not available in OpenCV. About a year ago, someone on Stack Overflow also asked for an easy way to do this, but unfortunately the post remai...
feature,category: core,effort: few days
low
Minor
579,981,139
godot
Light2D mask disables CanvasItemMaterial
**Godot version:3.2.1** **OS/device including version: Windows 10 1809** **Issue description:** To properly display alphas from a transparent Viewport (Transparent Bg property on), you need to apply a CanvasItemMaterial to the Sprite with *Blend Mode = Premult Alpha*, or your viewport does not display correctly ...
bug,topic:rendering
low
Minor
579,989,783
godot
incorrect error message: The class couldn't be fully loaded...
**Godot version:** 3.2.1 stable **OS/device including version:** Mac OS 10.15.3 **Issue description:** Incorrect error message: `The class "SingleItemClickable" couldn't be fully loaded...`. There's no reason for such error, and game works without any problems **Steps to reproduce:** Open attached project and ...
discussion,topic:gdscript
low
Critical
580,058,696
pytorch
Confusing error message of tensor constructor when passing a storage
I tried to use torch.Tensor and pass it a torch.Storage (maybe wrongly) and got this: ``` >>> torch.Tensor(torch.zeros(1, dtype = torch.int16).storage()) Traceback (most recent call last): File "<stdin>", line 1, in <module> RuntimeError: Expected object of data type float but got data type 4687170077835386990 f...
triaged
low
Critical
580,076,496
pytorch
Support passing memoryview to torch.as_tensor
As far as I understand, memoryview python objects support itemsize and shapes, ndim, strides etc: https://docs.python.org/3/library/stdtypes.html#memoryview : ```python # from python docs example import struct buf = struct.pack("i"*12, *list(range(12))) x = memoryview(buf) y = x.cast('i', shape=[2,2,3]) print...
triaged,enhancement
low
Critical
580,123,812
pytorch
Add "strict" flag to ignore missing parameters in Optimizer.load_state_dict
## 🚀 Feature Add a `strict` flag to `Optimizer.load_state_dict` to match the interface for `nn.Module.load_state_dict`. This allows the optimizer to ignore missing parameters in the optimizer state. `nn.Module.load_state_dict` already supports this behavior. ## Motivation Currently, loading optimizer state fa...
module: optimizer,triaged,enhancement
low
Major
580,129,556
ant-design
Configurable layout for Upload control
- [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? Permits customizing the render location of the Upload button/dragger separately from file list. ### What does the proposed API...
help wanted,Inactive
low
Minor
580,147,204
flutter
Flutter stops animations even when screen is only partially obscured
See: b/151332834 When showing native bottom sheet or alert dialogs, screen is only partially obscured. If there's an ongoing animation, it stops when the native UI starts displaying leading to jarring effects. See repro: ```dart import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher.d...
framework,a: animation,customer: money (g3),P2,team-framework,triaged-framework
low
Major
580,153,450
node
re-enable crypto dh keygen testing on Arm
A Crypto test has been disabled on AArch64 as part of PR: https://github.com/nodejs/node/pull/31178 After a brief chat with Sam, he suggests a discussion about this should include @tniessen. I would like to discover the root-cause of the poor performance. The build logs for the job have expired for the Arm builds - ...
crypto,test,arm
low
Major
580,173,426
go
x/build/cmd/coordinator: include -longtest and -race builders for trybots on release branches
After a major version of a Go release is out, we send relatively few CLs to the release branch in order to backport fixes for minor releases, per https://golang.org/wiki/MinorReleases policy. We should consider including -longtest and -race builders in the default tryset (set of builders included in a normal trybot ...
Builders,NeedsFix
low
Major
580,194,221
flutter
[tool_crash] Invalid argument(s): Cannot find executable for /flutter/bin/cache/artifacts/
## TL;DR Workaround Wiping out the flutter cache will cause the flutter tool to re-try downloading the required cached artifacts when next invoked, which will usually fix the issue. ``` $ rm -rf <path to flutter installation>/bin/cache $ flutter run -v# or whatever command you were attempting ``` ## Issue ...
c: crash,tool,P2,team-tool,triaged-tool
low
Critical
580,200,288
youtube-dl
ert webtv
<!-- ###################################################################### 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
580,210,485
pytorch
[feature request]Support dilation parameter for unfold2d_* function (slow cpu maxpool2d #28733)
## Issue description @soumith, @VitalyFedyunin, @karimhasebou, I was investigating slow maxpool2d on cpu issue #28733. I thought I could use the conv2d implementation, but two important functions unfold2d_acc, unfold2d_copy (https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/cpu/Unfold2d.cpp) lac...
module: performance,module: nn,triaged,module: mkldnn,module: pooling,function request
low
Critical
580,213,962
next.js
paths get url-encoded with next export and getStaticPaths
# Bug report ## Describe the bug Paths get url-encoded when using `next export`. This causes them to get double-encoded when live. ## To Reproduce test case: https://gitlab.com/meesvandongen/test-case-next-export build & export the project, serve it and go to the relevant page: * [/test/path%20with%20s...
Pages Router
medium
Critical
580,230,784
PowerToys
[FZ Editor] Add a Ruler
Split from #585 as requested.. When creating new layouts, it would be very useful to have on screen screen coordinates/ruler. In addition to the previous suggestions (#585), this would aid in perfectly aligning the various zones, for those of us that must have precision in our lives.
Idea-Enhancement,FancyZones-Editor,Product-FancyZones
low
Major
580,247,575
pytorch
Pytorch not compatible with react native android
## 🐛 Bug I started using Pytorch in my app in which a module is already using ReactNative.Application is crashing while running the model ## To Reproduce Steps to reproduce the behavior: 1.Download sample react native Android code 2.Integrate Pytorch 3.Try to load a sample model using Pytorch. App cra...
oncall: mobile
low
Critical
580,259,265
go
x/build: build infrastructure credentials should be recycled
After migrating all of the build infrastructure secrets into a secret management system #37171, we should recycle all of the secrets. @toothrot @dmitshur @FiloSottile
Builders,NeedsFix
low
Minor
580,296,168
godot
Vehicle Wheel doesnt spin on air
Windows 10 Ryzen 5 2600, Nvidia GTX 1060 Godot 3.2 If applying an engineforce to the wheel, they only spin when in contact with something. I applied a engine force to a single wheel and also to the vehicle body and while on the air the wheel mesh doesnt appear to be spinning and wheel.get_rpm() returns 0 Also wh...
bug,confirmed,topic:physics,topic:3d
low
Major
580,297,862
go
net/http: Allow obtaining original header capitalization
### What version of Go are you using (`go version`)? 1.13 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? Windows, x64 ### What did you do? Make a HTTP request, read it's headers, send those headers somewhere ...
NeedsInvestigation
medium
Critical
580,341,326
puppeteer
Feature request: Implement environment variable for `--no-sandbox`
### Steps to reproduce * Puppeteer version: all * Platform / OS version: Docker * Node.js version: All **What steps will reproduce the problem?** Running puppeteer as a root user errors with the common: `Running as root without --no-sandbox is not supported. See https://crbug.com/638180.`. You can get around...
feature,good first issue,confirmed
medium
Critical
580,378,092
flutter
[in_app_purchase] Support InApp purchase local verification
InApp purchase plugin should support local/offline purchase verification Android Purchase Verification: https://developer.android.com/google/play/billing/billing_library_overview#Verify-purchase-device iOS Receipt Validation: https://developer.apple.com/library/archive/releasenotes/General/ValidateAppStoreReceipt/C...
c: new feature,p: in_app_purchase,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
medium
Critical
580,388,985
TypeScript
No way to use composite project where outDir is determined by build tool
In https://github.com/microsoft/TypeScript/issues/37257 I discussed one way to host TS project references under Bazel, where each build step gets only `.d.ts` and `tsconfig.json` files from the referenced projects. This is broken because TS module resolution fails to locate the `.d.ts` files in their `outDir`. In th...
Needs Investigation
medium
Critical
580,403,020
flutter
SliverAppBar: Copy/Paste controls for TextField are enlarged when AppBar is expanded.
This example is using a NestedScrollView + SliverAppBar as header. Inside the AppBar, is a TextField. http://screens.gskinner.com/shawn/2020-03-13_00-36-22.mp4 You can see that the Copy/Paste/Select all controls grow with the scale of the Widget which is not desired. ``` List<String> items = List.generate(30, (...
a: text input,framework,f: material design,f: scrolling,a: quality,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-design,triaged-design
low
Major
580,403,346
pytorch
RuntimeError: derivative for grid_sampler_2d_backward is not implemented
Hi When trying to compute the second order derivative of `grid_sampler`, the following error occurs: `RuntimeError: derivative for grid_sampler_2d_backward is not implemented`. It seems useful to support second order derivative for bilinear interpolation operations like this, given bilinear interpolation is used...
triaged,module: interpolation
high
Critical
580,449,872
pytorch
Pytorch report INTERNAL ASSERT FAILED at ..\torch\csrc\jit\ir.cpp:1529 when use torch.jit.script to convert to model
## 🐛 Bug ``` <!-- A clear and concise description of what the bug is. --> Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\ProgramData\Anaconda3\envs\pytorch\lib\site-packages\torch\jit\_recursive.py", line 534, in recursive_script return create_script_module(nn_module, inf...
needs reproduction,oncall: jit,triaged
low
Critical
580,458,222
flutter
cannot find symbol import io.flutter.embedding.engine.plugins.lifecycle.FlutterLifecycleAdapter;
when i want to build app for android with command "flutter build apk --release", i get this error ```bash cannot find symbol import io.flutter.embedding.engine.plugins.lifecycle.FlutterLifecycleAdapter; ``` that is inside local_auth plugin. i opened it with android studio and see that the FlutterLifeCycleAdapte...
c: crash,platform-android,p: local_auth,package,a: build,P3,team-android,triaged-android
medium
Critical
580,478,181
nvm
[Bug/Feature] Error in not compatibility
Hello, Sorry if already this is in issue, but i have try search google without any good results, so i want to help others. OS: Ubuntu 18.04 NVM: latest (0.35.3) OpenSSL: 1.1.0h (1.1.0h-2.0+ubuntu16.04.1+deb.sury.org+1) npm: v8.17.0 this set is working, but when i change version to v10.19.0 or v12.16.1 (late...
needs followup
low
Critical
580,493,098
ant-design
Table header can't scroll when append a new column
- [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### Reproduction link [https://github.com/wang12124468/antd-bugs-table/tree/bugs-header-scroll-when-append-column](https://github.com/wang12124468/antd-bugs-table/tree/bug...
🐛 Bug,Inactive,4.x
low
Critical
580,564,644
pytorch
torch.jit.script report error when using index to subscript nn.ModuleList
## 🐛 Bug torch.jit.script report error when using index to subscript nn.ModuleList ## To Reproduce Steps to reproduce the behavior: 1. test.py <pre>import torch.nn as nn class my_model(nn.Module): def __init__(self): super(my_model, self).__init__() self.m = nn.ModuleList([nn.Conv3...
triage review,oncall: jit
low
Critical
580,615,264
pytorch
Maybe gpu_kernel shouldn't ASSERT_HOST_DEVICE_LAMBDA
I am not really sure why this assert exists (don't you only need a device lambda for gpu kernels?), but I was recently working on #31278 and discovered a case where it was actively harmful to define things as a `__host__ __device__` lambda. Consider this code: ``` at::native::gpu_kernel(iter, [seeds] GPU_...
triaged
low
Major
580,653,550
godot
function name can be built in names, but not overrides
**Godot version:** 3.2.1 **OS/device including version:** Any **Issue description:** a function name can be built in names (built in func, const), but when calling it without indexing is invalid. 1. we have to make built in methods overrideable (like python) 2. or prevent function names shadows built in. *...
topic:gdscript,documentation
low
Major