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 |
|---|---|---|---|---|---|---|
172,267,413 | opencv | Bug: Different round/cast orders in implicit Mat type conversion, depending on seemingly unrelated compiler flags | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be pro... | category: core,affected: 3.4,RFC | low | Critical |
172,269,227 | youtube-dl | Site support request [stopgame.ru] | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.08.19**
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] [Search... | site-support-request | low | Critical |
172,289,658 | vscode | Improve editor.trimAutoWhitespace or cursor navigation | Loosing indent position all the time when navigating code. You loose code indent position with both navigating with the mouse or arrow keys (sick of pressing tab to get alignment back or delete then enter to get a new line with the correct indentation, or just start typing from the wrong position and use code format s... | feature-request,editor-core | low | Major |
172,293,323 | rust | Go over all libstd traits and see which of them !/TyNever should implement | E.g. `!` should implement `Default`.
| T-libs-api,C-feature-accepted,F-never_type | low | Minor |
172,311,848 | youtube-dl | Download videos from Plex's servers? | Is it possible?
Thank you in advance. :)
| site-support-request,account-needed | low | Major |
172,323,373 | awesome-mac | Please add LittleIpsum | - LittleIpsum on the Mac App Store || https://itunes.apple.com/us/app/littleipsum/id405772121?mt=12
"The best Latin text generator for OS X. Incredibly quick and lightweight."
| vote | low | Minor |
172,323,567 | awesome-mac | Please add CopyClip | - CopyClip - Clipboard History Manager on the Mac App Store || https://itunes.apple.com/us/app/copyclip-clipboard-history/id595191960?mt=12
"CopyClip is the simplest and most efficient clipboard manager for your Mac. Running discreetly from your menu bar, this app stores all that you have copied or cut in the past, al... | addition | low | Minor |
172,324,801 | rust | Implementation of Index<Foo> prevents indexing arrays by other index types | ``` rust
use std::ops::Index;
enum Foo {
Zero,
One,
Two,
}
impl Index<Foo> for [u8; 3] {
type Output = u8;
fn index(&self, index: Foo) -> &u8 {
unsafe { self.get_unchecked(index as usize) }
}
}
fn main() {
let arr: [u8; 3] = [0, 1, 2];
// OK:
let _ =... | A-type-system,T-compiler,C-bug,A-array,T-types | low | Critical |
172,332,757 | TypeScript | Give a better error message when an import isn't found but a namespace of the same name exists | See #10463.
`foo.d.ts`
``` ts
declare module foo {
// ...
}
```
`bar.ts`
``` ts
import foo = require("foo");
```
`"foo"` won't be found, but if the compiler can resolve an identifier named `foo` to a namespace that uses the `declare module` syntax, we should probably give an error like
```
Cannot find module ... | Bug,Help Wanted,Effort: Moderate,Domain: Error Messages | low | Critical |
172,370,268 | youtube-dl | Site support - oniseptv | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.08.22**
### Before submitting an _issue_ make sure you have:
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://g... | site-support-request | low | Critical |
172,475,567 | go | cmd/compile: should recognize binary package and intrinsify it where possible | The compiler should recognize calls to binary.Reader and binary.Writer where the byte order and type of `data interface{}` are compile-time constants, and based on that "do the right thing".
One candidate for "the right thing" is, for target/source types that contain no padding and for the native byte order, alias a b... | Performance,compiler/runtime | low | Major |
172,490,198 | TypeScript | Warn/error when testing a non-nullable type for null | **TypeScript Version:** 2.0.0
**TL;DR:**
If a project is configured for strict null checks, checking a variable which is typed as non-null is nonsense and could indicate a type mismatch.
**Code:**
Here's a motivating example I experienced:
``` ts
async function someFunc1(): Promise<string | null> {
// do some s... | Suggestion,Awaiting More Feedback | low | Critical |
172,535,692 | rust | incr. comp.: Increase partition granularity via special-casing non-inlined functions | If we put every function into its own codegen unit, we would minimize the amount of functions being re-translated even though they have not changed. The main reason we don't do this, is because it would completely prevent inlining, which in turn has too detrimental an effect on runtime performance.
However, for many f... | C-enhancement,T-compiler,A-incr-comp | low | Major |
172,538,034 | go | runtime: simplify brk_ usage on plan9 | Brad pointed out in [CL 27491](https://go-review.googlesource.com/#/c/27491) that the addr argument to func brk_ is unused. We should remove it, update the assembly argument size on arm, and simplify the calling code. Leaving for someone with a plan9 installation to do and test.
| OS-Plan9,compiler/runtime | low | Minor |
172,566,264 | javascript | Error in 16.1 | Hello,
In 16.1, it says:
> Use braces with all multi-line blocks.
But in the examples, there's a contradiction:
```
// good
if (test) return false;
```
And
```
// bad
function foo() { return false; }
```
The second one shouldn't say 'bad' since it's not multi-line block like the rule says.
| pull request wanted,semver-breaking: guide change,editorial | low | Critical |
172,644,151 | rust | Adding type annotation equivalent to existing type changes code semantics | This piece of code can't compile:
```
fn main()
{
let y = &mut 2i32;
{
let x = y;
*x = 3;
}
println!("{}", y);
}
```
But, if we add the type annotation, it compiles:
```
fn main()
{
let y = &mut 2i32;
{
let x: &mut i32 = y;
*x = 3;
}
println!("{}", y);
... | A-type-system,C-enhancement,E-mentor,T-compiler,T-types | low | Major |
172,685,824 | opencv | StereoBM disparity width reduced problem (SSE2) | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be pro... | bug,category: calib3d,affected: 3.4 | low | Critical |
172,723,324 | TypeScript | Template string downlevel to ES5 escapes more Unicode characters than necessary | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
**TypeScript Version:** 1.8.10
Typesc... | Suggestion,Help Wanted,Experience Enhancement | low | Critical |
172,758,875 | kubernetes | Hung volumes can wedge the kubelet | If you have pods that use something like NFS storage, if the system is unable to read the mounted directory, or unmount it, it is possible to completely wedge the kubelet such that it can't successfully run any new pods that use volumes (which is basically all, if they use secret tokens) until either the storage issue ... | kind/bug,priority/important-soon,area/kubelet,sig/storage,lifecycle/frozen | high | Critical |
172,988,027 | youtube-dl | [LeEco] Download 'Album' related to a video | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.24.1_. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
- [x] I've **verified**... | request | low | Critical |
172,993,029 | go | x/text/search: WholeWord and Exact options are nil | 1. What version of Go are you using (`go version`)?
go1.7
2. What operating system and processor architecture are you using (`go env`)?
linux/amd64
3. What did you do?
https://play.golang.org/p/GNfQa_7pq3
4. What did you expect to see?
-1, -1
5. What did you see instead?
```
panic: runtime error: invalid m... | NeedsInvestigation | low | Critical |
173,032,232 | youtube-dl | [Nico Nico Douga] "Unable to find video URL" error when downloading videos above 100MB | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.08.24.1**
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] [Sear... | account-needed | low | Critical |
173,070,871 | flutter | pop() improvements | A route should have a way to override NavigatorState.pop()'s concept of whether this is the home route, such that popping it quits the app even though there's other routes on the history behind it. For example, so that you can have a login screen, then once you've logged in, you see the main page of the app, and "back"... | c: new feature,framework,customer: fast (g3),f: routes,P3,team-framework,triaged-framework | low | Minor |
173,071,311 | flutter | Give authors more control over initialRoute handling | Imagine you had an app that required visiting a login page before interacting with it. Right now, a user could cheat by launching the app with an intent that sets the defaultRoute.
| framework,customer: fast (g3),f: routes,P3,team-framework,triaged-framework | low | Minor |
173,081,018 | go | cmd/compile: inline reflect.TypeOf (or make it intrinsic) | @randall77 was mentioning the compiler maybe inlining reflect.TypeOf calls the other day. Or somebody was.
Today I ran across the github.com/vmware/govmomi/vim25/types package which has 5769 calls to reflect.TypeOf, populating a map:
```
types.go: t["WillLoseHAProtection"] = reflect.TypeOf((*WillLoseHAProtectio... | Performance,compiler/runtime | low | Major |
173,111,454 | rust | cyclic type "of infinite size" may not be | rustc's error message "cyclic type of infinite size" is produced whenever a type parameter is inferred to refer to the type it's a parameter of, but this does not need to actually result in an infinitely sized type. I think such cyclic types should be allowed, but at minimum the error message should be improved.
For ... | A-type-system,A-diagnostics,T-compiler,C-bug,T-types | low | Critical |
173,138,502 | angular | HttpParameterCodec improperly encodes special characters like '+' and '=' | **I'm submitting a ...**
```
[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
**Current behavior**
Code exemple
```... | breaking changes,freq2: medium,area: common/http,state: has PR,risk: high,state: confirmed,design complexity: low-hanging,P3,risky | high | Critical |
173,192,498 | vscode | Auto hide panel | Similar to behavior in Visual Studio, is there a way we could get the terminal to show/hide automatically? Leaving some sort of tab at the bottom of the screen?
It opens when:
1. User mouses over the tab
2. Something is written to the terminal
It hides when:
1. User clicks outside of the open terminal window.
2. The... | feature-request,layout | high | Critical |
173,306,082 | youtube-dl | Facebook F8 and/or Facebook Videos Needed | Hello,
I need to download:
1. Facebook F8 videos from url: https://developers.facebook.com/videos
2. Facebook videos from url: https://web.facebook.com/FacebookforDevelopers/videos
3. All videos-only(no pics) from url: https://twitter.com/FacebookDevRel/media
Please tell me how can I download them.
| request | low | Minor |
173,319,376 | rust | Constant let binding slower than const | Hello.
I am currently optimizing my [`des`](https://crates.io/crates/des) crate and I found out that using a `let` statement can be significantly slower than using a `const` statement.
For instance, when I run `cargo bench` with the `const` declaration [here](https://github.com/antoyo/des-rs/blob/97031b96ebb2534a8b0bb... | I-slow,C-enhancement,A-codegen,T-compiler,C-optimization | low | Major |
173,457,464 | go | x/tools/cmd/goimports: permission denied causes imports to stop | Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
```
go version go1.7 darwin/amd64
```
1. What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="da... | help wanted,Tools | medium | Critical |
173,491,981 | flutter | AppBar shadow does not extend to the edge of the screen (particularly noticeable during back gesture) | On iOS, when swiping back, you can see a small portion that is missing its shadow. It's especially visible during the back gesture action, because of the contrast. Notice how in the upper left of the shadow, right under the blue app bar that is moving off the page, you see an area that is lighter than the rest. The eff... | framework,f: material design,a: fidelity,a: quality,has reproducible steps,P3,team-design,triaged-design,found in release: 3.19,found in release: 3.20 | low | Major |
173,498,223 | TypeScript | Strange boolean-discriminant narrowing with strictNullChecks off | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
**TypeScript Version:** nightly (2.1.0-... | Bug,Help Wanted,Effort: Moderate | low | Critical |
173,555,092 | TypeScript | Inherited typing for class property initializers | # Problem
Initializing a class member with things like `{ }`, `null`, `undefined`, or `[]` has unexpected behavior.
``` ts
class Base {
favorites = ["red", "blue"];
}
class Derived extends Base {
favorites = [];
constructor() {
this.favorites.push('green'); // Can't push string onto never[], wat?
}
}
```
... | Suggestion,In Discussion | high | Critical |
173,560,819 | TypeScript | Allow skipping some generics when calling a function with multiple generics | Right now in TypeScript it's all or nothing when calling generic methods. You can either skip typing all the generics altogether and they will be inferred from the context (if possible), or you have to manually (re)define all of them. But the reality isn't black and white, there are also shades of gray, where we can in... | Suggestion,In Discussion | high | Critical |
173,561,102 | go | runtime: profile goroutine creation | Most unbounded Go memory leaks I've encountered have been due to goroutine leaks. When diagnosing these leaks, it would be helpful to know what function call stack led to the creation of the goroutines so we can link the goroutines back to the non-stdlib code that created themโ_why_ the goroutine exists, in addition to... | NeedsDecision | low | Major |
173,574,321 | go | x/playground: GOSSAFUNC mode | Maybe with a button to switch it on.
It would be useful for posting issues regarding compiler outputs in discussions.
PS. This is not a bug or feature request regarding programs written in Go so I think it's fine to ignore answering the following questions.
> Please answer these questions before submitting your issu... | NeedsDecision | low | Critical |
173,592,435 | rust | Rustdoc generates docs for hidden methods in impls | I've seen #34025, but in the following case `rustdoc` still generates documentation for `hidden()` in the `impl Bar for Foo` (but as `tymethod` instead of `method`). It works correctly if `hidden()` is also marked as hidden in the trait _definition_.
``` rust
pub struct Foo;
pub trait Bar {
fn test();
fn hidd... | T-rustdoc,A-trait-system,A-impl-trait,C-bug | low | Minor |
173,608,089 | opencv | GRIP: The Graphically Represented Image Processing engine | I would like to share one cool user facing implementation of OpenCV in a nicely bundled up application.
I'm the developer behind [GRIP](https://github.com/WPIRoboticsProjects/GRIP) and would like to share with everyone.
The goal of this project was to build an application that non-experts could use to construct
comput... | RFC | low | Minor |
173,625,218 | rust | redundant E0210 (coherence) after E0120 (blanket Drop impl) | ```
$ cargo script -e 'trait Trait {} impl<T: Trait> Drop for T { fn drop(&mut self) { } }'
Compiling expr v0.1.0 (file:///Users/alex/.multirust/toolchains/beta/cargo/.cargo/script-cache/expr-223e68b0943558e6)
error[E0120]: the Drop trait may only be implemented on structures
--> /Users/alex/.multirust/toolcha... | A-diagnostics,T-compiler,D-verbose | low | Critical |
173,629,807 | youtube-dl | Can't download videos from bbs (plays fine in browser) | ## 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 that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | cant-reproduce | low | Critical |
173,631,794 | go | x/image: packages to render TrueType fonts | github.com/golang/freetype already exists, but its license (the Freetype license) differs from the Go standard library, and code in the stdlib or under golang.org/x cannot depend on out-of-tree code.
I propose to add two new packages in the golang.org/x/image repo that together lets you use TTFs to draw text. There ar... | Proposal,Proposal-Accepted | medium | Critical |
173,643,775 | node | Lexical variable declarations (`let`, `const`) unusable in repl if error thrown during declaration/first assignment | - **Version**: v.6.3.1
- **Platform**: Linux (Ubuntu 14.04)
- **Subsystem**: `repl` (I think)
<!-- Enter your issue details below this comment. -->
```
let s = Set();
```
gives `TypeError: Constructor Set requires 'new'`.
However, after this:
```
s
```
gives `ReferenceError: s is not defined`
and
```
let s = ne... | repl,vm | medium | Critical |
173,672,076 | youtube-dl | [awaan] Add support for login | Hi. Could you add support for awaan.ae videos that require login with password and username?Thanks in advance!
| account-needed | low | Major |
173,680,116 | rust | odd span with unused import generated by macro | I noticed this in a much more complex macro (it was recursive), but I minimized it:
``` rust
macro_rules! m { ($($i:ident)*) => { use $($i)::*; } }
m!(std cmp);
```
```
warning: unused import, #[warn(unused_imports)] on by default
--> /Users/alex/.multirust/toolchains/beta/cargo/.cargo/script-cache/expr-8aedeaeb930... | A-lints,A-macros,C-bug | low | Minor |
173,941,084 | go | doc: document assembly calling convention | We should probably specify the Go calling convention in doc/asm.html, at least to a degree.
Might be especially useful as a reference when we get around to changing it.
@cherrymui @dr2chase @nigeltao
| Documentation,help wanted,NeedsFix | medium | Critical |
173,990,184 | opencv | medianBlur slowness with grayscale images | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be pro... | bug,category: core,affected: 3.4 | low | Critical |
174,006,136 | youtube-dl | --embed-thumbnail crashes the program if the file has the wrong type | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.08.28**
### Before submitting an _issue_ make sure you have:
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://g... | request,bug | low | Critical |
174,096,367 | go | cmd/compile: move most (*Type).IsFoo methods to (EType).IsFoo | In type.go, we have a bunch of helper methods like IsInteger, IsSigned, IsPtrShaped, etc. that currently can only be used on specific types (i.e., `*Type`), but many of these are really properties of type kinds (`EType`). This is annoying in parts of the compiler where we don't care about type identity anymore, but wo... | NeedsFix,early-in-cycle | low | Minor |
174,100,288 | rust | "mod lib" in lib.rs produces incorrect error message | lib.rs:
```
mod a1;
mod lib;
```
a1.rs - empty file.
Error:
```
error: cannot declare a new module at this location
--> src/lib.rs:1:5
|
1 | mod a1;
| ^^
|
note: maybe move this module `lib` to its own directory via `lib/mod.rs`
--> src/lib.rs:1:5
|
1 | mod a1;
| ^^
note: ... or maybe `use` the ... | A-diagnostics,A-parser,T-compiler,C-bug | low | Critical |
174,108,532 | flutter | "flutter" tool poorly handles there being a file called "build" in the project directory | If a project directory contains a file named 'build', there will be a name collision with Flutter's build directory.
To my understanding, there also exists a system-level configuration to specify the name of the build directory, but this would be impractical to configure on a team with a large number of people switchi... | tool,a: quality,P3,team-tool,triaged-tool | low | Major |
174,111,968 | opencv | Python binding for `findChessboardCorners` adds an extra dimension | ##### System information (version)
- OpenCV => 3.1.0
- Operating System / Platform => OS X 10.11.6
- Compiler => clang 7.3.0
- Python => 3.5.2
##### Detailed description
Calling `cv2.findChessboardCorners` returns a 3-dimensional array, including a redundant empty dimension.
This behavior does not exist in the C++ A... | RFC | low | Minor |
174,296,657 | angular | UseCapture:true event handlers | **I'm submitting a ...** (check one with "x")
```
[ ] bug report => search github for a similar issue or PR before submitting
[X ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
**Current behavi... | feature,freq1: low,area: core,core: event listeners,P3,feature: under consideration | high | Critical |
174,317,615 | vscode | Remove whitespace and indent to the right spot when the line has more whitespace than necessary | Extracted from https://github.com/Microsoft/vscode/issues/2938#issuecomment-235987405
---
From @chrmarti
Works, except when there is already the full indentation (or more) on the line. It would make sense to make it work the same way in that case:

- OS Version: Linux x64 4.4.0-36-generic, Ubuntu 16.04
Follow up from #1636
I think we need to take a step back and take a good look at editor selection colors. Currently there are so many states, it's... | feature-request,editor-theming | medium | Major |
174,409,926 | go | x/net/websocket: fails to Receive a single frame sent in chunks from Browser | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.5 to 1.7
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/matthew/cod... | NeedsInvestigation | low | Critical |
174,418,188 | rust | Confusing error message when traits from different modules have the same name | This error looks pretty bizarre, right? Especially the "help:" message, which is clearly not helpful at all. (This is from the current nightly.)
```
error[E0277]: the trait bound `B: Basics` is not satisfied
--> src\collision_detection\simple_grid.rs:115:1
|
115 | pub fn insert_predictors <B: Basics, Settings: ... | C-enhancement,A-diagnostics,T-compiler,D-confusing,D-invalid-suggestion,S-has-mcve | low | Critical |
174,484,555 | angular | Order of ngModel & onModelChange | **I'm submitting a ...** (check one with "x")
```
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
**Current behavio... | workaround1: obvious,freq1: low,area: core,core: inputs / outputs,type: confusing,P4 | medium | Critical |
174,573,735 | flutter | Would like the option to have the Drawer behind the AppBar on tablets | The Drawer overlays the Appbar, that causes that the first item of the drawer is hidden under the statusbar.
I think there should be at leat an option to place the Drawer under the appbar.
| c: new feature,framework,f: material design,a: tablet,P2,team-design,triaged-design | low | Major |
174,775,815 | rust | Mark dropck-related borrow errors explicitly | Today you can use the key phrase โnote: reference must be valid for the block suffixโ... to get reminded that a borrow error is related to dropck. This could be improved to explicitly mention dropck rules or put the error message in that context in some way.
cc @pnkfelix
| A-diagnostics,A-destructors,A-borrow-checker,T-compiler | low | Critical |
174,784,598 | vscode | Debug console architecture | This item is intended as a discussion for the future of the debug console. Currently we use the tree to represent all elements in the debug console. This has worked well thus far but has certain limitations. The benefit of using the tree is that we can easily render complex elements - the ones that have children. The t... | feature-request,debug | medium | Critical |
174,799,511 | go | x/crypto/scrypt,x/crypto/argon2: add high-level APIs | _Summary_: The x/crypto/scrypt package has a very simple API that puts the onus of figuring out salt generation and sensible N/r/p values on the package user. We should attempt to mirror the bcrypt packages' API and provide sensible defaults.
_Details_:
- Add a `GenerateFromPassword` function that generates output in ... | Proposal-Accepted,NeedsFix,Proposal-Crypto | medium | Critical |
174,815,540 | rust | Performance left on the table? | I've been playing with Rust optimizations today and discovered something curious: it looks like LLVM `opt` does a better job at optimizing Rust IR than `rustc`:
``` sh
set -v
LINK=`rustc n_body.rs -O -o n_body-rustc -Zprint-link-args`
rustc n_body.rs --emit=llvm-ir -o n_body.ll #-O
opt n_body.ll -O3 -S -o n_body-opt... | A-LLVM,I-slow,C-enhancement,T-compiler,C-optimization | low | Major |
174,821,410 | go | cmd/compile: use common ancestor blocks in CSE? | ``` go
package x
var p *int
func f(b bool) int {
if b && *p == 0 {
return 0
}
return *p
}
```
The load `*p` occurs regardless of the value of b. That is, the compiler should treat this as equivalent to:
``` go
package x
var p *int
func f(b bool) int {
i := *p
if b && i == 0 {
r... | Performance,compiler/runtime | low | Major |
174,837,849 | TypeScript | compilerOptions.paths to support relative and absolute paths | <!-- BUGS: Please use this template. -->
**TypeScript Version:** 2.0.2
**Code**
``` ts
{
"compilerOptions": {
"paths": {
"./moment": ["node_modules/moment/moment.d.ts"],
"/foo/bar/baz": [ "some/other/path/for/compiler"]
}
},
```
**Expected behavior:**
I expect (need) to be able to redirect ... | Suggestion,Awaiting More Feedback | low | Critical |
174,857,445 | flutter | Widget test with await is hanged when not using `runAsync` instead of showing error/warning message | ```
import "dart:async";
import "package:flutter_test/flutter_test.dart";
void main() {
Future future;
setUp(() {
future = new Future.value();
});
testWidgets("awaiting future with value from setUp works",
(WidgetTester tester) async {
await future;
});
}
```
```
flutter_test_async$ flutter... | a: tests,framework,a: quality,a: error message,has reproducible steps,P3,team-framework,triaged-framework,found in release: 3.16,found in release: 3.19 | medium | Critical |
174,861,083 | godot | Auto-completion not working when using NodePath from exported variable. | When using:
```
export(NodePath) var node
func some_func():
get_node(node).node_method()
```
Auto-completion in Script Editor is not working while when using get_node("node_path_to_node") it is.
| enhancement,topic:gdscript,topic:editor,usability | low | Major |
174,899,060 | rust | Code only compiles with try!, not with question mark syntax | The following code only compiles with `try!`, not when using the `?`-syntax instead:
``` rust
#![feature(question_mark)]
fn foo() -> Result<Vec<u32>, std::num::ParseIntError> {
let s = &["42", "1337"];
let parsed: Vec<u32> = try!(s.iter().map(|str| {
let val = str.parse::<u32>()?;
Ok(val + 1... | C-enhancement,T-compiler,A-inference | low | Critical |
174,927,135 | rust | [rustbuild] cross-compiling to windows-gnu fails | ```
$ python2 src/bootstrap/bootstrap.py --stage 1 --step libstd -j8 --target=i686-pc-windows-gnu
Finished debug [unoptimized + debuginfo] target(s) in 0.0 secs
Building stage0 std artifacts (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu)
Finished release [optimized] target(s) in 0.0 secs
Building stage0... | T-bootstrap,C-bug,S-needs-info | low | Critical |
174,941,344 | flutter | Material "Durations" class? | Not a bug, just a suggestion! Happy to help implement it as well, if it's something you would be interested in :)
I really enjoy the `Icons`, `Colors`, etc classes available in the `material` package. They helped me bust out a quick, decent looking prototype in no time at all!
I also started using the `AnimatedOpacit... | c: new feature,framework,f: material design,P3,team-design,triaged-design | low | Critical |
174,949,096 | rust | Specialization influnces inference | ## STR
``` Rust
#![feature(specialization)]
struct My<T>(T);
trait Conv<T> {
fn conv(self) -> T;
}
impl<T> Conv<T> for My<T> {
default fn conv(self) -> T { self.0 }
}
#[cfg(broken)]
impl Conv<u32> for My<u32> {
default fn conv(self) -> u32 { self.0 }
}
fn main() {
let x = My(0);
x.conv() + 0i3... | A-trait-system,T-compiler,A-specialization,A-inference,C-bug,requires-nightly,F-specialization | low | Critical |
174,958,004 | opencv | bring back cv::convertScale | It was replaced with `Mat::convertTo` which is not accessible from the python bindings.
| feature,category: python bindings,affected: 3.4 | low | Major |
174,966,874 | youtube-dl | Site request: (doc.)rt.com | Please add rt.com (and/or doc.rt.com and other subdomains) to youtube-DL.
Sample link is here: https://doc.rt.com/filmy/chernij-oktyabr-93-go/
The log of (not)downloading:
C:>youtube-dl.exe -F -v https://doc.rt.com/filmy/chernij-oktyabr-93-go/
[debug] System config: []
[debug] User config: []
[debug] Command-line args:... | site-support-request | low | Critical |
174,983,277 | You-Dont-Know-JS | Types & Grammar Ch 3 - RegExp.prototype is an object as of ES6 | The code below throws an error because RegExp.prototype is an ordinary object as of ES6. I think it would make sense to either change the example or note that this code won't work anymore if no regex is passed in for rx.
```
function isThisCool(vals,fn,rx) {
console.log(vals, fn, rx)
vals = vals || Array.pro... | for second edition | medium | Critical |
175,003,882 | rust | Windows Defender goes nuts when running rustdoc on some projects | `rustdoc` gets pretty much completely stalled on some projects by Windows Defender on Windows 10. `rustdoc` cpu usage drops to 0%, while `MsMpEng.exe` uses 100% on a single core. This issue seems to have popped up only a few weeks ago.
| O-windows,T-rustdoc,C-enhancement | low | Major |
175,062,592 | three.js | IES Light Support | ##### Description of the problem
IES lights are a standard for specifying the illumination intensity in a specific direction from a light. It allows one to use IES profiles to specify real-world light bulbs in a scene and get perfect results. It is used all the time for architectural rendering. We should try to get... | Enhancement,Bounty | medium | Major |
175,083,503 | youtube-dl | [facebook] Add support for user videos | Hello, is it possible to recover all the videos from a facebook page? It is already possible to do this on Youtube and Dailymotion.
Youtube-dl already suppporte downloading and retrieval of information on a single video.
The videos on facebook link are:
- https://www.facebook.com/USERNAME/videos/
- https://m.facebook.... | request | low | Minor |
175,159,846 | opencv | stereoRectify returns too narrow FoV | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be pro... | bug,category: calib3d,affected: 2.4,affected: 3.4 | low | Critical |
175,224,532 | go | cmd/gofmt: Anonymous field could be placed in the 2nd column of a struct | ### What version of Go are you using (`go version`)?
`go version go1.7 windows/amd64`
### What operating system and processor architecture are you using (`go env`)?
```
set GOARCH=amd64
set GOBIN=
set GOEXE=.exe
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows
set GOPATH=C:\PROJECTS\Go
set GORACE=
set GOROO... | NeedsInvestigation | low | Major |
175,311,249 | TypeScript | Add spread/rest higher-order types operator | The spread type is a new type operator that types the [TC39 stage 3 object spread operator](https://github.com/sebmarkbage/ecmascript-rest-spread). Its counterpart, the difference type, will type the proposed object rest destructuring operator. The spread type `{ ...A, ...B }` combines the properties, but not the call ... | Suggestion,Revisit | high | Critical |
175,371,986 | opencv | Ninja-based build fails on Windows when building with CUDA | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 12.0
##### Detailed description
I am running into problems building OpenCV 3.1.0 with CUDA support on Windows. The problem seems to stem from the path to the CUDA libraries having spaces in it... | bug,priority: low,category: build/install,category: gpu/cuda (contrib) | low | Critical |
175,382,196 | flutter | DropDown have the ghost of a SizeObserver inside them | The way we handle the initial scroll offset means that we take two frames to render a dropdown. We should be able to compute the scroll offset at layout time and set it then, before paint, rather than requiring a loop through build via scrollTo().
See also https://github.com/flutter/flutter/issues/5750 about making Dr... | framework,f: material design,c: performance,perf: speed,P2,team-design,triaged-design | low | Minor |
175,382,620 | youtube-dl | Site support request for VoyeurWeb | ## 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 that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | site-support-request,nsfw | low | Critical |
175,416,868 | youtube-dl | Possibility of changing the project license | _So I know this is going to be a controversial suggestion, and please take the filing of this issue as just that, a suggestion._
tl;dr - The current public domain license causes licensing issues as well as contributing issues that could be fixed with something like Apache. Adopting another license is a trivial amount... | request,bug | medium | Critical |
175,421,969 | opencv | HIGHGUI ERROR: V4L/V4L2: VIDIOC_S_CROP | <!--
i am running code for face detection and i got this error :
HIGHGUI ERROR: V4L/V4L2: VIDIOC_S_CROP
Traceback (most recent call last):
File "web.py", line 16, in <module>
faces = face_cascade.detectMultiScale(gray, 1.3
find the attachment
-->
[threading.tar.gz](https://github.com/opencv/opencv/files/45841... | incomplete | low | Critical |
175,443,980 | go | x/exp/shiny: value of event/key.Event.Rune inconsistent across platforms while control key is pressed | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.7 linux/amd64
go version go1.7 windows/amd64
### What did you do?
Open a shiny window, log key events received, press ctrl+C on the window.
### What did you expect to see?
I expecte... | NeedsDecision | low | Major |
175,521,282 | go | cmd/cgo: support clang on Windows | What version of Go are you using (go version)?
go version devel +0cff219 Wed Sep 7 10:43:13 2016 +0000 windows/amd64
What operating system and processor architecture are you using (go env)?
Windows 10 / AMD64
What did you do?
I used CGO with Clang for Windows 3.8.1 (http://llvm.org/releases/3.8.1/LLVM-3.8.1-win64.... | help wanted,OS-Windows,NeedsFix,compiler/runtime | high | Critical |
175,536,431 | TypeScript | [Proposal] Display all properties (inherited or not) of a given class (in TypeScript) | _From @yahiko00 on September 4, 2016 21:56_
Visual Studio Code is a fantastic tool and I am really impressed by all its features despite being quite young.
There is a feature that does not still exists in VS Code which could be really convenient when we are forced to deal with big inheritance hierarchies.
This propo... | Suggestion,Needs Proposal,VS Code Tracked | medium | Critical |
175,560,494 | opencv | Executable download differs from build. | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2013
##### Detailed description
Downloading the executable from opencv.org and installing provides OpenCV 3.1 with a different directory structure then when building from source, the opencv_wo... | incomplete | low | Minor |
175,610,408 | go | cmd/compile: detect call trees that can be marked NOSPLIT | CL 24814 contains a minor optimization for 386/amd64: Ignore a few common runtime functions that take no arguments when deciding whether a function is a leaf function and is thus eligible for being marked NOSPLIT and thus having no function prolog.
Keith suggested some ways during code review to make this analysis muc... | Performance,compiler/runtime | low | Minor |
175,627,366 | flutter | Path.arcTo doesn't draw anything if its angles add up to a multiple of 2*PI | framework,d: api docs,P3,team-framework,triaged-framework | low | Minor | |
175,679,093 | opencv | highgui error when cross compiling to mips architecture (MT7688) linkit smart 7688 device from ubuntu 14.04 | **_### Same Error when compiling with all versions of opencv.
Currently using opencv 2.4.11 version.
After running "cmake-gui" command and configuring the required libraries.Then when running the "make" command i am getting the following error.
By skipping highgui library i am able to compile opencv.But i require hi... | wontfix | low | Critical |
175,742,062 | TypeScript | Support property decorators for shorthand constructor-parameter syntax | **TypeScript Version:** 2.0.2
**Code**
I'm taking advantage of shorthand property declarations syntax via constructor.
The code below contains a problem, it won't work as expected for `class City`, it such case typescript will treat `PropertyDecorator` as `ParameterDecorator`, there is no way to supply both `Property... | Bug | medium | Major |
175,750,834 | vscode | Feature request: 'Ignore comments' checkbox in the 'Find' dialog | Wide popularity of the embedded documentation conventions like JSDoc and C#'s XML comments leads to a situation where comments often constitute the bigger part of a source file (e.g. look at the source of [angular.js](https://unpkg.com/angular/angular.js): the whole API documentation is there!). This abundance of comme... | feature-request,search,editor-find | high | Critical |
175,803,961 | angular | Add readonly to FormControl formstate | **I'm submitting a ...** (check one with "x")
```
[ ] bug report => search github for a similar issue or PR before submitting
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
Currently there i... | feature,state: Needs Design,freq2: medium,area: forms,Accessibility,feature: under consideration | high | Critical |
175,848,729 | go | cmd/compile: make algs content-addressable | When we generate algs, we name them after the types they operate on. However, all that matters to the alg is the structure of the type. Equality and hashing is the same for `struct { A [2]int64}` and `struct { B [2]int64 }`. I took an initial stab at this in [CL 19842](https://go-review.googlesource.com/c/19842/) but i... | binary-size,compiler/runtime | low | Major |
175,852,487 | go | cmd/compile: reuse algs for [N]T arrays | For arrays [N]T where T is not a pure memory type, we currently generate separate algorithms for each distinct value of N. Instead, we could emit simple stub algs that load N into a register/argument, and then jump to a common []T implementation.
Unclear if this shows up often enough in practice to be beneficial thou... | binary-size,compiler/runtime | low | Minor |
175,884,783 | You-Dont-Know-JS | ES6 & Beyond: default params truncate function length | 
| for second edition | medium | Minor |
175,885,210 | You-Dont-Know-JS | ES6 & Beyond: default params have `this`, `arguments`, etc | 
| for second edition | medium | Minor |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.