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
299,478,194
TypeScript
Add support for an `@export` tag
```ts /** * @export * @typedef {{a: number}} X */ export {}; ```
Suggestion,In Discussion,Domain: JSDoc,Domain: JavaScript
low
Major
299,493,708
go
spec: document special cases for floating-point maps
In https://github.com/golang/go/issues/20660#issuecomment-367781440, I noted that there are undocumented special cases in the handling of maps with floating-point keys. Regardless of what happens with that proposal for Go 2, we should fix the Go 1 spec to properly document those cases. ---- In [Map types](http...
Documentation,NeedsFix
low
Minor
299,503,006
rust
Incremental compilation regression with num-bignum
The num-bignum crate is slower by a factor 3-4 when compiling incrementally. This crate supports `cargo bench` which allows for an easy comparison of the performance. Without incremental compilation (`CARGO_INCREMENTAL=0 cargo bench`): ``` test divide_0 ... bench: 867 ns/iter (+/- 17) test divid...
I-slow,C-enhancement,T-compiler,A-incr-comp
low
Critical
299,527,612
neovim
rpcnotify: no Vim error with "no notification handler registered for"
When using deoplete and using `:call rpcnotify(g:deoplete#_channel_id, 'foo')` you will get an error displayed ("no notification handler registered for "foo""), which is not a real Neovim error: it cannot be caught using `:try` and has no error number etc. I could not find the source for it in Neovim's sources, so i...
documentation,provider,channels-rpc,remote-plugin
low
Critical
299,549,095
rust
🛠️ specialization permits empty impls when parent has no default items
It is potentially somewhat surprising that [the following impls are accepted](https://play.rust-lang.org/?gist=a99b1b66262b0f2a529473617a3e5062&version=nightly): ```rust #![feature(specialization)] trait Foo { fn bar(); } impl<T> Foo for T { fn bar() { } // no default } impl Foo for i32 { ...
C-enhancement,A-trait-system,T-compiler,A-specialization,requires-nightly,F-specialization,T-types,S-types-deferred
low
Major
299,646,797
create-react-app
Invalid string length error thrown
<!-- PLEASE READ THE FIRST SECTION :-) --> ### Is this a bug report? Yes After running `react-script` for a while, I get an exception thrown with the stacktrace: ``` /Users/will/Code/collect/node_modules/webpack/lib/Stats.js:221 text += `\n @ ${current.readableIde...
issue: needs investigation
low
Critical
299,681,574
angular
Same route with animation and param
Hello, I used this child routing system with a transition animation. The problem is that if I want to go from one stage to another I do not have the animation. <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar i...
type: bug/fix,area: animations,freq2: medium,P4
low
Critical
299,697,181
go
cmd/go: give a better error message when building Go package with CGO_ENABLED=0
When trying to cross compile the go compiler silently ignores any files that use `import "C"` statement. In this example I've tried to compile for windows on a linux host machine, but this issue seems to be present on other host platforms as well. It seems to do this because it disables `CGO_ENABLED` being disabled b...
NeedsFix
medium
Critical
299,834,896
godot
Circular script preloading causes leak without warning (both with preload or named classes)
Godot 2.1.5 beta, Godot 2.1.4, Windows 10 64 bits I found out my project had a circular dependency between two scripts which were preloading each other into a `const` (though the game has worked perfectly fine so far, it's been a year). The use case was only to use `extends` on it. Workaround is to use `load`... ...
bug,discussion,topic:gdscript,confirmed
low
Critical
299,835,530
go
archive/zip: FileInfoHeader does not handle directories
Consider the following: ```go fi, _ := os.Stat("/home/") h, _ := zip.FileInfoHeader(fi) fmt.Println(h.Name) ``` This currently prints: ``` home ``` However, ZIP treats directories as files with a trailing "/" in the name, which `FileInfoHeader` should automatically append if `os.FileInfo.IsDir` reports tr...
NeedsInvestigation,early-in-cycle
low
Minor
299,837,848
pytorch
Handle python_arg_parser dtype constants better
The default is a dtype name, but we find the default via the Type; we should use dtypes because this won't work if the Types aren't compiled.
todo,feature,triaged
low
Minor
299,855,779
pytorch
Perf regression: indexing 1-d tensor
After the Tensor/Variable merge we have a perf regression with indexing a 1-d tensor: As of 6a2afe3 ```python >>> import torch >>> x = torch.randn(1000) >>> %timeit x[0] 435 ns ± 3.34 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) >>> %timeit x[0] = 1 449 ns ± 1.41 ns per loop (mean ± std. dev...
module: performance,in progress,triaged
low
Minor
299,877,213
rust
#[must_use] on associated function definition when trait declaration does not have it should still trigger warning when calling function concretely
I expect the following code ([Playpen](https://play.rust-lang.org/?gist=4212fdd85fabb3b79d20186f0a7f0acb&version=nightly)) to emit a warning on the last line of `main` that the result of `s.the_must_use_fn()` must be used. ```rust fn main () { let s = Struct; s.the_must_use_fn(); } trait Trait { ...
C-enhancement,A-diagnostics,T-compiler
low
Minor
299,896,770
kubernetes
Figure out a way to manage the discrepancy on windows nodes from the linux node
https://github.com/kubernetes/kubernetes/pull/60275/files/2d942dab68b64e684dd2b75232cf9daabc6e0a95#diff-10055ae93a8699af13ceba0482fc43c3 I am expecting we have more windows specific config like code coming to Kubelet and other node components. We should figure out a way to handle this, so that the code can be easily...
kind/cleanup,sig/node,sig/windows,help wanted,lifecycle/frozen,good first issue,needs-triage
medium
Critical
299,921,626
opencv
Opencv single camera calibration problem
The opencv 2.4 operation I used was not a problem, and opencv 3.4 was wrong. OpenCV Error: an Assertion failed (_dst fixedType ()) in convertPointsHomogeneous, file/Volumes/build - storage/build/master_iOS - MAC/OpenCV/modules/calib3d/SRC/fundam CPP, line 1029 CvCalibrateCamera2 parameters should be wrong, but I con...
priority: low,category: calib3d,platform: ios/osx
low
Critical
299,938,610
rust
Operators in patterns have incorrect priorities
(Or at least unnatural priorities.) Binary range operators have higher priority than unary operators like `&` or `box`. ```rust #![feature(exclusive_range_pattern)] fn main() { // Interpreted as (&0) .. (10), ERROR mismatched types let x = &0 .. 10; match &0 { &0 .. 10 => {} // OK?! ...
C-enhancement,A-grammar,A-parser,T-lang,T-compiler,F-half_open_range_patterns,F-exclusive_range_pattern,A-patterns
low
Critical
299,948,567
vscode
Licensing for packaging
Sorry if this is the wrong place, StackOverflow would tag this as irrelevant if I posted there. I'm currently building a package template for Void Linux for VSCode, and I'm wondering what licensing concerns I should consider. I plan on using the prebuilt VSCode binaries available in tarballs from Microsoft. Thank...
linux,under-discussion,license
low
Minor
299,955,777
opencv
Expose Domain_Filter functionality
`photo` module has a `Domain Transform` filter implementation that can not be accessed from outside. It implemented in `npr.hpp` and it is only used by several exposed functions. It can be very useful by direct access/customization from the OpenCV user.
feature,category: photo
low
Minor
299,966,950
rust
Evaluation overflow with specialization feature
The current nightly compiler gives the error "overflow evaluating requirement" when a type is used as a trait with a default impl. For example: ```rust #![feature(specialization)] fn main() { println!("{}", <(usize) as TypeString>::type_string()); } trait TypeString { fn type_string() -> &'static s...
C-enhancement,A-diagnostics,T-compiler,A-specialization,F-specialization
low
Critical
299,971,979
angular
Support custom TypeScript transformers
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
feature,area: compiler,feature: under consideration
medium
Critical
299,980,559
rust
clarify effects of lto, thinlto and codegen-units
There seems to be a lot of confusion about performance implications of lto, thinlto, codegen-units and default optimizations of build targets, maybe we can clarify this somehow. Where would be the best place for this?
E-hard,C-enhancement,P-medium,T-compiler,A-docs
medium
Major
300,018,110
angular
Nested FormGroup with 3 or more levels may cause ExpressionChangedAfterItHasBeenCheckedError
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,freq2: medium,area: forms,state: confirmed,P3
low
Critical
300,025,936
rust
libtest: utilize jobserver
Tests are normally CPU consuming tasks, and we can transparently utilize jobserver to achieve efficient core utilization. Some usecases I can think of: - Tests which may spawn threads (including rustc `codegen-units`, but not limited to) - Using a parent make somewhere
T-libs-api,C-feature-request,A-libtest
low
Minor
300,061,978
rust
Extend `rustc_on_unimplemented` to query for closures
Add a filter to `rustc_on_unimplemented` to allow the querying for [the existence of a closure in the requirement chain](https://github.com/rust-lang/rust/pull/48138/files#r169475454). This should allow handling #24909 and #33307 by providing a specific message recommending marking the closure as `move`.
C-enhancement,A-diagnostics,A-closures,T-compiler
low
Minor
300,066,977
rust
🔬 implement "always applicable impls"
Part of https://github.com/rust-lang/rust/issues/31844: In order to eventually stabilize specialization, we need to make it sound. The current plan for doing so is called "always applicable impls", and is explained [in this blog post](http://smallcultfollowing.com/babysteps/blog/2018/02/09/maximally-minimal-specializat...
C-enhancement,A-trait-system,T-compiler,A-specialization,F-specialization,T-types,S-types-deferred
low
Major
300,069,983
go
testing: start test log for caching before TestMain
### What version of Go are you using (`go version`)? `go version go1.10 windows/amd64` ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` set GOARCH=amd64 set GOBIN= set GOCACHE=C:\Users\ben\AppData\Local\go-build se...
NeedsDecision
medium
Critical
300,071,151
pytorch
scatter_add_ should support scalar source (including Python scalar)
I was looking to use `scatter_add_` to do `bincount`. ```python import torch a = torch.LongTensor([2, 0, 3, 3]) r = torch.LongTensor(5) # works r.zero_().scatter_(0, a, 1) # 1 # 0 # 1 # 1 # 0 # [torch.LongTensor of size 5] # scalar source doesn't work r.zero_().scatter_add_(0, a, 1) #Traceback (most ...
triaged,module: scatter & gather ops
low
Critical
300,163,424
angular
Invalid return type of "DebugElement.query"
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code>[ ] Regression (a behavior that used to work and stopped working in a new release) [x] Bug report [ ] Feature request [ ] Documentation issue or request [ ] Support request </code></pre> ## Current behavior [`DebugElement....
type: bug/fix,area: testing,freq2: medium,state: confirmed,cross-cutting: types,P4
low
Critical
300,224,103
vue
Use better types to model prop type
### Version 2.5.13 ### Reproduction link [https://github.com/zsky/vue-date-type-issue](https://github.com/zsky/vue-date-type-issue) ### Steps to reproduce ``` npm i npm run build ``` ### What is expected? No typescript error ### What is actually happening? Typescript report error: Property 'getTime'...
typescript
low
Critical
300,273,296
rust
Compiler Performance Tracking Issue
This issue is the landing page for all things compilation speed related. We define the most important usage scenarios, as seen by the @rust-lang/compiler team and the @rust-lang/wg-compiler-performance working group. Benchmarks based on these scenarios are then used as a metric for how well the compiler is doing, compi...
metabug,I-compiletime,T-compiler,C-tracking-issue,WG-compiler-performance,S-tracking-impl-incomplete
high
Critical
300,320,516
go
runtime/race: simplify meta shadow mapping
Currently, the race detector runtime for Go assumes that the heap is contiguous and grows up. In particular, [`MapShadow`](https://github.com/llvm-mirror/compiler-rt/blob/5551897294887d632c71275cf11c5654fd80cda7/lib/tsan/rtl/tsan_rtl.cc#L242) always maps the meta shadow contiguously. According to @dvyukov's [comment](h...
RaceDetector,help wanted,NeedsFix,compiler/runtime
low
Minor
300,342,756
go
regexp/syntax: add examples for flag parsing
Reading the description of grouping and flags, I'm confused about how those flags would apply to theoretical strings. An example or two would be good to demonstrate the use and placement of flags, as well as the resulting capture groups.
Documentation,help wanted,NeedsInvestigation
low
Minor
300,399,236
go
net/http: make default configs have better timeouts
See https://github.com/golang/go/issues/23459. Client, Server, and Transport may all have timeout fields in which zero = infinity. Instead it should be a reasonable default.
NeedsInvestigation
low
Major
300,408,364
go
x/review/git-codereview: do not mail CLs with editor temp files, binaries
Motivated by #23800, git-codereview should probably refuse to mail CLs with editor temp files and binaries.
help wanted,NeedsFix
low
Major
300,438,037
godot
Allow drag and dropping audio effects on an audio bus
**Godot version:** 3 It would be convenient to be able to drag and drop a saved AudioEffect file on top of an audio bus to add the effect to it, see: ![audioeffect](https://user-images.githubusercontent.com/35355161/36702001-5f271172-1b23-11e8-8db4-dbfaf9e0eda0.png) I haven't found a way to add a saved effect t...
enhancement,topic:editor,usability
low
Minor
300,466,549
flutter
SliverGeometry documentation needs a diagram or an example
Hard to visualize all the various fields but can likely be easily explained with a picture.
framework,f: scrolling,d: api docs,P2,team-framework,triaged-framework
low
Minor
300,664,825
opencv
a bug in cuda detectMultiScale
##### System information (version) <!-- Example - OpenCV => 3.4 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 --> ##### Detailed description https://github.com/opencv/opencv/blob/cfe84b953cd4218df88144e1d58c2580540c6972/modules/cudaobjdetect/src/cascadeclassifier.cpp an ...
feature,category: gpu/cuda (contrib)
low
Critical
300,670,561
pytorch
RuntimeError: $ Torch: not enough memory: you tried to allocate 72GB. Buy new RAM!
- OS: Red Hat Enterprise Linux Server release 7.2 (Maipo) - PyTorch version: pytorch 0.3.1 py35_cuda8.0.61_cudnn7.0.5_2 pytorch torchvision 0.2.0 py35heaa392f_1 pytorch - How you installed PyTorch (conda, pip, source): $ module load anaconda3/...
module: memory usage,triaged
medium
Critical
300,675,046
vscode
Allow extensions to add coloured markers in the gutter similar to source control
The source control functionality currently renders nice coloured markers down the gutter. It'd be nice if this functionality was available to extensions that aren't source control (for example code coverage).
feature-request,api,editor-api
low
Major
300,687,598
vscode
[razor] comment out razor code with @* *@
Issue Type: <b>Bug</b> 1. Edit a cshtml file 2. Select html code to comment out 3. Use comment out keymap (CTRL K + C) Expected Behavior: Proper comment is used based on syntax Select Html only line should use `<!-- -->` Select Razor should use `@* *@` Actual Behavior: After comment out keymap is pres...
feature-request,languages-basic,editor-comments
low
Critical
300,689,439
pytorch
Gaussian Sampling
In the release phase of the code of our article : Deep Learning for Physical Processes: Incorporating Prior Scientific Knowledge ( https://openreview.net/pdf?id=By4HsfWAZ ) we have implemented a Gaussian grid sampling scheme : https://github.com/pajotarthur/pytorch/blob/master/aten/src/THNN/generic/SpatialGridSample...
feature,module: nn,triaged
low
Minor
300,707,166
flutter
Calendar, and Datepicker does not support Jalali Calendar
Hello and good day Recently I'm using Flutter, and unfortunately I cannot use its calendar and **date picker**, the problem is clear, it does not support **Persian Calendar** How can I use Persian calendar? Do you have any plan to support **Persian Jalali Calendar**?
c: new feature,framework,f: material design,f: date/time picker,a: internationalization,customer: crowd,P3,team-design,triaged-design
low
Major
300,716,638
TypeScript
Improve error when parameter is missing a name
**TypeScript Version:** 2.8.0-dev.20180227 **Code** ```ts declare class C { f({ x?: number }): void; g(): void; } ``` **Expected behavior:** At the `?`, `property in destructuring may not be marked optional`. **Actual behavior:** ``` src/a.ts(2,10): error TS1005: ',' expected. src/a.ts(2...
Suggestion,Help Wanted,Domain: Error Messages
low
Critical
300,716,770
go
crypto/x509: ensure CreateCertificate won't generate unparsable certificates
CreateCertificate should return an error instead of generating a certificate that will fail ParseCertificate. We should check that's the case and maybe test or enforce this. See #23995.
Testing,help wanted,NeedsFix
low
Critical
300,718,132
kubernetes
Missing validation in HPA
**Is this a BUG REPORT or FEATURE REQUEST?**: > Uncomment only one, leave it on its own line: > /kind bug > /kind feature **What happened**: It looks like validation of HPA is insufficient: - metric name in pods and object metrics should be checked using IsValidPathSegmentName as they're used as part of...
kind/bug,priority/important-soon,sig/autoscaling,lifecycle/rotten
medium
Critical
300,728,497
youtube-dl
[prosiebensat1] Unable to download playlist
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
geo-restricted
low
Critical
300,754,555
TypeScript
Support find-all-references for module.exports
**Code** ```ts /// <reference path='fourslash.ts' /> // @allowJs: true // @Filename: /a.js ////module.exports = 0; // @Filename: /b.js ////const [|a|] = require("./a"); verify.noErrors(); const [r0] = test.ranges(); verify.referenceGroups(r0, []); ``` This would involve modifying `importTracker`...
Suggestion,In Discussion
low
Critical
300,758,175
rust
Document minimum size for `usize` and `isize`
Right now, `usize` and `isize` are "guaranteed" to be at least a byte long, but nothing more. It seems unlikely that Rust will support 8-bit targets in the future, but this is what the `TryFrom` implementations indicate. A lot of people assume that `usize` will be at least 32 bits but this is not true for all platfo...
P-medium,T-lang,A-docs,C-feature-request,WG-embedded
medium
Major
300,764,867
TypeScript
foo.ts is resolved before foo.d.ts even if the latter is in files[]
Affects at least TS 2.7.2 and 2.6.2. This problem appears when compiling files separately, like we do under Bazel. Imagine this simple app `src/lib.ts` ``` export const a = 1; ``` `src/main.ts` ``` import {a} from './lib'; ``` Imagine `lib.ts` was compiled separately, so there already exists `dist/lib....
Suggestion,Help Wanted,Committed
low
Critical
300,776,238
go
proposal: crypto/rand: guard against mutation of Reader variable
`crypto/rand` exposes an `io.Reader` variable `Reader` as "a global, shared instance of a cryptographically strong pseudo-random generator." Furthermore, `crypto/rand.Read` implicitly uses `Reader` for its crypto source. This seems problematic to me because then any package can just overwrite `crypto/rand.Reader` to...
v2,Proposal
low
Critical
300,787,269
youtube-dl
[radiocanada] Doesn't extract Zone Jeunesse videos
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
geo-restricted
low
Critical
300,825,863
TypeScript
Type guards not working for indexed types with generics
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 2.7 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** indexed type guard **Code** ```ts function f<T extends string>(q: ...
Bug
low
Critical
300,884,459
vscode
Feature request: Add support for modifier keys like right ctrl and right alt
### Issue Type Feature Request ### Description Currently VS Code treats left and right modifier keys as the same one (<kbd>ctrl</kbd>, <kbd>alt</kbd> and <kbd>shift</kbd>). I want to define different keyboard shortcuts for left and right modifier keys (e.g. <kbd>left ctrl</kbd> + <kbd>s</kbd> for saving files...
feature-request,editor-core
high
Critical
300,923,956
vscode
Provide activation reason to extensions in activate call
It would be useful to know if the extension is being activated due to a command (in my case I want to a show a more specific message if the extension fails to activate due to a missing SDK, and the command gives me more context to tailor this message to the user).
feature-request,api
medium
Major
300,935,374
vue
Vue warns about missing required prop that has a default value
### Version 2.5.13 ### Reproduction link [http://jsfiddle.net/df4Lnuw6/207/](http://jsfiddle.net/df4Lnuw6/207/) ### Steps to reproduce Specify a required prop with a default value: ```js Vue.component('comp', { template: '<div>{{ typeof x }} {{ x }}</div>', props: { x: { typ...
discussion,improvement
medium
Critical
300,941,129
TypeScript
Find All Reference from requiring file to module file works only if not default CommonJS exports
_From @Hoishin on February 28, 2018 4:58_ > By "default CommonJS exports" I mean `module.exports = something`, rather than `module.exports.foo = something` or `module.exports = {foo: something}` Might belong to https://github.com/Microsoft/vscode/issues/21507, but I thought it is a bit different. - VSCode Versio...
Bug,VS Code Tracked
low
Major
300,993,680
rust
Variable name corrections should take type into account
I'm not sure whether this is feasible in all cases, but as far as possible, suggestions to rename variables that are typos should take the types of the suggestions into account. Consider: ```rust fn index(i: usize, a: &[i32]) -> i32 { a[j] // ^ did you mean `a`? } ``` Here, `a` is clearly not a valid i...
C-enhancement,A-diagnostics,T-compiler,D-invalid-suggestion
low
Critical
301,000,650
opencv
Zenodo DOI for OpenCV?
Quick question: for a project like OpenCV that's heavily used in an academic context, would it make sense to register a DOI at https://zenodo.org/ so that it can be cited properly in papers etc.?
RFC
low
Minor
301,037,811
opencv
vlc FTBFS with opencv-3.4.1
##### System information (version) - OpenCV => 3.4.1 - Operating System / Platform => Linux - Compiler => gcc-7-20180222 (a 7.3.1 snapshot) <!-- your description --> vlc-3.0.1 fails to build against opencv-3.4.1, because the C compiler produces and error at line 485 of /usr/include/opencv2/core/cvdef.h. The e...
category: build/install,RFC
medium
Critical
301,043,095
flutter
'[!]' in flutter doctor looks too much like an error state
## Flutter Doctor ``` C:\>flutter doctor -v [√] Flutter (on Microsoft Windows [Version 10.0.16299.248], locale en-US, channel beta) • Flutter version 0.1.4 at C:\flutter • Framework revision f914e701c5 (9 days ago), 2018-02-19 21:12:17 +0000 • Engine revision 13cf22c284 • Dart version 2.0.0-dev...
tool,t: flutter doctor,a: quality,P3,team-tool,triaged-tool
low
Critical
301,048,766
node
Merge streams handling code for http2 streams & net.Socket
Hey :) It would be great if we could unify all the code from `net` and `http2` that is only concerned with pushing data to/from the underlying stream, ideally into a common base class of `net.Socket` and `Http2Stream`, so that we could also maybe port some of the other native streams (zlib, fs) to using `StreamBase`...
help wanted,net,http2
medium
Critical
301,061,779
create-react-app
Make launch editor a standalone package.
The launchEditor module is super useful: https://github.com/facebook/create-react-app/blob/next/packages/react-dev-utils/launchEditor.js I'd like to use it standalone, outside of create-react-app. Is there anyone willing to send a PR to make this a standalone package? :)
issue: proposal
low
Major
301,065,980
flutter
Support for progressive jpegs
I don't know if it is possible right now, but it would be great if flutter had the capabilities of decoding an image progressivly instead of baseline if the image supports it.
c: new feature,engine,a: images,P2,team-engine,triaged-engine
low
Major
301,069,246
create-react-app
RFC: Source Packages
# RFC: Source Packages A developer-, tool-, and ecosystem- friendly mechanism for sharing source. co-authored with @gaearon ## Overview "Source packages" are the same as standard npm packages, except they may contain non-standard language features (e.g. React JSX) and are built by the consumer. "Source pac...
issue: proposal
medium
Major
301,099,621
vscode
Support environment variables for paths in .code-workspace files
### Issue Type Feature Request ### Description I'm attempting to use `{ "path": "${env:APPDATA}/Code/User" }` in my workspace to be able to easily open settings.json and keybindings.json as raw files (the custom panels take up too much space and I rarely need them) and it appears variables are not substituted wh...
feature-request,workbench-multiroot
high
Critical
301,112,224
godot
Project Settings : Autoload tab -- confusing layout, columns cut off, icon illegible
**Godot version:** 3.0.1 **OS/device including version:** Windows 10 / Microsoft Surface Pro 4 **Issue description:** 3 usability issues in the Autoload dialog (see accompanying screenshot) 1) the input fields for node name and path are reversed from the order they appear in the table. Recommend keeping sam...
enhancement,topic:editor,usability
low
Minor
301,112,237
rust
Compiliation aborted because it can not delete dep-graph.bin
Probably not important, but I report it anyway. See this travis log: https://travis-ci.org/rust-lang-nursery/rand/jobs/347348670 The first test command finishes successfully, but the second fails because one of the (leftover?) incremental compilation files can not be deleted (because it does not exist). ``` The...
T-compiler,A-incr-comp,C-bug
low
Critical
301,115,922
go
cmd/compile: tighten CFG as well as values
```go func f(x int, b bool) int { if x < 0 { x *= -1 } if b { return x } return 0 } ``` The compiled code for `f` matches the input closely: It checks `x < 0`, negates it if so, then checks b. But we only need to check and modify x if b is true. The compiler should rewrite this code into: ``...
Performance,compiler/runtime
low
Minor
301,132,756
flutter
`flutter channel foo` should have a option to upgrade first?
It's a bit silly that when I `flutter channel foo` it downloads all the artifacts for that version when I just plan to upgrade again immediately. Would be nice to be able to skip that download and/or just switch and upgrade at the same time?
c: new feature,tool,P3,team-tool,triaged-tool
low
Major
301,162,953
flutter
gradlew assembleDebug - Failed to run the Flutter compiler. Exit code: 255
## Steps to Reproduce Using Flutter tools from the command line. Channel - beta. While running a project. ``` [ +9 ms] Running 'gradlew assembleDebug'... [ +5 ms] [android\] D:\Studio\Flutter\proj\android\gradlew.bat -Ptarget=D:\Studio\Flutter\proj\lib/main.dart assembleDebug [+4227 ms] :app:preBuild ...
tool,platform-windows,P3,team-tool,triaged-tool
low
Critical
301,187,015
flutter
API Inconsistency: Some Animations use named parameters, some do not
Animations that combine 2 animations together have very different signatures for creating them: ```dart TrainHoppingAnimation(this._currentTrain, this._nextTrain, { this.onSwitchedTrain }) // Unnamed CompoundAnimation( { @required this.first, @required this.next } ) // Required named params AnimationMean( { Animati...
framework,a: animation,c: API break,c: proposal,P2,team-framework,triaged-framework
low
Minor
301,222,962
go
reflect: cannot call *T methods on addressable Values of type T
I would expect this program to work: package main import "reflect" type T int func (*T) M() {} func main() { var t T v := reflect.ValueOf(&t).Elem() v.MethodByName("M").Call(nil) } Currently, it produces `panic: reflect: call of reflect.Val...
NeedsInvestigation,compiler/runtime
low
Major
301,236,839
rust
Multiple definitions of atomic builtins on armv5te-unknown-linux-gnu
Trying to cross-compile the Rust compiler for armv5te-unknown-linux-gnu fails with: ``` Compiling panic_unwind v0.0.0 (file:///srv/glaubitz/rustc-1.24.0-src/src/libpanic_unwind) error: linking with `arm-linux-gnueabi-gcc` failed: exit code: 1 | = note: "arm-linux-gnueabi-gcc" "-Wl,--as-needed" "-Wl,-z,noe...
O-Arm,T-compiler,C-bug
low
Critical
301,238,455
kubernetes
kube-controller-manager: healthz should indicate that the garbage collector is running.
If the GC gets stuck, controller manager needs to be restarted. The GC should never get stuck, of course. But right now, if it did, I think we'd have no way to know?
sig/api-machinery,lifecycle/frozen
medium
Critical
301,266,814
vscode
Overview ruler becomes redundant
<!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. --> <!-- Use Help > Report Issue to prefill these. --> - VSCode Version: 1.20.1 - OS Version: Windows 10 <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disa...
feature-request,editor-scrollbar
low
Critical
301,294,332
youtube-dl
Cant download from sites like zee5.com and sunnxt.com
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
geo-restricted
low
Critical
301,295,465
flutter
Make it easy to override Scrollable's gesture detectors, e.g. to enable scale+scroll
Currently if you want a Scrollable that can both be scaled and scrolled, you have to have separate Scale and VerticalDrag gesture detectors, the scale in your code, and the vertical drag in the Scrollable. This makes the UI ugly, because it means the user has to know which operation they are doing when they begin, and ...
c: new feature,framework,f: scrolling,f: gestures,customer: crowd,P3,team-framework,triaged-framework
medium
Major
301,336,021
pytorch
torch.jit.trace(network, data) fails if data is an OrderedDict
My network takes a bunch of inputs, and I was keeping them in an ordereddict so that I could keep track of what they were. When I tried to run TensorboardX on my network, it fails with: ```Traceback (most recent call last): File "tensorboard.py", line 63, in <module> main() File "tensorboard.py", line 60,...
oncall: jit,module: bootcamp,days
low
Critical
301,337,802
angular
feat: `::part` support in Angular's Emulated CSS parser
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [x ] Feature request [ ] Documentation issue or reque...
feature,area: core,core: CSS encapsulation,feature: under consideration
medium
Critical
301,445,325
kubernetes
Overaggressive Routes Controller
**Is this a BUG REPORT or FEATURE REQUEST?**: /kind bug **What happened**: `Route controller` is unnecessary too aggressive. The [current control loop](https://github.com/kubernetes/kubernetes/blob/master/pkg/controller/route/route_controller.go#L115) loops through the node list every `10s`. Each node will generat...
kind/bug,area/cloudprovider,lifecycle/frozen,area/provider/azure,triage/unresolved,sig/cloud-provider,needs-triage
medium
Critical
301,456,329
vscode
Document highlight API command should return word highlights if no specific highlight provider is registered
The command should behave exactly the same as if the user sets a cursor somewhere.
feature-request,api,editor-symbols
low
Minor
301,529,155
TypeScript
API: expose IntrinsicType
<!-- 🚨 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 CONT...
Suggestion,In Discussion,API
low
Critical
301,544,473
rust
[NLL] borrowed-universal-test.rs output is not great
The output of this test ... ```rust // compile-flags: -Znll-dump-cause #![feature(nll)] #![allow(warnings)] fn gimme(x: &(u32,)) -> &u32 { &x.0 } fn foo<'a>(x: &'a (u32,)) -> &'a u32 { let v = 22; gimme(&(v,)) //~^ ERROR borrowed value does not live long enough [E0597] } fn main()...
C-enhancement,A-diagnostics,P-low,T-compiler,A-NLL
low
Critical
301,549,210
go
proposal: spec: allow cap(make([]T, m, n)) > n
Currently, the Go spec requires that `cap(make([]T, n)) == n` and `cap(make([]T, m, n)) == n`. I propose relaxing this constraint from `==` to `>=`. Rationale: the Go runtime already pads allocations up to the next malloc bucket size. By treating the user supplied capacity argument as a lower bound rather than exact...
LanguageChange,Proposal,LanguageChangeReview
high
Critical
301,567,622
go
proposal: net/v2: make Pipe asynchronous
Currently, `net.Pipe` is documented as such: > Pipe creates a *synchronous*, in-memory, full duplex network connection; both ends implement the Conn interface. Reads on one end are matched with writes on the other, copying data directly between the two; there is no internal buffering. This behavior occurs because `...
v2,Proposal
medium
Major
301,615,204
go
cmd/compile: revisit append codegen
CLs 21813 and 22197 optimized the code generated for append. It was done in part to address #14921, but while I was there, I also focused on things like avoiding spills in the fast path. Several things have changed in the compiler since then: * The old backend is gone, so we are free to change the signature of gr...
Performance
low
Minor
301,622,646
go
x/text/language: change of behavior for language matcher
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.9.2 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? linux amd64 ### What did you do? The ...
NeedsInvestigation
medium
Critical
301,642,132
rust
missed optimization: fat pointers in two-variant enums with small second variants
Currently, there's a reasonably well-known optimization for two-variant enums, where one variant is a single pointer and the other has no fields. In this case, Rust uses its knowledge that `0x0` is never a valid pointer value to optimize the discriminant into the address: `0x0` is taken to mean that the non-pointer var...
C-enhancement,T-compiler,C-optimization
low
Minor
301,694,819
vscode
SCM: Align next/previous commands between diff and regular editor
Extracted from https://github.com/Microsoft/vscode/issues/7717 I think the commands that got introduced should also work within a diff editor.
help wanted,feature-request,diff-editor
low
Major
301,748,271
flutter
"Charles" networking debugging tool prevents SDK download
Hi, when I run flutter doctor --verbose for first time, it's try to download Dart SDK version, but It can be ther for hours and nothing happen. I have try to delete flutter, and install it from Android Studio, but the problem it's the same. It clone flutter without problems, but when check for dart SDK version, it sta...
tool,platform-windows,a: first hour,P3,team-tool,triaged-tool
low
Critical
301,758,624
rust
#![cfg_attr(not(test), no_std)] doesn't work when building multiple crate-types
``` $ cargo create --lib foo $ cd foo $ cat >> Cargo.toml <<EOF [lib] crate-type = ["rlib", "staticlib"] [profile.dev] panic="abort" EOF $ cat > src/lib.rs <<EOF #![cfg_attr(not(test), no_std)] #![feature(lang_items)] #[cfg(not(test))] #[lang = "panic_fmt"] #[no_mangle] pub fn panic_fmt(_: core::fmt::A...
C-enhancement,T-compiler
low
Critical
301,796,099
pytorch
Redo torch.nn.functional docstring strategy
Now that we are stuffing all of our ATen bindings in `torch.` namespace, docstrings for these functions shouldn't live in `torch.nn.functional` anymore, because then you won't get docs unless you import `torch.nn.functional` first. CC @gchanan cc @jlin27
module: docs,triaged
low
Minor
301,808,852
rust
Add rustdoc option to make old docs "less important" to make search engine results more pertinent
I think about something like: ```bash rustdoc --robots-options="less-important" # or whatever option it is for search engine robots ``` However, this option will need to be called for the version specific docs generation (I'm talking about `doc.rust-lang.org/doc/1.x.y`) and not on "not specific" docs ( `doc.rus...
C-enhancement,T-release
low
Minor
301,823,259
rust
Traits and associated types are not properly resolved in trait clauses
https://play.rust-lang.org/?gist=408db89ed821df7b75a2769ae92d3e9b&version=nightly
A-trait-system,A-associated-items,T-lang,C-bug,T-types,S-types-deferred
low
Major
301,838,384
pytorch
TestNN.test_data_parallel takes 10G of memory
Apply the following patch (with `pip install psutil`) to get resident memory information: ``` diff --git a/test/common.py b/test/common.py index 2980cd5..5752af3 100644 --- a/test/common.py +++ b/test/common.py @@ -10,6 +10,7 @@ from functools import wraps from itertools import product from copy import deep...
module: memory usage,module: tests,triaged
low
Critical
301,860,748
vscode
Proxy parameters are ignored and user-settings are missing a proxy-bypass option
### Issue Type Bug ### Description @joaomoreno mentioning you here as discussed in https://github.com/Microsoft/vscode-docs/pull/1069 **Steps to reproduce** 1. Start VSC using `code --proxy-server="myproxy:8080" --proxy-bypass-list="*.someinternaldomain" --ignore-certificate-errors` 2. Make sure in the us...
bug,proxy
low
Critical
301,881,165
rust
Command.spawn posix_spawn support for NetBSD / DragonFlyBSD.
Issue #48624 is adding support for the more efficient `posix_spawn` in some cases of `Command.spawn`. The `posix_spawn` of NetBSD and DragonFlyBSD supports returning _ENOENT_ directly so these platforms can grow support for it. They just need the libc bindings (like in https://github.com/rust-lang/libc/commit/92d50c9c7...
A-runtime,C-enhancement,O-netbsd,O-dragonfly,T-libs
low
Critical
301,918,072
rust
Query Parallelization Tracking Issue
This issue is a sub-issue of https://github.com/rust-lang/rust/issues/48547: it tracks the in-progress effort to parallelize rustc across queries. This work is being spearheaded by @zoxc. ### Goals Allow rustc to execute queries in parallel with one another. Enable the use of rayon or other tools for intra-query...
C-enhancement,I-compiletime,T-compiler,C-tracking-issue,WG-compiler-performance,A-parallel-queries,C-optimization
medium
Critical
301,924,894
youtube-dl
VEVO: Server returned 403 Forbidden (access denied)- but plays / works with other files.
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
geo-restricted
low
Critical
301,932,451
flutter
How to do navigations inside tab pages.
The home page of my app is a tab. In the tab pages I want to navigate to to other screens but the navigated pages should stay within the constraints of the tab page instead of taking full screen space. Here is the code. Currently Screen3 takes up the entire space covering the bottom tab bar. ```dart import 'pack...
framework,d: api docs,f: routes,P3,team-framework,triaged-framework
medium
Major