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
111,744,658
neovim
Vim may leave file named "4913" under certain conditions
An interesting case was [mentioned](https://twitter.com/cortesi/status/654769811914780673): Neo/Vim (~~on Windows only?~~) [creates a temporary file](https://github.com/neovim/neovim/blob/536c0ba27e79929eb30850d8e11f2ed026930ab3/src/nvim/fileio.c#L2710) to check if a directory is writable and see the resulting ACL. >...
bug-vim,filesystem
low
Critical
111,751,149
TypeScript
Formatting multiple-line comment doesn't normalize leading whitespaces
``` typescript function foo() { /* multiple line comment */ } ``` Formatter does not change `\t` character before `/*` into spaces. Is this also by design?
Bug,Help Wanted
low
Minor
111,788,157
rust
Wrong error message (or type system bug) for unsatisfied trait bound
Here's the [code](https://play.rust-lang.org/?gist=8295fe2b1cf5225ae082&version=nightly). Not sure how to get reduced example, sorry about that. So, in general, the problem is that I have ``` rust pub trait WhereType<'a>: ToSQL + CloneToTrait<'a> {} ``` and some implementations of it (32-37 lines). At 37 line I'm try...
C-enhancement,A-diagnostics,A-trait-system,T-compiler
low
Critical
111,882,982
go
tour: confusion with pointer and methods.
Context: http://tour.golang.org/methods/3 I played around with the code and tried this: ..... func (v Vertex) Scale(f float64) Vertex { v.X = v.X \* f v.Y = v.Y \* f return v } ... func main() { v := &Vertex{3, 4} fmt.Printf("Before scaling: %+v, Abs: %v\n", v, v.Abs()) v = &v.Scale(5) fmt....
NeedsInvestigation
low
Critical
111,924,997
rust
dropck doc oversights / revision
The implementation of non-parametric dropck (#28861) included comments and doc that is missing a few things. 1. There was feedback from @Gankro on changes to the rustonomicon that should be further tweaks (see comment thread from #28861) 2. There should be a _huge_ warning (maybe even a lint or something) that if you p...
C-enhancement,A-destructors
low
Major
111,953,410
rust
Dead code warning should provide some help for making the code public in library crates
When compiling a library crate a dead code warning occurs it might be a sign that programmers actually wanted to make the code public. The warning message should tell them how to do that (e.g. `pub` keyword missing on `mod` or `fn`/`enum`/...). Especially making the `mod` `pub` can easily be forgotten. (E.g. [this per...
C-enhancement,A-lints,A-diagnostics,T-compiler,L-dead_code
low
Minor
112,021,282
youtube-dl
Add support for tvfplay.com
youtube-dl http://tvfplay.com/video/detail/477/TVF-Pitchers-S01E05-Where-Magic-Happens --verbose [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['http://tvfplay.com/video/detail/477/TVF-Pitchers-S01E05-Where-Magic-Happens', '--verbose'] [debug] Encodings: locale 'UTF-8', fs 'UTF-8', out '...
site-support-request,account-needed
low
Critical
112,168,118
go
runtime: Plan 9 stuck forever in TestNoHelperGoroutines
Plan 9 sometimes hangs in TestNoHelperGoroutines: https://storage.googleapis.com/go-build-log/eb8fa651/plan9-386_f2178495.log ``` ##### GOMAXPROCS=2 runtime -cpu=1,2,4 panic: test timed out after 5m0s goroutine 232244 [running]: testing.startAlarm.func1() /tmp/workdir/go/src/testing/testing.go:703 +0xfd created ...
OS-Plan9,compiler/runtime
low
Critical
112,170,266
TypeScript
Combining destructuring with parameter properties
Today, we can take advantage of parameter properties to reduce the boilerplate, e.g: ``` typescript class Person { constructor(public firstName: string, public lastName: number, public age: number) { } } ``` Since 1.5, we can also use destructuring, e.g: ``` typescript class Person { firstName: ...
Suggestion,In Discussion,Effort: Moderate
high
Critical
112,171,070
youtube-dl
[cbsnews] Add support for playlists
It's been working fine for months now... Here it is; C:\Notify+>C:\Python27\Scripts\youtube-dl.exe --verbose -o r:+cbs-60.minutes.fl v --ffmpeg-location=c:\python27\scripts --recode-video=mp4 http://www.cbsnews.co m/latest/60-minutes/full-episodes/ [debug] System config: [] [debug] User config: [] [debug] Command-lin...
request
low
Critical
112,190,748
go
tour: add a tour of text/template and html/template
The Go text/template and html/template are widely used and well-documented, but a tour would provide a better way of teaching the template language, starting from the basics and moving on to more advanced features. I'd also like to see non-HTML uses of text/template called out, such as generating markdown or complex S...
NeedsInvestigation
low
Minor
112,197,102
opencv
VideoCapture::isOpened() test error
modules/videoio/src/cap.cpp on line 600 ``` .cpp bool VideoCapture::isOpened() const { return (!cap.empty() || !icap.empty()); } ``` Does the test shouldn't be ? ``` .cpp return (!cap.empty() && !icap.empty()); ``` I ran in a case where isOpened return true but the device is already in use and icap is empty but...
bug,priority: normal,category: videoio,affected: 3.4
low
Critical
112,288,567
TypeScript
Heuristic/loose completions for the 'any' type
# Motivation Today, if you have a value of type 'any', dotting off of the value and requesting members for completion will return nothing back. The original motivation for this was that we should never risk giving users incorrect completions. This is great for a fully typed TypeScript project. However, for those migr...
Suggestion,In Discussion
low
Major
112,346,379
opencv
MacOSX: VideoWriter slows down after some point
Performance of VideoWriter's write method gets very low after some point. In these two stackoverflow questions, problem is explained clearly: - http://stackoverflow.com/questions/26695486/python-opencv-videowriter-slows-down-at-around-3000-write - http://stackoverflow.com/questions/32163691/opencv-videowriter-become-sl...
bug,wontfix,priority: low,category: videoio
low
Major
112,483,782
kubernetes
NFS volume plugin should translate to service IP before making mount call
I'm trying to brush off the [nfs example](https://github.com/kubernetes/kubernetes/tree/master/examples/nfs) now that privileged is working by default, and one of the small warts in it is the web server pod needs a hardcoded IP or hostname in order to bring the pieces together. (And I'm running through it for GCE to ma...
sig/storage,lifecycle/frozen
low
Major
112,576,608
rust
Associated item projections across crate boundaries slightly broken
``` rust pub trait Foo<T> { } pub trait Mirror { type Dual; } pub struct Eps; pub struct A<T, U>(T, U); impl<T, U: Mirror> Mirror for A<T, U> { type Dual = B<T, U::Dual>; } pub struct B<T, U>(T, U); impl<T, U: Mirror> Mirror for B<T, U> { type Dual = A<T, U::Dual>; } impl Mirror for Eps { type D...
A-trait-system,P-medium,A-associated-items,T-lang,C-bug,T-types,A-coherence
low
Critical
112,581,353
opencv
Documentation: Update docs about connected component label images
The docs should be updated to state that: given the same binary input image (inverted for `cv::distanceTransform()`), the labels in the images returned by all the following functions will all be consistent: - `cv::distanceTransform()` (version with labels) - `cv::connectedComponents()` - `cv::connectedComponentsWithSta...
priority: normal,feature,category: documentation,affected: 3.4
low
Minor
112,651,600
kubernetes
Testing doesn't sufficiently cover client/cluster version skew
As we're moving forward with the `v1.1` release, we're realizing we don't have sufficient test coverage for version-skew between clients and clusters. Recently, we put in place upgrade tests: ``` # kubernetes-upgrade-gke-1.0-1.1 # # This suite: # #1. launches a cluster at release/latest-1.0, #2. upgrades ...
area/test,priority/important-soon,area/kubectl,sig/api-machinery,area/test-infra,area/upgrade,lifecycle/frozen
low
Major
112,681,844
opencv
opencv-2.4.* compilation issue with cuda, bumblebee
Hi i have an issue and i have searched many forums, maillists for a solution so i believe it is a bug. I have tried to install OpenCV-2.4.11 on my laptop with an integrated Intel videocontroller and a separate NVIDIA Geforce 940M videocontroller. I have installed Cuda with the capability version 5.0 with the Cuda 7.5...
bug,priority: normal,category: build/install,affected: 2.4,category: gpu/cuda (contrib)
low
Critical
112,907,210
go
x/build/cmd/coordinator: limit number of TryBot reattempts
I started http://farmer.golang.org/try?commit=ed6176f8 about 4.5 hours ago, and it appears to have attempted to start a Plan 9 GCE image every 6 minutes (i.e., ~45 times now). While its determination is laudable, I think it could stop after maybe 3. CC @bradfitz @adg
Builders,NeedsFix
low
Minor
113,000,744
neovim
Feature: Disable jump list for buffer
Would be useful to be able to disable the recording of jumps for a specific buffer. Vim doesn't have this, but several searches online indicate it would be useful for others than me.
enhancement
low
Minor
113,002,840
opencv
VideoCapture problem with big videodata
When try to load a video with using the whole UInt32 limit (over 4GByte uncompressed data). I get the error message "Frame offset points outside movi section." exactly 64 times. The concerned line is in file "modules/videoio/src/cap_mjpeg_decoder.cpp". For me it looks like some header offsets overflow the uint32 max a...
bug,priority: normal,category: videoio,affected: 3.4
low
Critical
113,010,337
opencv
GPU-hog doesn't work with win_stride smaller then (8, 8)
If you execute the gpu-example-hog on a picture with win_stride (8, 8) and the other default parameters : - ./gpu-example-hog /lfs/psc/OpenCV_3_TestData/road.png --win_stride_width 8 --win_stride_height 8 the output is : ![gpu_hog_win_stride_8_8](https://cloud.githubusercontent.com/assets/11768321/10691617/b90faf...
bug,priority: normal,category: samples,category: gpu/cuda (contrib)
low
Minor
113,128,982
TypeScript
Stdlib typings for typed arrays (and specific errors) need brand fields to improve type safety
All typed arrays are assignable in our present dts. ``` ts let arr = new Uint8Array(20); let arr2 = new Int16Array(20); arr = arr2; // Valid. ``` The same is true of specific errors: ``` ts let err = new SyntaxError(); let err2 = new RangeError(); err = err2; // Also valid ``` We should fix this, as both of these s...
Bug,Help Wanted,Domain: lib.d.ts
low
Critical
113,170,348
youtube-dl
Site Support Request: Supersport.com
``` Iliad:~ aaron$ youtube-dl --version 2015.10.24 ``` ``` Iliad:~ aaron$ youtube-dl -v -j http://www.supersport.com/cricket/sa-team/video/598304 [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'-v', u'-j', u'http://www.supersport.com/cricket/sa-team/video/598304'] [debug] Encodings: loc...
site-support-request
low
Critical
113,189,219
rust
#[macro_export] stops macro's documentation tests from working
Adding `#[macro_export]` to a macro stops it from working in documentation tests. Here's a few examples: `````` rust /// Test macro /// /// #Examples /// ``` /// test_macro!(TestStructure); /// ``` #[macro_export] macro_rules! test_macro { ($expression:ident) => (struct $expression); } `````` `````` rust #[macro_...
T-rustdoc,A-macros,C-bug,A-doctests
low
Critical
113,218,141
youtube-dl
Request: upload_year tag in output template
I'm trying to folder my videos by year. It would be very useful if I could do this natively, rather than managing it from my script. This could be fixed by copying the relevant code for the upload_date tag, and returning the first four characters. This would result in %(upload_year)s returning year in YYYY format.
request
low
Major
113,271,622
electron
Expose the "Spelling and Grammar" related APIs
On OS X apart from the basic spell-checking it also provides a "Spelling and Grammar" menu that allows some more advanced operations: <img width="666" alt="screen shot 2015-10-26 at 10 02 39 am" src="https://cloud.githubusercontent.com/assets/639601/10719716/bff72fd4-7bc8-11e5-9b97-980e9a75dd91.png"> Chrome browser ha...
enhancement :sparkles:,platform/macOS,component/menu
medium
Critical
113,374,777
neovim
Repeated append is O(n²)
Demonstration: 1. Open nvi (BSD nvi). 2. Type `1000000afnord` then ESC. 3. Screen fills up almost instantly. 4. Open neovim. 5. Tyle `1000000afnord` then ESC. 6. Wait... and wait... and wait... Originally pointed out by [this rant](http://www.galexander.org/vim_sucks.html) (not mine).
performance,bug-vim,normal-mode
low
Major
113,456,516
go
runtime: lock_sema.go uses LIFO ordering for waking blocked Ms
In the lock_sema.go implementation of mutexes, lock handles contention by adding the current M to the front of the linked list of waiting Ms, and then unlock wakes up the M at the front of the list. I.e., waiting Ms are awoken in LIFO order. Is it worth changing unlock to awake the M at the _end_ of the list to effec...
compiler/runtime
low
Minor
113,504,167
go
go/types: inconsistent handling of untyped expressions
Currently if you type check this code with go/types: ``` var ( _ int = 0 _ = int(0) _ *int = nil _ = (*int)(nil) ) ``` both `0` expressions will have type "int", whereas the first `nil` expression will have type "untyped nil", and the second will have type "*int". This seems at the least inconsistent...
NeedsFix
low
Major
113,512,800
rust
Consider having special debugger pretty printers/handling for Unique/Shared/NonZero
A debugger is particularly useful for diagnosing problems in unsafe code, and these types appear reasonably often there. Currently they're printed in a rather ugly way: ``` rust #![feature(unique)] use std::ptr::Unique; struct Bar { y: u8 } struct Foo { ptr: Unique<Bar>, } fn main() { let mut x = Bar { y: 10 ...
A-debuginfo,P-low,T-compiler,E-medium,T-dev-tools,C-feature-request
low
Critical
113,523,266
TypeScript
More strong Promise<T> in lib.es6.d.ts
I think it would be good to be able to define the type of error in `Promise` type. I suggest promise type to be something like this: ``` typescript interface Promise<T,U> { /** * Attaches callbacks for the resolution and/or rejection of the Promise. * @param onfulfilled The callback to execute when the Pro...
Suggestion,Awaiting More Feedback
low
Critical
113,663,538
angular
ng-content projection for root component
`ng-content` projection doesn't work for root component. E.g. for the following code: ``` <app> <p> Some content that needs to be projected </p> </app> @Component({ selector: 'app', }) @View({ template: `<p>Hello world</p> <ng-content></ng-content>` }) class App {} bootstrap(App); ``` only `<p>...
feature,area: core,core: bootstrap,feature: under consideration
high
Critical
113,938,515
go
x/crypto/ssh/terminal: cannot handle xterm based terminals on Windows
At work, I use a combination of Windows + Cygwin/MSYS2 to get my job done. Both Cygwin and MSYS2 using a mintty which is a xterm-256color terminal. My preferred backup tool on this setup is [restic](https://github.com/restic/restic). Restic use x/crypto/ssh/terminal for password authentication. This works fine with a s...
OS-Windows
low
Minor
114,054,977
thefuck
"git brnch" never completes. Freezes output.
I am running on windows 7 with git bash. When I run the command "git add -all" then "fuck" I get "no fucks given" When I run the command "git brnch" (as per the example) I get no output. I can ctrl-c to continue. When I turn on the debug flag it appears to stop after "Importing rule: open; took: 0:00:00.000500"
windows
low
Critical
114,285,485
go
cmd/go: go test should be more explicit about test failures
In the best case, the output of `go test github.com/blevesearch/bleve/...` is 88 lines long. If one of the early test fails, the error message can easily be scrolled out and short of looking at `$?` or scrolling back manually, the user has no way to know the test run failed. I propose `go test` prints something visibl...
NeedsDecision
low
Critical
114,363,804
go
cmd/gofmt: Faulty Comment Re-Arrangement in Argument Lists
Hi, I noticed today that gofmt (on the Playground at least) reformats `/* */` comments that are inlined in argument lists inconsistently and in a non-faithful manner to their original ordering in the list: ## Pre-Gofmt `fmt.Println(/* before first */ "first", /* before second */ "second")` [demo](http://play.golang.o...
NeedsInvestigation
low
Major
114,366,807
kubernetes
Static pod Lifecycle Formalization (was: Decide fate of mirror pods)
I would like to open a discussion on how and whether we should continue support mirror pods, given that 1) mirror pods need to be treated differently in multiple places in kubelet, making them brittle, and 2) there are some limitations about mirror pods that may cause confusion (e.g., what to expect if user modifies mi...
priority/backlog,sig/node,kind/feature,lifecycle/frozen,area/pod-lifecycle
high
Critical
114,401,646
rust
println! sometimes panics in drop methods
If you try to println!-debug a drop method in a type which is being used in TLS, you can have problems because the TLS variable which holds the local stdout might already have been destroyed, turning your innocent print into a panic with "cannot access a TLS value during or after it is destroyed". This seems unnecessa...
P-medium,T-libs-api,A-thread-locals,C-bug
medium
Critical
114,442,486
rust
fs::remove_dir_all rarely succeeds for large directories on windows
I've been trying to track this one down for a while with little success. So far I've been able to confirm that no external programs are holding long-standing locks on any of the files in the directory, and I've confirmed that it happens with trivial rust programs such as the following: ``` rust use std::fs; fn main()...
O-windows,E-help-wanted,C-bug,T-libs,A-io
medium
Critical
114,495,567
go
x/tools/cmd/stringer: Gets confused with pointers to C.struct_xxx types.
Save this http://play.golang.org/p/7IHAOsDFqO in `foo.go` and say: ``` stringer -type MyT foo.go ``` Stringer will fail with: ``` stringer: checking package: foo.go:22:2: invalid operation: pfoo (variable of type *invalid type) has no field or method i ``` Stringer works ok with this, though: http://play.golang.org...
Tools
low
Critical
114,495,887
rust
Metadata for DLLs should actually go in the LIB import library on Windows
Since metadata is only needed when building things, but the DLL is needed at runtime, it would be better if the metadata was moved to the LIB import library instead since that is only needed when building things as well. This would save significantly on space when distributing a binary with DLLs.
O-windows,C-enhancement
low
Minor
114,520,835
angular
ViewEncapsulation.None styles bleed into ViewEncapsulation.Native components when siblings
When there are sibling components, one with ViewEncapsulation.Native and the other with ViewEncapsulation.None, the styles that any component stylings are being appended to the shadow root of the one component set to Native. ~~Plunker: http://plnkr.co/edit/huN8xe0S7xH5CUw4B2P6?p=preview~~ **Updated Stackblitz**: h...
type: bug/fix,freq1: low,area: core,core: CSS encapsulation,P3
medium
Major
114,541,254
opencv
the problem of stitching module
I built opencv3.0 with extra module xfeatures2d on win 7 with VS 2013, and then I used the below > # pragma comment(lib, "opencv_core300.lib") > # pragma comment(lib, "opencv_imgproc300.lib") > # pragma comment(lib, "opencv_imgcodecs300.lib") > # pragma comment(lib, "opencv_stitching300.lib") > # pragma comment(lib, "...
bug,priority: normal,affected: 3.4,category: t-api
low
Critical
114,543,494
opencv
"error: (-217) invalid resource handle" when using OpenCV 2.4.11-2.4.x compiled with Cuda 7.5 on second graphic card
This issue only occurs with OpenCV 2.4.11-2.4.x branch compiled with Cuda 7.5 and does not with Cuda 6.5. Each stream and buffers are alloced and page-locked on the correct device with gpu::setDevice. It runs well with Cuda 6.5 on multiple GPUs. However it fails on the first OpenCV kernel call on the second GPU (GPU de...
bug,priority: normal,affected: 2.4,category: gpu/cuda (contrib)
low
Critical
114,707,570
rust
Provide a way of linking libgcc statically
gcc et al provide "-static-libgcc" for platforms where a link to libgcc_s.so is undesirable. I need similar functionality in rustc because the cloud I'm deploying to doesn't have that in its runtime. See issue #29482 for some background. /cc @alexcrichton
A-linkage,T-compiler,C-feature-request
low
Major
114,795,330
youtube-dl
[8tracks] add a flag to return immediately the first 5 playlist items
fetching 8tracks playlists waits for some time to retrieve items which can block for a while (see #7349 for details). It would be nice to have a flag where it return the first 5 playlist items immediately and exits.
request
low
Minor
114,897,420
go
x/build: builders for alternate buildmodes?
For -buildmode=shared on linux/386, @mwhudson's current set of patches would borrow the CX register. This seems reasonable to me, but means that assembly that works under -buildmode=exe will not work under -buildmode=shared (see the discussion on http://golang.org/cl/16385). Should we have a builder that runs the stan...
Builders,new-builder
low
Minor
114,927,638
TypeScript
Inconsistent quick info between interface and namespace declaration
![image](https://cloud.githubusercontent.com/assets/972891/10924083/54d07176-8239-11e5-882f-5c5039621d3a.png) ![image](https://cloud.githubusercontent.com/assets/972891/10924087/58111c46-8239-11e5-98e7-b2b57a809e50.png)
Bug,Help Wanted,Domain: Quick Info
low
Minor
114,950,275
rust
Tracking issue for #[bench] and benchmarking support
This is a tracking issue for the `#[bench]` attribute and its stability in the compiler. Currently it is not possible to use this from stable Rust as it requires `extern crate test` which is itself not stable. Core APIs for benchmarking: * `#[bench]`, which means the function should take a `&mut Bencher` argume...
T-libs-api,B-unstable,C-tracking-issue,Libs-Tracked
medium
Critical
114,952,544
rust
Produce packaging guidelines
Summarize what we've learned into some general guidelines for packagers. Potential topics: - Maintaining independently-bootstrapped Rust compilers. - Packaging Cargo libraries / applications - Generating offline docs re https://internals.rust-lang.org/t/perfecting-rust-packaging-the-plan/2767
P-low,T-infra,C-feature-request
low
Major
115,034,712
opencv
Error running script for WinRT
Hello, I followed this guide: https://github.com/Itseez/opencv/tree/master/platforms/winrt/readme.txt and when I want to execute this command: setup_winrt.bat "WP,WS" "8.0,8.1" "x86,ARM" -b I always get this errors: ``` window.obj : error LNK2019: unresolved external symbol "void __cdecl cvS etModeWindow_WinRT(char c...
bug,priority: low,affected: 3.4,platform: winrt/uwp
low
Critical
115,042,760
ant-design
Ant Design Users 👨🏻‍💻👩🏻‍💻👨🏻‍💻👩🏻‍💻
> :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: :star2: > > **欢迎去知乎回答这个问题:[如何评价 Ant Design 这个项目?](https://www.zhihu.com/question/33629737),说出你的真实开发感受即可。** > > :star2: :star2: :star2: :star2: :s...
🗣 Discussion,gitauto
high
Critical
115,183,224
rust
Tracking issue for `thread_local` stabilization
The `#[thread_local]` attribute is currently feature-gated. This issue tracks its stabilization. Known problems: - [ ] `#[thread_local]` translates directly to the `thread_local` attribute in LLVM. This isn't supported on all platforms, and it's not even supported on all distributions within the same platform (e.g....
A-FFI,T-lang,B-unstable,A-thread-locals,C-tracking-issue,F-thread_local,S-tracking-impl-incomplete
high
Critical
115,184,152
rust
Tracking issue for `log_syntax`, `trace_macros`
The `log_syntax` feature gate allows use of the `log_syntax` macro attribute, and similarly for `trace_macros`. Both are "nasty hacks that will certainly be removed" (according to the reference manual).
T-lang,B-unstable,C-tracking-issue,S-tracking-design-concerns
medium
Major
115,184,366
rust
Tracking issue for `concat_idents`
Tracks stabilization for the `concat_idents` macro. **Update(fmease)**: Please see https://github.com/rust-lang/rust/issues/124225#issue-2255069330 (an alternative to this feature).
A-macros,T-lang,T-libs-api,B-unstable,C-tracking-issue,Libs-Tracked,S-tracking-design-concerns
high
Critical
115,192,931
rust
Tracking issue for `link_llvm_intrinsics`
Tracks ~~stabilization for~~ the `link_llvm_intrinsics` feature, used via `#[link_name="llvm.*"]`. **Edit**: As this is obviously back-end specific, it will most likely never be stabilized.
T-lang,B-unstable,C-tracking-issue,S-tracking-perma-unstable
medium
Major
115,193,095
rust
Tracking issue for the `linkage` feature
Tracks stabilization for the `linkage` attribute.
A-linkage,A-attributes,A-FFI,T-lang,B-unstable,C-tracking-issue,S-tracking-perma-unstable
medium
Critical
115,312,169
go
runtime: print all threads in GOTRACEBACK >= all
Currently, GOTRACEBACK=all is a misnomer. It prints stacks for all goroutines that happen to be non-running or running on the current OS thread, but it does not print stacks for goroutines that are running on other OS threads. This is frustrating. For purely internal reasons, it's currently necessary to set GOTRACEBACK...
NeedsFix,compiler/runtime
low
Critical
115,327,339
rust
Improve MIR match generation so that we more effecitvely rule out inapplicable match-pairs
Once we perform a test -- such as checking a value or a variant -- we then weed out the matches that are invalidated by this test. The current code is no as smart as it could be: for example, if we test and find that a value equals 'c', we ought to be able to rule out that the character also equals 'd'. But, because th...
C-enhancement,T-compiler,A-MIR
low
Minor
115,335,368
rust
Tracking issue for Fn traits (`unboxed_closures` & `fn_traits` feature)
Tracks stabilization for the `Fn*` traits. Random bugs: - [x] https://github.com/rust-lang/rust/issues/45510 – type-based dispatch not working - [ ] https://github.com/rust-lang/rust/issues/42736 – `foo()` sugar doesn't work where you have `&Foo: FnOnce`
T-lang,T-libs-api,B-unstable,B-RFC-implemented,C-tracking-issue,F-unboxed_closures,S-tracking-design-concerns
high
Critical
115,362,366
rust
Tracking issue for `fundamental` feature
This feature flag, part of [RFC 1023](https://github.com/rust-lang/rfcs/pull/1023), is not intended to be stabilized as-is. But this issue tracks discussion about whether _some_ external feature it needed. Perhaps there is a cleaner way to address the balance between negative reasoning and API evolution. See the RFC fo...
T-lang,B-unstable,C-tracking-issue,S-tracking-needs-summary,F-fundamental
medium
Critical
115,375,038
rust
Tracking issue for internal feature `no_core`
The `no_core` feature allows you to avoid linking to `libcore`.
T-lang,B-unstable,C-tracking-issue,S-tracking-needs-summary
medium
Critical
115,375,403
rust
Tracking issue for `box_patterns` feature
Box patterns were gated by [RFC 469](https://github.com/rust-lang/rfcs/pull/469).
T-lang,B-unstable,C-tracking-issue,A-patterns,S-tracking-perma-unstable
high
Critical
115,526,806
rust
Add the GDB pretty-printers to the Windows Rust installation
The pretty printers can be made to work in Windows, as described here: http://stackoverflow.com/questions/33570021/how-to-set-up-gdb-for-debugging-rust-programs-in-windows/33570022#33570022 At a minimum the GDB pretty-printers should be added to the Windows GNU ABI Rust installation, so that they don't have to downloa...
A-debuginfo,O-windows-gnu,T-bootstrap,C-feature-request
medium
Critical
115,533,639
go
doc: Effective Go should use sync.WaitGroup, not dummy channel, for Parallelization example
This is a documentation issue. The section in Effective Go on [parallelization](https://golang.org/doc/effective_go.html#parallel) shows how to use a channel to count goroutine completions. This seems like bad advice for Go learners, since [sync.WaitGroup](https://golang.org/pkg/sync/#WaitGroup) is a more concise alt...
Documentation,NeedsInvestigation
low
Major
115,559,940
rust
Tracking issue for RFC 2532, "Associated type defaults"
This is a tracking issue for the RFC "Associated type defaults" (rust-lang/rfcs#2532) under the feature gate `#![feature(associated_type_defaults)]`. -------------------------- The [associated item RFC](https://github.com/rust-lang/rfcs/pull/195) included the ability to provide defaults for associated types, with...
B-RFC-approved,A-associated-items,T-lang,B-unstable,C-tracking-issue,F-associated_type_defaults,S-tracking-needs-summary
high
Critical
115,572,304
TypeScript
namespace / module: Duplicate declaration & needlessly remove line-breaks
I wonder why TSC re-declare a global var after each namespace or module block. ``` ts namespace OurName { export var isAndroid = true; export var isWinPhone = false; // do something var checkCookies = function() { return true; } } namespace OurName { export var HTML = '<b>hello</b>'; ...
Suggestion,Help Wanted
low
Major
115,630,919
youtube-dl
Feature Request - Add playlist number to metadata
I've been using youtube-dl to download audio playlists. Instead of having to go through and manually add all the track numbers, it would be nice if youtube-dl could automatically add them to the file metadata. (Not sure if this is the correct place to make a feature request, I'm not sure where else to put it.)
request,postprocessors
low
Major
115,640,387
youtube-dl
Document ytsearch
it isn't clear from the documentation how to search youtube using wildcards with regex. for example, as i've tried various regex expressions but youtube-dl complains about providing a URL "ERROR: Unable to download webpage: HTTP Error 404: Not Found (caused by HTTPError()); please report this issue on https://yt-dl.o...
documentation
low
Critical
115,703,110
youtube-dl
Site support request: memritv.org
Could you add support for downloading videos from the video site of MEMRI? Here's a few links to random videos from the site: http://www.memritv.org/clip/en/5148.htm http://www.memritv.org/clip/en/5142.htm http://www.memritv.org/clip/en/5141.htm Note that every or almost every video has also a transcript of the speec...
site-support-request
low
Minor
115,703,516
neovim
API for v:windowid or equivalent
The value of `v:windowid` is not defined. In a terminal emulator, I can use the value of `$WINDOWID` instead, and @equalsraf has just implemented `$WINDOWID` on Neovim-Qt too (see: https://github.com/equalsraf/neovim-qt/issues/64). Perhaps the variable `v:windowid` is superfluous and can be deleted. This issue is some...
needs:decision,api,gui,ui,needs:design
medium
Major
115,715,664
youtube-dl
add learn.infiniteskills.com
please can you add this elearning website learn.infiniteskills.com it will very helpful for everyone thanks
site-support-request,account-needed
low
Major
115,739,931
go
encoding/xml: unexpected behavior of encoder.Indent("", "")
Marshaling xml with prefix and indent set to empty strings results in unindented xml. Tested in Go 1.5.1 darwin/amd64. The following code: ``` go package main import ( "encoding/xml" "fmt" ) type Person struct { XMLName xml.Name `xml:"person"` Id int `xml:"id,attr"` FirstName strin...
NeedsFix
low
Critical
115,884,888
You-Dont-Know-JS
es6 & beyond: ch8, remove `Object.observe(..)`
`Object.observe(..)` has been withdrawn from TC39 proposal.
for second edition
medium
Minor
115,952,078
go
cmd/link: ppc64 (big endian) cgo errors
I've built golang from master with the patches from issue 11184 to get external linking to work with ppc64le. That seems to work well on ppc64le with external linking and cgo. In cmd/dist/build.go, linux/ppc64le is in the cgoEnabled map but linux/ppc64 is not. So the build of golang with the latest patches on ppc64 ...
compiler/runtime
high
Critical
115,959,250
flutter
We should support ideographic, hanging, and mathematical baselines
<a href="https://github.com/Hixie"><img src="https://avatars.githubusercontent.com/u/551196?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [Hixie](https://github.com/Hixie)** _Thursday June 23, 2015 at 19:55_ _Originally opened as domokit/mojo#264 then copied to https://github.com/flutter/en...
c: new feature,engine,a: typography,P3,team-engine,triaged-engine
low
Major
115,959,756
nvm
[Bug] nodejs on FreeBSD may need to be patched
This may be a hard work, I hope not. FreeBSD version via `uname -a`: > FreeBSD vm1 10.1-RELEASE-p19 FreeBSD 10.1-RELEASE-p19 #0: Sat Aug 22 03:55:09 UTC 2015 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 nvm version: ``` $ git -C ~/.nvm status HEAD detached at v0.29.0 nothing to commit,...
OS: FreeBSD / OpenBSD,installing node,feature requests
low
Critical
115,970,200
go
x/net: add Deadline, ReadBuffer, ReadDeadline, WriteBuffer, WriteDeadline getters
Currently there are the following setter functions in the net package for the IPConn, TCPConn, UDPConn, and UnixConn objects: ``` SetDeadline(t time.Time) error SetReadBuffer(bytes int) error SetReadDeadline(t time.Time) error SetWriteBuffer(bytes int) error SetWriteDeadline(t time.Time) error ``` Under the covers, t...
NeedsInvestigation,FeatureRequest
low
Critical
116,009,731
TypeScript
Add "tonicExample" or "tonicExampleFilename" field to package.json
To inform [this,](https://tonicdev.com/npm/typescript) which is linked to from the [npm package page](https://www.npmjs.com/package/typescript) in the right sidebar under ["try it out"](http://blog.tonicdev.com/2015/10/28/npm-plus-tonic.html). I imagine we'd rather the entire experience just be within [the Playground](...
Suggestion,Help Wanted
low
Minor
116,167,242
neovim
syntax: end delimiter of a region highlighted incorrectly
This is a minor graphical bug with an easy workaround, so there’s really no hurry to fix it, but I thought I’d report it anyway. ## Steps to reproduce - `nvim -u NORC +"syntax region Error matchgroup=Error transparent start='b' end='d'"` - Type `iabcde` Note: the problem does not happen if the region and matchgroup ha...
bug-vim
low
Critical
116,253,244
go
x/build: remove redundant [...] on build.golang.org for branches
When you view, for example, the dev.ssa branch on build.golang.org, all commits\* are prefixed with [dev.ssa]. Together with the fact that there's not a lot of space for the commit title, you end up with the build dashboard looking like: [dev.ssa] cmd/compile: ... [dev.ssa] cmd/compile: ... [dev.ssa] cmd/compile: ......
Builders
low
Minor
116,354,040
javascript
React eslint not catching the use of underscore with internal methods
In the [React/JSX Styleguide 'Methods' section](https://github.com/airbnb/javascript/blob/master/react/README.md#methods) it says you shouldn't use `_` to prefix internal methods. However, some of my code contains this convention and it isn't being caught by the linter. I double-checked the eslint rules for react/jsx f...
pull request wanted
low
Minor
116,390,688
go
x/mobile/app: lifecycle events not firing correctly
Hi ! Im having some issues related to lifecycle event. The problem is that, i want to know when an App wants to Quit, but i don't get the corrects events the gist is here : https://gist.github.com/BrianCraig/bb2bb411a202b35c1a88 ### First, im gonna run it on my PC (x86 AMD - default linux mint 17 Quiana cinnamon dist...
mobile
low
Minor
116,415,735
go
x/sys: provide termios.h-like functionality
Go needs a way to flush the stdin before prompt and Scanln. See <a href="https://github.com/odeke-em/drive/issues/157">https://github.com/odeke-em/drive/issues/157</a> for psoible fix for Linux.
NeedsInvestigation
low
Major
116,669,271
kubernetes
Implement dedicated nodes using taints and tolerations
This is really a meta-feature; it can be built from other features that we already have or plan to have. The requirements are - nodes are partitioned into groups - administrator can specify a policy that forces pods meeting particular criteria to only run on machines in one of these groups - optionally, the policy can...
priority/backlog,sig/scheduling,kind/feature,area/admin,lifecycle/frozen
medium
Critical
116,685,837
kubernetes
Apiserver should expose a non-authenticated endpoint to check its health
While setting up k8s in a HA configuration in AWS and configuring an internal elastic load balancer to front the apiservers I noticed that the apiserver does not appear to expose a non-authenticated endpoint that ELB could use to perform an HTTPS health check (it expects a 200 response). That limits the health check t...
priority/backlog,sig/api-machinery,lifecycle/frozen,triage/accepted
medium
Major
116,763,515
nvm
Install script should also update ~/.bash_profile
I was installing nvm on Mac OSX 10.11.1 and ran the install script in the README, which added the following line to my `~/.bashrc`: ``` export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm ``` But when restarting my shell, I got: `-bash: nvm: command not found` I resolved thi...
installing nvm: profile detection,pull request wanted
low
Minor
116,841,266
go
cmd/go: `go install -buildmode=c-shared std` does nothing
Should it? The similar command `go install -buildmode=shared std` works. cc @ianlancetaylor
NeedsInvestigation,GoCommand
low
Minor
116,860,275
kubernetes
Move all mirror pod logic to a single module
Right now we have mirror pods being passed to the pod workers. Removing the mirror pod references scattered in kubelet.go and centralize them in one place brings benefits such as - Easy disabling/enabling of such a feature, if necessary - More readable code - Pod workers no longer need to interact with apiserver - Allo...
priority/backlog,kind/cleanup,sig/node,lifecycle/frozen
low
Major
116,884,806
go
cmd/go, cmd/cgo: repeatable builds on Solaris
Binaries built with "go build" that use cgo or include packages that use cgo contain references to a temporary directory. Multiple builds for the same binary will produce inconsistent results. Simple reproduction: ``` go // foo.go package main // #include <math.h> // #cgo LDFLAGS: -lm import "C" import "fmt" func ...
OS-Solaris,NeedsFix,compiler/runtime
medium
Critical
117,014,359
youtube-dl
Site request: npodoc.nl
npodoc.nl is in some way part of npo.nl, so I expected it to be supported already. However, when I enter for instance http://www.npodoc.nl/live/vipdoc/laura-poitras.html it does not grab all present videos on that site. Videos on npodoc.nl are not available on npo.nl. Would you like to add support for npodoc.nl?
site-support-request
low
Minor
117,148,560
TypeScript
Language service: open Type.id
I am using language service to "traverse" the program, and I would like very much to "remember" which types and symbols I already saw, and to cache my computation results for them. Performance boost _and_ avoiding infinite loops. The compiler very helpfully supplies `id` for `Type`, `Symbol` and `Node`, and it seems t...
Suggestion,Help Wanted,API
low
Major
117,172,135
rust
Tracking issue for allowing overlapping implementations for marker trait
Tracking issue for rust-lang/rfcs#1268. ## Status - [x] Initial implementation: #41309 - [ ] Documentation - [ ] Move to stabilize - [ ] Stabilization PR ## Known bugs - [ ] [cross-crate support lacking?](https://github.com/rust-lang/rust/issues/29864#issuecomment-295907958) - [x] #102360 ## History...
A-trait-system,T-lang,B-unstable,B-RFC-implemented,C-tracking-issue,F-marker_trait_attr,S-tracking-needs-to-bake,T-types,S-tracking-blocked
high
Critical
117,178,138
TypeScript
Language Service: TypeParameter.constraint is lazily calculated, but does not have an accessor function
Because of this, I have to go through this awkward motion every time: ``` typescript function getConstraint( type: ts.TypeParameter ) { // This call will cause the typechecker to resolve properties, as well as a bunch of other information // about the type (such as generic constraints), but we don't actually need ...
Bug,Help Wanted,API
low
Minor
117,187,788
go
net: validate DNSSEC in Go's DNS resolver
DNSSEC is being deployed. We should support it eventually.
NeedsInvestigation
medium
Critical
117,216,989
kubernetes
v2 API proposal "desired vs actual"
This has come up a bunch in a lot of small ways, and my mind keeps coming back to this idea, so I want to write it down. In early early kube API we had `desired` and `actual` (or something like that) structs. Since they were the same struct there were a bunch of things in the struct that were things we didn't want us...
priority/important-soon,area/api,area/app-lifecycle,sig/api-machinery,kind/feature,sig/cli,sig/architecture,lifecycle/frozen,wg/api-expression
medium
Critical
117,304,361
tensorflow
Make TensorFlow compatible with PyPy
I know it's not a priority and will be a long way to get there; but making TF compatible with PyPy woud be super cool. Thoughts?
stat:contribution welcome,type:feature
high
Critical
117,428,157
go
net: more complete DNS stub resolver tests for uncommon scenarios
In working on #12778 I found there is not an easy way to test more uncommon DNS scenarios where tight control of responses and errors is needed. For the pure Go stub resolver consider restructuring things to make this easier, such as with the ability to swap out real TCP/UDP connections for a stub so tight control is ...
NeedsInvestigation
low
Critical