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 |
|---|---|---|---|---|---|---|
296,868,665 | go | runtime: always log GC details in-memory | Whenever a user reports a potential issue with the GC, the first thing we ask for is a GC trace (GODEBUG=gctrace=1). We rarely get it.
gctrace=1 is cheap enough to leave on all the time, but spamming stderr is poor form. Instead, the runtime could log it in memory somewhere, either as text or structured data, and ex... | NeedsFix,compiler/runtime | low | Critical |
296,871,235 | kubernetes | Fuzz or matrix test the API server | We have seen a variety of problems where misconfiguration causes the `{kube-apiserver,kube-controller-manager}` to `{crashloop,otherwise prevent repair of the problem}`.
Examples:
- webhook that won't let you do anything (including delete it) #59124 #56761
- apiservice without an endpoint, but the service can n... | area/test,priority/important-soon,sig/api-machinery,kind/feature,sig/testing,priority/important-longterm,lifecycle/frozen | low | Critical |
296,875,859 | flutter | Smooth checkbox value animation segues | It would nice to have smooth segues for cases where a tristate checkbox's value changes in the middle of its animation cycle.
For example: currently if the value changes from true to null at t=0.75 we just abruptly start rendering a dash. This happens in 50ms so users who haven't slowed the animation speed are unlik... | framework,a: animation,f: material design,a: quality,P3,team-design,triaged-design | low | Major |
296,944,554 | pytorch | [feature request] Stratified splits in random_split function | It's probably less of an issue on "biggish" datasets, but a param for specifying stratification in `random_split` (which was merged here: #4435) would be nice. If the targets are class labels this could be done based on the integer labels. For regression problems, there are some interesting ideas posted here: http://sc... | module: dataloader,triaged | low | Minor |
296,968,434 | kubernetes | Kubernetes is vulnerable to stale reads, violating critical pod safety guarantees | When we added resourceVersion=0 to reflectors, we didn't properly reason about its impact on nodes. Its current behavior can cause two nodes to run a pod with the same name at the same time when using multiple api servers, which violates the pod safety guarantees on the cluster. Because a read serviced by the watch c... | kind/bug,priority/important-soon,sig/scalability,sig/api-machinery,sig/apps,lifecycle/frozen | high | Critical |
296,968,628 | godot | Multiple Godot instances conflict with each other | **Godot version:**
3.0 stable
**OS/device including version:**
Any
**Issue description:**
When running Godot as a part of CI on a build machine, multiple instances of Godot can be launched
to work with different workspaces. However, at least one problem with this is that Godot may create temporary files (gre... | bug,topic:core | low | Major |
296,970,763 | opencv | Latest doxygen (1.8.14) segfaults | ##### System information (version)
- OpenCV => 3.4.0
- Operating System / Platform => Linux 64 Bit
- Compiler => gcc-7.3
- doxygen => 1.8.14
##### Detailed description
Previously, using doxygen-1.8.9.1, generating documentation completed OK.
However using latest doxygen-1.8.14, ```make doxygen``` fails with ... | category: documentation,incomplete | low | Critical |
296,987,594 | rust | Compiling crate serde-derive with "-Z sanitizer=leak" fails | Compiling my crate that uses `serde` with `RUSTFLAGS="-Z sanitizer=leak"` results in:
```
error: Only executables, staticlibs, cdylibs, dylibs and rlibs can be compiled with `-Z sanitizer`
```
Verbose output shows:
```
Running `rustc --crate-name cubeb_core cubeb-core/src/lib.rs --crate-type lib --emit=dep... | T-compiler,A-sanitizers,A-macros-2.0,C-bug | low | Critical |
297,001,684 | TypeScript | Understand 'int', 'integer', 'float', 'double', etc. as 'number' in JSDoc | All numeric-sounding names should probably resolve to `number` (maybe only if no other type is defined with such a given name).
Ideas:
* `[u]int[8|16|32|64]`
* `integer`
* `float`
* `double` | Suggestion,Awaiting More Feedback,Domain: JavaScript | low | Major |
297,036,023 | puppeteer | headerTemplate and footerTemplate only work with truthy values | **Tell us about your environment:**
* Puppeteer version: 1.0.0
* Platform / OS version: Ubuntu 16.04
* URLs (if applicable):
* Node.js version: 6.12.3
**What steps will reproduce the problem?**
```
await page.pdf({
headerTemplate: '',
footerTemplate: '',
});
```
**What is the expected result... | feature,upstream,chromium | low | Minor |
297,071,900 | go | x/build: sharded iOS builders | Currently, the android/amd64 and android/386 builders run on an Android emulator with a amd64 system image. This is taxing the heavyly loaded mobile builder Mac Mini. It is also inefficient: the emulator builds competes with Android device builds and any concurrent iOS builds. Because builds are slow, android is not in... | Builders,NeedsInvestigation,mobile,new-builder | high | Major |
297,083,864 | go | x/build/cmd/gerritbot: don't post CL updates if the PR author has a Gerrit account | For example: https://github.com/golang/go/pull/23809
If gerritbot successfully added the PR author as a reviewer or as CC to the Gerrit CL, it makes little sense to forward comment/review updates to the Github pull request in the form of comments. | Builders | low | Minor |
297,143,566 | vscode | "Download Now" button should respect the used installation method on Linux | ### Issue Type
Bug
### Description
> __Edit:__ Originally this issue was specifically about the `.deb` installation method, but since this problem is not specific to it, I edited the issue to be more general.
#### How to reproduce
1. Install (an outdated version of) VS Code using one of the installation ... | help wanted,feature-request,install-update,linux | medium | Critical |
297,149,437 | rust | incr.comp.: Do per-MonoItem dependency tracking in order to collect data about granularity fallout. | Currently the compiler only allocates a single `DepNode` per CGU. This is enough for implementing object file re-use but we are losing information about what items within an object file exactly caused it to be re-compiled. In order to gather more information about how CGU partitioning affects re-use, it would be good t... | C-enhancement,T-compiler,A-incr-comp | low | Minor |
297,151,147 | rust | incr.comp.: Allow for re-using object files that contain unused code. | Right now, incremental compilation can only re-use an object file if it is an exact match of that code that we want. In theory it would be possible though to keep using an object file that contains a superset of the code we need.
An implementation would probably need https://github.com/rust-lang/rust/issues/48211 to... | C-enhancement,T-compiler,A-incr-comp | low | Minor |
297,168,206 | rust | Tracking issue for RFC #2056: Allow trivial constraints to appear in where clauses | This is a tracking issue for the RFC "Allow trivial constraints to appear in where clauses " (rust-lang/rfcs#2056).
**Steps:**
- [x] Implement the RFC – https://github.com/rust-lang/rust/pull/48557
- [ ] As noted in https://github.com/rust-lang/rust/issues/48214#issuecomment-396038764, the new trait solver might so... | B-RFC-approved,T-lang,B-unstable,B-RFC-implemented,C-tracking-issue,S-tracking-impl-incomplete,S-tracking-needs-summary,F-trivial_bounds | medium | Critical |
297,217,921 | TypeScript | Glob support for per pattern tsconfig configuration | It's common to have different configurations for files in the same directory with different name patterns. The most common is `file.ts` and `file.test.ts`. We usually have different configurations for test files. For instance the global `"jest"` type is needed in test files but not in source files.
To separate conf... | Suggestion,In Discussion | medium | Major |
297,240,521 | go | cmd/compile: avoid updating capacity if unused | Using go1.10,
Consider the following code:
```go
func IsASCII(b []byte) bool {
for len(b) >= 8 {
x := binary.LittleEndian.Uint64(b)
if x&0x8080808080808080 > 0 {
return false
}
b = b[8:]
}
for _, x := range b {
if x&0x80 > 0 {
return false
}
}
return true
}
```
The compiled... | Performance,NeedsFix,compiler/runtime | low | Minor |
297,273,401 | kubernetes | GCE Node Controller is very inefficient with multiple zones | Looking at getInstanceByName https://github.com/kubernetes/kubernetes/blob/release-1.8/pkg/cloudprovider/providers/gce/gce_instances.go#L461, we do a very inefficient search for instances by name. This is free when there is only one zone, and cheap if the product `(number of zones) x (number of nodes)` is small, but i... | kind/bug,area/platform/gce,area/nodecontroller,area/cloudprovider,lifecycle/frozen,sig/cloud-provider,needs-triage | medium | Critical |
297,279,828 | go | x/mobile/app: TestAndroidApp test is failing | Running go test golang.org/x/mobile/app:
````
--- FAIL: TestAndroidApp (1.01s)
app_test.go:232: gomobile version
app_test.go:232: gomobile install golang.org/x/mobile/app/internal/testapp
app_test.go:235: gomobile install golang.org/x/mobile/app/internal/testapp exit status 1: gomobile: manual declaration of ... | mobile | low | Minor |
297,280,681 | TypeScript | Divide by zero Typechecking | We have type literals for numbers already and a `strictNullCheck` compiler option -- wouldn't it be awesome if we had a type guard again divide-by-zero errors? I'm building a game that involved a lot of math, computing intersections of lines and such. But what if a line is parallel? It would be cool if the compiler wou... | Suggestion,In Discussion | low | Critical |
297,315,323 | flutter | Flutter can receive touches even when hidden behind another native ViewController | I have an example at https://github.com/xster/flutter-test/tree/master/t33_animation_with_native
Even after the second view controller was presentViewController'ed, the FlutterViewController still passes events to Flutter.
cc @cbracken any ideas? | platform-ios,engine,customer: posse (eap),has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-ios,triaged-ios | low | Critical |
297,326,595 | go | net: add support for Happy Eyeballs version 2 (RFC 8305) | Since RFC 6555 published, research papers, for example, Measuring the Effects of Happy Eyeballs, depict improvement space for the RFC. In addition, network or service operators speak up that the race is not only for TCP connection setup but for DNS query handling. [RFC 8305](https://tools.ietf.org/html/rfc8305) Happy E... | Proposal,Proposal-Accepted | low | Major |
297,372,950 | rust | llvm lint: "unreachable immediately preceded by instruction without side effects" | reduced from https://github.com/alexcrichton/rustc-demangle/
````rust
pub fn demangle(inner: &str) {
inner.chars().peekable().by_ref().take(0).count();
}
````
````
$ RUSTFLAGS="-C passes=lint" cargo build
Compiling rustc-demangle v0.1.5 (file:///tmp/rustc-demangle)
Unusual: unreachable immediately p... | A-LLVM,C-enhancement,T-compiler | low | Critical |
297,378,157 | flutter | Support creating projects without all the IntelliJ files | I'm looking at integrating `flutter create` into a command in VS Code. Currently when you run this it outputs a bunch of IntelliJ files that are not wanted if you're working in VS Code. For now I'm thinking of just deleting them, but it'd be nice if they could just be excluded (for example a flag to tell `flutter creat... | c: new feature,tool,P3,team-tool,triaged-tool | low | Major |
297,464,734 | rust | incr.comp.: Investigate making the result cache updateable in-place. | Right now the compiler will always load and deserialize all query result cache entries that are still valid and then serialize and write them to back to disk again, similar to how a copying garbage collector works. The main reason for implementing the cache this way is that it is very simple.
There might be value in... | C-enhancement,I-compiletime,T-compiler,A-incr-comp | low | Minor |
297,591,855 | pytorch | [feature request] warnings for functions with unspecified dim arguments | Hi,
I noticed that when calling `torch.sort()` without specifying the `dim` argument results in undesired behavior when called on a tensor of dimension nx1. If `dim` is not given in `torch.sort()`, the last dimension of the input is chosen. This is documented but not desirable when the last dimension is 1. A short ... | triaged,enhancement | low | Minor |
297,596,973 | flutter | Draw repeat patterns or images with canvas with dart.ui | Please add support for repeating a pattern in a shape, similar to pattern fill support for the HTML canvas.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/createPattern
What I would like to do is draw a small pattern using the existing lines, rects, circles, and other shapes. I would th... | engine,d: api docs,a: images,P2,team-engine,triaged-engine | low | Major |
297,638,334 | rust | Error when canonicalizing path on RAM drive | ```
R:\rust-test>rustc --version --verbose
warning: could not canonicalize path: 'R:\rust-test'
warning: could not canonicalize path: 'R:\rust-test'
warning: could not canonicalize path: 'R:\'
rustc 1.24.0 (4d90ac38c 2018-02-12)
binary: rustc
commit-hash: 4d90ac38c0b61bb69470b61ea2cccea0df48d9e5
commit-date: 20... | O-windows,I-ICE,T-compiler,A-incr-comp,C-bug | low | Critical |
297,645,393 | go | x/build/cmd/gopherbot: changes are not seen for refs/meta/config branch | This is due to a Gerrit config problem. gobot can’t see a change (https://go-review.googlesource.com/c/go/+/94016) and so it keeps erroring out and causing a 30s backoff.
Is there a reason why we hide our refs/meta/config from the public?
/cc @bradfitz | Builders,NeedsInvestigation | low | Critical |
297,650,077 | TypeScript | Allow trailing commas in type arguments | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 2.7.1
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** trailing comma template literal types generic
**Code**
```ts
cl... | Suggestion,Awaiting More Feedback | medium | Critical |
297,651,197 | terminal | GetKeyboardLayout is not updated during a console session | _From @matial on August 13, 2017 21:0_
* Your Windows build number: version 10.0.14393
* Calling GetKeyboardLayout(0) periodically within a console application returns the handle of the keyboard layout active when starting the console. If the keyboard layout is changed while the console app is running, subsequent ... | Product-Conhost,Area-Server,Issue-Bug | low | Major |
297,652,737 | go | net: better DNS transport for builtin DNS stub resolver | Split from #18588. The existing DNS stub resolver uses per-query DNS transport that would cause socket descriptor exhaustion. It might be better to have some mechanism for DNS transport to reduce the use of socket descriptors. For UDP-based DNS transport, it might be the use of shared UDP endpoints. For TCP-based DNS ... | NeedsInvestigation | low | Major |
297,661,688 | TypeScript | narrowing to "never" by "if" statement does not exclude "undefined" return type | **TypeScript Version:** 2.7.1
**Search Terms:** narrowing types never switch case if undefined strictNullChecks
**Code**
```ts
// Build this code with "--strictNullChecks" option.
function assertNever(x: never): never {
throw new Error("not reached");
}
enum A {
Foo, Bar
}
// There are ... | Suggestion,In Discussion | low | Critical |
297,667,366 | rust | Option::unwrap, panic!, print!, maybe others induce string relocations | Consider the following code:
```rust
pub fn foo(a: Option<usize>) -> usize {
a.unwrap()
}
```
This generates the following:
```asm
example::foo:
cmp qword ptr [rdi], 1
jne .LBB0_1
mov rax, qword ptr [rdi + 8]
ret
.LBB0_1:
push rbp
mov rbp, rsp
lea rdi, [rip + .Lref.2]
call core::p... | A-LLVM,C-enhancement,A-codegen,T-compiler | low | Critical |
297,680,841 | rust | wasm32_final_outputs test fails when Cargo 0.25 is compiled from rustc 1.24.0 source tarball | When running `cargo test` from the src/tools/cargo directory in the rustc 1.24.0 source tarball, the `wasm32_final_outputs` test fails. It seems that the test is finding the rustc Cargo.toml instead of the cargo Cargo.toml and it fails because the test directory is not part of the workspace. I filed an issue with Cargo... | A-testsuite,T-compiler,O-wasm,C-bug | low | Critical |
297,702,988 | pytorch | Unsafe out= keyword argument with tensors sharing storage | The current `out=` behavior is unsafe. For example, if you do `a_3x3_tensor.sum(dim=1, out=y[1, 1:10])` it will try to `THTensor_(resize)` the view and in turn write to incorrect locations of `y`.
Instead, if `out` is sharing storage, we should accept if only it 1) has correct size and 2) the range is not overlappi... | triaged,module: numpy,module: safe resize,module: correctness (silent) | low | Major |
297,708,162 | vscode | Git - Support prompting for GPG password | - VSCode Version: 1.19.3
- OS Version: Windows 10
Hey, Git don't work in Visual Studio Code, when i have gpg signing activated.
Steps to reproduce: https://help.github.com/articles/signing-commits-with-gpg/
Does this issue occur when all extensions are disabled?: Yes
| help wanted,feature-request,git | high | Critical |
297,769,333 | godot | Duplicated Animation Player loses connection to saved animations | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
3.0
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
... | bug,topic:editor,confirmed | low | Critical |
297,773,826 | youtube-dl | Requesting support for prepaway.com | ### What is the purpose of your *issue*?
- [ ] Bug report (encountered problems with youtube-dl)
- [x] Site support request (request for adding support for a new site)
- [ ] Feature request (request for a new functionality)
- [ ] Question
- [ ] Other
---
### If the purpose of this *issue* is a *site support ... | account-needed | low | Critical |
297,774,093 | youtube-dl | Request support for www.cybrary.it | ### What is the purpose of your *issue*?
- [ ] Bug report (encountered problems with youtube-dl)
- [x] Site support request (request for adding support for a new site)
- [ ] Feature request (request for a new functionality)
- [ ] Question
- [ ] Other
---
### If the purpose of this *issue* is a *site support ... | account-needed | low | Critical |
297,839,522 | vscode | [folding] Code folding does not respect multi-cursor | <!-- 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.20.1
- OS Version: Windows 10
Steps to Reproduce:
1. Open a new document with the following css:
```
.selector{
min-width: 40px;... | feature-request,editor-folding | low | Minor |
297,861,657 | go | net: don't keep reading from UDP resolver after truncated packet | When the `host` or `dig` programs see a malformed packet from a resolver when using UDP, they fall back to using TCP. The net package resolver does not do this; it simply ignores the malformed packet (in `(*dnsPacketConn).dnsRoundTrip` in net/dnsclient_unix.go). This was done for #13281. I suggest that we do the sam... | NeedsInvestigation | low | Critical |
297,872,704 | youtube-dl | Can't extract Facebook videos | [debug] Command-line args: [u'--verbose', u'https://www.facebook.com/padraocarvalheira/videos/1607606815918150/', u'--no-check-certificate']
[debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2018.02.11
[debug] Python version 2.7.12 (CPython) - Linux-4.4.0-109-generic-x86_64-... | cant-reproduce | low | Critical |
297,925,798 | tensorflow | Sample for report_tensor_allocations_upon_oom and RunOptions | This is a feature request.
Please add some example to the docs describing how to use report_tensor_allocations_upon_oom and other options of RunOptions
All I could find is this file:
https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/profiler/model_analyzer_test.py
But it is not obvious. F... | type:docs-feature | medium | Critical |
297,928,485 | kubernetes | Validation on update and delete | As it stands today, changes to validation logic can break the API if they tighten the requirements for an object. The general case for this is:
1. Create object `X`
2. Upgrade to new server version
3. Try to update object `X` (add a label for example)
4. The update fails because of validation errors
Specifica... | sig/api-machinery,lifecycle/frozen | low | Critical |
297,933,248 | vscode | Expose git diff functions outside of overflow menu | 
These commands like revert selected ranges etc are pretty commonly useful commands. Would make sense to extract them into buttons to the left of the overflow menu.
Consider g... | feature-request,ux | low | Minor |
297,948,004 | terminal | Replace SimSun, MingLiu, MSGothic, GulimChe with one (or four?) decent monospace fonts. | _From @be5invis on May 12, 2017 5:35_
**THEY ARE UGLY, REALLY**.
The new font(s) should be:
- Exact half-width monospace, to prevent full-width glyphs being stretched or alignment being broken.
- No bitmap. In vector.
- Well hinted.
- Follows regional (CCJK) orthographic standards and aesthetic habits.
_... | Issue-Feature,Product-Conhost,Area-Fonts | medium | Critical |
297,948,522 | terminal | Japanese character output in Integrated Terminal of Visual Studio Code causes the next prompt out of position after upgrading to Creators Update | _From @yusuke-konishi on April 10, 2017 3:50_
* A brief description
Japanese character output in Integrated Terminal of Visual Studio Code causes the next prompt out of position **after upgrading to Creators Update**. This issue is reproducible 100%.
For example, `echo あ` causes the next prompt out of position. ... | Product-Conhost,Area-Output,Issue-Bug | low | Critical |
297,958,622 | rust | Disambiguating associated types from super traits in a trait object | Suppose you have a trait:
```
trait Foo: std::ops::Index<usize> + std::ops::Index<isize> {}
```
How do you declare a `Foo` trait object, say a `Box`? The `Output` associated types need to be specified but they need to be disambiguated between the two super traits. Projections that I’ve tried don’t seem to work but... | C-enhancement,A-associated-items,T-lang,T-types,A-trait-objects | low | Major |
297,962,565 | pytorch | BatchNorm1d raises RuntimeError (CUDNN_STATUS_BAD_PARAM) on 3D input. | - OS: Ubuntu 16.04
- PyTorch version: 0.3.1
- How you installed PyTorch (conda, pip, source): pip
- Python version: 3.5.3
- CUDA/cuDNN version: 8.0
- GPU models and configuration: Titan Xp
- GCC version (if compiling from source): -
- A script to reproduce the bug. Please try to provide as minimal of a test ca... | module: cudnn,triaged | low | Critical |
297,963,994 | kubernetes | Common approach for delegated pod admission & policy | There are a number of features that apply policies to pods. However, this is challenging since pods are not typically created by users - they are typically created by a controller instantiating some pod template. Each policy addresses this in their own way:
- **PodSecurityPolicy** - policy is checked against the pod... | kind/cleanup,kind/feature,sig/auth,priority/important-longterm,lifecycle/frozen | medium | Minor |
297,967,514 | godot | Frame stutter when playing a project on MacOS/Linux | **Godot version:**
3.0
**OS/device including version:**
MacOS High Sierra, NVIDIA GeForce GT 750M 2 GB
**Issue description:**
Frame stuttering: https://imgur.com/a/nzIIn
The FPS seem to remain unaffected when a stutter occurs. I've tried disabling V-sync. All demo projects I've tried have this issue. When usi... | bug,platform:linuxbsd,platform:macos,topic:porting | medium | Critical |
298,023,954 | rust | Feature: show failure step when compilation failed due to static analysis | Newcomers might find this kind of output useful for an invalid program:
```
✓ Syntax valid!
✗ Types invalid
- Borrow checker
error[E0599]: no method named `collect` found for type `std::vec::Vec<T>` in the current scope
...
```
This would make it easier to see if you're fixing errors correctly, and are gett... | A-frontend,A-diagnostics,T-compiler,C-feature-request | low | Critical |
298,036,625 | rust | Improve implicit conversion of &[_; 0] into &[T] | https://play.rust-lang.org/?gist=251182ab9c63f93d776eed72b43d4455&version=stable
```rust
pub fn foo<T>(lists: &[&[T]]) {
let (first, rest) = lists.split_first().unwrap_or((&(&[]), &[]));
}
```
This code should pass type checking. (Unless I'm mistaken.) | A-type-system,C-enhancement,T-lang,T-compiler,A-coercions,T-types | low | Minor |
298,059,372 | rust | `resume_unwind` can indefinitely increase the panic count | A corner-case use of `resume_unwind` can lead to a large panic count. This complicates the flowchart of panic handling. I think `resume_unwind` should abort when `panic_count >= 1` to keep the invariant `panic_count <= 2` (and `panic_count <= 1` when unwinding).
[Playground](https://play.rust-lang.org/?gist=b72fbc07... | A-runtime,T-libs-api,C-bug | low | Minor |
298,070,073 | youtube-dl | Site Support on Smosh.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 |
298,081,988 | vscode | The bgcolor of selected text in highlighted search keyword is not different from the highlight color | ### Issue Type
Bug
### Description
Steps to reproduce:
1. search some keyword in the left search panel
2. click on one search result
3. the keyword is highlighted
4. select some word in the highlighted text
I want the bgcolor of selected text differ from highlighted color, but it is the same.
:
```rust
#![crate_type = "lib"]
trait A<X> {
}
trait B {
type X;
type A: A<Self::X>;
}
fn oops<T: B<X=String>>(_: &T) {
}
```
It fails to compile with
```
Compiling playgr... | C-enhancement,A-trait-system,T-compiler | low | Critical |
298,097,521 | vscode | Workspace ... scrollbar area is totally invisible | <!-- 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.0-ins
- OS Version: win7x64
How about to make scrollbar area a little bit visible?
Cause you don't even see where to click, when you wan... | feature-request,ux | low | Minor |
298,114,534 | rust | Debug LLVM + `-Z time-llvm-passes` asserts compiling simplest program. | For context, I was trying to add PGO support to rustc, and I was adding a couple LLVM passes for profile info generation and usage, and the only thing I managed to do is crashing rustc under LLVM, or that my changes did nothing, so I built with debug LLVM to check whether I was doing something obviously wrong. Furtherm... | A-LLVM,T-compiler,C-bug | low | Critical |
298,118,691 | rust | Using std::io::{Read, Write, Cursor} in a nostd environment | I'm surprised there's no ticket for this, so here we go.
It isn't possible in nostd to use [std::io::Cursor](https://doc.rust-lang.org/std/io/struct.Cursor.html). That seems to be mostly because it requires std::io::Read, Write, and Seek. However, I'd argue that those traits should also be part of libcore, and only ... | T-libs-api,C-feature-request,A-io | high | Critical |
298,131,139 | vscode | SCM - Differentiate between submodules and normal repos | ### Issue Type
Feature Request
**I would like submodules to be nested underneath their parent repo in the Source Control Pane.**
### Description
I love the new submodule feature, but there are a couple of issues with the Source Control pane:
* I can't tell which providers (repos) are submodules
* I ca... | help wanted,feature-request,scm | medium | Critical |
298,332,954 | go | cmd/compile, runtime: optimize comparison of large values with zero | ```go
package p
type T [20]byte
func f(x *T) bool {
return *x == T{}
}
```
Currently this sets up and zeros twenty bytes and then calls memequal. Comparing a large type to zero should be easy; we can then dispatch instead to an optimized runtime routine that doesn't need to actually construct a zero value... | Performance,compiler/runtime | low | Major |
298,362,815 | go | x/build/cmd/gerritbot: report errors to StackDriver | Currently we don’t know when an import fails unless we check the PRs manually. We should be reporting errors to StackDriver and alert on an error. | Builders | low | Critical |
298,387,526 | godot | Games receive joypad input even if the game window is not focused | **Godot version:**
<!-- Specify commit hash if non-official. -->
3925e6a5431424f422273f3522016a9d6a51a876
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
Tested on Linux Mint 18.3 sylvia
**Issue description:**
<!-- What happened, and what was expected. -->
When r... | bug,discussion,confirmed,topic:input | medium | Critical |
298,390,302 | TypeScript | rootDir option documentation incorrect and confusing | I've recently started a new project with TS and run into some confusing behaviour. I've placed my files in an "app" folder, but the emitted TS (using AMD modules with --outFile) generates module names without the app prefix, breaking my JS references.
Turns out that I was supposed to use rootDir, instead of rootDirs... | Docs | low | Minor |
298,487,561 | neovim | API: list builtin (normal-mode) commands | I'm trying to create a Qt Creator plugin that uses Neovim as backend. So far so good, it was super easy thanks to the great api you guys designed. But I have a problem with shortcuts:
Qt Creator has a lot of shortcuts (seriously a lot) so some basic vim keys are overlapped by Qt Creator's shortcut. I can capture a k... | enhancement,api,complexity:high,architecture | low | Major |
298,492,040 | vscode | Setup challenges when running mocha tests | ## Goals
- Since I run tests many times, I want to run mocha tests out of the box using a keyboard shortcut or a flat command (i.e. one that doesn't require input).
- I want to navigate directly to test suites and test cases.
- I want to jump to the last failed test of the most recent test run with a keyboard shortc... | feature-request | low | Critical |
298,516,293 | go | image/jpeg: encoding with RGB profile causing loss of image saturation | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.9.2
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
windows 10
### What did you do?
I encod... | NeedsInvestigation | low | Major |
298,516,480 | flutter | Camera plugin should use FLT prefix for all Objective-C types | The main `CameraPlugin` type has no prefix (possibly others too). ~To make that work with Flutter tooling, an `iosPrefix` clause must be added to the `pubspec.yaml` file~:
```yaml
flutter:
plugin:
androidPackage: io.flutter.plugins.camera
iosPrefix: FLT
pluginClass: CameraPlugin
```
Edit: For cu... | platform-ios,p: camera,package,good first issue,P3,team-ios,triaged-ios | low | Minor |
298,541,834 | vscode | [theming] customize file icons in settings | <!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: all
- OS Version: all
Can't there be a quick way to customize file extension icon instead of having to create a whole extension for a custom t... | feature-request,themes | medium | Critical |
298,574,679 | go | os: TestChtimes failure on OSX with Go 1.10: AccessTime didn't go backwards | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
`go version go1.10 darwin/amd64`
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```GOARCH="amd... | help wanted,OS-Darwin,NeedsInvestigation | low | Critical |
298,578,695 | TypeScript | Tagged union types aren't narrowed in for/while loop | **TypeScript Version:** 2.7.0-dev.20180220
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**Code**
```ts
const enum Types {
Array,
Node,
}
declare const obj:
| { type: Types.Array, value: never[], }
| { type: Types.Node, value... | Bug | low | Minor |
298,613,540 | rust | Slower performance caused only by using LTO | [The Computer Language Benchmarks Game](https://benchmarksgame.alioth.debian.org/) was on the Rust subreddit recently and while I checked out the numbers for Rust, I noticed that the Rust solution for the [fasta benchmark](https://benchmarksgame.alioth.debian.org/u64q/fasta.html) is much slower than the C version, alth... | I-slow,C-enhancement,T-compiler | low | Major |
298,629,823 | godot | Pressing any accent before Escape makes Escape fire two "pressed" events | **Godot version:**
tested in 3.0 stable and 2.1.4 stable
**OS/device including version:**
Windows 10 64bit (desktop build), including Fall Creators' Update
**Issue description:**
While listening for input, when you press the Circumflex accent before pressing Escape, you'll get two key press events for the ... | bug,platform:windows,confirmed,topic:input | low | Critical |
298,696,649 | vscode | When A grammar injects to B, grammars embedding B should get A's injection | A real world example: https://github.com/vuejs/vetur/issues/701
GraphQL is injecting to `source.js`.
Vetur is embedding `source.js`.
However the Vue grammar is not getting any injections from GraphQL. | feature-request,grammar | low | Major |
298,704,087 | go | cmd/compile: use runtime.zeroVal for small zero-valued readonly static vars | Split out from #23929. No reason to have lots of different zero-valued readonly symbols when we can re-use runtime.zeroVal.
| Performance,compiler/runtime | low | Major |
298,704,722 | TypeScript | this any typed in some JS object literals | From https://github.com/Microsoft/vscode/issues/43930
**TypeScript Version:** 2.8.0.insiders-20180211
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
- this
- object literal
**Code**
For the js:
```js
console.log({
a: 1,
b()... | Bug,VS Code Tracked,Domain: JavaScript,Has Repro | low | Critical |
298,727,221 | TypeScript | Suggestion: Type annotations and interfaces for function declarations | Currently in TypeScript, function declarations cannot be typed in the same way as function expressions, e.g. this function can implement the `React.FC` interface:
interface TestProps {
message: string
}
const Test: React.FC<TestProps> = ({ message }) => {
return <div>{message}</div>... | Suggestion,In Discussion,Has Repro | high | Critical |
298,746,577 | rust | rustdoc: Strip empty line(s) above and/or below hidden code in Rust code blocks | Consider the following code:
```rs
//! Top-level documentation.
//!
//! ```rust
//! // ... some Rust code ...
//!
//! # // ... hidden boilerplate-y Rust code ...
//!
//! // ... some Rust code ...
//! ```
```
Currently (last checked: 2024), rustdoc renders two empty lines in between the first & the last comment (quite... | T-rustdoc,C-feature-request,A-rustdoc-ui,T-rustdoc-frontend | low | Minor |
298,774,749 | go | x/build/cmd/gerritbot: Gerrit Bot should not be the owner of all imported changes | Gerrit bug: https://bugs.chromium.org/p/gerrit/issues/detail?id=8296 | Builders,NeedsFix | low | Critical |
298,782,956 | godot | C# CallDeferred() won't take function names in pascal case | **Godot version:**
3.0
**Issue description:**
<!-- What happened, and what was expected. -->
CallDeferred doesn't accept the pascal case method name in C#.
While using C# scripting you must pass in the 'snake case' function name same as GDScript.
I think that this causes confusion when all other names are chang... | enhancement,topic:dotnet | medium | Critical |
298,794,034 | flutter | FadeInImage support for crossfading between images | Right now it is only possible to have a FadeInImage fade out to white and then fade in to the desired loaded image. It would be great if I can just crossfade between them if I wanted to.
https://material.io/guidelines/patterns/loading-images.html#loading-images-usage
Material guidelines state that the images can ... | c: new feature,framework,a: animation,P3,team-framework,triaged-framework | medium | Major |
298,846,822 | pytorch | TestMultiprocessing.test_fd_sharing hangs with ASAN | Sample build https://ci.pytorch.org/jenkins/job/pytorch-builds/job/pytorch-linux-xenial-cuda9-cudnn7-py3-test/3486/console
cc @mruberry @VitalyFedyunin | module: tests,triaged | low | Minor |
298,855,261 | neovim | API: Ability to set the size of the editable area | How can a client set a Neovim's instance editable area to 80 columns and 40 rows excluding the sign column, numbers column, etc?
In the process of developing the Qt Creator client I need to set Neovim's editable area as exact same size as of Qt Creator's editable area. Qt Creator has its own number/sign/fold column an... | enhancement,api,ui,ui-extensibility | low | Major |
298,930,570 | vue | extended components fall back to global component definition. (instead of local one in "super/parent") | ### Version
2.5.13
### Reproduction link
[https://codepen.io/dasdeck/pen/NyMvjQ](https://codepen.io/dasdeck/pen/NyMvjQ)
### Steps to reproduce
The codepen shows the bug on opening.
### What is expected?
I'd expect "extComp" to behave exactly like "baseComp" since it is extended.
### What is actually hap... | improvement | medium | Critical |
298,978,507 | flutter | Navigator forces expand size constraint. | I found that I wanted to use the a Step like UX where the user can proceed through a series of steps. The back button on Android should take them to the previous step. This should appear in a dialog.
I found when you use a `Navigator` it forces the contents to max constraints, which means the dialog must fill the sc... | framework,f: routes,P2,team-framework,triaged-framework | low | Critical |
299,005,238 | vscode | [json] schema fileMatch for all *.json files in root folder | - VSCode Version: 1.20.1
- OS Version: Win 10
Does this issue occur when all extensions are disabled?: Yes
I've tried asking this on stackoverflow and gitter without success. I have a project with (among other things) lots of .json files. This is the `.vscode/settings.json` file:
``` json
{
"json.schemas"... | help wanted,feature-request,json | low | Major |
299,016,433 | kubernetes | kubectl cp fails on large files | <!-- 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/node,sig/cli,triage/accepted | high | Critical |
299,024,155 | three.js | VTKLoader: Add support for more dataset format | I would like to ask for advice because of I have one use case where I need to load VTK file which is a BINARY DATASET STRUCTURED POINTS, which represents a segmented image.
```
# vtk DataFile Version 3.0
VTK File Generated by Insight Segmentation and Registration Toolkit (ITK)
BINARY
DATASET STRUCTURED_POINTS
DIM... | Enhancement,Loaders | low | Major |
299,034,240 | rust | parser: modulesubpath defined with path macro needs to replace pathseperator to the default pathseperator | When trying out rustfmt on windows I got an error on my code that compiles. I have defined cross platform modules as such:
```
#[cfg(target_os = "linux")]
#[path = "proxyimpl/linux.rs"]
pub mod proxyimpl;
#[cfg(not(target_os = "linux"))]
#[path = "proxyimpl/nonlinux.rs"]
pub mod proxyimpl;
```
When running r... | C-enhancement,A-diagnostics,A-parser,T-compiler | low | Critical |
299,123,867 | go | x/build: run ssacheck mode for all architectures, not just amd64 | We have an amd64 ssacheck builder. That builder should compile std+cmd for all architectures, not just native. That would have prevented or at least caught #24014. | help wanted,Builders | low | Minor |
299,191,550 | kubernetes | Add local PV e2e block test for GCE local SSD | <!-- 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... | sig/storage,kind/feature,lifecycle/frozen | low | Critical |
299,232,288 | youtube-dl | Site support request: FOXplay.fi | ### Make sure you are using the *latest* version:
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2018.02.11**
### Before submitting an *issue* make sure you have:
- [x] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ... | geo-restricted | low | Critical |
299,251,418 | rust | Misleading diagnostics for method call | The following (reduced example) code leads to a misleading error message:
```rust
trait IsARectangle<T> {}
struct GeneralRectangle<T>
{
x: T
}
impl<T> IsARectangle<T> for GeneralRectangle<T> {}
impl<U> GeneralRectangle<U> where U: std::ops::Add<Output = U>
{
fn from<T, R>(_: &R) -> Result<Gene... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
299,312,985 | opencv | fisheye::estimateNewCameraMatrixForUndistrortRectify computes unfeasible new cam matrix |
##### System information (version)
<!-- Example
- OpenCV => 3.1
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2015
-->
- OpenCV => : 3.4
- Operating System / Platform => Linux Mint 18.1
- Compiler => gcc 5.4
##### Detailed description
fisheye::estimateNewCameraMatrixFor... | category: calib3d | low | Minor |
299,461,783 | pytorch | Bugs: Score Function approach in REINFORCE for PONG | I adapted the reinforce and actor-critic code for Cartpole to PONG. The original Cartpole code is located in:
https://github.com/pytorch/examples/blob/master/reinforcement_learning/reinforce.py
In the Cartpole example, the input to the policy NN is the state outputted by OpenAI, which is an array of 4 float. In P... | todo,module: crash,module: loss,module: cuda,module: memory usage,triaged | low | Critical |
299,468,933 | go | gccgo: TestShared/tsan_shared fails with GCC 5.5.0 | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
Go 1.10
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOCACHE="/hom... | NeedsInvestigation | low | Critical |
299,475,819 | flutter | Support specifying transitions in Navigator.xNamed calls | Internal: b/292548374
Mulligan uses named routes for all navigation. The `Navigator.pushNamed` method does not support specifying a transition. Instead, it is my understanding that the transition must be declared when we construct the `MaterialPageRoute`.
From my previous discussions with our UX designer, transiti... | c: new feature,framework,customer: mulligan (g3),f: routes,P2,team-framework,triaged-framework | low | 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.