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 |
|---|---|---|---|---|---|---|
447,946,431 | three.js | THREE.FBXLoader: 3dsMax|maps|texmap_diffuse map is not supported in three.js, skipping texture | ##### Description of the problem
When attempting to load the FBX file contained within the example below, we are seeing the following error:
`
THREE.FBXLoader: 3dsMax|maps|texmap_diffuse map is not supported in three.js, skipping texture
`
`THREE.FBXLoader: unknown material type "unknown". Defaulting to MeshP... | Loaders | low | Critical |
447,962,276 | go | cmd/pprof: proportionally account CPU time spent in GC to the allocating frames | When troubleshooting CPU usage of production services it would be useful to have an **_option_**, at least in the flamegraph/dot visualization, to proportionally assign the CPU time spent in GC to the frames that cause heap allocations.
Currently the way I do is take both CPU and memory allocation profiles, and then... | NeedsInvestigation,FeatureRequest,compiler/runtime | low | Critical |
447,965,864 | go | cmd/pprof: account CPU and allocations of goroutines to the frame where they are created | When troubleshooting CPU usage of production services it would be useful to have an **_option_**, at least in the flamegraph visualization, to account the CPU time and memory allocations of a goroutine to the frame that created the goroutine.
Currently, the way I do this is take a CPU or memory profile, and then go ... | NeedsInvestigation,FeatureRequest,compiler/runtime | low | Major |
447,986,368 | terminal | adjust associative containers to support heterogeneous lookup | [Heterogeneous lookup](https://en.wikipedia.org/wiki/C%2B%2B14#Heterogeneous_lookup_in_associative_containers) has been supported since C++14. To quote the linked article,
>C++14 allows the lookup to be done via an arbitrary type, so long as the comparison operator can compare that type with the actual key type. Thi... | Help Wanted,Product-Terminal,Issue-Task,Area-CodeHealth | low | Minor |
448,061,446 | TypeScript | Type logical operators "and", "or" and "not" in extends clauses for mapped types | ## Search Terms
Pretty much the ones in the title...
## Suggestion
I would like the ability to use logical operators for types.
I am aware that [`not` is already planned as a feature](https://github.com/Microsoft/TypeScript/pull/29317), but I would like to make sure that this gets further extended to other ... | Suggestion,Awaiting More Feedback | low | Major |
448,066,871 | angular | ngmodelOptions.updateon: 'blur' and input onblur event updating model value only for the first time | I have a textbox which has ngModel, ngModelOptions(updateOn: 'blur') and it has onblur event handler. Now i am validating input value on blur event callback and if the value is less than 100 i will show error message and i will empty the text box value.
Issue: If I enter the value lessthan 100 then the textbox value... | type: bug/fix,freq3: high,area: forms,state: confirmed,forms: ngModel,P3 | low | Critical |
448,071,515 | TypeScript | Allow identifying readonly properties in mapped types | ## Search Terms
Pretty much the ones in the title...
## Suggestion
Any TypeScript modifier should be allowed to be easily identified in mapped types. In particular, `readonly` should, but possibly others too, such as `?`.
## Use Cases
Define mapped types where the values depend on whether the property is... | Suggestion,Awaiting More Feedback | low | Major |
448,083,406 | rust | Some tests fail when built with debuginfo | Discovered while working on https://github.com/rust-lang/rust/pull/60568.
The lists of failing tests are below, testing was done on `x86_64-pc-windows-gnu` target. | A-testsuite,A-debuginfo,A-codegen,T-compiler | low | Critical |
448,087,103 | flutter | Some suggestions on Texture Widget. | Hello!When I use texture widget to implement video rendering, I found that flutter native framework only provide `copyPixelBuffer` to receive CVPixelBuffer on iOS.
When the texture widget 's aspect radio is not equal to the CVPixelBuffer 's aspect radio, The image in the texture will be extend.So, I hope that flutte... | c: new feature,framework,a: video,c: proposal,P3,team-framework,triaged-framework | low | Minor |
448,245,103 | create-react-app | Chrome Framework Fund Proposal Umbrella | This issue is part of our application for the Chrome Framework Fund: https://docs.google.com/forms/d/e/1FAIpQLSdwM-2Xw-HXa5fqT8MsGW7AsMv9KC1VEoprJtXxrwdH9_Q1_Q/viewform
There are a number of performance related improvements we can make in Create React App. We'll collect them here and add to this list as we think of ... | issue: proposal | low | Major |
448,263,697 | terminal | Validate that VT adapter tests cover all mock possibilities | All of the various mock definitions don't seem to be in use. When I stood up the original parser years ago and wrote the mock, every mock was checked somehow. Over time, it probably decayed and the only thing left is that the mock has to be implemented to satisfy compilation of the interface.
_Originally posted by ... | Product-Conhost,Help Wanted,Area-VT,Issue-Task,Area-CodeHealth | low | Minor |
448,273,037 | go | cmd/go: automatically tidy go.sum | Now that we can authenticate new entries in go.sum,
there is less concern about keeping old ones around
that are not part of the current module graph.
If we update go.mod from v0.1.0 to v0.2.0 of a module
and v0.1.0 is no longer referenced in the build graph,
we should probably drop v0.1.0 from the go.sum.
Not sure ab... | NeedsInvestigation,modules | low | Major |
448,313,466 | terminal | Panes should be resizable with the mouse | Probably depends on #991 getting done first
Drag a separator to (recursively) resize the panes that are separated by that separator. | Help Wanted,Area-UserInterface,Product-Terminal,Issue-Task,In-PR,Priority-2 | high | Critical |
448,313,626 | terminal | Scenario: Add support for panes | 
This is the megathread for tracking all the work related to [Panes](https://docs.microsoft.com/en-us/windows/terminal/panes) in the Windows Terminal.
### 1.0 Features
<details>
<summary>1.0 Feature... | Area-UserInterface,Product-Terminal,Issue-Scenario | high | Critical |
448,328,890 | flutter | flutter tool should output subprocess stdout/stderr on command failure | If installing an app on iOS fails, this is what you currently see:
```
Launching catalog/app/lib/main.dart on iphone_7plus in debug mode...
Error launching application on iphone_7plus.
```
User would need to know to run the command with `-v` to get the full trace output to see the actual error message from the... | tool,c: proposal,P3,team-tool,triaged-tool | low | Critical |
448,338,360 | rust | no method named `join` found for type `&[std::ffi::OsString]` | I think join should be implemented for arrays of OsString.
@alexcrichton implements something similar here:
https://github.com/alexcrichton/cc-rs/blob/master/src/lib.rs#L2269
Would be nice if that code would be just `self.args.join(' ')` | A-FFI,T-libs-api,C-feature-request | low | Major |
448,355,740 | pytorch | torch.full_like missing documentation for out input variable | ## 📚 Documentation
https://pytorch.org/docs/stable/torch.html#torch.full_like
The behavior when the out tensor does not match type or device of input tensor is not obvious. | module: docs,triaged | low | Minor |
448,364,005 | flutter | `flutter --no-color doctor -v` and `flutter doctor -v` produce different output | `flutter --no-color doctor -v`
https://pastebin.com/UnZEjpaq
`flutter doctor -v`:
https://pastebin.com/W5qWCNHJ
---
EDIT by @christopherfujino
This bug can also be seen by comparing `flutter doctor -v` and `flutter doctor -vv`, as described in the issue https://github.com/flutter/flutter/issues/53680. I... | tool,t: flutter doctor,P3,team-tool,triaged-tool | low | Critical |
448,369,795 | terminal | Add more rules to the static analysis ruleset | There is a ruleset file for static analysis checks at `/src/StaticAnalysis.ruleset` but it currently has only two rules that it checks for. More should be added. | Product-Meta,Issue-Task,Area-CodeHealth | low | Minor |
448,380,572 | flutter | Can't run `flutter packages pub global` outside of a flutter project | From my home directory (not a flutter project):
```bash
~ $ flutter packages pub global activate devtools
Error: No pubspec.yaml file found.
This command should be run from the root of your Flutter project.
Do not run this command from the root of your git clone of Flutter.
```
`pub global` is supposed to be... | tool,a: quality,P3,team-tool,triaged-tool | low | Critical |
448,382,347 | flutter | Initial console on Windows wraps poorly | 
- [ ] it's too tall, you can't see the whole banner
- [ ] the === line is one character too long
- [ ] the last line of text isn't wrapped at all | tool,platform-windows,a: first hour,P2,team-tool,triaged-tool | low | Minor |
448,382,674 | node | test: fixtures key/certs cause failures when openssl security level > 1 | <!--
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-b
it (Windows)
Subsystem: if known, please specify the affected core module name
If possible, please p... | crypto,test | low | Critical |
448,388,898 | rust | cleaner output when dbg!() is given a literal value | Hello! I'm unsure if this should be an RFC but it seems similar to #57845, so I'll start by filing an issue here.
## The problem
Often I end up writing `dbg!` code with constant values, usually strings, to trace control flow.
```Rust
dbg!("Start loop");
while condition {
dbg!("Phase 1");
unsafe { li... | C-enhancement,T-libs-api | low | Critical |
448,400,564 | terminal | Guidance around const by-value function parameters | Clarification is needed around const by-value function parameters. I noticed in a lot of the code, by-value function parameters are marked const. Some code doesn't follow this rule though.
Examples in interactivity/win32/Clipboard.cpp
void Clipboard::Copy(bool fAlsoCopyHtml)
void Clipboard::StoreSelectionT... | Issue-Docs,Product-Meta,Area-CodeHealth | low | Major |
448,403,267 | godot | TextEdits with borders have a small sub-pixel gap. | **Godot version:**
v3.1.1.stable.official
**OS/device including version:**
Ubuntu 18.04.2 LTS
Geforce GTX 1060
NVIDIA Driver: 418.56
**Issue description:**
Left container contains a panel container, right container contains a text edit with the same style.
They seem to get sqooshed slightly.
:
```
error[E0282]: type annotations needed
--> src/os_str_join.rs:54:43
|
54 | assert_eq!(OsString::from(""), [].join("-".as_ref()));
| ... | C-enhancement,A-diagnostics,T-compiler,A-inference,A-suggestion-diagnostics,D-verbose | low | Critical |
448,435,711 | go | proposal: spec: support read-only and practical immutable values in Go | The full proposal is here: https://github.com/go101/immutable-value-proposal/blob/master/README-v9.a.md
Please note, the new syntax in this proposal is not the core of the proposal. I know it is not perfect, welcome to suggest any alternative better ones for the syntax.
This propsoal is not intended to be accepte... | LanguageChange,Proposal,LanguageChangeReview | medium | Major |
448,459,468 | react | Controlled input makes browser not saving submitted value (for autocomplete) | **Bug** (behaves different per browser, but generally inconsistent to uncontrolled inputs)
**Current behavior**
Reproduce with https://jsfiddle.net/bootleq/hos4r6qd/
1. Type `a` in *name* field, and `b` in *uncontrolled* field.
2. Submit.
3. Re-run the fiddle.
4. Focus input fields to see if browser "saves" pre... | Type: Bug,Component: DOM | medium | Critical |
448,481,316 | svelte | Build Error if multiple incompatible versions of svelte are detected | I ran into [strange issues](https://github.com/sveltejs/svelte/issues/2862) that were due to multiple versions of svelte (3.4.2 & 3.2.2) being built.
It would be useful to have a build error if multiple incompatible versions of svelte are being used. | feature request | low | Critical |
448,484,773 | go | encoding/gob: Encoder.Encode fails to encode maps with keys of type url.URL | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.5 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary... | NeedsInvestigation | low | Critical |
448,495,582 | rust | rustdoc: Primitive data type methods like min/max/clamp are not discoverable | Currently, searching the rust stdlib docs for, as an example, 'i32 min', will not find any info at all, and the the `i32` page (https://doc.rust-lang.org/std/primitive.i32.html) is not searchable with standard CTRL-F in some browsers like Firefox, since `min`/`max`/`clamp` are hidden under the by-default-collapsed sect... | T-rustdoc,C-enhancement | medium | Major |
448,505,316 | rust | Error about missing `From` impl when using `try_from` | There are probably some generic trait implementations that cause rustc to follow this line of reasoning.
```rust
use std::convert::TryFrom;
fn main() {
f64::try_from(4usize);
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=9d9a573c294b1348419e5b59caaa1ca8... | C-enhancement,A-diagnostics,A-trait-system,T-compiler,F-on_unimplemented | low | Critical |
448,505,379 | TypeScript | Arobases in an example section of a jsdoc is considered a jsdoc section | Issue Type: <b>Bug</b>
1. Create a `foo.ts` file
2. Add the following code into it:
```javascript
class Foo {
protected baz: boolean;
public constructor() {
this.baz = true;
}
/**
* Set baz to false.
* @return {Foo}
* @example
* import { Foo } from "@khalyomede/foo";
... | Bug | low | Critical |
448,508,877 | godot | ResourceSaver duplicates items in all arrays | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.1
**OS/device including version:**
Windows 10
**Issue description:**
ResourceSaver duplicates items in all arrays upon saving
**Minimal re... | bug,topic:gdscript,confirmed | low | Major |
448,509,564 | youtube-dl | Site Support Request: animenewsnetwork.com | <!--
######################################################################
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 |
448,523,449 | rust | Warning for when a `pub use x::*` statement excludes something already imported privately | Ran into this today when refactoring visibility of tons of things in a library crate. In part of my refactoring, I added `pub use inner_mod::*;` statements to many of my modules. Confusingly, this didn't always re-export everything.
Consider this situation:
```rust
mod my_lib {
mod inner_mod {
mod ... | C-enhancement,A-lints,A-diagnostics,A-resolve,T-lang,T-compiler | low | Critical |
448,523,474 | vscode | [themes] Allow to set a background color for settings / webview editors | [Feature Request]
Set background color for generic windows.
[Suggestions]
window.bgColor, settings.bgColor, extensions.bgColor
[Reason]
I love my background color and all, but it only goes well with code.. Because I'm extremely used to a certain color set, but I'd rather separate code and information. | feature-request,themes | low | Major |
448,534,350 | pytorch | official libtorch static build zip file error | ## ❓ Questions and Help
I download libtorch static zip file from https://download.pytorch.org/libtorch/cpu/libtorch-static-with-deps-latest.zip
but I find that libtorch-static-with-deps-latest.zip version still has .so files,
IT is The same as shared version from https://download.pytorch.org/libtorch/cpu/libtor... | module: binaries,module: build,triaged | low | Critical |
448,540,127 | create-react-app | Workbox.core.clientsClaim is not a function | Hello guys!
I activate the serviceWorker.register() in my project.
I'm running the build and then I run `serve -s build`
When I use chrome to connect to localhost:5000 I see this error in the console and my service worker is not registered and in application tab I see that service worker in not installed.
`work... | issue: needs investigation | low | Critical |
448,544,560 | node | No content length on DELETE and OPTIONS | Looking through https://github.com/nodejitsu/node-http-proxy/commit/8a24a1e18f384d29a125eda1d2311bdd8ec66871 and reading through the node code. I do believe we have an unhandled case.
I believe we are missing something here: https://github.com/nodejs/node/blob/master/lib/_http_outgoing.js#L349
To ensure content-l... | confirmed-bug,help wanted,http | medium | Critical |
448,551,037 | go | cmd/compile: prefer to cheaply re-materialize after call site instead of spilling | go tip
While working on changing runtime.growslice to not return the length of the new slice (like was done for runtime.makeslice https://github.com/golang/go/commit/020a18c545bf49ffc087ca93cd238195d8dcc411) I ran into the issue of not being able to make the compiler rematerialize the new slice length instead of spi... | Performance,NeedsInvestigation,compiler/runtime | low | Minor |
448,563,906 | go | strings,bytes: tune inliner for Contains or add ContainsByte | For strings.Index there already exists a specialized version strings.IndexByte besides strings.IndexRune.
There currently is no Byte variant of strings.Contains but strings.ContainsRune exists.
Sampling from a large go code corpus:
* ~1/3 of calls to strings.Contains use a string of length 1 with an ASCII charac... | Performance,NeedsInvestigation | low | Major |
448,575,680 | pytorch | Track running stats regardless of track_running_stats=False | ## 🐛 Bug
Since v1.1.0, `BatchNorm` tracks running stats even its `track_running_stats` option is `False` on the fly.
## To Reproduce
```python
>>> import torch
>>> bn = torch.nn.BatchNorm2d(3)
>>> bn.track_running_stats = False
>>> bn(torch.rand(1, 3, 2, 2))
>>> bn.running_mean
tensor([0.0711, 0.0396, 0... | module: nn,triaged | low | Critical |
448,585,298 | vscode | [folding] Fold All in selection | Issue Type: <b>Feature Request</b>
Currently the Fold All works like a Fold All In FIle. So it would be great to make the Fold All applied only to the selection if there is any.
VS Code version: Code 1.30.1 (dea8705087adb1b5e5ae1d9123278e178656186a, 2018-12-18T18:12:07.165Z)
OS version: Windows_NT x64 10.0.17134... | feature-request,editor-folding | low | Minor |
448,589,460 | PowerToys | Strong Search engine in "Open with" right click context menu | As the title says, it would be really awesome to have some sort of search engine directly integrated in the "Open With" right click context menu.
Current Scenario:
1) right click on the file you want to open with a custom .exe;
2) choose "Open With" and wait for the relative window to pop up;
3) check the list... | Idea-New PowerToy | low | Major |
448,601,684 | flutter | Make data formatting initialization optional in material_localizations.dart | ## Steps to Reproduce
I'm implementing a custom AZ localization extends LocalizationsDelegate<MaterialLocalizations>. In my application I need date formatters, date formatting is already exists in Intl package for AZ locale.
The problem is that if I init date formatting by initializeDateFormatting() than I see e... | framework,f: material design,a: internationalization,c: proposal,P2,team-design,triaged-design | low | Critical |
448,602,610 | angular | useAnimation params doesn't support query and stagger params | # 🐞 bug report
### Affected Package
The issue is caused by package @angular/animations
### Is this a regression? I don't think so.
### Description
`query` parameter cannot be used as an animation parameter of `useAnimation()`. Same behavior for stagger.
## 🔬 Minimal Reproduction
https://stackblitz.co... | type: bug/fix,area: animations,freq1: low,P4 | low | Critical |
448,611,113 | godot | Shader material visual bug when reading DEPTH_TEXTURE in the fragment function while using cull_disabled | **Godot version:** 3.1.1
**OS/device including version:** Win 10 64 bit
**Issue description:** In the fragment function of a shader, if I read from DEPTH_TEXTURE in any way while I'm using the `cull_disabled` render mode, it makes the mesh render strangely. This happens in both GLES3 and GLES2.
 of this repository and believe that this is not a duplicate.
### Reproduction link
[](https://codesandbox.io/embed/antd-reproduction-template-yjtz4)
##... | Inactive,⌨️ Accessibility | low | Major |
448,646,382 | pytorch | build caffe2 operators failed, 'sorry, unimplemented: non-trivial designated initializers not supported' | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
i want to build caffe2 server operators to test fbgemm, but i meet thest problems:
## To Reproduce
Steps to reproduce the behavior:
1.turn BUILD_CAFFE2_OPS and USE_FBGEMM on in CMakelists
2.cmake and make install
<!-- If you have a... | caffe2 | low | Critical |
448,666,494 | go | archive/tar: Does not handle extended pax values with nulls | ### What version of Go are you using (`go version`)?
<pre>
go version go1.12.5 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What did you do?
Read a tar file generated by `git archive`:
```shellsession
$ git clone https://github.com/SSW-SCIENTIFIC/NNDD.git
$ cd... | NeedsDecision | low | Critical |
448,670,293 | realworld | NewUser definition email field has no format property set | I've been looking at specs and noticed that `NewUser` definition `email` field has no `format` set:
https://github.com/gothinkster/realworld/blob/1d58c002fc3da07e386489ddfc2df2e85fa45bdf/api/swagger.json#L834:L836 .
Not having an email validation is bad for demonstration purposes because:
1. any realistic MVP woul... | v2 | low | Critical |
448,727,949 | neovim | API: all buffer-related functions should ensure buffer is loaded | I'm working on a plugin for debugging functionality and trying to optimize some of the code paths. One problem we have is that there doesn't seem to be a way to load a buffer to a window and then run autocommands on it as if the user opened the buffer themselves.
Given a sequence of steps
* user triggers event with... | enhancement,api,complexity:low,has:plan,events | low | Critical |
448,743,033 | rust | Mention shadowed glob-imported items in mismatched types errors when possible | Given:
1. a large source file full of generically-named functions,
2. and one tiny glob import to get even more generically-named functions
one can arrive at a baffling error like this:
```console
error[E0308]: mismatched types
--> src/main.rs:15:14
|
15 | function(CorrectType);
| ... | A-diagnostics,P-low,T-compiler | low | Critical |
448,746,662 | TypeScript | Support `diagnostics` inside `compilerOptions` in combination with `--build` | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
* diagnostics, build
<!-- List of keywords you searched for bef... | Suggestion,Awaiting More Feedback | low | Critical |
448,807,496 | TypeScript | Cant infer type of parent based on member of child | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,In Discussion | low | Critical |
448,809,832 | flutter | google sign in ^4.0.1+3 plugin: PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null) | Configuration fix that seems to have helped many people:
https://github.com/flutter/flutter/issues/33393#issuecomment-964728679
## Details
After sigining in to google at this line (Android)
` GoogleSignInAccount googleUser = await _googleSignIn.signIn();`
I get this exception
`PlatformException(sign_in_faile... | c: crash,platform-android,p: google_sign_in,package,P2,c: fatal crash,team-android,triaged-android | low | Critical |
448,846,065 | storybook | How to lazy load(code splitting) stories(and respective component source)? | **Is your feature request related to a problem? Please describe.**
We have many components(100+) and we want to write stories for all of them, eventually replacing component development with storybook.
The bundle size is growing enormously as we are writing stories for new components. This is affecting initial pag... | feature request,configuration babel / webpack | medium | Critical |
448,859,281 | youtube-dl | foxsportsgo.com | <!--
######################################################################
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 |
448,872,708 | flutter | Drawer onPop() not triggering when clicking on Body of Scaffold | ## Use case
We would like to blur the content when drawer is opened and remove blur when drawer is GETTING closed.
## Proposal
Options:
1. Add additional Callbacks to the Drawer widget
```
Drawer(
child: ...
// this should come in handy
onDrawerStateChange: (DrawerState state) {
switch (stat... | c: new feature,framework,f: material design,P3,team-design,triaged-design | low | Major |
448,888,611 | angular | Uncaught Error while prerendering during ng build --prod | # 🐞 bug report
### Affected Package
\node_modules\zone.js\dist\zone-node.js:814:31
### Description
During the build of my application I get an “Uncaught in promise Error” thrown by zone-node.js:831. My application has just one Promise with a catch block. So, this Uncaught error should not be thrown.
The "rej... | type: bug/fix,freq1: low,area: core,state: needs more investigation,P3 | low | Critical |
448,905,159 | flutter | Add SliverFillRemaining with option to keep space for another follow up widget | Right now, SliverFillRemaining fills all remaining space. It would be nice to have a Sliver widget that fills the space minus some configurable bottom space so that you can add a SliverList below it that is always partially visible and can be scrolled up.
<sub>Sent with <a href="http://githawk.com">GitHawk</a></sub> | c: new feature,framework,f: scrolling,P3,team-framework,triaged-framework | low | Minor |
448,920,428 | go | x/sys/windows: wrong value of S_IFMT mask on Windows/plan9 | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.5 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture ... | OS-Windows,NeedsInvestigation,compiler/runtime | low | Critical |
448,925,653 | svelte | simplify safe_not_equal and not_equal? | I was doing some profiling the other day and was mildly surprised to find that a lot of the time spent in Svelte — possibly even most? — was in `safe_not_equal`. It occurs to me that we might see some performance gains by changing the implementations thusly:
```diff
+function is_mutable(type) {
+ return type === '... | compiler | low | Major |
448,983,283 | bitcoin | Bitcoin Core on mainnet shows testnet3 dir as a wallet to open and allows opening it | If you use both mainnet and testnet3 on the same machine, in default configuration `testnet3` directory is under mainnet Bitcoin datadir. If you have also testnet wallet there (`testnet3/wallet.dat` file), it will show `testnet3` directory in `bitcoin-cli listwalletdir` and "File > Open Wallet" list in GUI and actually... | Wallet | low | Major |
449,045,749 | go | net/http: make Transport return a net.Conn Response.Body on successful CONNECT | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version
go version go1.12.5 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor arc... | help wanted,NeedsFix | low | Critical |
449,071,158 | nvm | "nvm use" gets stuck in inifinite loop causing a fork bomb | <!-- Thank you for being interested in nvm! Please help us by filling out the following form if you‘re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! -->
- Operating system and version:
Linux bash 4.2 terminal on web host
- `nvm debug` outp... | bugs,pull request wanted | medium | Critical |
449,078,909 | vue-element-admin | element改为按需引入后会报错 |
## Bug report(问题描述)
elementui改为按需引入后出现报错,
报错信息Uncaught ReferenceError: _MessageBox is not defined
#### Steps to reproduce(问题复现步骤)
1. npm i -D vue-cli-plugin-element babel-plugin-component
2. babel.config.js添加element配置
3. main.js改为按需引入
#### Screenshot or Gif(截图或动态图)
 {
if (x[0] === "b"... | Bug,Needs Proposal,Domain: Control Flow | low | Major |
449,104,475 | youtube-dl | Site Support Request: videos.tennis.com | <!--
######################################################################
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 |
449,125,201 | flutter | Would like to be able to pass configuration from flutter build to gradle | Is it possible to do a custom parameter in yaml and get it out of gradle
| c: new feature,tool,t: gradle,P3,team-tool,triaged-tool | low | Minor |
449,127,788 | pytorch | Error when creating new caffe2::Predictor(_initNet, _predictNet) | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
ML Framework used: Caffe2
IDE for Android: Android Studio
## Issue
We intend to create an Android app that runs super-resolution models on images from the gallery. We ran the example code based on https://github.com/caffe2/AICamera on Andro... | caffe2 | low | Critical |
449,221,237 | pytorch | How to use Infiniband for cpu-cluster with backend gloo? | Now I'm trying to build pytorch from source for my cpu-cluster with backend gloo.
After installing pytorch, I got this information from install summay:
```
-- USE_DISTRIBUTED : True
-- USE_MPI : ON
-- USE_GLOO : ON
-- USE_GLOO_IBVERBS : 1
```
In my cluster, the ... | oncall: distributed,triaged | low | Critical |
449,232,650 | flutter | Flutter driver NoSuchMethodError: The method 'group' was called on null. |
approvals_progress_page_test.dart
`
import 'dart:async';
import 'package:flutter_driver/flutter_driver.dart';
import 'package:test_api/test_api.dart';
void main() {
group('scrolling performance test',() {
FlutterDriver driver;
setUpAll(() async {
driver = await FlutterDriver.connect... | a: tests,framework,P2,team-framework,triaged-framework | low | Critical |
449,256,163 | pytorch | [utils.bottleneck] throws initialization error for cuda profiling | ## 🐛 Bug
When I execute example/mnist/main.py on Colab/Local Machine with cuda,
it throws initialization error.
If I add --no-cuda flag, it works fine
```
terminate called after throwing an instance of 'std::runtime_error'
what(): /pytorch/torch/csrc/autograd/profiler_cuda.cpp:22: initialization error
Trac... | module: dataloader,triaged | low | Critical |
449,281,268 | rust | Rust 1.35.0 x86_64-unknown-linux-musl has multiple definition of `__errno_location` | This is breakage between 1.34(.2) and 1.35.0.
1.34 worked fine, 1.35 not any more. We are building `x86_64-unknown-linux-musl` using musl 1.1.22 (with clang).
```
/opt/musl/lib/libc.a(__errno_location.lo): In function `___errno_location': src/errno/__errno_location.c:(.text.__errno_location+0x0): multiple defini... | A-linkage,T-compiler,O-musl,C-bug | low | Critical |
449,283,940 | rust | Enable PGO tests on `windows-gnu` | https://github.com/rust-lang/rust/pull/61080 enabled profiler for `windows-gnu` `dist` jobs and it seems to work.
I didn't know if CI has enough budget to enable it for tests as well so it was left for now but it should be enabled in the future.
Related issue: https://github.com/rust-lang/rust/issues/59637
@mich... | A-testsuite,O-windows-gnu,T-infra | low | Minor |
449,297,418 | pytorch | free(): invalid pointer Aborted (core dumped) | ## 🐛 Bug
I'm trying to run a simple network however, I run the program and it I get right a way the error:
free(): invalid pointer
Aborted (core dumped)
it doen't tells me where exactly is the problem.
## To Reproduce
You have to download to library from the git repository of fwilliams (https://github.com/fwi... | needs reproduction,triaged | low | Critical |
449,328,384 | flutter | Animating marker google map | It would be great if Google Map for Flutter provided animating marker feature. I'd like to move marker smoothly on the polyline. Changing marker position according to polyline points is not a good idea because it costs a lot of CPU usage and the map starts lagging and also marker doesn't have smooth move on the polylin... | c: new feature,a: animation,a: quality,customer: crowd,p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | medium | Critical |
449,343,966 | flutter | [web] : Do not disconnect device on browser page close | The `flutter_web` workflow in Vs Code (even in general) is bad
These are the points that I didn't like about it after I used it for about a few minutes.
- No auto hot reload on the client side ([currently being implemented](https://github.com/flutter/flutter_web#getting-stateless-hot-reload-with-webdev))
- n... | c: new feature,tool,platform-web,P3,team-web,triaged-web | low | Major |
449,362,322 | rust | Varargs are completely unchecked if passed as generics | I am trying to call the function DftiSetValue from the Intel Math Library. The function has the layout MKL_LONG DftiSetValue(DFTI_DESCRIPTOR_HANDLE, enum DFTI_CONFIG_PARAM, ...), the first is an 8 byte pointer (windows 64 bit), the second is an enum which is 4 bytes long, and the last parameter is a floating point num... | A-FFI,P-high,T-compiler,I-unsound,S-has-mcve,I-miscompile | low | Critical |
449,378,293 | TypeScript | [k in keyof EnumA] should show error | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,In Discussion | low | Critical |
449,379,780 | TypeScript | Transpiling async/await to promises instead of generators for es5 | ## Search Terms
transpile async promise
## Suggestion
When `target` is `ES5`, allow an option to transpile async/await to Promises rather than switches. This would require Promises to be polyfilled, hence would be optional.
## Old issue for this
This was previously discussed on [this issue](https://git... | Suggestion,Awaiting More Feedback | low | Critical |
449,379,892 | TypeScript | JSDoc @name tag does not function | - VSCode Version: 1.33.1
- OS Version: Windows 7 x86_64 (but I do not think that is relevant)
- Does this issue occur when all extensions are disabled?: `Yes`
## Steps to Reproduce:
1. Write in a file with `.js` or `.ts` extension the below sample code:
```jsx
/**
Construct a new component
@class Comp... | Suggestion,Awaiting More Feedback | low | Major |
449,382,230 | rust | Suggest alternative return type for `Option`s and `Result`s | Given the following code:
```rust
fn main() {
let _ = vec[1].iter().next()?;
Some(())
}
```
Rust reports an error for using `?` and suggests adding `;` after the `Some(())`. A preferrable Option (pun intended) is to suggest changing the return type to `Option<()>` when the body's result type is `Option<_... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
449,382,808 | flutter | Revive the "set marker icon" sample for Google Maps | Following a breaking change to the ImageStream API in the framework(https://github.com/flutter/flutter/pull/32936) the Google Maps plugin sample app needs to be updated to the new API.
As we make sure to keep plugins working agains stable we cannot apply the update before the framework change makes it to stable. But... | d: examples,p: maps,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
449,406,670 | flutter | Support interactive transitions between routes (i.e., controlled by gesture) | ## Use case
Transition from one route to another via transition. An example of this is the drag-to-pop gesture implemented by CupertinoPageRoute:
https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/cupertino/route.dart#L315
Implementing this involves a ton of boilerplate and is not intuitive.... | framework,a: animation,f: routes,c: proposal,P3,team-framework,triaged-framework | medium | Critical |
449,419,943 | pytorch | Zero-dim Tensors (scalars) should be printed at full precision | ## 🚀 Feature
The string representation of zero-dimensional Tensors should be sufficient to exactly reconstruct their value.
Ideally it should also print using the minimal number of digits. For example, we should avoid printing 1.0/10.0 as `0.100000001`.
## Motivation
We've had a number of bug reports where som... | module: printing,triaged | low | Critical |
449,420,299 | go | cmd/go: improve error message when a module is successfully fetched but not in the sum db | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +0f897f916a Tue May 28 02:52:39 2019 +0000 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operati... | NeedsInvestigation,modules | low | Critical |
449,421,844 | TypeScript | [Feature request] allow emit param name when emitDecoratorMetadata | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
<!-- List of keywords you searched for before creating this issu... | Suggestion,Awaiting More Feedback | low | Critical |
449,447,274 | TypeScript | Wrong typescript intelisense suggestions | <!-- 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/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.34
- OS Version: Linux M... | Bug | low | Minor |
449,460,689 | rust | Suggestion for incorrect `target_feature` use | [When encountering `#[target_feature = "+sse2"]`](https://github.com/estebank/rust/blob/609ffa1a890fd6b8b0364cd7b35bf1d45abf82d0/src/test/ui/target-feature-wrong.stderr), suggest `#[target_feature(enable = "+sse2")]` instead of the current `#[target_feature(enable = "name")]`.
(Follow up to #61140) | C-enhancement,A-diagnostics,P-low,T-compiler,A-suggestion-diagnostics,D-papercut,A-target-feature | low | Minor |
449,461,401 | rust | Suggestion for incorrect `repr` use | [When encountering `#[repr = "C"]`](https://github.com/rust-lang/rust/blob/609ffa1a890fd6b8b0364cd7b35bf1d45abf82d0/src/test/ui/repr.stderr), suggest `#[repr(C)]` instead of the current `#[repr(C, packed, ...)]`. We need to detect specific cases like writing `#[repr("packed")]`, where we should suggest `#[repr(packed)]... | A-attributes,A-diagnostics,P-low,T-compiler,A-suggestion-diagnostics,D-papercut,A-repr | low | Minor |
449,463,819 | rust | Support more suggestions in template for bad attribute use | Modify
https://github.com/rust-lang/rust/blob/a6ce9b312354cadb046be40398b7e28b616bad28/src/libsyntax/feature_gate.rs#L873-L877
to allow for [multiple suggestions](https://github.com/rust-lang/rust/pull/61026#discussion_r287482937) of the same type.
The following
https://github.com/rust-lang/rust/blob/a6ce9b312354ca... | C-enhancement,A-diagnostics,P-low,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
449,476,193 | terminal | Feature Request: Clients of terminal need a way to inquire about the capabilities of the terminal | # Summary of the new feature/enhancement
<!--
A clear and concise description of what the problem is that the new feature would solve.
Describe why and how a user would use this new functionality (if applicable).
-->
Maybe this is as simple as an environment variable like VSCode uses for its terminal e.g. `TE... | Issue-Feature,Product-Conhost,Area-Server,Area-VT,Product-Terminal | high | Critical |
449,511,086 | TypeScript | Automatically Update html and *css modules | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
```
declare module '*.html' {
const content: string;
export default content;
}
declare module '*.scss' {
const content: string;
export default content;
}
```
```
import template from '... | Suggestion,Awaiting More Feedback | medium | Minor |
449,518,598 | youtube-dl | Site Support Request: cavelis.net | <!--
######################################################################
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 |
449,557,130 | create-react-app | Add caching to DevOps pipeline | Once caching is publicly available (https://github.com/microsoft/azure-pipelines-yaml/pull/113) in Azure DevOps build pipelines we should see if we can leverage it to speed up our build times.
Related:
#7096 | tag: internal | low | Minor |
449,559,763 | flutter | Scaffold should remove statusBar's GestureDetector if it is not root of page. | Scaffold should remove statusBar's GestureDetector if it's not root of the page.
<img width="421" src="https://user-images.githubusercontent.com/7019862/58522894-cc3c0680-81f4-11e9-8c9c-3034b83c7ff7.png">
For example, my layout is:
````
Column(
children:[
Container(),
Expanded(
... | c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Minor |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.