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 |
|---|---|---|---|---|---|---|
250,462,294 | rust | struct pass-by-value failing on SPARC | There are a handful of testsuite failures on SPARC that seem to be related, and they have to do with passing structs by value into C. Although in at least one case (`extern-fn-struct-passing-abi`), the C code isn't getting the right values (but there it's a floating-point value), in the integer case Shawn and I have d... | A-codegen,A-FFI,I-unsound,O-SPARC,C-bug,A-ABI | low | Critical |
250,483,611 | go | proposal: regexp: Optimize fixed-length patterns | The `regexp` package has 3 different matchers (NFA, onepass, backtrack). One of them is selected depending on the pattern.
I suggest adding a 4th matcher optimized for fixed-length patterns like `a.ab$` on strings.
I wrote a [proof-of-concept implementation](https://github.com/sylvinus/regexp-bypass) which provides... | Performance,Proposal,Proposal-Hold | medium | Major |
250,561,913 | angular | Input element's value attribute is not set | ## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ X ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Feature request
[ ] Documentation issue or requ... | feature,state: Needs Design,freq2: medium,area: forms,feature: under consideration | medium | Critical |
250,595,197 | TypeScript | Improve CSSStyleDeclaration typings | Not every string should be allowed in properties of the `CSSStyleDeclaration` interface, such as `display`, `overflow`, etc. The [TypeStyle](https://github.com/typestyle/typestyle/) project seems to have put quite some effort into this already, from which _inspiration_ could be taken. | Suggestion,In Discussion,Domain: lib.d.ts | medium | Major |
250,597,778 | axios | Requests fully buffered by default | #### Summary
By default, when making a streaming request using Axios setting data to a stream, the request is fully buffered. E.g. if you use Axios to send a 10GB file over a network using a file stream, it will consume 10GB of RAM, minimum. This is due to the default behaviour of maxRedirects, which is to allow red... | state::triage | low | Major |
250,617,123 | go | proposal: permit iota, omission of init expressions in var declarations | This was discussed very early in the language design, at the same time when we also introduced iota for constant declarations: Permit iota and the omission of initialization expressions not only in constant but also variable declarations. For instance, this would permit code like:
```
var (
mercury = NewPlanet(i... | LanguageChange,Proposal,LanguageChangeReview | medium | Critical |
250,666,295 | javascript | Please explain using inline styles comment about expensive stylesheets | The [css-in-javascript page](https://github.com/airbnb/javascript/tree/master/css-in-javascript) states
* Use inline styles for styles that have a high cardinality (e.g. uses the value of a prop) and not for styles that have a low cardinality.
> Why? Generating themed stylesheets can be expensive, so they are bes... | question | low | Minor |
250,680,952 | rust | "The following implementations were found" should also mention the trait bounds. | Test case:
```rust
struct Index;
fn iterate(s: std::collections::HashSet<Index>) {
for _ in s {}
}
```
This errors with:
```
error[E0277]: the trait bound `std::collections::HashSet<Index>: std::iter::IntoIterator` is not satisfied
--> src/main.rs:3:5
|
3 | for _ in s {}
| ^^^^^^^^^^... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
250,688,342 | go | x/tools/cmd/goimports: support gofmt option to simplify code | ```
go version go1.8.3 darwin/amd64
```
Using `goimports` as of https://github.com/golang/tools/commit/84a35ef54dff3c5596983e180ec10919fc432242
The `goimports` command handles import fixing and `gofmt` code formatting. It does not, however, implement the code simplification option `-s`.
This means that `goim... | Tools | medium | Major |
250,712,698 | rust | Precision for debug formatting works with empty tuple, but not other things (odd inconsistency) | It may be intentional that precision doesn't work with debug formatting (only with display), but this inconsistency is odd.
```rust
println!("{:?}", ()); // prints '()'
println!("{:.0?}", ()); // prints ''
println!("{:.1?}", ()); // prints '('
// In all of the below, the precision specifier has no effect at al... | T-libs-api,C-bug,A-fmt | low | Critical |
250,720,341 | puppeteer | Question: How do I get puppeteer to download a file? | Question: How do I get puppeteer to download a file or make additional http requests and save the response? | feature,upstream,confirmed | high | Critical |
250,734,072 | react | The fake event trick for rethrowing errors in DEV fires unexpected global error handlers and makes testing harder | I'm trying to make use of componentDidCatch in the React 16 beta. I already had a global window error handler which was working fine, but it unexpectedly catches errors that I would expect componentDidCatch to have handled. That is, component-local errors are being treated as window-global errors in dev builds.
The ... | Component: DOM,Type: Discussion | high | Critical |
250,745,342 | kubernetes | Move selector immutability check to validation after v1beta1 retires | The check for selector immutability is located at `PrepareForUpdate` functions of `deploymentStrategy`, `rsStrategy` and `daemonSetStrategy`. We are not able to have the check at validation before _v1beta1_ API version retires due to breaking change to some tests (discussed in this closed [PR](https://github.com/kubern... | kind/bug,sig/apps,help wanted,lifecycle/frozen,good first issue | low | Major |
250,773,566 | neovim | Lua: vim.firstline, vim.lastline | Currently the only command actually supporting `[range]` is `luado`, but documentation (copied from Vim) states that `:lua` and `:luafile` also should, by storing the range in `vim.firstline` and `vim.lastline`. In the current state other commands ignore range completely.
Regarding the implementation I currently mor... | compatibility,complexity:low,lua | low | Major |
250,796,070 | pytorch | Autograd test failure on ppc64le | After building PyTorch on IBM's ppc64le architecture I ran into test failure in test_autograd.py. The script segfaults when exceptions are being handled on the following lines with the signal SIGABRT:
```
self.assertRaises(RuntimeError, lambda: w.backward(torch.ones(5, 5))):810
self.assertRaises(RuntimeError, lambda... | triaged,module: POWER | low | Critical |
250,810,580 | go | debug/macho: add missing load commands | There are nearly 50 load commands. Current code supports few of them.
| NeedsFix | low | Critical |
250,840,238 | vscode | Monolithic structure, multiple project settings | I was wondering if it is possible for VSCode to pick up on multiple `.vscode/settings.json`
For instance if you are working in an monolithic environment with multiple smaller projects inside it, and each have their own `.vscode/settings.json`.
Can VSCode pickup on that, and apply the settings from the smaller proje... | feature-request,config | high | Critical |
250,846,906 | opencv | Adjusting Viz camera parameters yields stuttering effect | ##### System information (version)
- OpenCV => 3.3
- Operating System / Platform => Ubuntu 16.04 (x86-64)
- Compiler => g++ 5.4.0
##### Detailed description
Adjusting the intrinsic camera parameters of a `Viz3d` window yields a strange stuttering effect. For example, when adjusting the focal length, there is a... | bug,category: viz | low | Critical |
250,893,518 | angular | ExpressionChangedAfterItHasBeenCheckedError is thrown by ngModel.invalid above the ngModel control declaration | ## I'm submitting a...
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ X] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit suppor... | type: bug/fix,freq3: high,area: forms,hotlist: google,state: confirmed,forms: change detection,P3 | medium | Critical |
250,940,638 | angular | `*` token not working in AnimationBuilder | ## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Feature request
[ ] Documentation issue or reques... | type: bug/fix,area: animations,freq2: medium,P3 | low | Critical |
250,996,436 | rust | Is automatic insertion of type inference placeholders possible? | Would it be possible to automatically insert `_` type inference placeholders where none (or not enough) type placeholders are provided, or does this conflict with any other tokens the parser has to deal with?
i.e. can `["foo", "bar"].iter().collect::Vec::()` be turned into `["foo", "bar"].iter().collect::Vec<_>::()`... | T-lang,C-feature-request | low | Minor |
250,997,472 | flutter | LocalHistoryEntry api docs are sparse | It's just a one liner:
https://docs.flutter.io/flutter/widgets/LocalHistoryEntry-class.html
"An entry in the history of a LocalHistoryRoute."
Which links to a slightly larger description in LocalHistoryRoute.
Maybe this just needs to link to a navigation tutorial? @alardizabal expressed some confusion attemp... | framework,d: api docs,f: routes,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-framework,triaged-framework | low | Minor |
250,998,311 | rust | Type mismatch with generic parameter returns less than helpful errors | When a type does not match a generic parameter (I'm not sure if it's treated differently if it's because a generic constraint failed or because a previous usage dictated a particular variant of that generic), the resulting error message is not helpful because it seems to indicate that everything is OK.
As an example... | A-type-system,C-enhancement,A-diagnostics,T-compiler,A-impl-trait,WG-diagnostics,A-suggestion-diagnostics,T-types | low | Critical |
251,022,691 | go | proposal: spec: permit eliding the type of struct fields in nested composite literals | > Within a composite literal of array, slice, or map type T, elements or map keys that are themselves composite literals may elide the respective literal type if it is identical to the element or key type of T. Similarly, elements or keys that are addresses of composite literals may elide the &T when the element or key... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
251,030,631 | godot | Blend shapes glitches in the event that the node is duplicated | **Operating system or device - Godot version:**
Ubuntu16.04, Godot3.0 Alpha1
**Issue description:**
The change in the form keys of the mesh is spoiled, in the event that the node is duplicated.
**Steps to reproduce:**
[Video Bug shape key.flv.zip](https://github.com/godotengine/godot/files/1232221/Video.Bug.sh... | bug,topic:editor,confirmed | low | Critical |
251,032,224 | go | proposal: spec: lightweight anonymous function syntax | Many languages provide a lightweight syntax for specifying anonymous functions, in which the function type is derived from the surrounding context.
Consider a slightly contrived example from the Go tour (https://tour.golang.org/moretypes/24):
```go
func compute(fn func(float64, float64) float64) float64 {
retu... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
251,034,966 | TypeScript | Seemingly wrong arguments object when both es6 and commonjs options are present | **TypeScript Version:** 2.4.2
**Code**
```ts
export const foo = (bar: number) => {
console.log(arguments)
}
```
**Expected behavior:**
The code either produces errors or prints the arguments object of `foo` consistently in all targets and module types
**Actual behavior:**
- When the module is... | Bug | low | Critical |
251,036,542 | TypeScript | Need way to express hybrid types that are indexable for a subset of properties | **Edit by @DanielRosenwasser**: This might be thought of as a "rest index signature" or a catch-all index signature.
__________
This is a feature request.
**TypeScript Version:** 2.4
**Code**
```ts
interface CSSProperties {
marginLeft?: string | number
[key: string]: CSSProperties
}
```
Base... | Suggestion,Awaiting More Feedback | high | Critical |
251,038,341 | youtube-dl | [Bet] Only part of the video is downloaded | FastHub doesn't support issue templates, sorry. I'm using the latest version and have searched for existing issues.
Log:
```
[debug] System config: []
[debug] User config: ['-f', 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best', '--write-sub', '--sub-format', 'srt/ssa/ass/vtt/dfxp/ttml/best', '--convert-sub... | tv-provider-account-needed | low | Critical |
251,062,173 | flutter | showOnScreen should only scroll if new offset is within bounds | In accessibility mode, if showOnScreen [1] calculates an offset that is outside of the minExtent and maxExtent of the scrollable, we still attempt to scroll. This results in an overscroll animation, which is misplaced in a11y mode. Instead, if scrolling is not possible, nothing should happen.
Related: https://githu... | framework,a: accessibility,f: scrolling,customer: mulligan (g3),P2,team-framework,triaged-framework | low | Major |
251,066,083 | TypeScript | Error inferring types of promise function | **TypeScript Version:** nightly (Version 2.5.0-dev.20170816)
**Code**
(based on `DefinitelyTyped/types/bluebird/index.d.ts`)
```ts
declare function props<K, V>(x: PromiseLike<Map<K, PromiseLike<V> | V>>): Promise<Map<K, V>>;
declare const input: Promise<Map<number, Promise<string>>>;
const out: Promise<Map<n... | Bug,Has Repro | low | Critical |
251,080,150 | pytorch | ReduceLROnPlateau with a naive Backtracking | Is it possible to implement a simple backtracking for the `ReduceLROnPlateau` module?
That is, store the best model coefficients and reload it upon rate reduction.
In my experiments, this helps speed up learning, though it might be expensive for very large models.
cc @vincentqb | feature,module: optimizer,triaged | low | Major |
251,190,006 | flutter | Should be possible to indicate to the refresh indicator that a reload is in progress. | There is presently no clean way to create a RefreshIndicator which is already visible.
How creating this might look:
```dart
new RefreshIndicator(child: widget, onRefresh: refreshAction, refreshing:true)
``` | c: new feature,framework,f: material design,customer: crowd,c: proposal,P3,team-design,triaged-design | medium | Critical |
251,243,195 | opencv | resizeWindow is a few pixels off with WINDOW_GUI_EXPANDED | ##### System information (version)
- OpenCV => 3.3
- Operating System / Platform => Ubuntu 16.04 (x86-64) with QT 5
- Compiler => g++ 5.4.0
##### Detailed description
`resizeWindow` supposedly (http://docs.opencv.org/3.3.0/d7/dfc/group__highgui.html#ga9e80e080f7ef33f897e415358aee7f7e) resizes so that
> [t]h... | bug,category: highgui-gui | low | Critical |
251,278,364 | pytorch | "Shared memory manager connection has timed out" | This _seems_ to be a new error as of 0.2.0. I'm using a `torch.multiprocessing` Pool via `pool.map`.
```
Process ForkPoolWorker-5:
Traceback (most recent call last):
File "/home/wwhitney/anaconda3/lib/python3.6/multiprocessing/process.py", line 249, in _bootstrap
self.run()
File "/home/wwhitney/anaconda... | needs reproduction,module: multiprocessing,triaged | low | Critical |
251,287,437 | flutter | Make flutter inspector accessible | The flutter inspector does not currently support accessibility.
It isn't clear exactly what accessibility support for the inspector should look like. For example, if the semantics debugger is made accessible perhaps it should be used when using the inspector in accessibility mode. | framework,a: accessibility,f: inspector,P3,team-framework,triaged-framework | low | Critical |
251,303,250 | youtube-dl | [alarabiya.net] Site support request | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.08.18**
- [x] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] ... | site-support-request | low | Critical |
251,317,395 | go | crypto: understand performance differences compared to BoringSSL | I ran all the crypto benchmarks with standard Go crypto and with BoringCrypto. Results below.
In general there is about a 200ns overhead to calling into BoringCrypto via cgo for a particular call. So for example aes.BenchmarkEncrypt (testing encryption of a single 16-byte block) went from 13ns to 209ns, or +1500%. T... | Performance,help wanted | medium | Critical |
251,374,516 | flutter | Have flutter_test track when Timers are created | Since Zones let you override when Timers are created, maybe we can also track when they're created so that when there's any left we can report where it was created, the way we do with tickers. | a: tests,framework,c: proposal,P3,team-framework,triaged-framework | low | Minor |
251,387,236 | vscode | No way to have tab show as eight spaces, indent with something else | It does not appear to me that there is a way to make it so tabs show up as 8 spaces distinct from the actual indent size or tabs/spaces preference.
Pretty simple feature request, actually. I have an existing codebase that I am converting over piecemeal to use 4 space indents. Trouble is, the codebase is already fu... | feature-request,editor-core | low | Major |
251,387,814 | opencv | mingw32 build with IPP | A solution for building OpenCV 3.3 under mingw32-w64 with the IPP support. This has been tested with mxe for macOS.
- OpenCV 3.3
- Operating System: mxe macOS
- Compiler mingw32-w64
##### Detailed description
IPP is not found using mingw due to a name mismatch, and then some stack checking symbols present in... | feature,priority: low,category: build/install | low | Critical |
251,388,977 | vscode | [theming] Access theme's colors programmatically | I think we should add support for accessing theme's colors programmatically.
For instance let's take as an example the popular [OneDark Pro](https://github.com/Binaryify/OneDark-Pro/blob/master/themes/OneDark-Pro.json) theme, I'd like to access colors defined under [tokenColors](https://github.com/Binaryify/OneDark... | feature-request,themes,api-proposal | high | Critical |
251,405,072 | angular | AnimationPlayer instance can only be used once | ## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[X] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Feature request
[ ] Documentation issue or reques... | type: bug/fix,area: animations,freq2: medium,P4 | low | Critical |
251,407,762 | vscode | Drag markdown preview to New Window | - VSCode Version: 1.15.1, 64 bit
- OS Version: Windows 10 64 bit
Steps to Reproduce:
1. Open markdown file, click the preview button
2. File/New Window
3. Try and drag just the preview part to the new window
It would be really nice if I could drag the markdown preview to a new window so I can edit the markdow... | feature-request,markdown,webview | high | Critical |
251,421,550 | rust | Warn when `crate_type` attribute is ignored because of `--crate-type` | I just learned the hard way (i.e. after lots of scratching my head) that the `crate_type` attribute is entirely ignored when Cargo is used. This is hinted at in <https://doc.rust-lang.org/nightly/reference/linkage.html>, but only if you know that cargo always passes `--crate-type`. The first hit when I search for the a... | C-enhancement,A-attributes,T-compiler,A-CLI | low | Minor |
251,422,572 | opencv | empty() methods of Mat class always returns true on Universal Windows Platform x86 build. | <!--
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... | feature,platform: winrt/uwp | low | Critical |
251,437,092 | neovim | Disabling netrw disables the spelling files download suggestion | ```
$ nvim --version
NVIM v0.2.0
Build type: Release
Compilation: /usr/bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -Wconversion -DNVIM_MSGPACK_HAS_FLOAT32 -O2 -DNDEBUG -DDISABLE_LOG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong... | bug,enhancement,runtime,complexity:low,netrw | low | Critical |
251,442,271 | angular | ngIf transition inside another animated element does not work | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | type: bug/fix,area: animations,freq3: high,P3 | low | Critical |
251,464,682 | vscode | Cannot display emoji ✔️, 🙋♂️ | Steps to Reproduce:
1. Open a new file
2. Copy these two emoji ✔️❌ to it
3. See this result

Expected  -> Self::Bar;
}
impl Foo for i32 {
type Bar = i32;
fn bar(&self) -> i32 {
*self
}
}
fn main() {
let x = 5i32;
let y = x::Bar;
}
```
reports
```
error[E0433]: failed to resolve. Use of undeclared type or module `x`
... | C-enhancement,A-diagnostics,A-resolve,T-compiler,D-terse | low | Critical |
251,735,742 | go | runtime: audit mapfast routines for indirectvalue support | On reflection, the most recent CLs I mailed suggest that mapdelete_fast* might not be handing indirect value maps correctly. I'm out of computer time for today and maybe tomorrow as well. Filing this as a reminder, and because these were newly introduced in 1.9, and if they're not well-handled, it could cause memory co... | Testing,NeedsFix,compiler/runtime | low | Minor |
251,761,732 | go | net/http: Add Error Callbacks | I've written a little REST server on net/http that's *supposed* to only ever return JSON contents. At least, that's what the parts I wrote do. However, there are certain errors that net/http encounters before my code is ever called. In those situations, I have no access to any code to determine what the content type an... | NeedsFix,FeatureRequest | medium | Critical |
251,803,547 | rust | Generated doc pages for types should include more info about the type's relationships | It would be useful if the generated doc page for each type had an expandable section at the bottom that shows functions (incl. methods of other types) in the crate where the type appears in the function's argument types or return type to see possible uses of a type that aren't apparent from its methods and trait impls.... | T-rustdoc,C-feature-request | low | Minor |
251,810,580 | react | Symbol Tagging for dangerouslySetInnerHTML to Help Prevent XSS | If you're spreading props from a user provided source we have a XSS. E.g.
```js
var data = JSON.parse(decodeURI(location.search.substr(1)));
function Foo(props) {
return <div><div {...props} /><span>{props.content}</span></div>;
}
ReactDOM.render(<Foo {...data} />, container);
```
That's already true ... | Component: DOM,Type: Discussion,React Core Team | low | Major |
251,814,512 | rust | Tracking issue for `#[doc(masked)]` | At time of implementation, i'm not sure the utility of this outside the standard library, but in case anyone else wants to prune their documentation, here's the place to be. | T-rustdoc,B-unstable,C-tracking-issue,S-tracking-needs-summary,F-doc_masked | low | Minor |
251,884,898 | opencv | NSObject error when build source with mac | I clone the source code of opencv from git and build using cmake:
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local/Cellar -D BUILD_SHARED_LIBS=ON -D WITH_CUDA=OFF -D OPENCV_EXTRA_MODULES_PATH=../../opencv_contrib/modules -G "Unix Makefiles" -D BUILD_JAVA_SUPPORT=ON -D WITH_IPP=OFF ..
However, ... | category: build/install,category: viz,incomplete | low | Critical |
251,941,322 | rust | Crate local state for procedural macros? | I'm tinkering a bit with procedural macros and encountered a problem that can be solved by keeping state in between proc macro invocations.
Example from my real application: assume my `proc-macro` crate exposes two macros: `config! {}` and `do_it {}`. The user of my lib is supposed to call `config! {}` only once, b... | A-macros,T-lang,C-feature-request,A-proc-macros | high | Critical |
251,953,129 | rust | Expose target cpu to conditional compilation | I've recently created a crate that provides IO/microcontroller specific constants to Rust programs written for the [AVR architecture](https://github.com/avr-rust/rust).
[avrd on GitHub](https://github.com/avr-rust/avrd)
[avrd on Docs.rs](https://docs.rs/avrd)
I've made it so that there is always a `current` modu... | T-lang,C-feature-request | medium | Major |
251,970,039 | pytorch | detach_() variant that affects all past uses too | Right now `detach_()` only modifies the current Variable, without modifying the graph in any way, which doesn't stop backprop for its previous uses. This behavior is sometimes wanted when e.g. doing BPTT and reusing some of the steps (say you do BPTT over 20 steps with stride of 2 steps).
Current behavior:
```pytho... | feature,module: autograd,triaged | low | Minor |
251,976,898 | youtube-dl | I can't download the spanish caps from pluralsight | Hello, thanks for this tool, i have this issue, and i don't know how to fix it, i have tried with this command line
youtube-dl --username XXXXXXXXXXXXXXXXX --password XXXXXXXXXXXXX https://www.pluralsight.com/courses/bash-shell-scripting --all-subs -o "%USERPROFILE%\Downloads\%(playlist)s\%(chapter_number)s. %(chapt... | subtitles | low | Minor |
252,106,546 | flutter | getOffsetForCaret should return two values at an LTR/RTL boundary | In `editable.dart`, `getEndpointsForSelection` says:
```
// TODO(mpcomplete): This doesn't work well at an RTL/LTR boundary.
``` | a: text input,framework,a: internationalization,has reproducible steps,P2,found in release: 3.3,found in release: 3.4,team-text-input,triaged-text-input | low | Major |
252,211,103 | go | runtime/cgo: bad debug_frame entry for crosscall2 | ```
go version go1.9rc1 linux/amd64
```
```
go env:
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/a/n/go/"
GORACE=""
GOROOT="/usr/local/go19rc1"
GOTOOLDIR="/usr/local/go19rc1/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread... | help wanted,NeedsFix,Debugging,compiler/runtime | low | Critical |
252,297,987 | TypeScript | React and defaultProps cant pass correct props to inner function | <!-- 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:** 2.4.0
**Co... | Suggestion,Needs Proposal | low | Critical |
252,299,682 | go | cmd/compile: optimize away some MOVQconverts | We have to keep uintptrs and unsafe.Pointers separate, to get accurate stackmaps for the compiler. However, in some cases, this generates unnecessary register moves.
Here's the example from the runtime I'm looking at. `mapaccess1_fast32` currently ends:
```go
for {
for i, k := uintptr(0), b.keys(); i < bucke... | Performance,compiler/runtime | low | Minor |
252,343,338 | angular | NgFor with animations displays incorrectly if NgFor array elements are reordered in-place | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | type: bug/fix,area: animations,hotlist: components team,freq3: high,P2,canonical | low | Critical |
252,356,209 | flutter | Allow release mode builds to run on simulators | Current documentation (https://github.com/flutter/flutter/wiki/Flutter%27s-modes) states that Flutter release mode builds cannot be run on the Simulator. For many applications, the iOS Simulators are sufficiently high fidelity to do 99% of development work without going through the additional friction of deploying to d... | c: new feature,tool,engine,customer: crowd,P3,customer: castaway,team-engine,triaged-engine | high | Critical |
252,356,589 | flutter | FocusNode and FocusScopeNode should take debug labels. | Currently printing the focus tree results in something like this:
```
[00059.830] 10004.10040> FocusScopeNode#5f96b
[00059.830] 10004.10040> child 1: FocusScopeNode#6de7b
[00059.830] 10004.10040> focus: FocusNode#96399
[00059.830] 10004.10040>
```
It would better to have names for each of these. | framework,a: debugging,c: proposal,P3,team-framework,triaged-framework | low | Critical |
252,436,934 | bitcoin | bumpfee behavior with "Subtract fee from amount" | When using the bumpfee command on a tx that was sent using "Subtract fee from amount", the current response is this error. "Transaction does not have a change output (code -1)". Since "Subtract fee from amount" was specified, the expected behavior would be to subtract the fee from the sent amount which would not requir... | RPC/REST/ZMQ | low | Critical |
252,446,944 | puppeteer | Ability to pause all animations completely | I need to be able to take deterministic screenshots and when animations are running you'll get a different frame from an animation each time.
There does appear to be some control of animations in the devtools protocol here: https://chromedevtools.github.io/devtools-protocol/tot/Animation/
I've tried these without... | feature,chromium | medium | Major |
252,505,354 | puppeteer | Detect sound | I would like to detect if a page is playing some sound. Is there a way to do that? | feature,upstream,chromium | medium | Critical |
252,519,627 | youtube-dl | [safari] Add support for learning paths | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | request | low | Critical |
252,602,870 | TypeScript | warning on emitDecoratorMetadata for interface in esnext | **TypeScript Version:** 2.4.2
**Code**
(using Angular 4)
```ts
// other-file.ts
export interface MyInterface { a: string }
// my-class.ts
import { Input } from '@angular/core'
import { MyInterface } from './otherFile'
class MyClass {
@Input() myi: MyInterface;
}
```
**tsconfig.json**
```
{
... | Bug,Domain: Decorators | medium | Critical |
252,642,652 | TypeScript | Suggestion: Change `Diagnostic.file` to be `SourceFileLike` instead of `SourceFile`. | `Diagnostic.file` is of type `SourceFile` which forces plugins to cast a non-`SourceFile` to a `SourceFile` to report diagnostic messages and guess which parts of `SourceFile` are not used by `tsserver`.
Consider changing `file` to be something like `SourceFileLIke` or `SourceMapSource` that specifies the exact requ... | Suggestion,Help Wanted,API | low | Minor |
252,702,869 | go | net/http: (*Transport).getConn traces through stale contexts | `(*http.Transport).getConn` currently starts a `dialConn` call in a background goroutine:
https://github.com/golang/go/blob/0b0cc4154e1defed07e73ca1304b9a68c7134577/src/net/http/transport.go#L942-L945
That records traces to the provided `Context` and eventually invokes `t.DialContext` with it:
https://github.com/g... | Thinking,help wanted,NeedsFix | low | Critical |
252,725,089 | rust | Check the well-formed-ness of type aliases. | Currently, these compile:
```rust
struct Foo<T: Copy>(T);
type X = Foo<String>;
type Y = <() as Iterator>::Item;
```
Using them does produce an error *at the use site*, but not in the definition. | A-type-system,C-enhancement,T-compiler,T-types | low | Critical |
252,757,534 | go | net: DialContext can use a stale context via happy eyeballs | When happy eyeballs is enabled, DialContext makes parallel calls to dialSingle via dialParallel:
https://github.com/golang/go/blob/424b0654f8e6c72f69e096f69009096de16e30fa/src/net/dial.go#L415
Each dialSingle call may call ctx.Value, such as here:
https://github.com/golang/go/blob/424b0654f8e6c72f69e096f69009096de... | NeedsInvestigation | low | Major |
252,793,216 | go | cmd/go: compilation order of fortran files is significant | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.9 linux/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GO... | NeedsInvestigation | low | Critical |
252,803,550 | youtube-dl | [Youtube] support for video watched percentage | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | request | low | Critical |
252,845,724 | puppeteer | How do I get rid of popup for chromium certificates selection, can I set it programmatically ? | Is there another way without disabling the popup via puppeteer launch ? I tried dialog stuff but it seems not the way.
<img width="1116" alt="screen shot 2017-08-25 at 5 20 42 pm" src="https://user-images.githubusercontent.com/642874/29708177-5db7c8a4-89ba-11e7-8827-917c0d09fa4d.png">
| feature,chromium | medium | Critical |
252,866,771 | go | install: Windows: MSI Upgrade should default to previous install folder, not insist on C:\Go\ | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.9 release
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
Windows
### What did you d... | help wanted,OS-Windows,NeedsFix | low | Major |
252,933,483 | go | gofrontend/gccgo: Improve identity comparison | ### The issue
`gofrontend` currently generates very inefficient code for `T$equal` and `t1 == t2` when dealing with identity-comparable types (i.e. integers, pointers, and unpadded structs and arrays of such).
For example:
- The following code does two 4-byte compares and a jump in `T$equal`, and calls memcmp... | NeedsInvestigation | low | Major |
252,983,289 | pytorch | DataLoader converts cuda FloatTensor into cpu DoubleTensor when shape is (n,) | In version 0.2.0, it appears that the DataLoader will convert a cuda.FloatTensor into a DoubleTensor when the shape is (n,)
```python
X = torch.rand(64,8).cuda()
y = torch.rand(64).cuda()
dataset = TensorDataset(X,y)
loader = DataLoader(dataset)
next((y for (X,y) in loader))
```
```
0.1309
[torch.DoubleTens... | needs reproduction,module: dataloader,triaged | low | Critical |
253,036,517 | opencv | cuda::BackgroundSubtractor::apply only allows CV_8UCx images while CPU version allows CV_16UCx images | ##### System information (version)
- OpenCV => 3.2
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2013
##### Detailed description
Code that uses the openCV background subtractor on the CPU can pass in a 16 bit image (very useful for depth images where char is not enough resolution)... | feature,priority: low,category: gpu/cuda (contrib),RFC | low | Critical |
253,036,886 | rust | Object safety "method references the `Self` type" check does not normalize. | Example (using an associated type that matches a blanket `impl`):
```rust
trait Foo {
type X;
}
impl<T: ?Sized> Foo for T {
type X = ();
}
trait Bar {
// Note how this is allowed without a bound.
fn foo(&self) -> <Self as Foo>::X;
}
// error: the trait `Bar` cannot be made into an obje... | A-type-system,T-compiler,C-bug,T-types,A-trait-objects | low | Critical |
253,082,877 | gin | [PROJECT] Future steps | # TL;DR
- API stability and deprecation policy
- v2?
---
cc @appleboy @tboerger @nazwa @easonlin404 @thinkerou
I'm worried on how to keep going and scale the API without breaking everything in a v2. Some people who use Gin love the new activity and features, but want Gin as it is now, somehow API stable. Ot... | help wanted | low | Major |
253,096,960 | go | runtime: apply strength reduction optimizations to generic map routines | CL 57590 applied strength reduction to the key pointers in some mapfast routines. This is a reminder issue to check whether similar optimizations can fruitfully be applied to any of the generic map routines (access, assign, delete, etc.).
cc @martisch
| Performance,compiler/runtime | low | Minor |
253,098,231 | rust | Write on &mut [u8] and Cursor<&mut [u8]> doesn't optimize very well. | Calling write on a mutable slice (or one wrapped in a Cursor) with one, or a small amount of bytes results in function call to memcpy call after optimization (opt-level=3), rather than simply using a store as one would expect:
```rust
pub fn one_byte(mut buf: &mut [u8], byte: u8) {
buf.write(&[byte]);
}
... | I-slow,C-enhancement,T-compiler,C-optimization | low | Major |
253,098,844 | go | runtime: improve barrier implementation layering | This is a migration of some discussion in [CL 37628](https://golang.org/37628).
bulkBarrierPreWrite calls writebarrierptr_prewrite1 repeatedly. Every call to writebarrierptr_prewrite1 does some sanity checks and hops on and off the system stack. This seems silly.
@aclements wrote:
> What do you think about ins... | NeedsFix,compiler/runtime | low | Major |
253,129,146 | youtube-dl | [littlethings] Add support for littlethings.com | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | site-support-request | low | Critical |
253,132,052 | opencv | corrupt JPEG data: # extraneous bytes before marker 0x## | ##### System information (version)
- OpenCV => 3.3
- Operating System / Platform => Ubuntu 16.04.3 LTS (x86_64)
- Compiler => gcc 5.4.0 20160609
##### Detailed description
When accessing a Logitech C310 webcam with Java OpenCV 3.3 the following error message is repeatedly printed to the terminal (with varying va... | bug,category: videoio(camera),category: 3rdparty | medium | Critical |
253,132,827 | pytorch | Counter-intuitive Patience & Cooldown of ReduceLROnPlateau | https://github.com/pytorch/pytorch/pull/1370 provides a LR scheduler that reduces LR when the validation metrics stops improving.
It works like this: when ```patience=2, cooldown=0```,
``` Python
import torch
from torch.optim.lr_scheduler import ReduceLROnPlateau
n=torch.nn.Linear(1,1)
opt = torch.optim.SGD(n... | todo,module: optimizer,triaged | low | Minor |
253,177,428 | angular | Animation using `display` in `query` not working | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | type: bug/fix,area: animations,freq2: medium,P4 | low | Critical |
253,198,123 | rust | Document traits from #[derive(...)] | Moving here from https://github.com/rust-lang/cargo/issues/4406 on @dns2utf8's behalf:
While documenting every public function of [ThreadPool](https://github.com/rust-threadpool/rust-threadpool) I had to implement `#[derive(Clone)` manually so I would be able to add an example.
I assume `cargo doc` has a default ... | T-rustdoc,C-feature-request | low | Major |
253,365,955 | go | wiki: Would like a page to list community benchmarks | ### What did you expect to see?
A table listing important benchmarks from the open source community, so that Go compiler and runtime developers can get a better idea of which optimizations matter and which do not, and to avoid performance surprises late in the release cycle. The existing go1 benchmark suite is not th... | NeedsInvestigation | medium | Major |
253,400,719 | TypeScript | JSDoc function annotations not working for chain assignment | From https://github.com/Microsoft/vscode/issues/33221
**TypeScript Version:** 2.5.1
**Code**
For the JS code:
```js
/**
* @return {Number}
*/
const f = exports.z = () => ({})
const x = f();
```
**Expected behavior:**
Type of `x` is `number`
**Actual behavior:**
Type of `x` is `{ [x: string]... | Bug,VS Code Tracked,Domain: JavaScript | low | Minor |
253,419,355 | go | x/website: add support for languages other than English | Right now the docs are only in English. There's [some support](https://github.com/golang/go/wiki/NonEnglish) for languages other than English, but the wiki page is merely a footnote.
Other projects—[like React](https://crowdin.com/project/react)—are attempting this as well. Not only does it give newcomers a (somewha... | Documentation,NeedsDecision | low | Major |
253,507,703 | go | net: Buffers makes multiple Write calls on Writers that don't implement buffersWriter | The `writev` syscall is supposed to act like a single write. The `WriteTo` method of `net.Buffers` will make a single write syscall on writers that have the unexported `writeBuffers` method. However, for writers that do not have such a method, it will call `Write` multiple times. This becomes significant if you are ... | NeedsDecision,early-in-cycle | medium | Major |
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.