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 |
|---|---|---|---|---|---|---|
293,669,663 | neovim | :write warning if modified-time changed | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: NVIM v0.2.2
- Vim (version: ) behaves differently? No
- Operating system/version: Arch Linux
- Terminal name/version: XTerm(331)
- `$TERM`: xterm-256color
### Steps to reproduce using `nvim -u NORC`
- `nvim -u NORC tes... | enhancement,ux | low | Minor |
293,671,343 | nvm | Install from zsh doesn't install to bash. Install from bash doesn't install to bash | - Operating system and version:
Linux mcdesktop 4.13.0-32-generic #35~16.04.1-Ubuntu SMP Thu Jan 25 10:13:43 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
- `nvm debug` output:
works in zsh, not in bash
- How did you install `nvm`? (e.g. install script in readme, homebrew):
in zsh, using `curl -o- https://raw.github... | installing nvm: profile detection,pull request wanted | low | Critical |
293,681,387 | rust | TcpSocket try_clone() sets close-on-exec but this isn't documented | Hello, the TcpSocket try_clone() method calls into .duplicate(), which sets the close-on-exec flag on the socket:
https://doc.rust-lang.org/src/std/net/tcp.rs.html#255-257
https://github.com/rust-lang/rust/blob/master/src/libstd/sys/unix/fd.rs#L197
I believe the documentation for try_clone() should be extended to des... | C-enhancement,P-medium,T-libs-api,E-medium,A-docs | low | Major |
293,710,135 | rust | Panics in destructors can cause the return value to be leaked | ## STR
```Rust
struct NoisyDrop;
impl Drop for NoisyDrop {
fn drop(&mut self) {
println!("dropping a NoisyDrop");
}
}
impl NoisyDrop {
fn new() -> Self {
println!("creating a NoisyDrop");
NoisyDrop
}
}
struct PanickyDrop;
impl Drop for PanickyDrop {
fn d... | C-enhancement,A-destructors,P-high,T-lang,T-compiler,I-unsound | medium | Critical |
293,729,381 | rust | Using ToSocketAddrs seems to remember EMFILE on the same thread | This was noticed in https://github.com/hyperium/hyper/issues/1422, where a user tried to trigger more connections than their allowed max file descriptors, and saw the EMFILE error. It was then noticed that afterwards, every call to `to_socket_addrs` that requires a DNS lookup would fail from then on. However, trying t... | C-bug,T-libs | low | Critical |
293,753,347 | go | cmd/compile: bad line number in error message calling variadic function | Compile:
```go
package p
import git "gopkg.in/libgit2/git2go.v26"
func f(r *git.Repository, x int) {
r.CreateCommit(
"",
nil,
nil,
"",
nil,
x,
)
}
```
Result:
```
$ go build x.go
# command-line-arguments
./x.go:10:3: cannot use x (type int) as type *git.Commit in argument to r... | NeedsFix,compiler/runtime | low | Critical |
293,761,666 | vscode | Backspace at end of empty line doesn't delete whole line and go to end of above line | <!-- 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.19.2
- OS Version: W10LTSB
Steps to Reproduce:
1. Create a new line of a block of multi-line code like an opening div tag or JavaScript o... | feature-request,editor-commands | medium | Critical |
293,762,670 | vscode | [json] Automatically add required fields to object | Since the editor has access to the schema for the file it should be easy to make the object that is suggested by intellisense to add all the "required" fields.
So if my Schema was
a.json
```json
{
"type": "object",
"required: [
"id"
],
"properties": {
"id: {
"typ... | feature-request,json | low | Minor |
293,782,031 | go | cmd/go: go get -v is too verbose for repos with meta tags | ```
Fetching https://golang.org/x/tools/cmd/godoc?go-get=1
Parsing meta tags from https://golang.org/x/tools/cmd/godoc?go-get=1 (status code 200)
get "golang.org/x/tools/cmd/godoc": found meta tag get.metaImport{Prefix:"golang.org/x/tools", VCS:"git", RepoRoot:"https://go.googlesource.com/tools"} at https://golang.o... | NeedsFix,GoCommand | low | Critical |
293,826,148 | godot | "Collapse all properties" has no effect if inspector folding is disabled in the Editor Settings | <!-- 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. -->
... | enhancement,discussion,topic:editor,usability | low | Critical |
293,911,101 | godot | Improve usability of animating sub-properties like modulate.a | <!-- 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. -->
... | enhancement,topic:editor,usability,topic:animation | low | Critical |
293,918,976 | flutter | Reload timeouts mishandled in --machine mode | While testing a fix for #14184 in Dart Code (don't send a reload request while it's already reloading) I noticed that if a hot reload times out, the error message returned (via `flutter run --machine`) seems confused:
```text
[15:03:50]: ==> [{"id":"1","method":"app.restart","params":{"appId":"9d04942a-7c3c-42d6-9b... | c: crash,tool,t: hot reload,P2,team-tool,triaged-tool | low | Critical |
293,998,157 | vue | SSR Component Cache doesn't cache Strings | ### Version
2.5.13
### Reproduction link
[https://runkit.com/martinlg/issue-vue-renderer-cache](https://runkit.com/martinlg/issue-vue-renderer-cache)
### Steps to reproduce
Run the Runkit code. If you prefer a git repository I can provide you one.
### What is expected?
The value passed to the ```set``` fun... | improvement | medium | Major |
294,026,214 | rust | dlclose() does not behave properly on Mac | This report will reference this repository which reproduces the issue: https://github.com/dradtke/rust-dylib-issues
### The Issue
The repository contains an application library, built as a `dylib`, and two example main programs, one in Rust and one in C. Each main application runs in a loop, loading the library w... | A-runtime,O-macos,A-thread-locals,C-bug | medium | Major |
294,060,134 | godot | Visible seams between GridMap tiles (sometimes only with MSAA enabled) | 
Is hard to see. You need to open the image full size. There are no visible seams with MSAA Disabled but with 2x or higher I start seeing seams and edges of 3D meshes.
My guess is the texture or mesh is... | topic:rendering,confirmed,documentation,topic:3d | high | Critical |
294,143,852 | flutter | Dragging a list that is currently handling an animateTo animation throws exception | ## Steps to Reproduce
The end goal is to create a scrolling list that automatically "snaps" to a given location based on the actual scroll position at which the user stops scrolling. This may not be the best solution (I'm new to Flutter), but here's the process by which I get the crash:
Wrap a ListView within a N... | framework,a: animation,f: scrolling,d: api docs,d: examples,customer: crowd,P2,workaround available,team-framework,triaged-framework | low | Critical |
294,144,745 | rust | Extremely weird hygiene behavior when invoking a macro from the calling crate in a Derive | I'm not entirely sure whether this is a bug or not, but the current behavior seems super finicky and unintuitive at worst, and I think it's likely a bug. I think this warrants some context on the use case, so I'd like to preface with that. There's a repro script at the bottom if you don't care about the context.
Cus... | T-compiler,A-macros-2.0,C-bug,A-hygiene | low | Critical |
294,191,298 | opencv | cv::viz::vtkCloudMatSink::WriteData handles colors with 4 channels incorrectly. | <!--
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... | bug,category: viz | low | Critical |
294,197,635 | opencv | Inconsistent color ordering in cv::viz::Mesh and cv::viz::WCloud | <!--
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... | bug,category: viz | low | Critical |
294,209,534 | go | x/mobile: gomobile Apps crash on Android 8 at "runtime/internal/atomic.Cas" | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go1.9.3
### Does this issue reproduce with the latest release?
I just tested version 1.9.2 and 1.9.3, both of them have this issue.
### What operating system and processor architecture a... | mobile | low | Critical |
294,250,545 | rust | -Z time-llvm-passes prints info on incremental builds while doing non incremental builds | This is kind of weird, when building with ````CARGO_INCREMENTAL=0 RUSTFLAGS="-Z time-passes -Z time-llvm-passes"```` in release mode, rustc will still print
````
warning: The output of `-Z time-llvm-passes` will only reflect timings of re-translated modules when used with incremental compilation
````
while building... | T-compiler,A-incr-comp,C-bug | low | Minor |
294,263,169 | rust | Compile time regression with _large_ number of slices | cc https://github.com/behnam/rust-unic/issues/199
The simplest way to show this is to use [`unic_ucd_name` 0.6.0](https://crates.io/crates/unic-ucd-name/0.6.0), which has two huge files for the Unicode code point Name property, [`name_map.rsv`](https://github.com/behnam/rust-unic/blob/v0.6.0/unic/ucd/name/tables/nam... | C-enhancement,E-needs-test,I-compiletime,T-compiler | low | Critical |
294,267,244 | flutter | How to make the screen moving with the Drawer? | Default :

`
This is what I want :

