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
126,303,228
nvm
Feature Request: npm management?
Nvm installs node and npm for a particular user, but the version of node and npm are linked. It would be nice if there was a way to choose a different version of npm, in the same way you can change your node version. It seems like the easy and recommended way to update npm is via `npm install npm -g`, but this installs...
feature requests
medium
Major
126,561,682
go
cmd/link: DW_AT_name should come from source code
gc is not generating DW_AT_name according to the spec. DW_AT_name is "a string representing the name as it appears in the source program." Mangled names should go in DW_AT_linkage_name. I've seen names like these: package.functioname for functions package.(type).functionname for methods package.functioname.func1 ...
compiler/runtime
low
Minor
126,565,814
youtube-dl
youtube-dl should display ffmpeg errors
Whenever ffmpeg gives out errors, youtube-dl should give that feedback to the user. As it is now, it only gives the last line:[ffmpeg] Correcting container in "A.m4a" ERROR: file:A.temp.m4a: Invalid argument But it would be better if it gave the whole error so that I would know that the error has to do with mp4 codec:...
request,postprocessors
low
Critical
126,568,108
kubernetes
Implement alternative storage destination (for events)
currently, events are stored into etcd, i think this is not a good way. because events always multi-times than pods, if the cluster is big(`15000 pods, there maybe > 100K events`), etcd can not handle it effectively. Than the e2e test(`density test`) maybe not works fine. why not send the events to a manager center(`l...
priority/backlog,sig/scalability,area/logging,sig/api-machinery,lifecycle/frozen
medium
Critical
126,575,435
TypeScript
Allow inline type predicates
From #5731 ``` typescript if (<foo is Element>(foo.nodeType === 1)) { // Assume foo is Element here } ``` A proposal from @sandersn: https://github.com/Microsoft/TypeScript/issues/5731#issuecomment-162586789 > ## Type Predicate Expressions > > A type predicate expression allows you to narrow a union type with...
Suggestion,Needs Proposal
medium
Critical
126,635,273
youtube-dl
add support for prosiebenmaxx plailistfiles
hi, could you please add support for playlists such as of this: http://www.prosiebenmaxx.de/anime/playlist-animenacht unfortunately the page dosnt allow to get the video url out of the playlist (as youtube dose for example) so for me there is no way to get the videos thanks alot in advance
geo-restricted
low
Minor
126,685,476
rust
Struct and variant constructors are not generic over lifetimes like regular functions.
The following testcase produces the errors noted in comments and the last one is an ICE ([run on playpen](https://play.rust-lang.org/?gist=f5acaea83408a752d28d&version=nightly)): ``` rust #![feature(fn_traits, unboxed_closures)] fn test<F: for<'x> FnOnce<(&'x str,)>>(_: F) {} struct Compose<F,G>(F,G); impl<T,F,G> Fn...
C-enhancement,A-lifetimes,T-compiler,F-unboxed_closures
low
Critical
126,744,298
TypeScript
Compiler "target" option capitalization in docs inconsistent with code and json schema
https://github.com/Microsoft/TypeScript/wiki/Compiler-Options says `--target` can take the value `ES5` (uppercase). Visual Studio Code warns about using the uppercase one in your `tsconfig.json`, presumably because it's following the schema. The JSON schema for `tsconfig.json` also has it in lowercase, but the docs (...
Docs
low
Minor
126,800,015
kubernetes
Umbrella: Improvements to API documentation
the public API documentation on kubernetes.io is very challenging to understand compared with projects like Docker, OpenStack. The first and most challenging issue is that all of the API operations are listed on one massive page, there isn't any grouping or index. I have to use the browser find to search within the pa...
priority/important-soon,kind/documentation,area/api,sig/api-machinery,sig/docs,lifecycle/frozen,wg/api-expression
medium
Critical
126,800,062
rust
Improve typed pretty printing
Currently you can use `--unpretty=hir,typed` to print out the HIR with type annotations in comments. This could be vastly improved so that it is actually a useful for the user: - use type ascription rather than comments - map the types back from the HIR to the AST - use the original program's formatting (or if that isn...
A-pretty,C-enhancement,E-mentor
low
Major
126,876,344
go
x/tools/cmd/oracle: `describe` operation doesn't work with import "C" statements
Take this source for file `/devel/go-workspace/src/foo/foo.go`: ``` package main /* #include <time.h> #include <stdlib.h> */ import "C" import "fmt" func Random() int { return int(C.rand()) } func Seed() { C.srand(C.uint(C.time(nil))) } func main() { Seed() fmt.Print(Random()) } ``` Then trying to ru...
Tools
low
Critical
126,985,126
kubernetes
kubectl should suggest next kubectl commands
If I do `kubectl describe replicationcontroller/foo`, there is a good chance that the next thing I want to do is to see details about the pods created by that replication controller. Therefore, `kubectl` should suggest these next steps to me. I'm thinking an output format like this: ``` console $ ./kubectl describe ...
priority/backlog,area/usability,area/kubectl,sig/cli,lifecycle/frozen
medium
Critical
126,986,735
rust
-C link-args and -C llvm-args can't pass arguments with spaces
The arguments passed in -C link-args and -C llvm-args is split by spaces making it impossible to pass along paths with spaces in them.
A-frontend,C-enhancement,T-compiler
low
Major
127,011,713
youtube-dl
add support for metrolyrics.com
``` $ youtube-dl --proxy '' --verbose http://www.metrolyrics.com/news-story-watch-adele-absolutely-crush-her-carpool-karaoke-appearance.html [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'--proxy', u'', u'--verbose', u'http://www.metrolyrics.com/news-story-watch-adele-absolutely-crush-h...
site-support-request
low
Critical
127,015,502
java-design-patterns
Application Controller pattern
**Description:** The Application Controller design pattern centralizes the request handling by routing incoming requests to appropriate handlers. This pattern is particularly useful for applications with complex request processing logic, as it decouples the request handling from the request processing, promoting modula...
info: help wanted,epic: pattern,type: feature
low
Major
127,015,633
java-design-patterns
Association Table Mapping pattern
### Description: The Association Table Mapping design pattern is used to manage many-to-many relationships between objects by using an intermediary table (association table) in the database. This pattern is particularly useful when an application requires handling complex relationships where each object can have multip...
info: help wanted,epic: pattern,type: feature
low
Major
127,017,159
java-design-patterns
Plugin pattern
## Description The Plugin design pattern allows a software application to support extension through third-party plugins, providing flexibility and scalability. This pattern is particularly useful for applications requiring dynamic and interchangeable components. ### Main Elements of the Plugin Design Pattern: 1. **Plu...
info: help wanted,epic: pattern,type: feature
medium
Major
127,018,809
nvm
Unable to install custom non-nvm managed version
Hi, I'm currently using N|Solid for some projects and would like to be able to switch between this and other versions during development. I've tried copying the N|Solid distribution into the versions directory, but it isn't picked up. Is there a way to do this? And if not, can this feature be added? Cheers, Nathan
feature requests
low
Major
127,049,530
flutter
Need a way to set app icon from setTaskDescription on Android
the `Title` widget, and the `Activity` mojo service that backs it, doesn't support sending a bitmap to Android to set the app icon.
c: new feature,platform-android,framework,engine,P3,team-android,triaged-android
low
Major
127,079,778
rust
Linking to rustc_llvm with --llvm-root
If you link to rustc_llvm with a rustc configured with --llvm-root the path to the LLVM libraries is not passed to the linker resulting in linking errors
A-LLVM,T-compiler,C-bug
low
Critical
127,085,336
You-Dont-Know-JS
"this & Object Prototypes" - ch6 Behavior Delegation - Minor grammatical error
Not 100% on this but the following sentence doesn't seem to flow well for me: > These instances have **copies both** of the general Task defined behavior as well as the specific XYZ defined behavior. While I think this might be better: > These instances have **copies of both** the general Task defined behavior as we...
for second edition
medium
Critical
127,091,096
rust
Fulfillment context should support DAGs better, integrate with caching better
The new fulfillment context introduced in #30533 could be more efficient in a number of ways in terms of pruning the work it has to do. First, it currently considers obligations to be formed in a tree, but really it ought to detect arbitrary DAGs and avoiding adding needless work. In particular, if a given obligation O...
C-enhancement,A-trait-system,I-compiletime,T-compiler
low
Minor
127,094,982
opencv
Color convert under CPU and GPU is not consistant
When trying to convert a color from Lab to RGB using cvtColor there is an inconsistency between some of the results returned from the GPU (cuda) and CPU. For example: Lab(1.1, 68.34847, 64.08946) --> RGB(0.3326095 , 0.0, 0.0) under CPU Lab(1.1, 68.34847, 64.08946) --> RGB(0.332609445 , -0.1881216 , 0.234428525) under...
bug,category: gpu/cuda (contrib)
low
Minor
127,123,280
go
os: on unix Process.Kill() can kill the wrong process
This is somewhat similar to the issue #9382. On Unix Process.Kill() just calls Process.Signal(Kill). As https://golang.org/src/os/exec_unix.go#L39 indicates, the Signal function invokes syscall.Kill(p.Pid) outside any lock after checking if the process still runs. Thus at the point when the signal is called the process...
OS-OpenBSD,OS-Solaris
medium
Critical
127,129,565
javascript
Lint the readme
Don't know if there's already an issue to do this, but @btmills published https://github.com/eslint/eslint-plugin-markdown. So you should be able to lint the readme with the eslint config?
enhancement,pull request wanted
low
Major
127,159,034
You-Dont-Know-JS
Async & Performance - ch2 - Timeoutify callback arguments
If I'm right, this callback always called with `err == null` and real `err` argument will be second parameter as `data` ``` javascript fn.apply( this, [ null ].concat( [].slice.call( arguments ) ) ); ```
for second edition
medium
Major
127,423,593
go
cmd/pprof: svg profiles are broken for rpc services
go version devel +c7754c8 Tue Jan 19 06:20:36 2016 +0000 linux/amd64 SVG profile for my program shows: ![svg](https://cloud.githubusercontent.com/assets/1095328/12417130/323aeb56-bea6-11e5-925c-29545b8a6991.png) You can see that as if reflect.Value.call directly allocates a lot. This does not make sense. In text pr...
compiler/runtime
low
Critical
127,436,976
rust
Bad macro usage error message does not include correct error location
Consider this reduced test case: ``` rust macro_rules! match_ignore_ascii_case { (@inner $value:expr) => { () }; ( $($rest:tt)* ) => { match_ignore_ascii_case!(@inner $($rest)*) }; } fn main() { // This is fine match_ignore_ascii_case!(1); // This causes an error as it doesn’t match the expected ...
C-enhancement,A-diagnostics,A-macros,T-compiler,D-papercut
low
Critical
127,493,858
go
cmd/compile: Need better type propagation
When this code is compiled with `-m`, several heap allocations can be seen because `hash.Hash64` is an interface type and it's not possible (in general) to know how the parameters to its methods are treated: ``` package foo import ( "hash" "hash/fnv" ) func harsh(fieldVals []interface{}) uint64 { if len(...
Performance,compiler/runtime
low
Major
127,556,428
TypeScript
Assignability error reporting should have a more specific error for unions
``` ts interface A { a: number } interface B { b: number } interface C { c: number } interface D { d: number } declare var c: C; let abc: ((A | B) & C) | D = c; ``` Actual error: ``` Type 'C' is not assignable to type '((A | B) & C) | D'. Type 'C' is not assignable to type 'D'. .... ``` Expect...
Bug,Help Wanted,Domain: Error Messages
low
Critical
127,605,421
go
cmd/compile: stack overflow accessing large return value
Taken this toy example, that calculates prime numbers: http://play.golang.org/p/XrUCUvC7In Building this with <b> go build -gcflags -m </b> shows following output <b> moved to heap: arr moved to heap: x </b> However, running the program I get following error: runtime: goroutine stack exceeds 1000000000-byte limit ...
NeedsFix,compiler/runtime
low
Critical
127,623,857
youtube-dl
how to configure youtebe-dl when using PAC on windows 7
hi, I use a PAC file on windows 7 to access the internet. I try the command "youtube-dl --proxy http://127.0.0.1:16823/adf.pac https://www.youtube.com/watch?v=ByVPaqN9594" to download some files. but it failed. i'm not sure if it' correct to set parameter. Could you help me? Thanks.
request
low
Critical
127,640,581
youtube-dl
Site Support Request: PopTV.com
Can you add support for this website? Example URL: http://poptv.com/post/136762107828/impact-wrestling-premiere-full-episode ``` youtube-dl --verbose http://poptv.com/post/136762107828/impact-wrestling-premiere-full-episode [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'--verbose', u'...
site-support-request,geo-restricted
low
Critical
127,665,597
godot
Node `duplicate()` doesn't copy internal variables values
***Bugsquad edit:** This bug has been confirmed several times already. No need to confirm it further.* ___ Duplicate method don't take into account variable values of duplication root as well as internal nodes. I have prepared small test project that can be used to detect some issues related to duplication: [D...
bug,topic:core,confirmed
medium
Critical
127,738,484
go
tour: infinite loop example, after switching page 'Kill' button cannot be accessed
Context: http://127.0.0.1:3999/flowcontrol/4 When running example locally process time constraint is removed so infinite loop will happily chug along and can be killed using the button on page: ![image](https://cloud.githubusercontent.com/assets/1690934/12457181/214ef2b0-bf9b-11e5-963a-a7617c57b4bc.png) However afte...
NeedsInvestigation
low
Minor
127,761,469
rust
Rustdoc search box fails accessability guidelines
Background links: https://www.w3.org/TR/WCAG20-TECHS/H32.html for a11y, http://doc.rust-lang.org/std/ for rustdoc search. Before typing anything: ![2016-01-20-141055_981x72_scrot](https://cloud.githubusercontent.com/assets/27786/12460013/982e9d7a-bf7f-11e5-8743-9be0710e45fa.png) After typing a query: ![2016-01-20-14...
T-rustdoc,C-bug,A-a11y
low
Major
127,810,122
angular
Invalid component selectors should throw an error
If you use an unsupported component selector, such as `parent-thing > child-thing`, Angular will **silently** accept this and just capture `child-thing`.
hotlist: error messages,freq1: low,area: compiler,core: directive matching,type: confusing,P4
low
Critical
127,955,635
go
runtime: improve performance of IndexByte on older processors
Pre-avx2 processors use a loop of sse operations to do IndexByte. They use an unaligned load to do so. There may be a significant performance win by aligning the loads. See the comments at the end of https://go-review.googlesource.com/#/c/18703/
Performance,NeedsFix,compiler/runtime
low
Major
128,057,019
kubernetes
Secret and ConfigMap should limit # of keys
I think it's best to say "max 1000 keys, max key size is 256 characters. max total size of keys + data is 1 MB" or similar. @pmorie promises to do this unless someone gets there first.
priority/backlog,sig/api-machinery,lifecycle/frozen
medium
Major
128,088,669
go
cmd/asm: incorrect instruction encodings
I have constructed a fairly exhaustive test suite for the x86 assembler and identified some problems. The ones in this issue are long-time bugs that appear to have been present since the beginning of the Go project. We should fix them but given the history there is no need to rush the fixes into Go 1.6. This may not b...
NeedsFix,early-in-cycle
low
Critical
128,130,550
angular
Angular2 Routing: persisting route tabs and child routes
(I posted the problem on SO: http://stackoverflow.com/questions/34925782/angular2-routing-persisting-route-tabs-and-child-routes but decided to ask here, too, hopefully more specific this time) So, basically Router in Angular 2 destroys inactive components (my tabs!). The problem is I don't want this behaviour. Reas...
feature,freq2: medium,area: router,feature: under consideration
high
Critical
128,335,237
go
x/net/http2: export more tunable knobs
There are several default window settings in `transport.go`: ``` go // transportDefaultConnFlow is how many connection-level flow control // tokens we give the server at start-up, past the default 64k. transportDefaultConnFlow = 1 << 30 // transportDefaultStreamFlow is how many stream-level flow /...
NeedsInvestigation
low
Minor
128,373,143
neovim
weird newline behaviour when terminal scrolls because of new output
<img width="1440" alt="screen shot 2016-01-23 at 11 54 41 pm" src="https://cloud.githubusercontent.com/assets/10180857/12534552/ae0cb06e-c22c-11e5-9f35-59e8dd842481.png"> Noticed this when testing #4085. Yes it is the same script. If the output of that script exceeds the terminal and it has to scroll, the background c...
bug,terminal
low
Minor
128,519,570
opencv
Possible wrong tutorial (Arithmetic operation Tut for Python)
Studying opencv in python as new here, I came across the [Arithmetic operations tutorial](http://docs.opencv.org/master/d0/d86/tutorial_py_image_arithmetics.html) and the `cv2.threshold(...)` command. In the Bitwise operation section I runned the code multiple times and the result was not as show in the pictures below...
bug,category: documentation,category: samples,affected: 3.4
low
Minor
128,864,309
opencv
Support BORDER_TRANSPARENT for image filtering
Image filtering functions like cv::blur do not support BORDER_TRANSPARENT as border handling option. An exception is thrown within cv::borderInterpolate if this value is used. BORDER_TRANSPARENT could have practical uses in case of cv::Mat obtained as region of interest (operator parenthesis) of another cv::Mat: the ed...
category: core
low
Critical
128,884,411
nvm
nvm problems caused by "npm version" of nvm
Perhaps the **Problems** section of the README.markdown could note there is an old, npm-installed (or homebrew-installed) version of nvm that does not work with modern systems. (In fact, its github page/repo has disappeared...) It could say something like: > **Outdated nvm** There is an older, unmaintained version of ...
informational,pull request wanted
low
Critical
128,913,096
kubernetes
Service Account Key Rotation
A user asked how to rotate service account keys. [discussion thread](https://groups.google.com/forum/#!msg/google-containers/qSo2Q5kGI6I/use7PIYuCAAJ) Currently, user restarts controller manager with new keypair and then restarts all pods. User pointed out problems with that procedure: 1. you cannot restart pod instan...
area/security,kind/documentation,kind/cleanup,sig/auth,priority/important-longterm,lifecycle/frozen
medium
Critical
128,975,553
go
proposal: os/v2: File should be an interface
By analogy with #13473, os.File should also be an interface. That would permit a program to use files in the abstract sense, including implementations not provided by the os package.
v2,Proposal
medium
Critical
129,032,467
neovim
terminal: tty RPC via APC ctrlseq
I've been using neovim's terminal feature extensively lately (notice all my bug reports :P) and I had a couple really neat ideas that I think would be a must have feature for anyone who uses ssh and neovim. First in the neovim terminal if you are sshed onto a server, if you type `nvim file` instead of opening a new...
enhancement,terminal
medium
Critical
129,181,134
go
gccgo, doc: comments on doc/install/gccgo for gcc release 6
I know that it is likely that some changes are planned for golang.org/doc/install/gccgo for the release of gcc 6. Here are a few comments/suggestions on this page. With the changes to split stack support in gccgo for gcc release 6, it no longer required to use --with-ld on the configure option (and probably better no...
NeedsInvestigation
low
Minor
129,234,512
go
runtime/race: deflake tests
See https://go-review.googlesource.com/#/c/18968 for context. Race tests run with GOMAXPROCS=1, this makes them more or less reliable. But the ultimate solution is to explicitly annotate tests with required execution order by means of a special "invisible" synchronization primitive (that's what is done for C++ ThreadSa...
help wanted,NeedsFix,compiler/runtime
low
Major
129,243,287
kubernetes
kubectl port-forward container listener to local port
It would be great if `kubectl port-forward` offered the equivalent of `ssh -R`, such that it would open a _listening_ port on the container that forwards to a port on the local machine. I would be perfectly content if that port were only available to the container (i.e. just the 3-tuple `-R` flavor, without `bind_addre...
priority/backlog,area/kubectl,sig/node,kind/feature,sig/cli
high
Critical
129,351,797
TypeScript
Suggestion for improving generator and async function type checking
This is a suggestion to improve both the consistency and the type-safety of return type checking for generator functions (GFs) and async functions (AFs). NB: this issue refers to `tsc` behaviour for target >=ES6 with `typescript@next` as of 2016-01-28 (ie since commit https://github.com/Microsoft/TypeScript/commit/a6a...
Suggestion,In Discussion
medium
Critical
129,500,072
TypeScript
Proposal: Merge enum and const enum features
Currently there are two enumerable types specified in TypeScript: `enum` and `const enum`. Both of them aren't bijective, i.e. they both don't provide the ability to cast them arbitrarily and unambiguously between `string`, `number` and `enum`. After discussing this on Gitter with @jsobell and @masaeedu I'd like to p...
Suggestion,Needs Proposal
medium
Critical
129,500,360
go
x/text/encoding/unicode: add examples
golang.org/x/text/encoding/unicode's documentation is a bit unclear to the newbie like myself that just wants to read files that Windows folks send them without having to become an expert in UTF-16. I think the docs make sense to someone that already understands transforms, unicode, etc, but not everyone should need t...
Documentation,NeedsInvestigation
low
Minor
129,702,946
opencv
OpenCV projectPoints jacobian matrix is not correct
We compared the Jacobian matrix coming from projectPoints in OpenCV 2.4.11 against the one we have provided with matlab code (we have written the projection formula exactly based on the OpenCV source code). We found out that when the Tangential distortion coefficients (p1 and p2) are not zero the output of MATLAB code ...
bug,category: calib3d,affected: 2.4
low
Minor
129,845,753
youtube-dl
youtube-dl skips post-processing for M4As
Hey there. First of all, thanks for a great program, youtube-dl is the only program on the market I've come across that allows me to extract the audio from my huge YouTube playlists and convert them to M4A ready to be put on my phone. The problem I'm currently having is that after extracting the audio, ffmpeg skips ...
bug,postprocessors
medium
Critical
129,916,291
opencv
Python Multiprocessing Problem
I'm using python 2.7 and opencv 2.4.11 and am having some trouble using the multiprocessing module for a very simple purpose. Here's a sample of my code with a consumer-producer framework employed. ``` class Consumer(multiprocessing.Process): def __init__(self, task_queue, result_queue): multiprocessing.P...
bug,category: python bindings,affected: 2.4
low
Critical
130,212,221
neovim
Support GUI signs
`sign` support allowed the GUI to place icons as defined through the `sign icon= command, but we have no equivalent for remote GUIs, and the old code got removed. Ping equalsraf/neovim-qt#90.
enhancement,gui,ui-extensibility
low
Minor
130,388,425
TypeScript
Readonly indexer and constructor usage: question
``` typescript class A { readonly x; readonly [x: string]: string; constructor() { this.x = 5; // that's okay this["a"] = "s"; // that yields an error } } ``` Is that by design that readonly indexers for the same type in constructor yield errors?
Suggestion,Awaiting More Feedback
low
Critical
130,412,950
TypeScript
Destructuring causes error for null/undefined properties
The following code: ``` ts interface Foo { x: number; } interface Bar { foo?: Foo; } function test( { foo: { x } }: Bar ) { alert( x ); } test( {} ); // TypeError: Cannot read property 'x' of undefined ``` transpiles to: ``` js function test(_a) { var x = _a.foo.x; alert(x); } ``` instead of ...
Suggestion,In Discussion,Help Wanted
medium
Critical
130,460,512
go
runtime: GC should wake up idle Ps
Currently the GC doesn't always wake up idle Ps, and hence may not take full advantage of idle marking during the concurrent mark phase. This can happen during mark 2 because mark 1 completion preempts all workers; if the Ps running those workers have nothing else to do they will simply park, and there's no mechanism t...
Performance,NeedsFix,compiler/runtime
low
Major
130,465,471
go
syscall: synchronization between clone() and execve()
I would like to see a synchronization primitive to be added between the clone() and the execve() call in the function forkAndExecInChild here https://golang.org/src/syscall/exec_linux.go so that the parent can setup the child after the clone() but before the execve().
compiler/runtime
low
Major
130,515,751
youtube-dl
--download-archive doesn't create directories when needed
So, I'm on Linux and this is the exact command I'm executing: ``` sudo youtube-dl https://www.youtube.com/playlist?list=PLjlvXrjuRczngya2R6iQpUx8UnSCG7DAo --extract-audio --audio-format mp3 --playlist-start 1 -o playlist_storage/PLjlvXrjuRczngya2R6iQpUx8UnSCG7DAo/%\(title\)s.%\(ext\)s --download-archive playlist_stor...
bug
low
Critical
130,516,689
TypeScript
Enable JavaScript specific warning behavior
See #6658 for background. Currently for JavaScript files we provide a very limited set of errors, mostly for syntax errors. There are a number of grammatical and type errors that would be useful to display also. Brief notes from ad hoc discussion in the team room include: - Move the code that flags TypeScript syntax ...
Suggestion,Committed,VS Code Tracked,Domain: JavaScript
low
Critical
130,538,870
nvm
node not found after install
``` v21@v21:~$ nvm install 5.0 Downloading https://nodejs.org/dist/v5.0.0/node-v5.0.0-linux-x64.tar.xz... ######################################################################## 100.0% WARNING: checksums are currently disabled for node.js v4.0 and later /home/v21/.nvm/versions/node/v5.0.0/bin/npm: 2: exec: /home/v21/....
installing node,feature requests,pull request wanted
low
Critical
130,768,594
go
net/http/httptest: optional faster test server
Look into making httptest.Server have a way to use in-memory networking (i.e. net.Pipe) instead of localhost TCP. Might be faster/cheaper and not hit ephemeral port issues under load?
help wanted,NeedsFix,FeatureRequest
medium
Major
130,774,506
youtube-dl
site request: atpworldtour
"Association of Tennis Professionals" URL example: http://www.atpworldtour.com/en/video/rotterdam-2015-final-highlights-wawrinka-berdych Thanks Ringo
site-support-request
low
Minor
130,845,875
go
net/http: source of errors is unclear
**What version of Go are you using (go version)?** 1.5.3. **What operating system and processor architecture are you using?** Linux. AMD 64. **What did you do?** I'm using `httputil.ReverseProxy` to proxy to a host behind ELB, and I'm getting the errors "http: proxy error: net/http: request canceled" & "http: prox...
Documentation,NeedsInvestigation
medium
Critical
130,865,507
opencv
Support for HEVC and VP9 in cudacodec::VideoReader
Hello, Current version of cudacodec::VideoReader does not support hevc/vp9 decode, Nvidia cards with GM206 and above have a VP that supports both decode and encode of HEVC.
feature,category: gpu/cuda (contrib)
low
Minor
130,899,194
javascript
Exception for space-before-keywords?
Writing a React/redux app, I am occasionally declaring anonymous classes inside function calls: ``` javascript export default connect()(class extends Component { // React component class definition }); ``` which gives this error: `Missing space before keyword "class". (space-before-keywords)`. If I put a space the...
needs eslint rule change/addition
low
Critical
130,908,856
opencv
BackgroundSubtractorMOG2 apply calls from python causes allocation error
Error message: ``` File "(myfile.py)", line 1500, in (some function) bgsub.apply(frame) error: /tmp/opencv-3.1.0/modules/python/src2/cv2.cpp:163: error: (-215) The data should normally be NULL! in function allocate ``` This appears to be a similar bug as [#5667](https://github.com/Itseez/opencv/issues/5667) for...
bug,category: python bindings,affected: 3.4
low
Critical
130,946,003
go
tour: figure out how to make pic.Show interact well with debug prints
Context: https://tour.golang.org/moretypes/15 Running the slices exercise doesn't display bluescale image. Instead it displays the slices of slices returned by Pic and as the last line prints "IMAGE: <base64-value>".
help wanted
low
Critical
131,041,599
youtube-dl
Support request for http://knpuniversity.com
This website provides video tutorials in PHP programming. There are some free tracks on the website which can be downloaded by the tool. Example of video page: http://knpuniversity.com/screencast/symfony/twig-layouts Example of playlist page: http://knpuniversity.com/screencast/symfony
site-support-request
low
Minor
131,054,331
rust
rustdoc's search-index.js file is huge for large projects
See https://bugzilla.mozilla.org/show_bug.cgi?id=1245213#c3 We should fix SpiderMonkey / the profiler to be smarter, but 15.2 MB is a _lot_ of JS to load on every page load. Looks like this file will also create a ton of JS objects/strings. Can we load this file only when we're using the search bar? Maybe we can spli...
T-rustdoc,C-enhancement,I-heavy,A-rustdoc-search
low
Critical
131,129,072
kubernetes
Support "Delete" and "Get" via UID or with UID as a precondition
Currently we use `<namespace, name>` pair as the identifier for a delete operation, e.g., https://github.com/kubernetes/kubernetes/blob/master/pkg/client/unversioned/pods.go#L72. However, the `<namespace, name>` pair is not unique across time, and it may lead to a race condition like #19403. To make the Delete unambigu...
area/api,sig/api-machinery,lifecycle/frozen
medium
Critical
131,192,455
kubernetes
Umbrella issue for kubectl config command overhaul
`kubectl config` strongly departs from the command and output conventions of other commands. It shouldn't. Current commands: https://github.com/kubernetes/kubernetes/blob/master/docs/user-guide/kubectl/kubectl_config.md Conventions: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/kubectl-conventions.m...
priority/backlog,area/kubectl,sig/cli,lifecycle/frozen
low
Major
131,200,944
You-Dont-Know-JS
"es6 & beyond": regex clarification
From Chapter 2 on sticky regex > from the content of the source property, such as Your code goes on to use toString, but not source. You might clarify in future editions.
for second edition
medium
Minor
131,414,560
opencv
inpaint cannot handle borders
I wanted to smooth some depth map images by using the `inpaint()` functionality. However, I noticed that the no depth information on the borders are not completely "washed out" from the function as I was expecting. A example can be seen in[ this question](http://answers.opencv.org/question/86569/inpainting-normal-behav...
category: photo,RFC
low
Critical
131,449,790
vscode
Git - Automatically insert line breaks in git commit messages
I'm trying to get into the habit of writing good commit messages. Not sure if this should be the default but it would be really useful if vscode automatically wrapped commit message lines at say 80 chars and inserted line breaks. I don't mean changing the appearance of the text in the commit message box, just before i...
help wanted,feature-request,git
high
Critical
131,492,057
go
spec: formatting of tables relies on fixed-width fonts
On https://golang.org/ref/spec if you search for "array or slice" the table is not aligned as a table. I can't tell from this paragraph which is the 1st or the 2nd value in a range expression for different types. (https://golang.org/doc/effective_go.html#for is clear on the range expression, though it's not the spec.)...
NeedsInvestigation
low
Major
131,687,981
vscode
activationEvents.workspaceContains doesn't fire for directory
Is this expected? Also, a general way to detect all workspace-open events, like 'workspaceContains:*' or an onDidChangeWorkspace event would be useful.
feature-request,api
low
Major
131,721,647
go
tour: Search in table of contents
Context: http://tour.golang.org/* The tour is a good reference for quick examples, when you are not familiar with go yet. It would be useful to be able to search in the contents of the tour. At least in its table of contents.
Documentation,help wanted,NeedsInvestigation,FeatureRequest
low
Minor
131,752,491
rust
Tracking issue for `?` operator and `try` blocks (RFC 243, `question_mark` & `try_blocks` features)
Tracking issue for rust-lang/rfcs#243 and rust-lang/rfcs#1859. Implementation concerns: - [x] `?` operator that is roughly equivalent to `try!` - #31954 - [x] `try { ... }` expression - https://github.com/rust-lang/rust/issues/39849 - [x] resolve `do catch { ... }` syntax question - Resolved as `try...
B-RFC-approved,T-lang,T-libs-api,B-unstable,B-RFC-implemented,C-tracking-issue,A-error-handling,F-try_blocks,Libs-Tracked,S-tracking-design-concerns
high
Critical
131,837,716
neovim
visual effect for operations
Replicated from [StackOverflow](http://stackoverflow.com/questions/35171726/is-there-visual-flash-effect-for-editing) What we are looking is to visually flash briefly the affected areas of vim editing in normal mode. For example, when editing ``` C if (true) { //line to be deleted } ``` if we do dd on //line to ...
enhancement,gsoc
low
Minor
131,837,719
youtube-dl
francetv unable to find ID
Trying to download from here: http://television.telerama.fr/television/regardez-cargos-la-face-cachee-du-fret-ou-l-invisible-armada-de-la-mondialisation,137619.php Which is using this iframe: http://embed.francetv.fr/?ue=a69734825a04041ae3b51fd8b41f87f1&autoplay=1 And: [francetv] a69734825a04041ae3b51fd8b41f87f1&aut...
geo-restricted
low
Critical
131,839,076
rust
The Vec should not needlessly overallocate capacity if it is guaranteed to fail.
Current Vec / RawVec allocation strategy is to at least double the capacity on reallocation. This leads to unnecessary panic when the new overallocated capacity exceeds std::isize::MAX. If allocating std::isize::MAX would be sufficient it should do so instead. For example I would expect the following to work on 32-bit...
C-enhancement,A-collections,T-libs-api
low
Minor
131,870,964
vscode
Automatically Activate Markdown Preview
I would like to eliminate the step of pressing `ctrl+k v` to preview the md file I open. For the preview should always be on. Thank you
feature-request,markdown
high
Critical
131,890,153
flutter
Make it real easy to open an issue with crash reports and logs
Imagine a `flutter report-bug` command. It could grab any crash report from iOS, any recent logs, the flutter version, the Dart version, and then send it off to GitHub as an issue. We want to make it as simple as Example UI: ``` $ flutter report-bug Sorry you ran into trouble, but we appreciate the bug report. This...
c: new feature,team,tool,a: triage improvements,P3,team-tool,triaged-tool
low
Critical
131,970,355
youtube-dl
site support request: www.tg4.ie
Sample URL: http://www.tg4.ie/ga/player/baile/?pid=4742502074001 `$ youtube-dl --version 2016.01.27` ``` $ youtube-dl -v http://www.tg4.ie/ga/player/baile/?pid=4742502074001 [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'-v', u'http://www.tg4.ie/ga/player/baile/?pid=4742502074001'] [d...
site-support-request
low
Critical
132,005,297
rust
Add rustc --emit=link-info for staticlib link-line output
When linking rust into C++ projects, I use `rustc --crate-type=staticlib` to generate a static library which I can link into the overall project. Since there's no standard for transitive dependency declaration in the C ABI for static libraries, rustc prints out a list of libraries which need to be linked along with the...
A-frontend,T-compiler,C-feature-request
low
Major
132,023,607
youtube-dl
Site support request: cops.com
Hello, Could you add cops.com as a supported website? They seem to break full episodes into separate clips for showing advertisements in-between. Example of a full episode: http://www.cops.com/cops2805/ Thanks.
site-support-request
low
Minor
132,083,670
neovim
python remote plugin: warn when file doesn't export handlers
While developing a Python3 plugin for neovim, I used a directory structure like this: ``` . β”œβ”€β”€ requirements.txt β”œβ”€β”€ rplugin β”‚Β Β  β”œβ”€β”€ __init__.py β”‚Β Β  └── python3 β”‚Β Β  β”œβ”€β”€ myplugin.py β”‚ β”œβ”€β”€ __init__.py └── tests β”œβ”€β”€ __init__.py β”œβ”€β”€ myplugin_tests.py ``` When I attempted to use `vim-plug` to load the pl...
enhancement,provider,complexity:low
low
Critical
132,134,473
go
doc: add guidance on new vs. literal usage
One thing I observed with new gophers, is having trouble judging is when to use `new` and when to take the address of struct literal. Adding a bit of guidance in the wiki or effective_go.html would be quite useful. Suggestion for guidance: - prefer the literal - if you don't initialize the struct with values, use new...
Documentation,NeedsInvestigation
low
Major
132,163,073
electron
[Enhancement] Applescript API
Is it possible to have an Applescript API for Mac apps made with Electron?
enhancement :sparkles:
medium
Critical
132,264,512
go
runtime: _cgoCheckPointer0 extreme overhead
1. What version of Go are you using (go version)? go1.6rc2 2. What operating system and processor architecture are you using? linux/amd64 3. What did you do? Call C code with cgo. 4. What did you expect to see? Almost the same performance with GODEBUG=cgocheck=1 and GODEBUG=cgocheck=0. 5. What did you see i...
compiler/runtime
low
Critical
132,304,763
vscode
Support variables when resolving values in settings
Hi, I was just reading the [latest updates](https://code.visualstudio.com/updates) and it says one can install `typescript@next` globally and then set `typescript.tsdk` so VS Code can use the appropriate version/installation. In a team environment, I'd like to put that setting in our project, something like: `.vscode...
feature-request,config
high
Critical
132,331,790
rust
Guard pages are disabled on musl.
In #30629 I [disabled guard pages on musl](https://github.com/rust-lang/rust/pull/30629/files#diff-1a00e90827d8a240091012902881fdc4R184). I did this because one of the pthread calls (I've forgotten which) was segfaulting during runtime initialization on i686-unknown-linux-musl, with my local build of musl, and I just w...
O-musl,C-bug,A-stack-probe
low
Minor
132,338,105
rust
Specifying linkage on externs silently removes indirection
When compiling the following code: ``` c // externs-c.c unsigned char myarr[10]={1,2,3,4,5,6,7,8,9,10}; unsigned char (*implicitvar)[10]=&myarr; unsigned char (*explicitvar)[10]=&myarr; ``` ``` rust // externs-rust.rs #![feature(linkage)] extern { static implicitvar: *const [u8;10]; // Should have no effect,...
A-linkage,A-codegen,T-compiler,C-bug,requires-nightly
low
Critical
132,418,818
youtube-dl
Calling ffmpeg once
It has come to my attention that youtube-dl calls ffmpeg **3 times** if we enable "--write-sub --all-subs --embed-subs --embed-thumbnail --add-metadata" when we can just safely call ffmpeg once to do all stuffs(maybe except thumbnail as it requires atomicparsley). This is a huge waste in system resources, much more not...
request
low
Critical