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
663,477,996
go
x/tools/gopls: support gomvpkg as a command
See https://pkg.go.dev/golang.org/x/tools/cmd/gomvpkg?tab=doc.
Thinking,FeatureRequest,gopls,Tools
low
Minor
663,497,814
pytorch
[Feature Request] Add `to`, `cpu`, and `cuda` method to optimizer
## πŸš€ Feature ```python model = # initialize optimizer = # initialize model.cuda() optimizer.load_state_dict(optimizer_checkpoint) # if checkpoint is not on gpu memory optimizer.cuda() # <<<<<< this code can be helpful # and training codes... loss.backward() optimiz...
feature,module: optimizer,triaged
low
Major
663,499,384
flutter
The Dreaded MissingPluginException (Let's have an FAQ)
As a plugin developer, I get numerous issues regarding this error on a regular basis. There are many unrelated causes for this error, and to make matters worse, the error message identifies the plugin that was attempting to use platform channels although that is not necessarily the plugin that is responsible for the er...
c: crash,d: api docs,customer: crowd,a: error message,team-ecosystem,P3,a: plugins,triaged-ecosystem
high
Critical
663,500,248
terminal
wpf: TerminalContainer consumes WM_MOUSEWHEEL and doesn't let the native HWND have it
This makes VT mouse scrolling events not work.
Issue-Bug,Product-Terminal,Priority-2,Area-WPFControl
low
Minor
663,522,839
ant-design
Can't override <Table/> "Select All" checkbox when paginated
- [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 [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/antd-table-selection-ikqym) ### Steps to...
πŸ’‘ Feature Request,Inactive
low
Major
663,544,901
create-react-app
Support the Jest setting testPathIgnorePatterns in order to be able to exclude files from unit testing when in CI mode
### Is your proposal related to a problem? Yes it is. `npm test` does not use the Jest setting `watchPathIgnorePatterns` when in CI mode and when the environment variable `CI` is set. The alternative Jest setting `testPathIgnorePatterns` is not supported by create-react-app. ### Environment ``` W:\GIT_WORKSPA...
issue: proposal,needs triage
medium
Critical
663,554,352
pytorch
test_bottleneck_cuda fails on Power
## πŸ› Bug When running the test suite on Power (with lot's of tests already excluded to make it to this point) I get a failed test_bottleneck_cuda. ## To Reproduce Steps to reproduce the behavior: 1. `python run_test.py --verbose -x test_cpp_extensions_jit test_torch test_autograd test_cpp_extensions_aot_no...
module: tests,triaged,module: POWER
low
Critical
663,561,384
go
testing: Document that T.Log and friends should not be invoked after the end of the test
<!-- 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.3 linux/amd64 </pre> ### Does this issue reproduce...
Documentation,help wanted,NeedsInvestigation
low
Critical
663,564,257
vue
Vue SSR v-html on dynamic-component hydration warning
### Version 2.6.11 ### Reproduction link The reproduction is updated to use Vue SSR without NUXT [https://github.com/privatenumber/vue-ssr-vhtml-dyncomp-bug](https://github.com/privatenumber/vue-ssr-vhtml-dyncomp-bug) ### Steps to reproduce _Dynamic.vue_ ```vue <template> <component is="div"> conten...
bug,has workaround,feat:ssr
low
Critical
663,644,938
flutter
The argument type 'ModalRoute<Object?>?' can't be assigned to the parameter type 'PageRoute<dynamic>'
**Steps to Reproduce:** 1.) setup `RouteObservers` on a widget (lets call it `MyWidget`) like in example: https://api.flutter.dev/flutter/widgets/RouteObserver-class.html 2.) use `showGeneralDialog` to present `MyWidget` **Expected results:** `MyWidget` should subscribe to `RouteObservers` without throwing ...
c: crash,framework,f: material design,d: api docs,f: routes,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework
low
Critical
663,674,875
terminal
Productize the WPF, UWP Terminal Controls
This scenario tracks the remaining work to productize the UWP and WPF versions of the Terminal Control. These will allow 3rd-party developers to embed terminal instances in their applications. That way, external developers won't need to write their own terminals, they can just re-use the one we build in this repo. Cu...
Area-TerminalControl,Product-Terminal,Issue-Scenario,Area-WPFControl
medium
Major
663,674,893
terminal
[Epic] Shared UI Automation Improvements
_created and maintained by @carlos-zamora_ A number of screen readers still don't use the UIA framework we've exposed in ConHost and Windows Terminal. After speaking with @codeofdusk, there's a number of suggested improvements we can do to convince screen reader manufacturers to switch over from the legacy framework...
Area-Accessibility,Product-Terminal,Priority-1,Issue-Scenario
low
Critical
663,674,894
terminal
Tests we should maybe write one day
I'm gonna use this thread to track things that I think of that probably should be tested, but didn't get a test during the PR for one reason or another. Usually those reasons are * We don't have a good testing framework in place for something like that * It's a feature / UI test, which is a lot trickier to author a ...
Help Wanted,Product-Meta,Area-CodeHealth,Issue-Scenario
low
Minor
663,705,231
rust
Better slices array type inference
This code: ```rust #[allow(unused_variables)] fn main() { let foos1: [&[u32]; 3] = [&[1_u32, 2, 3], &[1, 2], &[]]; let foos2 = [&[1_u32, 2, 3], &[1, 2], &[]]; } ``` Currently (rustc 1.47.0-nightly 8ad7bc3f4 2020-07-21) this gives: ```rust error[E0308]: mismatched types --> ...\test.rs:4:34 | 4 |...
T-compiler,A-inference,C-feature-request
low
Critical
663,718,802
flutter
"mounted" state should be automatically checked by flutter instead of forcing code to "fix" it
The following message was presented when an async call took longer than expected to get a version.txt file for the web build of a flutter app. The app has a custom splash screen which presents the version and build number from a txt file since PackageInfo do not work on the web. "The preferred solution is to cancel ...
framework,c: proposal,P3,team-framework,triaged-framework
low
Critical
663,721,949
flutter
Implement native platform resolved locales on desktop embedders
Continuation from https://github.com/flutter/flutter/issues/47087 We currently expose a `ComputePlatformResolvedLocale` callback in the embedder API (flutter/engine#19597), and, as appropriate, should implement this for each embedder. This is already done for Android and iOS.
engine,platform-mac,a: internationalization,a: desktop,P3,team-macos,triaged-macos
low
Major
663,728,315
storybook
Failing to parse TypeScript files outside the src directory
**Describe the bug** I am utilizing TypeScript path aliases with CRA along with Yarn workspaces in a mono repo situation. Importing files from the aliased path that contains type declaration fails to parse that file when compiling Storybook. The CRA itself has no trouble with that. Upon removing type declaration...
question / support,react,typescript,cra
low
Critical
663,734,265
rust
`negative_impls` and `auto_traits` experimental features allow trait impls to overlap
<!-- Thank you for filing a bug report! πŸ› Please provide a short summary of the bug, along with any information you feel relevant to replicating the bug. --> I tried this code (this is the most minimal example that I could create, though I think that there may exist a simpler one. my original code: [playground](https...
I-unsound,C-bug,requires-nightly,F-negative_impls,F-auto_traits,A-auto-traits,S-bug-has-test,T-types
low
Critical
663,741,060
realworld
Use of hashtag fragments in routes
Hi, I want to create a fullstack implementation of Realworld for an MVC we use at our company, but I noticed the spec seems to dictate the use of hashtag routes (`/#/`) instead of fully qualified pathnames. I've never been a fan of those, are they really required for **fullstack** implementations?
Status: Triage
low
Minor
663,788,782
create-react-app
Proposal: enforce immutability for hook dependencies instead of exhaustive deps
Hi, so there is a long discussion for and against CRA's `react-hooks/exhaustive-deps` lint rules in the issue #6880. Without going to further analyze that, it's safe to assume that the exhaustive-deps rule causes some unwanted busywork and even introduction of undesired side-effects which the developers might have n...
issue: proposal,needs triage
low
Critical
663,789,093
TypeScript
String union types in props inside generic types
**TypeScript Version:** 3.9.2 & 4.0.0-beta **Code** ```ts type A = { foo: number } type B<T extends string> = { [key in T]?: number } type C<T extends string> = A & B<T> const f = <T extends string>(prop: T, value: number): C<T> => { const c: C<T> = { foo: 6 } c[pr...
Bug
low
Major
663,801,442
pytorch
Difference in inference time between CUDA 10.0 & 10.2
## πŸ› Bug Running the same model using LibTorch that was compiled with CUDA 10.2 results in ~20x slower inference time than using LibTorch that was compiled with CUDA 10.0 ## To Reproduce Steps to reproduce the behavior: Compile LibTorch using 10.0 & 10.2 Run the following code with both libtorch libraries...
module: performance,module: cudnn,module: cuda,triaged
low
Critical
663,872,850
rust
macOS x86_64 requires frame pointers to unwind functions with huge stack frames
[Upstream LLVM bug](https://bugs.llvm.org/show_bug.cgi?id=46813) Currently macOS x86_64 forcibly has frame pointers enabled, but this is an unfortunate performance loss relative to other platforms. There's no fundamental need to use frame pointers on macOS and it'd be a nice perf boost if we could stop requiring the...
A-LLVM,O-macos,O-x86_64,T-compiler,C-bug
low
Critical
663,878,956
vscode
[theming] token type hierarchy to the 'Developer: Inspect Editor Tokens and Scopes' command
Issue Type: <b>Feature Request</b> This would be really useful for theme authors who want to find out the available supertypes of a token, without looking in the `semanticTokenTypes` contribution point. It could just be another line between `semantic token type` and `modifiers`: ![inspectTokens](https://user-images...
feature-request,editor-theming
low
Minor
663,970,847
terminal
Transparent background doesn't become transparent foreground when rendered in reverse video
The new Preview 1.2.2022.0 seems to fix all the VT colors issues I observed before, except one last case: When the background color is the default (49), it is correctly kept transparent, but if the foreground color is transparent, which is possible when the background is 49 and then the colors are reversed using 7, ...
Help Wanted,Area-Rendering,Product-Terminal,Issue-Task
medium
Critical
663,977,455
terminal
Include profile names for commands in the Command Palette that have a profile index
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 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-UserInterface,Product-Terminal,Issue-Task,Priority-3,Area-CmdPal
low
Critical
663,991,733
PowerToys
SFTP/FTPS File Explorer Addon
# Summary of the new feature/enhancement Current File Explorer is missing the past decade and a half of network based file systems support that *nix systems have been using for ages with fuse. # Proposed technical implementation details (optional) File Explorer already has unsecured FTP support. PowerToy...
Idea-New PowerToy
low
Major
663,992,426
go
proposal: os: new Readdirentries method to read directory entries and efficiently expose file metadata
### API _(Update: edited to turn into a proposal, add suggested API)_ ```go func (f *File) Readdirentries(n int) ([]DirEntry, error) // The file type could not be determined const ModeUnknown FileMode = xxx type DirEntry struct { // Name is the base name of the file Name string // ... unexported ...
Proposal,NeedsInvestigation,Proposal-Hold
medium
Critical
664,024,586
neovim
CTRL-N style completion in :terminal
When working in `:terminal` I often find myself entering normal mode with `<C-\><C-N>`, navigating to some string and pressing `yp` to copy it to the terminal prompt. As an example imagine this terminal session: ``` $ widgetctl get widgets widget-foo-version-42-abfffde8312 widget-foo-version-43-321caaba44 $ widg...
enhancement,terminal
low
Minor
664,030,015
pytorch
TorchScript pack_padded_sequence and pad_packed_sequence run time error
## ❓ Questions and Help Hi, I am facing this problem and have been searching for answers for a day. Anyone can help? ``` RuntimeError: The following operation failed in the TorchScript interpreter. Traceback of TorchScript, serialized code (most recent call last): File "code/__torch__.py", line 24, in forward ...
oncall: jit
low
Critical
664,032,719
go
proposal: archive/zip: add ability to read local file header
In a zip archive, file information is stored in two locations: the central directory header, and a local file header located prior to the file's data. In certain circumstances, a user might want to read information from the local file header as opposed to solely the central directory header. The current implementation ...
Proposal
low
Critical
664,035,450
fastapi
Automatically support HEAD method for all GET routes, as Starlette does
### First check * [x] I added a very descriptive title to this issue. * [x] I used the GitHub search to find a similar issue and didn't find it. * [x] I searched the FastAPI documentation, with the integrated search. * [x] I already searched in Google "How to X in FastAPI" and didn't find any information. * [x] ...
feature,confirmed,reviewed
medium
Critical
664,077,293
godot
Scaling Skeleton with PhysicalBones results in math errors
**Godot version:** 3.2.1 **OS/device including version:** Windows 10 1903 **Issue description:** This error appears (many times) when scaling up a rigged character with PhysicalBones. *core/math/basis.cpp:304 - Condition "!m.is_diagonal()" is true. Returned: Vector3()* In a project of mine these errors alrea...
bug,topic:physics
low
Critical
664,089,771
godot
Loading large PCK file takes a long time and eventually results in crash on 3.2
**Godot version:** 3.2 **OS/device including version:** Android/Pixel 2 **Issue description:** Loading this (https://github.com/godotengine/godot-demo-projects/tree/master/3d/material_testers) PCK file takes a long time (1+ minutes) and eventually crashes, I cannot unfortunately find anything in the logs regar...
bug,platform:android,topic:core,performance
low
Critical
664,114,111
node
util function to statically resolve ESM dependency trees
## What: Add a utlilty function to resolve ECMAScript Module dependency trees. The function should accept a file path and return an array of dependencies. ### example ```js // main.mjs import bar from "./bar.mjs"; import foo from "./foo.mjs"; // bar.mjs import foo from "./foo.mjs"; export null; // f...
esm
low
Major
664,146,545
TypeScript
Default formatter results strange indents for TypeScript code.
*TS Template added by @mjbvz* **TypeScript Version**: 4.0.0-dev.20200720 **Search Terms** - format, formatter, formatting - indent --- <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search...
Bug,Domain: Formatter
low
Critical
664,153,576
TypeScript
random error TS2345 type incompatible
<!-- 🚨 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...
Needs Investigation
low
Critical
664,156,394
angular
`--config remote` and `--config debug` are incompatible
# 🐞 bug report ### Affected Package <!-- Can you pin-point one or more @angular/* packages as the source of the bug? --> <!-- ✍️edit: --> The issue is caused by `yarn bazel` ### Is this a regression? <!-- Did this behavior use to work in the previous version? --> <!-- ✍️--> I don't know, I've never tried...
workaround2: non-obvious,area: dev-infra,type: confusing,P3
low
Critical
664,159,881
youtube-dl
Trying to download all vimeo videos by user/pass
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
664,177,472
go
proposal: x/net/http2: enable extension frame handling for HTTP/2
HTTP/2 library currently ignores HTTP/2 frames with an undefined type. The proposal is to enable the library to handle the extension frames. The change will enable HTTP/2 Go's feature parity to nghttp2 (a popular HTTP/2 library in c). Requirement: 1. The change needs to include a feature flag to turn on the extensi...
Proposal
low
Major
664,179,555
rust
A lint to warn about generic in alias not used as generic parameter
Consider [this snippet](https://github.com/snapview/tokio-tungstenite/blob/317569dfe0da6374476bf8048bf861902643b79b/src/connect.rs#L63): ```rust pub type AutoStream<S> = S; ``` Which actually does nothing useful but causes confusing such as https://github.com/snapview/tokio-tungstenite/issues/113 . It woul...
A-lints,T-lang,C-feature-request
low
Minor
664,181,765
go
x/pkgsite: package-scope exported variables display full source code of function bodies
For my package: https://github.com/rocketlaunchr/dataframe-go, the godoc page for Variables of func is ridiculous. It is so ridiculous, I can't explain it in words here. See: https://godoc.org/github.com/rocketlaunchr/dataframe-go/forecast/evaluation /cc @dmitshur
NeedsInvestigation
low
Major
664,183,183
pytorch
[C++] adding type checking or type casting to torch::PackedTensorAccessor indexing
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> For a torch::PackedTensorAccessor object, when we access the elements of its, check, or cast the indexing number type. ## Motivation ``` torch::PackedTensorAccessor<scalar_t,1,torch::RestrictPtrTraits,size_t> some_values; const float...
module: cpp,triaged,enhancement
low
Critical
664,183,353
pytorch
Inconsistencies on ModelLayer
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> Hi, we are developing some tools to help detect bugs for Python automatically. Our tool finds potential inconsistencies among the definition of ModelLayer and the instances (BatchMSELoss, BatchSigmoidCrossEntropyLoss, etc.). ## To Reproduce ...
caffe2-op,triaged,better-engineering
low
Critical
664,195,119
electron
.showInactive() stealing focus on Mac with Electron 8
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]-...
platform/macOS,bug :beetle:,8-x-y,11-x-y
medium
Critical
664,215,033
go
cmd/go: enable listing direct dependency updates
## Intro The recommended approach to listing available module updates is to run the following command. ``` go list -u -m all ``` This displays every dependency along with newer available versions. ``` go list -u -m all github.com/icholy/utm github.com/google/go-cmp v0.5.0 [v0.5.1] github.com/pkg/error...
Proposal,Proposal-Accepted,GoCommand,modules
medium
Critical
664,216,922
pytorch
Dropout in TorchScript under torch.no_grad() produces incoherent results
## πŸ› Bug A TorchScript model produces a different result in `torch.no_grad()` when exectued with - dropout and fork_rng - torch._C._jit_set_profiling_executor(False) This prevents us from using the gradient checkpointing. The following code mimics typical steps for the gradient checkpointing, where 1. Run fo...
oncall: jit
low
Critical
664,265,064
flutter
Flutter driver doesn't have a way to find the current state of toggle button
Actually while working on the integration tests in flutter I am trying to perform assertion on the toggle button where I need to find the actual state of Toggle button (Switch OFF/ON). FlutterDriver has following method to get the text of different controls e.g. Text(). FlutterDriver.getText(Finder); I am not ...
c: new feature,framework,f: material design,t: flutter driver,P3,team-design,triaged-design
low
Major
664,276,039
TypeScript
Variadic tuple constraint incoherent ?
**TypeScript Version:** 4.0.0-dev.20200722 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** Variadic tuple Variadic tuple constraint **Code** ```ts type A<GArgs extends [number, string, ...any[]]> = true; type B<GArgs extends [string, ...an...
Suggestion,Awaiting More Feedback
low
Critical
664,317,823
rust
diagnostics: rustc displays confusing Ok(#[stable(feature = "rust1", since = "1.0.0")] T) if wrong match binding is used
If I have a function that returns `Result<(), i32>` and try to match on it with `Ok()` instead of `Ok(())` or `Ok(_)`, I get an error: ```` error[E0023]: this pattern has 0 fields, but the corresponding tuple variant has 1 field --> src/main.rs:7:9 | 7 | Ok() => {} | ^^^^ expected 1...
C-enhancement,A-diagnostics,T-compiler
low
Critical
664,365,759
create-react-app
Allow hiding error overlay for certain errors
### Is your proposal related to a problem? There are cases when throwing error from component is intended and caught by Error boundaries. Even in that case, CRA still displays error in development mode. ### Describe the solution you'd like Allow users to throw custom errors which will not be displayed. For exa...
issue: proposal,needs triage
low
Critical
664,376,761
angular
The `setErrors` method does not set errors
When you set the errors of a `FormControl` (using the `setErrors` method) inside a `FormGroup`, where the `FormControl` contains validators then the errors are not set. ```typescript formGroup: FormGroup; constructor(private formBuilder: FormBuilder) { this.formGroup = this.formBuilder.group({ login: ["...
area: forms,state: confirmed,forms: validators,P4,area: docs
medium
Critical
664,394,113
pytorch
Automating the various Installation processes for Linux
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> A python script to automate the installation process for all the different requirements according to the user's need. ## Motivation <!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e....
module: build,feature,triaged
low
Minor
664,400,122
rust
Missing unsizing coercions for raw slice pointers
With https://github.com/rust-lang/rust/pull/73986 having landed, one would expect something like this to work: ```rust #![feature(raw_ref_op)] #![feature(slice_ptr_get)] struct S { keys: [i32; 2], } unsafe fn get_last(s: *const S) -> i32 { let keys = &raw const (*s).keys; *keys.get_unchecked(1)...
C-bug,A-coercions
low
Critical
664,417,728
pytorch
ASAN build broken when using USE_ASAN=1
## πŸ› Bug I'm trying to debug the failures on Power by building with ASAN. Checking the documentation and combining the CONTRIBUTION.MD with .jenkins/pytorch/build-asan.sh I arrived at: `LD_PRELOAD=${LIBASAN_RT} CC="clang" CXX="clang++" LDSHARED="clang --shared" LDFLAGS="-stdlib=libstdc++" CFLAGS="-fsanitize=addr...
module: build,triaged,module: POWER
low
Critical
664,420,444
pytorch
ASAN build breaks when using third_party/protobuf
## πŸ› Bug When using the third_party protobuf (default?) the build breaks with `terminate called after throwing an instance of 'std::system_error'` when running the compiled protoc ## To Reproduce Steps to reproduce the behavior: 1. setup `LIBASAN_RT` 1. `LD_PRELOAD=${LIBASAN_RT} CC="clang" CXX="clang++" L...
module: build,module: protobuf,triaged,module: POWER
low
Critical
664,448,277
angular
Radio-buttons out of sync with model (reactive-forms)
🐞 bug report ### Is this a regression? Not that I know ### Description I'm creating a survey app which contains multiple questions, but when 2 subsequent questions contain the same answer labels in different positions, the view gets out of sync when selecting one of them and navigating between the 2 questions....
type: bug/fix,area: forms,state: confirmed,forms: directives,forms: ControlValueAccessor,P3
low
Critical
664,451,394
flutter
Video_Player issues - out of memory exception when choosing large file from phone to play
Hello, I have an app that chooses a video from the phone with the file picker plugin, and tries to play it in video player after choosing it. The issue that I am having on android, is that when videos are larger than 256 MB, the player throws an exception of out of memory and my app simply crashes. `Flutter vers...
c: crash,platform-android,customer: crowd,p: video_player,package,has reproducible steps,P2,found in release: 2.2,found in release: 2.3,team-android,triaged-android
low
Critical
664,452,653
terminal
Don't localize command names on the command palette
# Environment ```none Windows build number: 10.0.20175.0 (Japanese) Windows Terminal version: 1.2.2022.0 ``` # Steps to reproduce/Actual behavior Opening command palette and type some command in English. For example, if I want to invoke certain `scroll` commands, I want to search the commands with typing...
Issue-Feature,Area-UserInterface,Product-Terminal,Priority-1,Area-Localization,Area-CmdPal
low
Major
664,456,271
pytorch
Compilation on Power fails with clang due to vec_xl
## πŸ› Bug When compiling PyTorch with Clang on Power the compilation fails with ``` ../aten/src/TH/vector/VSX.cpp:130:24: error: no matching function for call to 'vec_xl' x11_fp64vec2 = vec_xl(0, x+(i+22)) ``` The reason is clear by inspection of clangs `altivec.h`: Their `vec_xl` function take non-...
module: build,triaged,module: POWER
low
Critical
664,460,313
godot
AudioStreamPlayer high-freq artifact, pops, stereo channel corruption
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** 3.2.2 Stable **OS/device including version:** Windows 10 **Issue description:** - High-frequency artifact in both WAV and OGG sample playba...
bug,needs testing,topic:audio
low
Critical
664,464,093
pytorch
Failure to compile Eigen on Power with clang
## πŸ› Bug With clang on power I get ``` ../cmake/../third_party/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h:455:10: error: call to 'vec_sel' is ambiguous return vec_sel(b, a, mask); ``` This issue seems to be known and solved by https://github.com/eigenteam/eigen-git-mirror/commit/c925dd8630175bc0e30359...
module: build,triaged,module: third_party
low
Critical
664,512,740
go
x/pkgsite: local setup - tracking issue
Today, users can run pkgsite locally without setting up a local database by running: `go run cmd/frontend/main.go -direct_proxy -proxy_url=<your proxy URL>` See [flags](https://github.com/golang/pkgsite/blob/master/cmd/frontend/main.go#L43) in `cmd/frontend/main.go`, and [doc/frontend.md](https://github.com/golan...
help wanted,NeedsInvestigation,pkgsite,pkgsite/cmd
medium
Critical
664,543,114
pytorch
torch.exp() cannot be modified by an inplace operation
## πŸ“š Documentation The original question was posted [here](https://discuss.pytorch.org/t/torch-exp-is-modified-by-an-inplace-operation/90216). As `torch.exp()` leverages its output for calculating its gradient while most other functions use their input, `torch.exp()` has a different behavior when its output is inpl...
module: docs,module: autograd,triaged
low
Minor
664,591,596
go
path/filepath: Join is susceptible to SlipZip
Edit: moved from issue title to body for hyperlink: https://snyk.io/research/zip-slip-vulnerability --- The u-root project has several programs that unarchive files -- cpio, tar, zip, etc. A few weeks ago we were notified that we are vulnerable to something called ZipSlip. It's a simple enough problem: archiv...
NeedsInvestigation
low
Major
664,620,235
rust
Missed optimization: loop with increasing index doesn't elide bounds check
I tried this code and many variations of it and I found out this doesn't elide the bounds check on `&buf[i..]`. ```rust pub fn problematic(buf: &[u8]) -> &[u8] { let mut i = 0; for b in buf { if *b == 0x00 { return &buf[i..]; } i += 1; } &[] } ``` ...
I-slow,C-enhancement,T-compiler,C-optimization
low
Minor
664,662,267
go
x/crypto/acme: ACME client's internal retry implementation results in hanging retries on 429s
<!-- 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.4 darwin/amd64 </pre> ### Does this issue reproduce with...
NeedsInvestigation
medium
Critical
664,715,083
pytorch
Installing pytorch from source on Power9 (PPC64LE) + CUDA 10.2 + RHLE7
Steps to reproduce the behavior: After following instructions on https://github.com/pytorch/pytorch#get-the-pytorch-source 1. export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"} 2. python setup.py install --cmake <!-- If you have a code sample, error messages, stack traces, please provide it...
module: build,triaged,module: POWER
low
Critical
664,738,223
rust
Add a spell checker for libcore/libstd documentation
From #74141: > @pickfire: Did you go through this with some kind of type checkers like cargo-spellcheck? > @euclio: I made a super hacky custom rustdoc pass that ran a spellchecker over markdown compiled to plain text. It would be great to have a tool that automated spell-checking for the docs. @pickfire suggest...
C-enhancement,E-help-wanted,T-bootstrap,A-docs
medium
Critical
664,738,505
vscode
Preserve open documents word wrap settings on restart
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- 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, when VS Code is restarted (e.g. for e...
feature-request,editor-wrapping
medium
Critical
664,787,092
pytorch
[docs] Clarify behavior of torch.cuda.device_count() when torch compiled without CUDA (cpu-only) or when CUDA is not available
It would be nice to have this in docs directly, since loops like `for device in range(torch.cuda.device_count())` are simpler if it is known to return 0 when no CUDA is compiled or it is not available In https://discuss.pytorch.org/t/torch-cuda-device-count-with-no-cuda-compiled-available/90328 it seems so! cc @ngi...
module: docs,module: cuda,triaged
low
Minor
664,803,936
flutter
Make it clear from where in the theme does each widget get their default style
## Use case For instance, when I create a RaisedButton, where are all the default styling coming from the theme? Now for a RaisedButton, it's possible to change any styling from the widget properties and also it's sometimes possible to intuitively figure it out, but widgets like datePicker, timePicker and Scrollb...
framework,f: material design,d: api docs,c: proposal,team-design,triaged-design
low
Minor
664,808,388
pytorch
can not use nn::Functional(torch::softmax(-1)) in Sequential
nn::Sequential(nn::Linear(dim_states, h_neurons), nn::Functional(torch::tanh), nn::Linear(h_neurons, h_neurons), nn::Functional(torch::tanh), nn::Linear(h_neurons, dim_acts), nn::Functional(torch::softmax(-1))); compile error ../src/actorcritic.cpp:13:40: er...
module: cpp,module: nn,triaged
low
Critical
664,851,742
angular
Warn or error when `setComponentScope()` is necessary
# πŸš€ feature request ### Relevant Package <!-- Can you pin-point one or more @angular/* packages the are relevant for this feature request? --> This feature request is for `@angular/compiler` ### Description When an `NgModule` includes components/directives/pipes with circular references, the scope for Angul...
feature,workaround3: complex,area: compiler,P4,feature: in backlog
low
Critical
664,876,371
pytorch
torch.random.fork tries to initialize cuda even when no cuda devices are available
## πŸ› Bug When I try to fork_rng in a context, while only having a cpu available, torch tries to initialize cuda and raises an exception ## To Reproduce run this code in a script ```python import os os.environ["CUDA_VISIBLE_DEVICES"]="" import torch print(torch.__version__) # I have "1.5.1" device="cpu"...
module: cuda,triaged,module: random
low
Critical
664,877,554
flutter
flutter build aar failed with NPE
run ./gradlew assembleRelease command is OK but run `flutter build aar` failed Log : ``` FAILURE: Build failed with an exception. * Where: Initialization script 'xxxxx/Flutter-Stable-1.12.13/packages/flutter_tools/gradle/aar_init_script.gradle' line: 164 * What went wrong: java.lang.NullPointerExcept...
c: crash,platform-android,tool,t: gradle,a: existing-apps,P2,team-android,triaged-android
low
Critical
664,892,007
opencv
[DNN] Error when read ResNet101_DUC_HDC model for semantic segmentation
##### System information (version) - OpenCV => 4.3.0 - Operating System / Platform => ubuntu 18.04 64bit - Compiler => python ##### Detailed description I'm trying to write an semantic segmentation with dnn module in opencv. I tried the models mentioned in the [wiki](https://github.com/opencv/opencv/wiki/Deep-...
category: dnn
low
Critical
664,965,478
rust
Suggest reborrowing mutable reference when move error ocurrs
The following code: ```rust struct Foo; struct Wrapper<T>(T); fn use_val<T>(_: &mut T) {} impl Foo { fn call_it(&mut self) { use_val(&mut Wrapper(self)); self; } } ``` produces the following error: ``` error[E0382]: use of moved value: `self` --> src/lib.rs:9:9 | 7 ...
C-enhancement,A-borrow-checker,T-compiler,A-suggestion-diagnostics
low
Critical
664,993,383
nvm
Installing custom Node build
I'm in the process of trying out a Node feature I'm working on. In this context, I'd like to try my build in "real life" by using nvm to install it and manage it (I don't plan to make nvm build from sources - just to use a preexisting tarball on install). Is nvm capable of this? Would that be a PR you'd consider?
installing node,feature requests
low
Minor
665,030,860
rust
Do not build nightly-only tools on beta/stable CI
Currently, we build nightly-only tools such as Miri even on beta/stable CI, only to then ignore whether they build or not. That seems like a waste. We certainly do that for the tools builders (that also run the tests); I do not know if we also do it for dist builders (that just build the tools to put them into rustup p...
T-bootstrap,T-infra
low
Minor
665,033,928
tensorflow
Keras Metric Multiple Outputs / Inputs
**System information** - TensorFlow version (you are using): 2.2.0 - Are you willing to contribute it (Yes/No): No **Describe the feature and the current behavior/state.** Keras custom `metric` should optionally get as input all inputs and all outputs of the same batch. This will allow creating metrics that ar...
type:feature,comp:keras
low
Major
665,067,546
pytorch
PyBind11 submodule required even when pybind11_PREFER_third_party=OFF
## πŸ› Bug The check at https://github.com/pytorch/pytorch/blob/f00a37dd71c8299261f0cbdb76f43d1ef2900e65/setup.py#L301 does require the pybind11 submodule to be initialized even when a system pybind11 exists and should be used. This makes the build fail when using a non-recursive checkout with only actually requir...
module: build,triaged
low
Critical
665,095,213
vscode
Hang when opening output tab with too many logs
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- 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...
bug,freeze-slow-crash-leak,output
low
Critical
665,123,937
tensorflow
Golang: SessionOptions & ConfigProto opaqueness & inaccessibility
**System information** - TensorFlow version (you are using): 1.15.0 (will move to stable 2.3.0 when it is available) - Are you willing to contribute it (Yes/No): No **Describe the feature and the current behavior/state.** The Go bindings of TensorFlow have a somewhat awkward API when it comes to setting the sessi...
type:feature,comp:apis
low
Major
665,181,693
svelte
Allow attributes on the `<title>` element
**Is your feature request related to a problem? Please describe.** Looks like the `<title>` element is [barred from having any attributes] (https://github.com/sveltejs/svelte/blob/master/src/compiler/compile/nodes/Title.ts). [According to MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title#Attributes)...
feature request,stale-bot,compiler,temp-stale
low
Minor
665,205,057
PowerToys
Copy path/filename in primary context menu
Add a Copy Full Path and Copy Filename to the right click menu in file explorer. This is would be useful when writing code that accesses files, working with software that doesn't have drag and drop for working with files and copying in to any command type window like PowerShell or anything in Windows Terminal.
Idea-New PowerToy,Status-In progress,Product-File Explorer
low
Major
665,237,342
pytorch
EMNIST looks different to MNIST
## πŸ› Bug Hello, the images from the mnist split from EMNIST look flipped. ## To Reproduce ``` import torch from torchvision import datasets, transforms from PIL import Image kwargs = {'batch_size': 2} transform = transforms.Compose([ transforms.ToTensor(), transforms.N...
triaged,module: vision
low
Critical
665,287,304
terminal
When running as Administrator, Terminal should always start built-in Windows apps in C:\Windows\System32
### Description of the new feature/enhancement When you open Command Prompt or PowerShell from the Start Menu, Start --> Run (Windows-R), or the set of options you get by right-clicking the Start button (Windows-X), the starting current directory for the shell can vary: - When the shell is run as an ordinary user...
Product-Terminal,Issue-Task,Needs-Tag-Fix,this-will-be-a-breaking-change
low
Minor
665,301,929
electron
Port numbers are lost on standard schemes.
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]-...
component/protocol,bug :beetle:
medium
Critical
665,310,173
PowerToys
[Settings, FancyZones] review requirement of "key" field
The FZ code requires the shortcut "key" field along with the key code. See https://github.com/microsoft/PowerToys/pull/5194/files for reference.
Product-Settings,FancyZones-Settings,Product-FancyZones,Area-Quality,Priority-2
low
Major
665,318,570
create-react-app
create-react-app is not offering suggestions/guideline for managing environment specific configuration
### Is your proposal related to a problem? The react applications created by "create-react-app" does NOT provide a opinion on how to handle environment specific configuration. I had joined 3 different react projects in the recent years, and I found the way they handled environment specific configurations in not t...
issue: proposal,needs triage
low
Major
665,331,492
flutter
Cannot pass deleted object as a pointer of type sk_sp<SkPicture>
A few minutes after loading the Flutter devicelab dashboard, it locks up and throws this exception: Cannot pass deleted object as a pointer of type sk_sp<SkPicture> ``` VM1866:1 console.trace eval @ VM1866:1 ac @ canvaskit.js:formatted:3503 tc @ canvaskit.js:formatted:3635 SkCanvas$drawPicture @ VM1200:9 IT @ m...
platform-web,P2,team-web,triaged-web
low
Critical
665,341,494
kubernetes
Kubectl parsing of local flags with no args appearing before the command name is broken or at best, confusing
**What happened**: Running a `kubectl get` with --all-namespaces in the wrong place consumes one extra argument, resulting in a confusing error. **What you expected to happen**: A sane error. **How to reproduce it (as minimally and precisely as possible)**: ``` $ k get pods NAME ...
kind/bug,priority/backlog,area/kubectl,sig/cli,lifecycle/frozen
low
Critical
665,345,649
flutter
[Material] Update hover + focused + pressed states for mouse on Slider and Range Slider
-hovered overlay should be 4% opacity -focused overlay should be 12% opacity -pressed ripple, that grows from center of thumb on top of focused overlay, should be 10% opacity -pressed ripple grow should have same animation as touch overlay grow
c: new feature,framework,f: material design,P2,team-design,triaged-design
low
Major
665,353,737
go
runtime: select: fatal error: index out of range
<!-- 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`)? I'm using bazel [rules_go release v0.22.6](https://github.com/bazelbuild/rules_go/releases/ta...
NeedsInvestigation,compiler/runtime
low
Critical
665,402,835
nvm
Does NVM auto update the nodejs version?
Does NVM auto-update the nodejs version? Yesterday I have installed the nodejs 8.15.0 and today I found the system has done auto-update of nodejs version to 10.19.0 Any idea why? and how to stop this?
needs followup
low
Minor
665,403,224
TypeScript
Should navto search opening projects like find all refs to give better info about world or just existing open projects
Yes VS Code now searches all open projects by default (on TS 3.9+). My understand is that this should only search the already opened project and not trigger a new project loads. You can disable this behavior with `typescript.workspaceSymbols.scope `. I made this the default because I felt searching all projects mad...
Suggestion,In Discussion
low
Minor
665,425,972
storybook
syntaxhighlighter.d.ts - error TS7016: Could not find a declaration file for module 'react-syntax-highlighter/dist/cjs/create-element'.
**Describe the bug** I'm using `6.0.0-rc.14` with Typescript and I have (and would like to keep) 'no-implicitly-any' enabled in my `tsconfig.json`. After adding a some components from `@storybook/addon-docs/blocks` I start to get `implicitly has an 'any' type.` error when type-checking my project. (via `tsc --no-emi...
question / support,has workaround,components,typescript
low
Critical
665,432,127
PowerToys
[Image Resizer] Fix flaky test (currently disabled)
`ImageResizer.Models.ResizeBatchTests.Process_executes_in_parallel` I've seen this test fail on the farm. I've seen 100 or 102 results returned but most of the times it runs just fine.
Area-Tests,Product-Image Resizer,Issue-Task
low
Minor
665,440,607
pytorch
Segmentation fault (core dumped) when running optimize_for_mobile
## πŸ› Bug: Segmentation fault (core dumped) when running optimize_for_mobile on a toy model Seeing core dumps when running optimize_for_mobile on a quantized model which as nn.Sequentials, such as this one. Happens on master. ``` class Child(nn.Module): def __init__(self): ...
oncall: mobile
low
Critical