| c: new feature,framework,a: animation,f: material design,a: tablet,P3,team-design,triaged-design | low | Major |
294,295,477 | rust | Make the way to get intel-formatted assembly from rustc more discoverable | As far as I can tell, nowhere in `rustc --help` does it say how to control the ASM syntax. I only found it by finding this random gist: https://gist.github.com/bluss/5a088d3f420d12406689439e2940d731
Brainstorming ways to make it more discoverable:
- add an `--emit=asm-intel` option
- document `-C "llvm-args=-x86-... | A-frontend,C-enhancement,T-compiler | low | Minor |
294,341,603 | opencv | cv::viz::readMesh should support OBJ format as well | <!--
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,category: viz | low | Critical |
294,342,888 | kubernetes | StatefulSet support for clean decommission on scale down | /kind feature
StatefulSets are nice resources. But most stateful applications need to execute a custom "decommission" procedure that must be executed (**correctly**) when a instance is removed permanently from the cluster.
**Examples:**
- When scaling down from say 5 pods to 4 pods, many datastores require that ... | kind/feature,sig/apps,lifecycle/frozen | medium | Critical |
294,546,953 | go | x/text: ISO8859_1 charmap does not map invalid bytes to replacement character | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.9.1 linux/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
linux, amd64
### What did ... | NeedsInvestigation | low | Minor |
294,549,985 | go | net/http: new HTTP client package | Tracking bug for higher-level more usable HTTP client functionality.
* take contexts
* more timeout control per-request, rather than per-transport/client
* ...Options pattern?
* decode into JSON/etc easily?
* treat non-2xx as error (by default?).
* slurp entire response from server (by default?)
* control over... | Thinking,NeedsInvestigation | high | Critical |
294,565,163 | pytorch | Delete obsolete `THCDeviceTensor::downcastOuter` / `THCDeviceTensor::downcastInner` functions | This is a reminder to self to do this.
Also check to make sure nothing calls them anymore. I believe there are a lot of helper functions that call them but all those helper functions are unused.
cc @ngimel | module: bootcamp,module: cuda,triaged,small,better-engineering | low | Minor |
294,574,729 | TypeScript | --esModuleInterop: Strange incompatibility between correct and incorrect import of same type | **TypeScript Version:** master
**Code**
**b.d.ts**
```ts
declare class C {
f: this;
}
declare namespace C {}
export = C;
```
**a.ts**
```ts
import * as C1 from "./b";
import C2 = require("./b");
function f(t: (c: C1) => void): void {
t(new C2());
}
```
**Expected behavior:**
Erro... | Suggestion,In Discussion,Domain: Error Messages,Experience Enhancement | low | Critical |
294,589,058 | TypeScript | esmoduleinterop: Improve error message when calling static method on class | **TypeScript Version:** master
**Code**
**b.d.ts**:
```ts
declare class C { static m(): void }
declare namespace C {}
export = C;
```
```ts
import * as C from "./b";
C.m();
```
**Expected behavior:**
```
src/a.ts(1,1): error TS7038: A namespace-style import will import a module namespace object,... | Suggestion,Help Wanted,Domain: Error Messages | low | Critical |
294,593,811 | create-react-app | different default HOST in development mode from webpack-dev-server (0.0.0.0 vs localhost) | The [default host](https://github.com/facebook/create-react-app/blob/next/packages/react-scripts/scripts/start.js#L59) in the start script is `0.0.0.0`. This differs from the default of webpack-dev-server which is to bind to localhost.
I found this out by reading the output of `npm run dev`:
```
You can now view... | issue: proposal | low | Major |
294,600,545 | TypeScript | `this` types in intrinsic class attributes not inferred correctly | **Code**
```ts
// @strict: true
// @jsx: preserve
namespace JSX {
export interface Element {}
export interface IntrinsicClassAttributes<TClass> {
ref?: (ref: TClass) => void;
acceptProps?: (props: this) => boolean;
key: string;
}
export interface ElementClass extends... | Bug,Domain: JSX/TSX | low | Critical |
294,621,974 | rust | -Z time-llvm-passes prints no info for llvm passes during LTO | There is information printed when building the individual crates, but when linking everything together and applying llvm passes to the entire program, no information is given:
````
time: 0.210; rss: 607MB ll link "allocator"
time: 52.029; rss: 693MB LTO passes
time: 87.689; rss: 693MB codegen passes [a... | A-LLVM,C-enhancement,T-compiler | low | Minor |
294,623,367 | pytorch | NVIDIA_DRIVER_CAPABILITIES env variable is missing in pytorch docker images | I use the pytorch:v0.2 from dockerhub, I found the NVIDIA_DRIVER_CAPABILITIES env variable is missing
```
root@pytorch:/workspace# echo $NVIDIA_DRIVER_CAPABILITIES
```
but when I use the base image of pytorch `nvidia/cuda:8.0-cudnn6-devel-ubuntu16.04` according to the Dockerfile https://github.com/pytorch/pytor... | triaged,module: docker | low | Minor |
294,634,141 | flutter | Get dimensions of widget after layout without render | ## Steps to Reproduce
In the moment we read out the size of the widget in the build method with a delay in order to get the correct size when the build update is done. That looks rather like a hack and has to be called
twice in order to work (see code). I would like to see an save callback (overwrite) in the deriv... | c: new feature,framework,c: proposal,P3,team-framework,triaged-framework | high | Major |
294,698,602 | vscode | Provide ability to ignore all whitespace in diff editor (feature request) | Steps to Reproduce:
1. In settings it's possible to set `"diffEditor.ignoreTrimWhitespace": true`
2. There's no option to ignore all whitespace,
Would it be possible to add `"diffEditor.ignoreAllSpaces": true`? I believe the command-line to achieve this would be something like `git diff --ignore-space-at-eol -b... | feature-request,diff-editor | high | Critical |
294,729,425 | electron | Clipboard: allow to write to buffer from clipboard.write() method | * Electron version: 1.7.x
* Operating system: macOS
### Expected behavior
The method [`clipboard.write()`](https://github.com/electron/electron/blob/master/docs/api/clipboard.md#clipboardwritedata-type) accepts a data object but does not allow to write to a custom format with a `Buffer` (like `clipboard.writeBuf... | enhancement :sparkles: | medium | Critical |
294,808,173 | node | listening to sigint don't exit nicely | * **Version**: master (83c93158fb0e979dbffb4a776d237da0db8f7b08)
* **Platform**: MacOS
* **Subsystem**: `process`, `trace_events`
Run the following program, hit Ctrl+C. I would then expect `got SIGINT` and `exit` to be printed. It prints neither.
The problem that I'm really having, is that if I add `--trace-eve... | child_process | medium | Critical |
294,823,322 | vscode | Add command to select all next occurrences for all cursors | Consider the following:
<img width="160" alt="screen shot 2018-02-06 at 8 23 26 am" src="https://user-images.githubusercontent.com/2193314/35870688-207a2aa2-0b17-11e8-92f7-1cde31a3eeef.png">
Pressing cmd+d adds the quote to the right of `"Meta`:
<img width="181" alt="screen shot 2018-02-06 at 8 24 49 am" src="... | feature-request,editor-multicursor | low | Major |
294,828,456 | rust | Non-items dropped in custom derive | Hi.
It looks like when you generate non-items in a custom derive, they are silently dropped.
For instance, with the following custom derive:
```rust
#[proc_macro_derive(HelloWorld)]
pub fn hello_world(input: TokenStream) -> TokenStream {
let ast = syn::parse(input).unwrap();
let gen = impl_hello_world(&a... | C-enhancement,A-diagnostics,T-compiler,A-macros-2.0 | low | Minor |
294,872,557 | go | x/build/maintner: wrong type for DismissedReview.State | The [docs](https://developer.github.com/v3/issues/events/) say that it's a string with values `commented`, `approved`, `changes_requested`
https://github.com/golang/build/blob/438dce5f3d2fd35b54f4d5431e53e2029c40fffe/maintner/github.go#L466-L472
https://github.com/golang/build/blob/438dce5f3d2fd35b54f4d5431e53e20... | Builders,NeedsInvestigation | low | Minor |
294,920,456 | TypeScript | Decouple jsx element type from jsx factory return type and sfc return type | We need to look up the type of a jsx expression by actually resolving the jsx factory call, so that we don't create a reference to the global `JSX.Element` type, which can change shape between react versions (as it needs to in the react 16 upgrade). We also need to resolve the sfc return type and class element type fro... | Suggestion,Breaking Change,Effort: Moderate,Domain: JSX/TSX,Fix Available | high | Critical |
294,937,022 | TypeScript | Suggestion: go-to-definition should go to a base definition if possible. | **TypeScript Version:** master
**Code**
```ts
class A {
m() {}
}
class B extends A {
m() {}
}
```
**Expected behavior:**
Go-to-definition on `m` in `class B` should go to `m` in `class A`. (Same if `A` were an interface.)
**Actual behavior:**
I get taken to the beginning of the current... | Suggestion,In Discussion,Domain: Symbol Navigation | low | Minor |
294,937,498 | youtube-dl | FOX.COM LOGIN ERROR |
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.02.04*. 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.
- [ ] I've **verifi... | geo-restricted,tv-provider-account-needed | low | Critical |
294,984,026 | pytorch | [feature request]Add an env variable to cover different pathes when testing code with openmp | I have discussed with @fmassa about the problem before. Refer to #4824 and #4188.
In consideration of openmp overhead threshold, actually the code has 2 pathes need to be tested. However, the size of tensor in test case are usually small in order to increase test speed. So the current code is potentially dangerous... | module: tests,triaged,better-engineering | low | Minor |
294,997,666 | rust | Tracking issue for `try_reserve`: RFC 2116 fallible collection allocation | This is a tracking issue for the `try_reserve` part of the RFC "fallible collection allocation" (rust-lang/rfcs#2116).
**Steps:**
- [x] Implement the RFC #48648
- [x] Add `HashSet::try_reserve`: https://github.com/rust-lang/rust/pull/58623
- [x] Finalize the error type
- [ ] Adjust documentation ([see instru... | A-allocators,A-collections,T-libs-api,B-unstable,B-RFC-implemented,C-tracking-issue,Libs-Tracked | high | Critical |
295,106,125 | pytorch | Saving model with runtime code changes | - OS: Ubuntu 16.04
- PyTorch version: 0.3.0.post4
- How you installed PyTorch (conda, pip, source): pip
- Python version: python 3.5.2
There is a bug in saving and loading the model with torch.save(...) and torch.load(...).
Workflow of bug:
1. Create neural network code and start learning loop. Model gets saved... | module: serialization,triaged | low | Critical |
295,211,864 | vscode | [css] Lab colors and other CSS Color Module Level 4 features | See the [CSS Color Module Level 4](https://drafts.csswg.org/css-color/#specifying-lab-lch) specification.
While the specification is still a draft and browsers don't support these features yet, there already exists a [PostCSS plugin](https://github.com/jonathantneal/postcss-color-lab) that (partially) implements the... | help wanted,feature-request,css-less-scss | low | Major |
295,224,863 | flutter | flutter shell wrapper can't resume transfer of SDK from completed download | At some point in the recent past, curl HTTP range commands to the URL for the Dart SDK likely worked even if the download was complete, or otherwise we wouldn't unconditionally do this:
https://github.com/flutter/flutter/blob/e1018fab34e49ad3941361aa06fbbe5173e110ac/bin/internal/update_dart_sdk.sh#L64
However, th... | tool,a: first hour,P2,team-tool,triaged-tool | low | Minor |
295,232,972 | rust | Tracking issue for RFC #1909: Unsized Rvalues (unsized_locals, unsized_fn_params) | This is a tracking issue for the RFC "Unsized Rvalues " (rust-lang/rfcs#1909).
**Steps:**
- [ ] Implement the RFC (cc @rust-lang/compiler -- can anyone write up mentoring instructions?)
- [ ] Adjust documentation ([see instructions on forge][doc-guide])
- [ ] Stabilization PR ([see instructions on forge][stabil... | B-RFC-approved,T-lang,C-tracking-issue,F-unsized_locals,F-unsized_fn_params,S-tracking-design-concerns,S-tracking-needs-summary | high | Critical |
295,267,057 | TypeScript | Differing results for inference produced when identical overload count changes | I happened to notice this while looking at something else inference related a bit ago. We already have a test that is looking for checking this, `fixingTypeParametersRepeatedly3.ts`, added in #2356, but it was accepted in #16368 (strict generic checks) with a (tiny, unnoticeable in all the other changes) baseline showi... | Bug | low | Critical |
295,271,077 | godot | Exported (non-static) Arrays are not duplicated when instancing. | **Godot version:** Godot 3.0
**OS/device including version:** Solus Linux / X11
**Issue description:** When exporting an array variable in GDScript, the array is not duplicated upon instancing of the node. This behavior conflicts with all other properties, and is contrary to the OOP model Godot uses. The array is... | bug,discussion,topic:gdscript,confirmed | medium | Critical |
295,286,435 | TypeScript | Suggestion: case-sensitive imports | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 2.7.0-dev.201xxxxx
My mac does not have case sensitive imports. That is you can import the file `x.js` as `./X.js` and everything will work. However, our servers run on linux (like most) and I... | Suggestion,Help Wanted,Effort: Moderate | high | Critical |
295,310,416 | go | spec: order of evaluation vs panicking | It's possible to write expressions that, depending on order of evaluation, may panic for different reasons. I think this is fine, but it might be worth mentioning or providing examples to make clearer / less surprising to users.
For example, consider:
var p *[0]int
var i int
(*p)[i] = 0
Under c... | Documentation,NeedsFix | low | Major |
295,357,469 | TypeScript | Request for translation on Filipino | I want to contribute in translation | Suggestion,Awaiting More Feedback,i18n | low | Minor |
295,357,607 | flutter | iOS a11y text entry is incomplete | This is a follow-up for issue https://github.com/flutter/flutter/issues/12786.
As of https://github.com/flutter/engine/pull/4575 we have partial support for a11y text entry on iOS.
What works:
- When "tabbed" or "dragged" into
- Text fields are announced as "Text field"
- The hint "double tap to edit"
... | a: text input,platform-ios,framework,a: accessibility,a: fidelity,f: cupertino,has reproducible steps,P2,customer: flex,team-ios,triaged-ios,found in release: 3.19,fyi-text-input,found in release: 3.22 | low | Major |
295,363,956 | vscode | Titlebar-less view for Linux | Just as Mozilla did in Firefox 59 (you can check it out in Firefox Nightly atm), and someone was doing for the Mac version in #12377, it would be really good to have an option to **integrate the title bar in the same row where the tabs reside**, in order to save some vertical space (which is even more important if like... | feature-request,linux,titlebar | high | Critical |
295,437,163 | rust | Macros: limitation in the expression parser for <$:path>::<ident> | Background: https://users.rust-lang.org/t/macros-using-path-tokens-with-format-args/15480
When passing in a `path` token to a macro, then trying to suffix the metavariable with `::<ident>` (or more), the parser cannot recognize the whole thing as an `:expr`, which causes failures on calls to macros like `format_args... | C-enhancement,A-parser,A-macros,T-compiler | medium | Critical |
295,453,638 | go | cmd/link: panic: runtime error: slice bounds out of range | ### What version of Go are you using (`go version`)?
1.9.4
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
Ubuntu 17.10 linux_amd64
### What did you do?
I'm compiling my project with bazel by just running `bazel build... | help wanted,NeedsInvestigation | low | Critical |
295,453,930 | vscode | Allow to open multiple workspaces in the same window | Workspace feature is great because we can grouping projects in a top context (microservices projects in a big API workspace). But, only one workspace can be open. This feature can be powerful if multiple workspaces can be open at the same time (in the same window).
. The first three methods are implemented by `Vec<u8>`, while the other ... | T-rustdoc,C-enhancement,A-trait-system | low | Critical |
295,619,907 | go | x/crypto/ssh: handshake failed: ssh: unsupported DSA key size 2048 | We are seeing some odd behavior connecting to a customer SFTP site with a username and password. This code is working for all other tested endpoints.
I see a section of code in the crypto/keys.go file in the function checkDSAParams that fails if the key length is not 1024, but since I am able to connect to that SFT... | NeedsInvestigation | medium | Critical |
295,641,340 | vscode | Incorrect indentation for single line if/for/while/etc, multiline chaining statements etc | I am experiencing some weird indentation issues. Not using any plugins to prettify or similar.
```
if (condition) {
return; // <-- correct indentation
}
```
```
if(condition)
return; // <-- incorrect indentation
```
Some ppl claim this should be avoided. I don't agree. Using pair of { } for simple early... | bug,typescript,javascript,editor-autoindent,on-unit-test | high | Critical |
295,670,966 | kubernetes | Allow limiting adding/removing finalizers | /kind feature
@kubernetes/sig-auth-feature-requests
@kubernetes/sig-api-machinery-feature-requests
**What happened**:
As a namespace-constrained user, I am able to manually add/remove finalizers added by system components:
* garbage collection finalizers
* pv/pvc protection finalizers
* service catalog dep... | area/security,area/apiserver,sig/api-machinery,kind/feature,sig/auth,priority/important-longterm,lifecycle/frozen | medium | Major |
295,677,840 | godot | Inaccurate physics with simple bodies (RigidBodies can temporarily penetrate other PhysicsBodies) | **Godot version:**
v3.0.stable.official
**OS/device including version:**
Windows 10 Pro 10.0.16299 Build 16299
**Issue description:**
Simple 3d physics are not resolved correctly. Slow moving rigidbodies can enter/penetrate staticbodies at slow speeds. This collision is slowly corrected over several frames... | bug,confirmed,topic:physics | medium | Major |
295,821,156 | TypeScript | Empty type inferred by Object.entries | **TypeScript Version:** 2.7.1
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** Object entries empty TS2365
**Code**
```ts
let o: any = {x: 5};
let p = Object.entries(o).map(([k, v]) => v + 1);
```
Compile command: `tsc --lib es2017,es201... | Bug,Domain: lib.d.ts | medium | Critical |
295,822,682 | angular | Angular Elements should preserve/forward component methods | ## I'm submitting a...
<!-- Check one of the following options with "x" -->
- [ ] 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 -->
- [x] Feature request
- [ ] Documentation issue or request
... | type: bug/fix,feature,area: elements,feature: under consideration | medium | Critical |
295,920,753 | pytorch | BCELoss - weight parameter shape incorrect | The `weight` parameter of `BCELoss` seems to be incorrectly defined when using a multi-dimensional input and target. Related [forum thread](https://discuss.pytorch.org/t/binary-cross-entropy-weights/13299).
The documentation defines `weight` as:
> If given, has to be a Tensor of size “nbatch”.
However, this exam... | module: nn,module: loss,triaged | low | Critical |
295,941,230 | pytorch | TakeBackward taking a significant portion of backward time | I'm trying to write some code that requires reindexing the hidden states of an LSTM at each step (because of particle filtering). Is there a more efficient way to do this? It's pretty slow right now, and I wonder if another approach (`scatter_`?) might be better.
If there's an internal issue with PyTorch, I'm happy ... | module: performance,module: autograd,triaged | low | Major |
295,955,472 | pytorch | ASAN detected leaks on python -c 'import torch' | They seem relatively benign, but might still be worth looking into. Some of them might just be Python bugs but I see a bunch of leaks related to pybind11.
```
=================================================================
==15599==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 1492688 byte(s) in ... | module: memory usage,triaged | low | Critical |
295,959,563 | TypeScript | Missing fix suggestions when multiple come from the same JSX element | ```typescript
const element = <span />;
// [ts] 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
```
If the compiler settings have `jsx: "react"`, it seems like adding the import automatically could be a reasonable auto-fix?
```typescript
import * as React f... | Bug,Domain: Quick Fixes | low | Major |
296,024,372 | rust | Feature: `Rc::clone_raw` (and for Arc) | When using `from_raw`/`into_raw` functions with `Rc`, you often want to obtain a new reference to a raw pointer, without taking ownership. At the moment you have to do this dance:
```rust
fn clone_raw<T>(ptr: *const T) -> Rc<T> {
let result = unsafe { Rc::from_raw(ptr) };
::std::mem::forget(result.clone()... | T-libs-api,C-feature-request | low | Critical |
296,058,773 | vscode | [css] propose ids used in other selectors | ### Issue Type
Bug
### Description
i have issues when i try to use suggestion for css files. for classes works well but when i'm using for id i have no suggestions try it with a file with like 500 lines of code
### VS Code Info
VS Code version: Code 1.20.0 (c63189deaa8e620f650cc28792b8f5f3363f2c5b, 2018-0... | feature-request,css-less-scss | low | Critical |
296,066,686 | angular | [Feature Request] [Service Worker] Background Sync | <!--
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... | feature,area: service-worker,feature: under consideration | high | Critical |
296,071,764 | go | x/build/maintner/maintnerd: allow serving logs locally | Currently, maintnerd only serves on /logs if it's logging to GCS.
It doesn't look like this is for any particular reason except that the logs index hasn't been implemented for local filesystem?
/cc @bradfitz | Builders | low | Minor |
296,082,489 | rust | Step::steps_between does not distinguish overflow and unimplemented (unstable) | It returns `Option<size>`: https://doc.rust-lang.org/std/iter/trait.Step.html#tymethod.steps_between
And the comment says it uses `None` for overflow: https://doc.rust-lang.org/src/core/iter/range.rs.html#29
But it also uses `None` for unimplemented https://doc.rust-lang.org/src/core/iter/range.rs.html#155
And... | C-enhancement,T-libs-api | low | Minor |
296,108,949 | TypeScript | auto import always uses relative (to the current file) module paths in presense of baseUri | back in a day it used to be different
- at first it was always an absolute path (that is without "./" or "../" in it) relative to the `baseUri`
- then starting at some point it began to always show a popup with 2 options: absolute or relavive
- now (since like a week ago or so) it just always uses a relative path wi... | Suggestion,Awaiting More Feedback | low | Major |
296,121,392 | godot | [Bullet] Performance monitor for 3D physics not working for Bullet | **Godot version:**
v3.0-stable_x11.64
**Issue description:**
Performance monitor for 3D physics not working for Bullet, all values are 0. This issue was mentioned earlier here, among other issues: https://github.com/godotengine/godot/issues/15975
**Steps to reproduce:**
Run attached project. Monitor values are... | bug,topic:editor,confirmed,topic:physics,topic:3d | low | Critical |
296,135,274 | go | x/tools/go/ast/astutil: Apply: extraneous comma after replaced parameter | Not sure if this is a bug in `astutil.Apply` or `format.Node`.
This function:
```
func applyBug() {
src := ` ... | Tools | low | Critical |
296,152,313 | rust | closure return type inference doesn't consider coercions | The title is a guess as to why this code doesn't compile:
```rust
fn foo(x: Option<&mut i32>) -> Option<&i32> {
x.map(|x| x)
}
```
```
error[E0308]: mismatched types
--> src/main.rs:3:5
|
3 | x.map(|x| x)
| ^^^^^^^^^^^^ types differ in mutability
|
= note: expected type `std::optio... | C-enhancement,T-compiler,A-inference,T-types | low | Critical |
296,162,858 | opencv | Design flaw of Widget in the viz module | <!--
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... | category: viz | low | Critical |
296,184,742 | opencv | Name mismatch for widgets.hpp and widget.cpp in the viz module. | <!--
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: viz | low | Critical |
296,216,321 | vscode | Option to disable font ligatures in strings | Sometimes you have to list a bunch of characters in a string containing a regular expression and you don't want the characters to merge in order to more easily read the expression. | feature-request,font-rendering | medium | Critical |
296,218,625 | rust | Multiple output files created with -o foo --emit=bar -C codegen-units=1 when incremental compilation is enabled | rustc will not warn that the requested value for codegen-units is ignored when incremental compilation is enabled. If also using ```-o foo --emit=bar```, this results in multiple foo.bar files being created.
It would be useful to have a warning message that codegen-units is being overridden.
There is a similar w... | C-enhancement,T-compiler,A-incr-comp | low | Critical |
296,353,156 | rust | #[repr(align(4))] struct has 8 byte alignment | [See it live](https://play.rust-lang.org/?gist=b53af41209b9a45e5e4c180d54018d7f&version=undefined):
```rust
#![allow(non_camel_case_types)]
pub enum c_void {}
type uintptr_t = usize;
type int16_t = u16;
type uint16_t = int16_t;
type uint32_t = u32;
type intptr_t = uintptr_t;
#[repr(C)]
#[repr(align(4))]... | A-diagnostics,T-compiler,C-feature-request,A-repr,A-align | low | Critical |
296,429,479 | opencv | Integration with oss-fuzz | According to [meeting notes](https://github.com/opencv/opencv/wiki/2017#minutes-17) from 2017-05-16, there was a plan to integrate OpenCV into [oss-fuzz](https://github.com/google/oss-fuzz).
However it seems to have never happened.
What would help you getting started (beyond the cash reward from Google)? | RFC | low | Major |
296,505,698 | rust | Ship a custom LLDB with Rust support | I hear that @tromey has been doing some awesome work with Rust-specific support in LLDB, and we should enable easily shipping that work to users! This is intended to be a checklist/tracking issue of sorts of the work needed to be done to enable this.
* [x] One of the first things we'll need to do is to add it to the... | A-LLVM,T-infra,C-tracking-issue | medium | Critical |
296,571,166 | rust | Support returning elements from an array by-value | This works:
```rust
fn test_vec() -> String {
let mut z = vec![String::from("foo"), String::from("bar")];
z.remove(0)
}
```
But this fails:
```rust
fn test_array() -> String {
let mut z = [String::from("foo"), String::from("bar")];
z[0]
}
```
with a "cannot move out of" error.
(... | C-enhancement,A-borrow-checker,T-compiler,A-array | low | Critical |
296,573,629 | go | proposal: cmd/go: allow test binaries to identify as uncacheable | The new test caching stuff is neat, except when a test has an external dependency (e.g. it is testing code that hits a web service), and we don't want the test's result to be cached (so that we're always exercising the code against the real world).
There are ways to disable the test caching from the user's perspecti... | Proposal,GoCommand | medium | Critical |
296,599,334 | vscode | Feature Request - Make possible to undo (redo) changes in code after VS Code's been restarted | <!-- 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
It would be great to undo (Ctrl+Z) and redo (Ctrl+Y) changes in the code we've done, **after** VS Code's been... | feature-request,editor-core,undo-redo | high | Critical |
296,611,241 | go | proposal: math/rand/v2: add function for random bool | I want to be able to call `rand.Bool()` and receive a pseudo-random bool when I import `math/random` | Proposal,Proposal-Hold | medium | Critical |
296,614,935 | go | proposal: cmd/go: add transitive Deps for TestImports and XTestImports | `go list` provides a `.Deps` which has the recursive list of dependencies for `.Imports`. This is important because it provides the complete list of dependencies that must be fulfilled to run `go build`
Unfortunately there is no recursive dependency provided for `TestImports` or `XTestImports`. Those have a dependen... | Proposal,Proposal-Hold | low | Major |
296,733,122 | pytorch | Weird error message in torch.split_size_or_sections | Hi everyone,
I wanted to use the new function torch.split with a list of integer.
I have a input vector of dim X (let's say 100) and a list of integer where the sum is less or equal (Y <= X). If Y <= X, an error is raised saying "Sum of split sizes exceeds tensor dim", which is not the case.
`
def split(tenso... | triaged,module: numpy | low | Critical |
296,799,841 | opencv | TS module does not map SIGFPE to TS::FAIL_ARITHM_EXCEPTION in ts.cpp | <!--
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... | test,priority: low | low | Critical |
296,820,194 | javascript | (question) eslint rule / plugin for guideline 7.15 | is there an eslint rule or plugin that enforces [7.15](https://github.com/airbnb/javascript#functions--signature-invocation-indentation)? | pull request wanted,editorial,needs eslint rule change/addition | low | Major |
296,842,023 | react-native | Android native UI components are not re-layout on dynamically added views | ### Is this a bug report?
Yes.
### Have you read the [Contributing Guidelines](https://facebook.github.io/react-native/docs/contributing.html)?
Yes.
### Environment
Environment:
OS: macOS High Sierra 10.13.2
Node: 8.9.4
Yarn: 1.3.2
npm: 5.6.0
Watchman: 4.9.0
Xcode: Xcode 9.2 Build versi... | Ran Commands,Issue: Author Provided Repro,Platform: Android,Resolution: Backlog,Bug,Never gets stale | high | 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.