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 |
|---|---|---|---|---|---|---|
306,221,578 | go | flag: Value description is inaccurate about zero-values | ```
// The flag package may call the String method with a zero-valued receiver,
// such as a nil pointer.
type Value interface {
String() string
Set(string) error
}
```
But in the example we have:
```
// String is the method to format the flag's value, part of the flag.Value interface.
// The String ... | NeedsFix | low | Critical |
306,272,261 | TypeScript | Missing error if ClassDeclaration is used in Statement position | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 -->
<!--
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the CONT... | Bug,Help Wanted,Effort: Casual | low | Critical |
306,288,152 | rust | unused variable: warn about std::collections that are pushed to but not used afterwards | ````rust
fn main() {
let mut var: Vec<i64> = Vec::new();
var.push(1);
}
````
I would expect a warning here that ````var```` is unused.
I get that it is "used" in the sense that we push to it, however the *resulting* vector is still not done anything with.
Some kind of dead-store warning about ... | C-enhancement,A-lints,A-collections,T-compiler | low | Major |
306,291,262 | node | child_process: 'close' not emitted after .disconnect() in parent process | * **Version**: v9.8.0
* **Platform**: Linux 64bit
* **Subsystem**: child_process
When calling ``child.disconnect()`` from a parent process (not in cluster mode), the child process object does not emit a ``close`` event after the ``exit`` event.
If however the child process itself calls ``process.disconnect()`` ... | help wanted,child_process | low | Minor |
306,334,041 | flutter | Update flutter_driver.CommonFinders docs to mention why find.byIcon etc aren't there and how to work around that | In common finders class there are many methods for finding a widget by using ancestor, byElementPredicate, byElementType, byicon etc for QA in order to write test scripts using flutterDriver.
Logs
The application runs fine with flutter run. I am trying to automated the testing.
```
Flutter Doctor
[√] Flutter (... | tool,d: api docs,t: flutter driver,P2,team-tool,triaged-tool | low | Minor |
306,340,734 | go | x/build/maintner: Support additional label details | Right now, [`maintner.GitHubLabel`](https://godoc.org/golang.org/x/build/maintner#GitHubLabel) contains only the bare minimal information about labels: its id and name. Labels on GitHub have [additional useful information](https://github.com/golang/go/labels), including:
- color
- description
Is it in scope of `... | Builders | low | Minor |
306,347,751 | flutter | Should support to add an icon in the SnackBarAction | Now only support a String .
why not use a widget? | c: new feature,framework,f: material design,P3,team-design,triaged-design | low | Major |
306,410,515 | scrcpy | Add the possibility to record inputs | Thank you again for your project.
Can we add the possibility to record the input ? The goal here is too use it with monkeyrunner or some functionnal testing tools :) | feature request | low | Minor |
306,428,608 | TypeScript | Bug: Incorrect module resolution for "valid" ES2015 specifiers with hashes and/or search parameters | **TypeScript Version:** 2.8.0-dev.20180315
**Search Terms:** moduleResolution "module path" hash
**Code**
```ts
import { x as x1 } from './x.m.js'; // Typed correctly on hover
import { x as x2 } from './x.m.js#esm' // Typed as "import x…" on hover
```
**Expected behavior:**
Since module specifiers a... | Suggestion,Awaiting More Feedback,Domain: ES Modules | low | Critical |
306,465,311 | go | gccgo: improperly ordered evaluation of "x, z := f(&x), f(&x)" | This is an issue separated from https://github.com/golang/go/issues/23188.
### What version of Go are you using (`go version`)?
go version go1.10 linux/amd64
### Does this issue reproduce with the latest release?
yes
### Description
sorry, this issue is a little complex, so I don't use the issue repor... | NeedsFix | low | Critical |
306,466,179 | rust | Value assigned is never read | I have the following simple code:
```
fn main() {
let mut foo = String::new();
foo = "Hi!".to_string();
println!("{}", foo);
}
```
The compiler gives me the following warning:
```
warning: value assigned to `foo` is never read
--> src\main.rs:2:6
|
2 | let mut foo = String::new();
| ... | C-enhancement,A-lints,T-compiler,A-suggestion-diagnostics | medium | Critical |
306,477,764 | flutter | flutter test --machine differs from pub test protocol (debug/observatory event) | @devoncarew suggested these should be the same (and I hope they are, so I can re-use this same debug adapter for Dart and Flutter in future).
Mostly they seem the same, but the [json spec](https://github.com/dart-lang/test/blob/master/doc/json_reporter.md) for the `test` package says this that there is a debug event... | a: tests,tool,P3,team-tool,triaged-tool | low | Critical |
306,547,395 | node | win, cluster: no callback called after write | <!--
Thank you for reporting an issue.
This issue tracker is for bugs and issues found within Node.js core.
If you require more general support please file an issue on our help
repo. https://github.com/nodejs/help
Please fill in as much of the template below as you're able.
Version: output of `node -v`
P... | help wanted,cluster,windows | low | Critical |
306,645,710 | neovim | please document E903 (and other similar errors) | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.2.3-874-g739fb93a9 (nvim.appimage nightly build)
- Vim (version: ) behaves differently? N/A
- Operating system/version: linux
- Terminal name/version: putty
- `$TERM`:tmux-256colors
I got a bug [report about a failing... | documentation | low | Critical |
306,651,777 | flutter | Commands that have --offline as an option should recommend it when unable to connect. | `flutter create` and `flutter packages get` (and others?) have an `--offline` flag that allows them to work offline if the pub cache is sufficiently full. We should have those commands recommend using `--offline` if they fail to connect to the server.
Alternatively, we could just go ahead and try to run offline aut... | c: new feature,tool,P3,team-tool,triaged-tool | low | Major |
306,682,371 | flutter | Document how to use GlobalKey with TextField and OrientationBuilder | ## Steps to Reproduce
1. Pull down https://github.com/flutter/udacity-course/pull/80
2. Build the app - note that tapping on the TextField input causes the keyboard to appear, but immediately disappear.
3a. Wrap the widget in converter_route's build function with a SingleChildScrollView. This resolves the issue. But... | framework,d: api docs,P2,team-framework,triaged-framework | low | Major |
306,697,833 | go | x/website: addressing inaccessible links on CN site | Many of the external links on [golang.google.cn](https://golang.google.cn) are inaccessible from Mainland China (e.g. `*.golang.org`, `*.blogspot.com`, `*.googlesource.com`), which might cause some troubles for Chinese developers.
Directly removing all inaccessible links would lead to situations like: "For more deta... | NeedsInvestigation | low | Major |
306,716,593 | youtube-dl | YouTubeTV does't work | Login to YTTV fails ... the login page is not the same as regular YT, so ytdl can't parse it.
YTTV has a free trial, easy to test, with pretty much any video. Access is only possible by clicking the "Already a Member?" link on the redirected page, then entering your google acct info.
youtube-dl --verbose -F -u <... | geo-restricted,account-needed | low | Critical |
306,752,804 | rust | miri interpretation of large array initialization is slow | Right now, if you are initializing a large array either manually or with an array repeat expression takes a long time during interpretation.
* [ ] Fixing array repeat expressions requires us to stop filling each element individually and just manually filling up the virtual memory (https://github.com/rust-lang/rust/b... | I-slow,C-enhancement,I-compiletime,T-compiler,A-MIR,A-const-eval,A-miri,A-mir-opt,C-optimization | low | Major |
306,769,290 | vue | Subscribe to all custom events on a child component | ### What problem does this feature solve?
Would make writing wrapper components easier
### What does the proposed API look like?
When v-on receives a function it should trigger on every custom event emitted by the child
<my-custom-component v-bind="$props" v-on="onAnyEvent"></my-custom-component>
Argumen... | feature request | low | Major |
306,816,656 | pytorch | Build Fails on Gentoo with CUDA 9.1, GCC 6.4, Python 3.5 | Hello,
I have been unable to compile the source on my gentoo box. Here are the error messages I'm currently getting:
17%] Building NVCC (Device) object src/ATen/CMakeFiles/ATen.dir/native/cuda/ATen_generated_TensorFactories.cu.o
/tmp/pytorch/aten/src/ATen/native/cuda/Embedding.cu(36): warning: function "__any"
/... | module: build,triaged | low | Critical |
306,844,127 | flutter | DateFormat Crash - Locale data has not been initialized, call initializeDateFormatting(<locale>) | Hey all! Was trying to format Dates with i18n translations. I ran into some interesting issues and wanted to share my journey to see if there's any improvements that can be made in this arena!
## Steps to Reproduce
1. Use a `new DateFormat('d.MMMM y', 'en').format(date);` -- everything works great
2. Use `ne... | c: crash,framework,a: internationalization,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework | low | Critical |
306,850,840 | rust | Constants can contain references that are not Sync | This compiles ([playground](https://play.rust-lang.org/?gist=fa10d9ae0d7d9992a1c1d48862a417ca&version=nightly)):
```rust
#![feature(negative_impls)]
#[derive(Debug)]
struct Foo {
value: u32,
}
impl !std::marker::Sync for Foo {}
fn inspect() {
let foo: &'static Foo = &Foo { value: 1 };
prin... | P-medium,T-compiler,I-unsound,C-bug,A-const-eval,F-negative_impls,S-bug-has-test,T-types | high | Critical |
306,930,340 | rust | Inconsistent `Path::file_stem` and `Path::extension` handling of files starting with multiple dots | I've been using the `Path::file_stem` and `Path::extension` functions and while writing some tests for my code I've found an inconsistent handling of filenames which start with more than one dot (for example `..a` or `...a`), as exemplified below. While names like these are atypical, they are however valid file names ... | C-enhancement,T-libs-api,A-io | low | Minor |
306,978,113 | go | net/http: WriteTimeout times out writes before they're written | (related to #21389)
### What version of Go are you using (`go version`)?
I checked `go version go1.10 linux/amd64` and `go version go1.9.4 linux/amd64`, which behave the same.
### Does this issue reproduce with the latest release?
Yeah.
### What operating system and processor architecture are you using (`go ... | Documentation,help wanted,NeedsFix | low | Critical |
307,024,296 | pytorch | Conv-RNN combination slow in backward pass | Models used for processing audio signals often combine a Conv layer with a GRU/LSTM layer. In pytorch, this kind of combination seems to yield an unexpectedly long backward pass. Here is a minimal model of this kind:
```python
class PyTorchModel(nn.Module):
def __init__(self, num_channels, kernel_size):
... | module: performance,module: nn,triaged | low | Major |
307,092,672 | kubernetes | hostPath volumes used with subPath volume mounts don't support reconstruction | <!-- This form is for bug reports and feature requests ONLY!
If you're looking for help check [Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes) and the [troubleshooting guide](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/).
-->
**Is this a BUG REPORT or FEATUR... | kind/bug,sig/storage,lifecycle/frozen | medium | Critical |
307,155,113 | flutter | Shared flutter runtime | We all know that building a flutter app comes with some overhead in file size.
Is there a plan to ship the flutter core/runtime with the OS so that it can be shared between installed apps?
In the case of Android & Fuchsia it should be possible considering they're both also maintained by Google.
The most important ... | c: new feature,engine,c: proposal,P3,team-engine,triaged-engine | low | Major |
307,233,702 | go | cmd/gofmt: not idempotent on line with multiple comments | ```
$ gotip version
go version devel +5f0a9ba134 Tue Mar 20 22:46:00 2018 +0000 linux/amd64
```
Note as the second `gofmt` invocation changes the code again:
```
$ cat test.go
package p
func f() {
foo(); /* one */ fooooo(); /* two */
}
$ cat test.go | gofmt
package p
func f() {
foo() /* one */... | NeedsInvestigation | low | Minor |
307,295,760 | rust | Need more helpful warning when "pub extern" function is not exported via "pub use" | I'm creating a bunch of `#[no_mangle] pub extern fn` that will be callable from C code. Sometimes I forget to put them in my toplevel `lib.rs` as `pub use`. This is the warning I get:
```
warning: function is marked #[no_mangle], but not exported
--> src/state.rs:436:1
|
436 | pub extern "C" fn rsvg_s... | C-enhancement,A-diagnostics,T-compiler | low | Major |
307,312,101 | flutter | Add a flag to flutter doctor to let it automatically fix/install things? | I'm currently setting flutter up on a new Mac and for the last 30-60 minutes it's pretty much been:
- run `flutter doctor`
- copy a command from the output, paste it and run
- do something productive on another machine and check back in 10 minutes
It's really great that `doctor` gives the exact commands for man... | tool,t: flutter doctor,P3,team-tool,triaged-tool | low | Major |
307,355,748 | pytorch | Install doesn't work with spaces in directory | PyTorch GitHub Issues Guidelines
--------------------------------
We like to limit our issues to bug reports and feature requests. If you have a question or would like help and support, please visit our forums: https://discuss.pytorch.org/
If you are submitting a feature request, please preface the title with [f... | todo,module: build,triaged,has workaround | low | Critical |
307,366,254 | rust | Add a way to generate function symbols with predictable hashes | To debug one of the issues, I wanted to use `llvm-diff` to diff between old and new LLVM-IR. Alas, the attempt didn’t provide any meaningful outcome and all the diff tool could output was:
```
function @_ZN33_$LT$alloc..arc..Arc$LT$T$GT$$GT$9drop_slow17h14f39cee67cb7a45E exists only in left module
function @_ZN33_... | C-enhancement,T-compiler,A-CLI | low | Critical |
307,373,486 | go | sync: eliminate global Mutex in Pool operations | In the review for https://golang.org/cl/101715 (“regexp: use sync.Pool to cache regexp.machine objects”), @ianlancetaylor notes:
> A similar change was made in https://golang.org/cl/44150043, by [@bradfitz]. It was rolled back in https://golang.org/cl/48190043. [@dvyukov] said: "The remaining concern is: Are ther... | Performance,compiler/runtime | low | Major |
307,413,091 | TypeScript | Implement interface should not add optional properties | From https://github.com/Microsoft/vscode/issues/46286
**TypeScript Version:** 2.8.0-dev.20180320
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- implement interface
- quick fix
- code action
- optional property
**Code**
```ts
inter... | Suggestion,Awaiting More Feedback,Domain: Quick Fixes | low | Major |
307,465,596 | flutter | Exception in AndroidDevice._getProperty: adb not responding | _From @mslavkovski on March 9, 2018 9:5_
## What happened
After system restore from hibernation the android emulator is not visible to the IDE, the app can't run. When starting the app Android Studio gives message "No devices attached" and the adb.exe is crashing in some kind loop. It fills the start menu taskbar. ... | tool,P2,team-tool,triaged-tool | low | Critical |
307,477,502 | rust | unused_assignments warning: false negative for dead stores in struct fields | code like this causes a proper warning
```` rust
fn main() {
let mut a;
let b = 4;
let c = 5;
a = b;
a = c;
println!("{}", a);
}
````
=>
````
warning: value assigned to `a` is never read
--> src/main.rs:6:5
|
6 | a = b;
| ^
|
= note: #[warn(unused_assignments)] on b... | C-enhancement,A-lints,A-diagnostics,T-compiler,L-unused_assignments | low | Critical |
307,509,017 | TypeScript | transpileModule doesn't emit correct metadata of return type for async function | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 -->
<!--
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the CONT... | Bug,Help Wanted,Domain: Decorators | low | Critical |
307,608,238 | vscode | Spacing or Horizontal lines in custom VS Code grammar | I just worked into grammar creation with Atom and now VS code and i'm currently developing an own grammar in VS code. In the text file i canot insert extra spacings, but i would like to separate logical blocks with an Bigger spacing or an horizontal line. But i don't now how zto achieve this, because as far as i figure... | feature-request,api | low | Minor |
307,656,305 | vue | <transition-group> and v-show triggers move transition on enter | ### Version
2.5.16
### Reproduction link
[https://jsfiddle.net/chrisvfritz/845Lee66/](https://jsfiddle.net/chrisvfritz/845Lee66/)
### Steps to reproduce
1. Open the fiddle
2. Click the "Toggle" button
3. Watch the `move` transition trigger on enter
### What is expected?
Just like with `v-if`, move transi... | bug,has PR,transition | low | Critical |
307,706,699 | TypeScript | Track expanded support for more multi-location diagnostic messages | We now support related information for diagnostic messages. This issue now tracks, in aggregate, which diagnostics we have extra information for. The following errors are candidates:
MVP
* [x] `_____ used before its declaration.`
* [x] `Property '{0}' is used before being assigned.`
* [x] `Cannot redeclare bloc... | Domain: Error Messages,Meta-Issue,Domain: Related Error Spans | low | Critical |
307,718,498 | rust | CI: We should be able to complete a build in 3 hours even without Docker image cache | Our CI builders (except macOS and Windows) use Docker, and we'll cache the Docker repository on Travis. Thanks to the cache, normally the `docker build` command only takes a few seconds to complete. However, when the cache is invalidated for whatever reason, the Docker image will need to be actually built, and this may... | C-enhancement,T-bootstrap,T-infra | medium | Major |
307,822,696 | go | cmd/link: document default flags passed to extld | ### What version of Go are you using (`go version`)?
master
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOCACHE="/localdisk/itocar/gocache/"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/localdisk/itocar/gopath/"
GORACE=... | Documentation,NeedsInvestigation,compiler/runtime | low | Critical |
307,845,370 | rust | Argument-position `impl Trait` requires a named lifetime | This function produces an "expected lifetime parameter" error:
```rust
fn foo(_: impl Iterator<Item = &u8>) {}
```
This code should instead be accepted and bound the `impl Trait` parameter by the elided lifetime.
cc https://github.com/rust-lang/rust/issues/34511 | C-enhancement,T-compiler,A-impl-trait,D-confusing | low | Critical |
307,848,032 | react-native | iOS: Multiple animations which use "useNativeDriver" do not work if preceded by a delay. | - [x] I have reviewed the [documentation](https://facebook.github.io/react-native)
- [x] I have searched [existing issues](https://github.com/facebook/react-native/issues)
- [x] I am using the [latest React Native version](https://github.com/facebook/react-native/releases)
On iOS, if attempting to animate a text c... | Platform: iOS,Help Wanted :octocat:,API: Animated,Priority: Low,Bug | low | Critical |
307,848,948 | rust | `impl Trait` Associated Types Do Not Leak Auto Traits | While auto trait impls of `impl Trait` types leak, the auto trait impls of their associated types do not:
```rust
#![feature(conservative_impl_trait)]
trait Foo {
type Bar;
}
fn require_bar_send<F>(_: F) where F: Foo, F::Bar: Send {}
fn foo() -> impl Foo {
struct Fooey;
impl Foo for Fooey {... | T-lang,C-feature-request,A-impl-trait | low | Critical |
307,858,326 | go | image/jpeg: Decode is slow | Mac OS Sierra
go version go1.10 darwin/amd64
CPU 3,5 GHz Intel Core i7
I noticed that the use of decode jpeg is very slow.
decode image jpeg 1920x1080
I test github.com/pixiv/go-libjpeg/jpeg and native jpeg
go 1.10 jpeg.decode ≈ 30 ms cpu ≈ 15 %
libjpeg jpeg.decode ≈ 7 ms cpu ≈ 4 %
will it ever g... | Performance,help wanted,NeedsInvestigation | low | Major |
307,862,613 | TypeScript | Abstract classes that implement interfaces shouldn't require method signatures | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 -->
<!--
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the CONT... | Suggestion,Needs Proposal | high | Critical |
307,869,445 | pytorch | LBFGS always give nan results, why | I use the LBFGS alogorithm, and found that if maxiter is larger enough, i.e., maxiter >10, the optimizer always give nan results. Why? | needs reproduction,module: numerical-stability,module: optimizer,triaged | medium | Major |
307,889,494 | rust | Diagnostics in MIR passes (arithmetic_overflow, unconditional_panic) are not caught with `cargo check` | I just tried to ran the compile-fail suite without trans, and these tests failed:
```
failures:
[compile-fail] compile-fail/array_const_index-0.rs
[compile-fail] compile-fail/array_const_index-1.rs
[compile-fail] compile-fail/asm-src-loc.rs
[compile-fail] compile-fail/bad-intrinsic-monomorphizat... | A-diagnostics,T-compiler,C-bug | low | Critical |
307,895,759 | youtube-dl | Support request for antenna.gr | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.03.20*.
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2018.03.20**
### Before submitting an *issue* make sure you have:
- [x] At least skimmed through the [README](https://github.c... | geo-restricted | low | Critical |
307,908,278 | flutter | flutter_driver's finders should have the equivalent of flutter_test's Finder.evaluate() | ## Steps to Reproduce
Using flutter_driver in the QA environment. Options feels quite limited currently. I am trying to check if an element exists or not, perhaps a function on the like of finder.IsEmpty or something like IfExists in Appium which the skips the element if it doesn't exist and doesn't necessarily throw ... | a: tests,c: new feature,framework,t: flutter driver,c: proposal,P3,team-framework,triaged-framework | low | Major |
307,993,872 | TypeScript | Can't extend intersection containing constructable type parameter | Lets say we have 2 mixins, like this:
```typescript
type Constructable<T = {}> = new (...args : any[]) => T
export const Mixin1 = <T extends Constructable>(base : T) =>
class Mixin1 extends base {
method1() {
}
}
export const Mixin2 = <T extends Constructable>(base : T) =>
class Mixin2 extend... | Bug | low | Critical |
308,033,003 | opencv | Implement HoughCircles mode without internal edge detection | Could you implement Hough transform mode without any edge detection for application to the images already containing circles? | feature,category: imgproc | low | Major |
308,034,308 | TypeScript | [2.8.0-rc] Segfault when running compiler with --d or --watch (out of memory) | Hello,
I was using 2.8.0-dev-20180216 and recently switched to 2.8.0-rc. I immediately noticed, that, when launching compiler with `--watch` it started to take a lot longer for the initial compilation. The subsequent compilations on file change were working fine.
But now, after some code refactoring, launching wi... | Bug,Domain: Declaration Emit | medium | Critical |
308,069,851 | react | Dangerous strings can reach browser builtins | <!--
Note: if the issue is about documentation or the website, please file it at:
https://github.com/reactjs/reactjs.org/issues/new
-->
**Do you want to request a *feature* or report a *bug*?**
A bug, but a well known and worked-around one.
**What is the current behavior?**
```jsx
var x = 'javascrip... | Component: DOM,Type: Discussion | low | Critical |
308,159,313 | go | cmd/link: package versioning for shared libraries is incompatible with linkobj builds | During linkobj builds, __.PKGDEF files are still included in the linker object files, but they're empty stub files that only contain information already present in the .o file, so I'm looking at getting rid of them in that case.
Working on cmd/link, I notice that genhash (used for generating package versions from th... | NeedsFix,compiler/runtime | low | Critical |
308,185,553 | go | net/http: automatically add X-Content-Type-Options: nosniff | Some old browsers have an unfortunate mis-feature where they will detect and interpret HTML in responses that have different `Content-Type`. This is commonly referred to as content sniffing, and is a security risk when attacker-controlled content is served, leading to XSS.
The proposal is to automatically include th... | Proposal,Proposal-Hold | medium | Critical |
308,195,979 | go | net: different lists of addresses are returned depending on order of multiple aliases in /etc/hosts on Mac OS with CGO | TL;DR - `net.LookupIP` may return a different list of addresses depending on the order of multiple names in an `/etc/hosts` mapping (e.g. `127.0.0.1 my.local localhost`). I don't know if this should be surprising or not; however, I did have a NATS client as well as [an official NATS sample client](https://github.com/na... | NeedsInvestigation | low | Critical |
308,209,303 | flutter | Clearer message when opening Android Studio before running flutter build/run | Opening the gallery in Android Studio by importing the gradle file before `flutter build/run`ing first doesn't create a properly populated local.properties and throws an unclear Flutter SDK not found error in Android Studio. | platform-android,tool,t: gradle,P2,team-android,triaged-android | low | Critical |
308,217,633 | TypeScript | esModuleInterop should work even when compiling to esnext modules | **TypeScript Version:** 2.7.2
**Search Terms:** esModuleInterop, esnext, modules, import, export, default
**Code**
With this type definition:
```ts
declare function fn(): void;
declare module "external" {
export = fn;
}
```
Running with:
```
tsc --esModuleInterop --module esnext
```
Produce... | Suggestion,In Discussion,Domain: ES Modules | low | Critical |
308,231,953 | TypeScript | Experiment with trailing comma insertion text for object literal completions | When I'm adding a new property in the middle of an object literal, there's nothing I love more than getting an immediate parse error and then having to add a comma after the body of a nested object literal/method declaration. It'd be nice to see if we can smooth out the experience here. Maybe we can have comma insertio... | Suggestion,Needs Proposal,Domain: Completion Lists | low | Critical |
308,233,114 | youtube-dl | Making lazy-extractors fails | I was trying to compile with lazy-extractors enabled and got the following error:
```
$ make lazy-extractors
/usr/bin/env python devscripts/make_lazy_extractors.py youtube_dl/extractor/lazy_extractors.py
WARNING: Lazy loading extractors is an experimental feature that may not always work
Traceback (most recent... | cant-reproduce | low | Critical |
308,239,368 | godot | Implement automatic cleanup of .godot/ folder items (.import/ in 3.x) | **Godot version:**
Godot 3.0.2.stable.official
**Issue description:**
I really like Godot 3's new resource workflow with the .import files and .import folder.
I like that all the source files and settings can be kept in source control.
However, I don't like how Godot never deletes the .stex/.sample/.md5 files ... | enhancement,topic:editor,confirmed,topic:import | medium | Critical |
308,265,515 | rust | Long Compile Time (with Optimization) with Large Arrays (2-3 hours) | ## Summary
I have gotten very long compile time (2 hrs plus) when I tried to compile a code that has a large array inbuilt in the code when I turn optimization on. When the code is compiled without optimization, it has a acceptable compile time (10+ seconds).
The array contains 130,000 + strs.
## Details
I ... | A-LLVM,I-compiletime,T-compiler,C-bug | low | Critical |
308,266,690 | flutter | Flutter analyze dives deep into the build/ tree | Analyzer looks into the volatile build/ tree. In fact it steps into ANY not hidden
(dot) directory tree. This is time wasted at every invocation.
## Steps to Reproduce
```
% flutter create -a kotlin -i swift exapp ; cd exapp && flutter build
# flutter build populates build with some 200MB+ /
% mkdir -p buil... | tool,c: performance,P2,team-tool,triaged-tool | low | Critical |
308,267,807 | rust | rustdoc exposes private use rebindings in the signature of public functions. | Rust will document the `test` function the following code as taking a `ThisIsTotallyNotAnOption<String>` rather than a `Option<String>`. This is confusing at first glance because without looking at the source or actually following the link, there is no indication as to what the type actually is.
```rust
use std::op... | T-rustdoc,C-bug | low | Minor |
308,289,050 | rust | rustdoc `[src]` link for modules goes to `mod x;` when the module is re-exported across crates | When I click the master `[src]` link at https://doc.rust-lang.org/std/fmt/ I get taken to https://doc.rust-lang.org/src/alloc/lib.rs.html#178 which is a bit surprising.
I would have expected to be taken to something like https://doc.rust-lang.org/src/alloc/fmt.rs.html#11-567 which is the destination of the `[src]` l... | T-rustdoc,C-bug,A-cross-crate-reexports | low | Minor |
308,290,858 | vscode | Expose API for variable substitution in contributed configuration | So now we have a bunch of variable substitutions we can use in `.vscode/tasks.json`
```
${workspaceFolder} - the path of the folder opened in VS Code
${workspaceFolderBasename} - the name of the folder opened in VS Code without any slashes (/)
${file} - the current opened file
${relativeFile} - the current opene... | feature-request,api | high | Critical |
308,296,534 | go | x/crypto/argon2: Add AVX2 implementation | This is a feature request for adding an AVX2 implementation of Argon2. Currently there is a generic / pure Go and an amd64 SSE4.1 implementation.
An AVX2 implementation can improve performance about ~30 %. The AVX2 implementation requires Go 1.10 because of some instructions which are not supported by the assembler i... | NeedsDecision,Proposal-Crypto | low | Major |
308,298,694 | rust | Windows: success of canonicalizing r"\" depends on whether set_current_dir has been called | ## Problem: sometimes `Path::new(r"\").canonicalize() fails
Note: apparently this isn't _necessarily_ [against the spec](https://stackoverflow.com/a/151875/1036670) (a better link to the windows spec would be nice)
> In Windows it's relative to what drive your current working directory is at the time. If your cur... | O-windows,C-enhancement,T-libs-api,A-io | medium | Major |
308,320,041 | opencv | Cuda streams do not run concurrently when using the convolve function | <!--
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... | priority: low,category: gpu/cuda (contrib) | low | Critical |
308,351,083 | rust | Tracking issue for libtest JSON output | Added in https://github.com/rust-lang/rust/pull/46450
Available in nightly behind a `-Z` flag. | T-libs-api,B-unstable,A-libtest,C-tracking-issue,T-testing-devex | high | Critical |
308,354,233 | go | net/http: BenchmarkClientServerParallelTLS64 sometimes reports an error | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version devel +cc155eb
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
GOARCH="arm64"
GOBI... | Testing,NeedsInvestigation | low | Critical |
308,357,432 | TypeScript | Represent the types of function parameters that mutate inside the function. | <!-- If you have a SUGGESTION:
Most suggestion reports are duplicates, please search extra hard before logging a new suggestion.
See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md
-->
In JavaScript is possible to mutate objects inside functions. Right now, the follow... | Suggestion,Awaiting More Feedback | medium | Critical |
308,376,334 | vscode | Feature Request : SHOW / HIDE comments in editor | Hi VsCode teams !
# Why developers need it
- Adding comments and documentation in a codebase is very important for maintenance.
- But often it could make it harder to read (especially if you use jsdoc or swagger)
**Conclusion:** toggling comments visibility could be a very nice productivity feature directly i... | feature-request,languages-basic,editor-comments | high | Critical |
308,382,680 | opencv | Error installing on Ubuntu | ##### System information (version)
- OpenCV => 3.4.1
- Operating System / Platform => Ubuntu 16.04.4 LTS
##### Detailed description
Trying to install latest build on Ubuntu. Before compiling I installed all of these: https://pastebin.com/raw/DhKkF0Da
This is where it stops after sudo make. What am I missin... | category: build/install,incomplete | low | Critical |
308,391,991 | opencv | Implement HoughCircles and HoughLines with specifying bounds on parameters in order to lessen complexity | For HoughCircles I mean the range of coordinates of their centers. | feature,category: imgproc,priority: low | low | Minor |
308,418,951 | go | x/tools/cmd/gomvpkg: incorrect handling of cgo packages | ### What version of Go are you using (`go version`)?
go version devel +438a757d73 Wed Feb 21 18:10:00 2018 +0000 linux/amd64
### Does this issue reproduce with the latest release?
Yes, on the latest version of `gomvpkg` (rev golang/tools@77106db15f689a60e7d4e085d967ac557b918fb2).
### What operating system a... | NeedsInvestigation,Tools | low | Critical |
308,470,606 | TypeScript | Object.getPrototypeOf returns `any` instead of `object | null` |
<!-- If you have a BUG:
Please fill in the *entire* template below.
-->
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 2.7.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search... | Suggestion,Breaking Change,Awaiting More Feedback | low | Critical |
308,475,984 | opencv | [request / evolution] Provide users with compiled file size break down analysis reports | # [request / evolution] Provide users with compiled file size break down analysis reports
* Author: *(vacated)*
* Link: *(to be determined)*
* Status: **Draft**
* Platform: **Mobile first (such as Android and iOS)**, others later
* Complexity: *(to be determined)*
## Introduction and Rationale
Mobile ... | feature,category: build/install | low | Minor |
308,594,328 | godot | -s flag fails in tools=no builds without project | **Godot version:**
Tried 3.0.2 and 928cdb4
**OS/device including version:**
Tried HTML5 and Windows
**Issue description:**
Attempted to run `godot -s script.gd` with `godot` being a template executable (`tools=no`).
Neither the working directory, nor any of its parents, contain a project. No project is spec... | discussion,topic:core | low | Critical |
308,596,651 | youtube-dl | [Freshlive] Add support for paid content | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.03.20*. 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**... | account-needed | low | Critical |
308,597,769 | go | cmd/compile: less optimized AMD64 code | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
the newest master branch on March 25, 2018
### Does this issue reproduce with the latest release?
not tried
### What operating system and processor architecture are you using (`go env`)?... | Performance,NeedsFix,binary-size | low | Minor |
308,603,916 | electron | Support accessory view option in `dialog.showMessageBox` and `dialog.showErrorBox` | <!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* ... | enhancement :sparkles:,platform/macOS,2-0-x | medium | Critical |
308,701,984 | pytorch | Clean up the extra copies that occur in the execution engine and other places | Known changes:
* Come up with a plan for removing tensor_list<->variable_list copies from the execution engine.
* Switch the execution engine to work using a stack abstraction so that recursive invocations (such as running a white-box `Subgraph`), do not need to create copies of their inputs.
* Switch the FusionC... | oncall: jit | low | Minor |
308,702,746 | pytorch | Develop a strategy for writing leak tests for pytorch. | Use it to test for leaks in the graph executor/interpreter, etc.
Ideas:
* Add an api to create a tensor, hold a weak reference to it, and assert after a certain point that it is not longer present. Use this tensor as an input to various things that might accidentally hold references to it.
* Add a function like ... | oncall: jit | low | Minor |
308,763,043 | flutter | [camera] Improve CameraPreview to size itself appropriate for video and picture previews | I am working with a g3 client who is prototyping a camera UI in Flutter, and they're having difficulty getting the preview image from the camera to have a fixed aspect ratio.
They've attempted using an AspectRatio to contain the CameraPreview, but haven't had any results.
Is there a solution to this problem, an... | customer: crowd,p: camera,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
308,836,468 | flutter | Function to check if an element is present or not on flutter_driver(QA environment) | ## Steps to Reproduce
Currently testing an application and the lack of ability to check if an element is present/visible is stopping me right dead in the tracks. Something on the lines of that would go a long way in bringing flutter framework on par with appium testing.
## Logs
No issues with the application a... | a: tests,c: new feature,tool,t: flutter driver,P3,team-tool,triaged-tool | low | Minor |
308,840,914 | go | time: set specific rule for Date on daylight savings transitions |
### What version of Go are you using (`go version`)?
go1.7.4 linux/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH=""
... | NeedsInvestigation | medium | Critical |
308,878,194 | angular | Reactive forms. formArrayName with formGroupName | <!--
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,freq1: low,area: forms,P3 | low | Critical |
308,894,894 | vscode | [folding] Fold block comments scrolls editor | re #46597
* open `/src/vs/base/common/arrays.ts`
* set cursor on line 200
* scroll line 200 out of view
* select F1 > Fold Block Comments
* 🐛 line 200 is scrolled back into view | bug,editor-folding | low | Minor |
308,993,844 | vscode | [folding] blocked while language server is starting up | from https://github.com/Microsoft/vscode/issues/44524#issuecomment-376479712\
the collapse button now doed nothing until the language server is up. Not a very pleasant experience. | feature-request,editor-folding | low | Minor |
309,035,971 | vscode | VS Code not being able to open a large file | <!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.21.1
- OS Version: Windows 10 pro
Steps to Reproduce:
1. Get or create a large file (in my case a **19gb** .sql file with insert queries)... | feature-request,editor-textbuffer | low | Minor |
309,038,603 | scrcpy | Using another android device as client | Thanks for this amazing project.
Is it possible to mirror one android screen to another android device using scrcpy-adb connect method? I found adb clients compiled for arm devices and also java implementation of adb client on github. What are your thoughts? | feature request,android client | high | Critical |
309,038,918 | rust | run-make/relocation-model fails on mips64{el}-unknown-linux-gnuabi64 | ```
error: make failed
status: exit code: 2
command: "make"
stdout:
------------------------------------------
LD_LIBRARY_PATH="/home/draganm/work/rust/build/mips64el-unknown-linux-gnuabi64/test/run-make/relocation-model.stage2-mips64el-unknown-linux-gnuabi64:/home/draganm/work/rust/build/mips64el-unknown-linux-g... | A-linkage,A-testsuite,O-MIPS,T-compiler,C-bug,A-run-make | low | Critical |
309,060,997 | youtube-dl | [BBC iPlayer] Unable to download XML | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.03.26.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... | geo-restricted | low | Critical |
309,067,181 | TypeScript | Organize Imports: Add option to change between relative and absolute paths | https://github.com/Microsoft/vscode/issues/46699
**Feature Request**
Add a configuration option that can force auto imports to be converted to relative or absolute paths. This option should be off by default (we leave the paths untouched) | Suggestion,Awaiting More Feedback,VS Code Tracked,Domain: Organize Imports | medium | Major |
309,076,382 | TypeScript | Organize imports should remove blank lines within imports | **TypeScript Version:** 2.9.0-dev.20190327
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- Organize imports
**Code**
1. For the js:
```ts
import { x } from 'x';
import { y } from 'y';
console.log(x, y)
```
2. Run organize imp... | Suggestion,Awaiting More Feedback,Domain: Organize Imports | low | Major |
309,094,687 | flutter | Sharing constants between Flutter, Android, and iOS code | .. to reduce risks associated with duplication (values going out of sync).
Is there perhaps a solution for this already?
It would be especially useful when using platform channels, for the channel and argument names.
(-> sharing constants between Flutter, Android, iOS code)
But I assume it could be useful for... | c: new feature,tool,P2,team-tool,triaged-tool | low | Critical |
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.