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 |
|---|---|---|---|---|---|---|
373,243,481 | flutter | Embedded UIViews don't show in scene snapshots | c: new feature,platform-ios,engine,a: platform-views,P2,team-ios,triaged-ios | low | Minor | |
373,245,274 | pytorch | Python dataloader Improvements | @goldsborough and I are planning a series of improvements to dataloader in both C++ and Python API. This issue mainly focuses on the planned changes for the Python API.
- [ ] Iterator Serialization (https://github.com/pytorch/pytorch/issues/11813)
Dataloader iterator is not picklable currently, due to the multi... | module: dataloader,triaged | low | Major |
373,280,565 | kubernetes | Service objects should be annotated by cloud-providers to track underlying resources. | /kind feature
## What we want to do
We need to add an extra field `Service.Status.LoadBalancer.Ingress[0].ProviderID` in Service object to identify the CloudProvider SLB id , like what we did in Node object.
This would benefit cloudprovider for supporting rename SLB.
## Reason
Cloud Provider createed a Load... | sig/network,kind/feature,lifecycle/frozen,sig/cloud-provider | medium | Critical |
373,284,903 | pytorch | [caffe2]How can I export init_net.pb and predict_net.pb files on my own? | I want to convert the retinanet in Caffe2/Detectron to an onnx model, but I need to prepare init_net.pb and predict_net.pb files first. Followed by the script bellow I got these two files, but when I tried to run the convert procedure an error occured and I don't know how to handle this. Can anybody help me with this p... | caffe2,triaged | low | Critical |
373,395,206 | pytorch | [caffe2] How to handle multiple inputs and multiple outputs in the network architecture? | Is it currently possible to handle multiple inputs and multiple outputs in the network architecture in CAFFE2?
| caffe2 | low | Minor |
373,408,604 | TypeScript | Imports in .d.ts files break wildcard modules declarations | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Help Wanted,Domain: Related Error Spans | medium | Critical |
373,415,040 | TypeScript | SourceRoot documentation inconsistent | In the [compiler options documentation](https://www.typescriptlang.org/docs/handbook/compiler-options.html) is `sourceRoot` explained as follows:
> Specifies the location where debugger should locate TypeScript files instead of source locations. Use this flag if the sources will be located at run-time in a different ... | Docs | low | Critical |
373,420,491 | rust | Misleading/unhelpful error message from borrow checker | The following program, when compiled, gives rise to a misleading and unhelpful error message:
```
use std::io;
enum Error<'a> {
Invalid(&'a [u8]),
Io(io::Error),
}
struct Thing {
counter: usize
}
enum Result<'a> {
Done,
Error(Error<'a>),
Value(usize)
}
impl Thing {
fn... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,D-confusing | low | Critical |
373,426,054 | electron | Custom drag and drop type | **Problem**
Right now, to start a file drag you call `WebContents.startDrag({ file:<path>, icon:<path> })`. This will spawn the following DataTransfer object:
```
DataTransfer {
dropEffect: 'none',
effectAllowed: 'copyLink',
files: FileList,
items: DataTransferItemList,
types:['Files',..]
}
```
... | enhancement :sparkles: | low | Minor |
373,426,130 | opencv | VideoCapture will fail after open it many (about 99xx) times | ##### System information
- OpenCV => 2.4.13.6
- Operating System / Platform => windows7 64bit, windows10
- Compiler => VS2015
- WebCam => USB webcam
##### Detailed description
I found that open videocapture will fail when I did it many times.
It always failed around the 99xx times.
The testing code i... | category: videoio(camera) | low | Critical |
373,495,294 | go | wasm: browser compatibility policy | I would like to propose a discussion on how we want to handle browser compatibility. There are several features being worked on: https://github.com/WebAssembly/proposals When do we want to use them? Do we want to offer backwards-compatibility?
Here are my own thoughts, open for debate:
(1) Go's support for WebAss... | DevExp,arch-wasm | high | Critical |
373,554,294 | pytorch | Generalized Data Class | ## Generalized Data Class Feature
I suggest to add an abstract `Data` class in the `torch.utils.data` module. The goal of which is to group a couple of data batching behaviors for the user to define: batch together arbitrary `Data` objects, `chunk`/`split` arbitrary batched data objects across batch dimension, move ar... | module: dataloader,triaged,module: data | low | Minor |
373,588,573 | rust | `Eq + Hash` rule is broken when mixing `OsStr` and `Path` | This program surprisingly fails:
```rust
use std::{
ffi::OsStr,
path::Path,
collections::hash_map::DefaultHasher,
hash::{Hash, Hasher},
};
fn hash<T: ?Sized + Hash>(v: &T) -> u64 {
let mut sh = DefaultHasher::new();
v.hash(&mut sh);
sh.finish()
}
fn main() {
let s = O... | C-bug,T-libs | low | Critical |
373,590,751 | go | x/build/cmd/gomote: 502 Bad Gateway error | I often encounter this 502 Bad Gateway error while actively working with a buildlet created using gomote. I guess this is because I was holding the buildlet too long (~30min) and there is a hidden time limit on each buildlet. If so, we need a better error message than this:
<pre>
$ gomote ls user-hakim-windows-amd6... | Builders,NeedsInvestigation | medium | Critical |
373,592,066 | go | proposal: spec: non-reference channel types | **Background**
I've started using 1-buffered channels pretty heavily as “selectable mutexes” (see also https://github.com/golang/go/issues/16620). Unbuffered channels are also quite common in Go APIs (for example, as `cancel` channels in a `context.Context`; see also https://github.com/golang/go/issues/28342#issueco... | LanguageChange,Proposal,LanguageChangeReview | medium | Critical |
373,597,506 | pytorch | Backward pass over torch.nn.functional.pad is extremely slow with half tensors | ## 🐛 Bug
The backward pass over `torch.nn.functional.pad` is more than 300x slower with half tensors compared to fp32 tensor for the example below.
## To Reproduce
```
import torch
import time
def exec(x):
y=torch.nn.functional.pad(x,pad=(47,48,47,48),mode="replicate")
torch.cuda.synchronize()
t... | module: performance,module: cuda,triaged,module: half | low | Critical |
373,608,371 | angular | Multiple Methods with Same HostListener |
## I'm submitting a...
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[x] Bug report
[ ] Performance issue
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead see https://github.com/angu... | type: bug/fix,freq2: medium,area: core,core: host and host bindings,P4 | low | Critical |
373,613,258 | create-react-app | Add versioning to docs | Adding a placeholder for this so we don't forget about it. Original discussion here: https://github.com/facebook/create-react-app/issues/5238#issuecomment-432428041 | tag: documentation | low | Minor |
373,616,895 | react | Receive previous state in getDerivedStateFromError | <!--
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*?**
This is feature request.
**What is the current behavior?**
`getDerivedStateFromError` hook receives `error`... | Type: Feature Request | medium | Critical |
373,618,217 | kubernetes | RFE: Remove Provider Specific details from e2e tests | **Is this a FEATURE REQUEST?**:
The e2e tests have details baked in that have existed since the early days around providers. Recent refactoring has exposed brittleness in how we invoke the tests and TBH provider specific behavioral tests that depend on non-standard APIs should be moved outside of tree.
/kind featu... | kind/feature,sig/testing,lifecycle/frozen,sig/cloud-provider,area/e2e-test-framework,needs-triage | medium | Critical |
373,653,023 | react | onMouseEnter does not fire on an underlaying element if an element above is removed | **Do you want to request a *feature* or report a *bug*?**
Bug - I did do some searching around the issues to see if there was a similar/dupe, but I could not find one.
**What is the current behavior?**
With 2 elements overlaying on top of each other, if the upper element gets removed while the cursor is over b... | Component: DOM,Type: Needs Investigation | low | Critical |
373,685,753 | go | cmd/go, cmd/link: use Windows response files for gcc/g++ to avoid arg length limits | ### What version of Go are you using (`go version`)?
1.11.1
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
windows 386/amd64
### What did you do?
Tried to compile a cgo program.
```go
package main
import (
... | help wanted,NeedsFix,compiler/runtime | low | Critical |
373,701,900 | rust | Improve diagnostic when writing signature `for<'_> Foo<'_>` | When encountering the following case
```
error[E0637]: `'_` cannot be used here
--> $DIR/underscore-lifetime-binders.rs:24:21
|
LL | fn meh() -> Box<for<'_> Meh<'_>>
| ^^ `'_` is a reserved lifetime name
error[E0106]: missing lifetime specifier
--> $DIR/underscore-lifetime-bind... | C-enhancement,A-diagnostics,A-lifetimes,P-low,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
373,705,779 | svelte | clientWidth on video tag doesn't always return proper value, doesn't change `onupdate` for percentages | If I set a video to have `height: 100%` and `width: auto` so that it fills its parent div fully and auto-expands its width, the value I get back from binding `clientWidth` to it is 1.125 larger than in actuality.
You can reproduce this with the following code in the REPL. `clientWidth` should be `800` but it comes o... | stale-bot,temp-stale | low | Minor |
373,856,084 | angular | Introduce `scrollPositionRestoration` for `NavigationExtras` | <!--
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: router,feature: under consideration | high | Critical |
373,872,342 | puppeteer | Support extensions with createIncognitoBrowserContext | ### Steps to reproduce
**Tell us about your environment:**
* Puppeteer version: ^1.6.2
* Platform / OS version: OSX
* Node.js version: v8.11.3
**What steps will reproduce the problem?**
_Please include code that reproduces the issue._
1. Use `createIncognitoBrowserContext`
2. Try to enable an extensio... | feature,upstream,chromium | low | Critical |
373,925,073 | vscode | MSIX installer | After 2 years of conversation in issue #10759 (Release in the Windows Store) I think this is the right time to reevaluate the request.
What we originally wanted is all the goodness of UWP lifecycle management (clean install/uninstall and updates received in the background without having to run the app), but now it's... | feature-request,install-update,windows | high | Critical |
373,949,758 | pytorch | warning: attribute namespace "clang" is unrecognized; High Sierra / Fedora compilation with clang results in spurious clang errors in nvcc | ## 🚀 Feature
Building for mac os generates a lot of new warnings related to C10_NODISCARD macro
(part of the change to make TensorOptions immutable #12630 )
e.g.
pytorch/aten/src/ATen/core/TensorOptions.h(120): warning: attribute namespace "clang" is unrecognized
pytorch/aten/src/ATen/core/TensorOptions.h(129):... | module: build,module: cuda,triaged,module: build warnings | medium | Critical |
373,980,976 | pytorch | [caffe2] incompatible constructor arguments | hi guys i try to run the example for caffe2 ;
https://github.com/caffe2/tutorials/blob/master/Loading_Pretrained_Models.ipynb
and i have this problem in shell
File "test1.py", line 128, in <module>
p = workspace.Predictor(init_net, predict_net)
File "/home/celestial/.virtualenvs/env4/lib/python3.6/site-... | caffe2 | low | Critical |
374,017,705 | go | all: ensure that tests do not write to the current directory | In #27957, @hyangah noticed that the tests for `compress/bzip2` fail when `GOROOT` is not writable, and those tests are run whenever we run `go test all` in module mode (which is intended to be a useful default).
As noted in #28386, tests should not assume that they can write to the current directory. We should ensu... | Testing,help wanted,NeedsFix | high | Critical |
374,024,708 | go | x/build: add a "small" builder with limited resources | Starting a new issue from #27739.
We tend to see issues building Go and running the tests if someone's machine has limited resources. For example, in #26867 I reported how `go test net` OOM'd with a few gigabytes of available memory.
We already have special builders like `linux-amd64-noopt`, so I propose adding a... | Builders,NeedsFix,FeatureRequest,new-builder | low | Minor |
374,027,546 | godot | Missing license details for mono module dependencies | Right now, the mono module has two dependencies: Mono itself, and DotNet.Glob.
The license details for these dependencies is not being included in the generated header `core/license.gen.h`. This information is displayed in the editor About dialog and returned from `Engine.get_license_info()`.
The `license.gen.h` ... | enhancement,topic:dotnet | low | Minor |
374,041,503 | go | text/template: allow callers to override IsTrue | The `IsTrue`, which is used in templates to determine if `if` and `when` etc. conditionals should be invoked makes sense in most situations. Some examples:
```go
package main
import (
"fmt"
"text/template"
"time"
)
func main() {
type s struct{}
printIsTrue(1) // true
printIsTrue(0) ... | NeedsDecision,FeatureRequest | medium | Critical |
374,052,038 | flutter | [Suggestion] Installing the Android environment via CLI flutter | As we are getting to Release 1.0, would you like to know if there is any plan to facilitate the complete installation of the development environment with CLI `flutter`?
The Flutter environment is dependent on Android Studio, which makes startup time-consuming and a bit tricky.
I took a look at other cross-platfor... | c: new feature,tool,a: first hour,P3,team-tool,triaged-tool | low | Major |
374,055,868 | pytorch | arm64 port for PyTorch, libtorch | ## 🚀 Feature
Port the PyTorch and libtorch codes to arm64, and provide easy to use binary downloads for user of those systems.
## Motivation
As requested in https://github.com/WorksOnArm/cluster/issues/115 and as mentioned at #12339. The likely target hardware that's in wide use is the Jetson boards.
## Pi... | module: ci,triaged,enhancement,module: arm | medium | Critical |
374,067,936 | rust | Rustc adds line-number information for unhittable panic handlers | _First off, root issue I was investigating was kcov producing bad coverage information for Rust binaries. I've worked out why kcov is producing the results it is and they're "correct" given what Rustc is doing. I'm not sure where the fix (if any) needs to be made, but I'm starting with Rustc as kcov's strategy looks ... | A-debuginfo,T-compiler | low | Critical |
374,067,993 | go | cmd/compile: provide a more explanatory error message on trying to take the address of an unaddressable value e.g. constants, integer and string literals | ### What version of Go are you using (`go version`)?
go version go1.11.1 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="/home/24G/.bin"
GOCACHE="/home/24G/.cache/go-build"
GOEXE=... | NeedsDecision | low | Critical |
374,092,096 | go | text/template: documentation for IsTrue disagrees with its implementation for struct types | As noted in #28391, the [documentation for `template.IsTrue`](https://tip.golang.org/pkg/text/template/#IsTrue) says:
> IsTrue reports whether the value is 'true', in the sense of not the zero of its type, and whether the value has a meaningful truth value.
The zero `time.Time` *is* the zero of its type, so accordi... | Documentation,NeedsFix | low | Major |
374,161,438 | TypeScript | Ignored check result of typeof a === typeof b | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,In Discussion | low | Critical |
374,281,814 | pytorch | circular module reference raises RecursionError | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. Run the following code snippet
```py
import torch
import torch.nn as nn
class ModuleA(nn.Module):
def __init__(self):
super().__init__()
self.bs = nn.Module... | module: nn,triaged | low | Critical |
374,318,744 | pytorch | Tracing custom ops | I wrote a custom op using the process described [here](https://pytorch.org/tutorials/advanced/cpp_extension.html), giving me a `torch.autograd.Function` called `MyOp`.
But when I run `torch.jit.trace()` on a module using it, and try to save the result, I get an error `RuntimeError: Couldn't export Python operator <M... | oncall: jit | low | Critical |
374,353,198 | TypeScript | In dom.d.ts, caretPositionFromPoint and caretRangeFromPoint should go on DocumentOrShadowRoot, not Document |
**TypeScript Version:** 3.1.3 (issue still present on github)
**Code**
```ts
let root: DocumentOrShadowRoot = document // Typechecks if declared as type Document
root.caretPositionFromPoint(1, 1)
```
**Expected behavior:**
The code typechecks
**Actual behavior:**
TypeScript complains that `caret... | Bug,Help Wanted,Domain: lib.d.ts | low | Minor |
374,366,828 | rust | calling FnMut closure in an immutable value does not say why closure is FnMut | The following error should at least mention `something` being the reason for the `mut` requirement on the closure.
```rust
fn main() {
let mut something = 42;
let dummy = || {
something = 44;
};
dummy();
}
```
([Playground](https://play.rust-lang.org/?version=nightly&mode=debug&edi... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
374,371,701 | opencv | IPP: cv::ipp::getIppTopFeatures() return value on 32-bit configurations | Windows 32-bit:
```
Intel(R) IPP version: ippIP SSE4.2 (p8) 2019.0.0 Gold (-) Jul 26 2018
```
`cv::ipp::getIppTopFeatures()` returns `0x8000` (`ippCPUID_AVX2`).
It should be `0x80` (`ippCPUID_SSE42`) because SSE4.2 backend is used.
relates #12877 | bug,optimization,category: core | low | Major |
374,382,312 | go | cmd/compile: the DW_AT_location of the return value is empty when its name is not specified | ### What version of Go are you using (`go version`)?
`go version devel +66bb8ddb95 Thu Oct 25 13:37:38 2018 +0000 darwin/amd64`
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/yagami/Library/Caches/go-build"
GOEXE=""
GOFLAGS=""
GO... | NeedsFix,Debugging,compiler/runtime | low | Critical |
374,384,151 | kubernetes | AvailableConditionController doesn't implement proper backoff/retry strategy | **What happened**:
When AvailableConditionController is unable to contact a api service it keeps retrying with high number of attempts per seconds (like 80 attempts per seconds) creating significant cpu usage.
https://gist.github.com/mborsz/c6094ae23f84db10593f1e0a0fd5d38d contains kube-apiserver's logs from one of ... | kind/bug,priority/backlog,sig/api-machinery,lifecycle/frozen,triage/not-reproducible | medium | Critical |
374,408,418 | vscode | Git - VS Code no longer supports 'edit' in 'git rebase' flow | As of a latest update, VS Code now does the wrong thing when using the Source Control pane during a `git rebase` command. `git rebase -i` allows the rebase to be stopped in in order to `edit` commits. This includes undoing them, changing the commit message, or adding more commits. Now, instead of just allowing commits ... | bug,git | medium | Major |
374,419,557 | godot | Dynamic font sizes changed in script propagate to other nodes | I have been looking online to see if there is a workaround to this, with no success. This is either a bug, or something that needs a fix. As I explained earlier, whenever I change a font size in script, it propagates to other nodes instances, some don't even share the same dynamic font.
**Godot version:**
3.0.6
... | topic:core,documentation | low | Critical |
374,431,916 | flutter | Tool doesn't support a project as both an app and module at the same time (both android and .android directories) | I have a Flutter project that is also a **module** project. That means:
- I have a "android" folder.
- I also have a ".android" (auto-generated) folder.
This causes some issues when I try to build or run the project:
- When I run it, the flutter framework install the ".android" (generated) app into the pho... | tool,a: existing-apps,P2,team-tool,triaged-tool | low | Major |
374,442,276 | TypeScript | Bug: Chained this-intersecting methods don't work from within class | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Bug,Domain: This-Typing | low | Critical |
374,451,049 | react | nextContext arg in shouldComponentUpdate() method | <!--
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*?**
I think it is feature, but could be a bug also
**What is the current behavior?**
When I subscribe to context us... | Type: Needs Investigation,Component: Reconciler | low | Critical |
374,470,178 | vue | Allow <noscript> in Vue templates for SSR usage | ### Version
2.5.17
### Reproduction link
[https://codepen.io/brophdawg11/pen/OBdZyX](https://codepen.io/brophdawg11/pen/OBdZyX)
### Steps to reproduce
I'm opening this issue as a follow up to https://github.com/vuejs/vue/issues/8247, as I don't think the solution provided there is suitable for all use-cases.... | discussion,improvement | medium | Critical |
374,475,807 | flutter | Would like an analytics event every time a user hits "please file this" errors in Framework | Ideally we'd also report the (anonymized) crash traces, but if that's not easy to do, at least we can report an analytics event so we know the frequency.
This came up in discussing with @timsneath, noting that he often sees these "something went wrong deep in the framework, please file a bug" messages.
Thoughts @... | c: new feature,team,tool,framework,P2,team-framework,triaged-framework | low | Critical |
374,479,541 | go | cmd/go: add 'go get' options to update direct and indirect dependencies separately | ### What version of Go are you using (`go version`)?
1.11.1
### Summary
Users have more familiarity with their direct dependencies than their indirect dependencies. Indirect dependencies can also be larger in number, with greater potential combinations of pair-wise versions.
For these and other reasons, upg... | NeedsInvestigation,FeatureRequest,GoCommand,modules | medium | Critical |
374,494,054 | pytorch | Allow traced modules to return dictionaries | For modules traced by `torch.jit.trace()`, allow dictionaries to be returned (ideally nested dictionaries as well) in addition to Tensors/tuples. | oncall: jit | low | Minor |
374,500,308 | rust | Trivial proc macro crate can't be found for doc tests | I tried making a trivial proc macro crate to try out the newly stabilized things in 1.30 and ran into a problem when running the tests from a crate that imports it.
The normal compilation/tests run perfectly fine, but then it tries to run doc tests, even though I have no doc comments or any other comments for that m... | T-rustdoc,A-macros,A-doctests | low | Critical |
374,539,921 | flutter | Ability to recess widgets (i.e. to negative on the z axis) | It is currently possible to give Material widgets an elevation and have them hover over other widgets. It'd be great to go the other direction an provide give an 'embedded' look, in that one widget looks recessed inside another widget. Kind of like a negative elevation. | c: new feature,framework,f: material design,P3,team-design,triaged-design | low | Minor |
374,540,771 | TypeScript | Improve typing of arguments with a function (with respect to overloads) | ## Search Terms
function overload arguments narrowing
## Suggestion
The example is probably the best illustration I can give... It's also much clearer (I think) that the description in text.
Currently, the types of the arguments of a function with overloads cannot be forwarded to another function with the s... | Suggestion,In Discussion | low | Critical |
374,553,332 | godot | Inherited export variables from a registered class don't show up in node inspector | ___
***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.*
___
**Godot version:**
Godot 3.1 Alpha
**OS/device including version:**
Mac OSX Sierra 10.12.6
**Issue description:**
Suppose you have a base class in GDScript.
```
# res://base.gd
ext... | bug,topic:gdscript,confirmed | medium | Critical |
374,557,040 | pytorch | cudnn explicit paths and GCC multilib suffixes prevents detection of good cudnn headers | I'm using gcc 4.8 on an old machine.
The machine has `/usr/local/cuda-8.0/targets/x86_64-linux/cudnn.h` file (an old Cudnn version). Gcc will detect it, regardless of CUDNN_LIB_DIR, CUDNN_INCLUDE_DIR set, because Gcc first checks multilib/multiplatform suffixes, such as 'x86_x64-linux'.
PyTorch could detect this ... | module: build,triaged | low | Minor |
374,560,455 | TypeScript | Suggestion: Automatically infer argument types in overloaded function implementation | ## Search Terms
infer, arguments, function, overload
## Suggestion
For basic container types (Point, Size, Rect, ...) I often write constructors and methods with overloaded signatures so they can be called with the container type itself or with the separate components of the container as arguments. Example:
... | Suggestion,Awaiting More Feedback | medium | Critical |
374,586,469 | flutter | Flutter should be able to interact with host clipboard for rich content | When a Flutter application is running on a Chromebook, it should be able to interact with the host clipboard to copy/paste text and other things (images, etc.).
This should support plain text, rich text, images, and application specific types. | c: new feature,framework,engine,platform-mac,platform-windows,platform-chromebook,customer: crowd,platform-linux,a: desktop,customer: octopod,P2,team-text-input,triaged-text-input | low | Critical |
374,587,589 | react | Hooks + multiple instances of React | # To people coming from search: please [read this page first](https://reactjs.org/warnings/invalid-hook-call-warning.html). It contains most common possible fixes!
**Do you want to request a *feature* or report a *bug*?**
Enhancement
**What is the current behavior?**
I had multiple instances of React by... | Type: Discussion,Component: Hooks | high | Critical |
374,605,845 | flutter | flutter drive hangs after completion | Executing `flutter drive ...` hangs after all tests are completed. It takes a Ctrl+C to get control back.
I'm running the command on OSX against an iPhone 7 simulator. | tool,t: flutter driver,P2,team-tool,triaged-tool | low | Minor |
374,608,591 | go | cmd/gofmt: comment in return params is misplaced | ### What version of Go are you using (`go version`)?
```
go version go1.11 darwin/amd64
```
### Does this issue reproduce with the latest release?
Yes.
### What did you do?
Ran `gofmt` on this program (https://play.golang.org/p/1rASHggr4wx):
```go
package foo
func bar() (
// This return value ... | NeedsInvestigation | low | Major |
374,633,202 | go | net/textproto: seemingly unnecssary buffer copy and reassignment in Reader.ReadLineBytes | I was just studying up and working on some small net/http performance changes and while examining its dependencies stumbled upon net/textproto (*Reader).ReadLineBytes()
https://github.com/golang/go/blob/bc4a10d16ca8582eaa92e5b834616df55c777503/src/net/textproto/reader.go#L40-L49
The source code was last edited 7 y... | NeedsInvestigation | low | Critical |
374,634,123 | rust | regression: unused imports false positive on nightly for the mach crate | With the latest version of the `mach` crate, running `cargo test` shows:
```shell
warning: unused import: `vm_region::*`
--> src/vm.rs:200:9 ... | A-lints,T-compiler,C-bug,E-needs-mcve | low | Minor |
374,639,952 | go | proposal: spec: enum type (revisited) | I think Go is missing an enum type to tie different language features together. This is not simply a "better way to use iota" but rather a new feature to simplify code logic and extend the type system.
Note: I read #19814 and it's a good start, but I think some important parts were missing.
**Proposal:**
This ... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
374,645,146 | opencv | cv assertion in warpaffine | I've made a 11176*226776 matrix in CV_8UC1 type and when i use the warpaffine function an assertion arise in following line, this is because my matrix is bigger than int type.
https://github.com/opencv/opencv/blob/e0c888acf78ea1ecfe03c6c7d55e041fc96f1750/modules/core/include/opencv2/core/types.hpp#L1724 | incomplete | low | Minor |
374,649,421 | pytorch | [pytorch] [feature request] Error out if the needed GPU device capability is absent in runtime | I installed master of PyTorch from sources as:
`TORCH_CUDA_ARCH_LIST=5.2 python3 setup.py install` (because of https://github.com/pytorch/pytorch/issues/4716)
I'm getting:
```python
import torch
print(torch.cuda.get_device_name(0))
# 'TITAN X (Pascal)'
print(torch.cuda.get_device_capability(0))
# (6, 1)
... | module: cuda,module: error checking,triaged | low | Critical |
374,653,184 | pytorch | [caffe2] How to use the operators that are not included in brew through the python API? | Hello all,
I know already how to use the helper functions provided in the brew API, however, I also would like to use other operators from the catalogue (https://caffe2.ai/docs/operators-catalogue.html) that are not included in the brew API. How can I use those operators through the python API?
Should I only do t... | caffe2 | low | Minor |
374,654,946 | godot | The filename text box in "Save as" dialog appears selected but doesn't have focus | Godot 3.1 alpha1
When I want to save a scene with `Save As`, a file dialog opens and shows a selected input box for the file name. If the current scene already has a file, the text box will appear selected.

Bases: cv::Algorithm, cv::class, cv::Feature2D, cv::Algorithm
Only ... | bug,priority: normal,category: python bindings | low | Critical |
374,672,571 | go | cmd/go: mod edit -fmt reports latest as invalid version | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
```
go version go1.11.1 linux/amd64
```
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
... | NeedsFix,GoCommand,modules | low | Critical |
374,684,675 | go | x/tools/go/ast/astutil: Apply should not traverse Sel of SelectorExpr | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)? go version go1.11.1 linux/amd64
### Does this issue reproduce with the latest release? yes
### What operating system and processor architecture are you using (`go env`)?
OARCH="am... | Tools | low | Critical |
374,701,901 | pytorch | Support for integer interpolation (torch.nn.functional.interpolate) | ## 🚀 Feature
Currently, `torch.nn.functional.interpolate` does not support integer formats (I tested int and uint8). I would appreciate having support for these formats, or a description in the documentation mentioning why they are not supported.
## Motivation
Consider having an image representing a mask. To s... | module: nn,triaged,function request | low | Critical |
374,713,830 | material-ui | [Menu] Max height menus open up elsewhere | <!--- Provide a general summary of the issue in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! ❤️
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [X] This is not a v0.x ... | bug 🐛,component: menu | low | Critical |
374,714,611 | create-react-app | Ensure @types/jest is the correct version | Right now, we always install the latest `@types/jest`. This is OK since we match the current latest Jest version, but sometimes we lag.
We should:
1. [ ] Add a preflight check for this
1. [ ] Somehow make `create-react-app` install the correct version for a given `react-scripts` version | tag: enhancement,issue: typescript | low | Minor |
374,715,405 | electron | [Feature Request]: protocol.intercept{Any}Protocol handler ability to call original handler | **Is your feature request related to a problem? Please describe.**
It's possible to intercept schemes (including built-ins like `http:`, `https:`, and `file:`), but doing so requires you to handle all requests for that scheme, there's no way to fall-through to the original handler as far as I can tell. Neglecting to c... | enhancement :sparkles:,component/protocol | high | Minor |
374,719,728 | vscode | Strip trailing whitespace after the cursor when pressing enter | When pressing the enter key, I'd like VSCode's automatic indentation to remove any whitespace directly after the insertion point, so that whatever was after the insertion point on that line ends up correctly indented. Currently, anything after the insertion point is untouched, so the line is not correctly indented and ... | feature-request,formatting | low | Major |
374,725,795 | pytorch | Memory inefficient in batched matmul when requiring gradients | While implementing the batched matrix multiplication, i noticed that the batched matrix multiplication is not efficient, see the code below
```
import torch ... | triaged,module: linear algebra | low | Minor |
374,731,117 | rust | rustdoc: "Implementations on Foreign Types" does not work bidirectionally for non-std types | While working with the embedded-hal crates for STM32 boards, I ran into a curious issue where the "Implementations on Foreign Types" section lists pretty much what it says on the tin, but the foreign types in question do *not* conversely list all the traits that are 'foreignly' implemented on them.
While understanda... | T-rustdoc,A-trait-system | low | Critical |
374,735,229 | rust | Can't use $crate as macro variable | Compiling:
```rust
fn main() {
macro_rules! my_crate {
( $crate:tt ) => (
println!("Use the {} crate", $crate);
);
}
my_crate!( "test" );
}
```
fail with the following error:
```
error: no rules expected the token "test"
--> src/main.rs:7:16
|
7 | my_crate!... | C-enhancement,A-diagnostics,A-macros,T-compiler | low | Critical |
374,736,762 | rust | Impl stability is not checked | Found this implementing #55431. There I want to make an unstable impl for a stable trait with stable types. We can mark impls `#[unstable]`, but they seem to be just ignored.
```rust
#[unstable(feature = "boxed_closure_impls", ...)] // This seems to be ignored!
impl<A, F: FnOnce<A> + ?Sized> FnOnce<A> for Box<F> {... | A-trait-system,A-stability,T-compiler | low | Critical |
374,738,142 | pytorch | Caffe2: Causes error when using flag remove_legacy_pad while converting from caffe to caffe2 | I was converting basic cat dog model from caffe to caffe2 framework using caffe_translator.py but in conversion it shows a legacy_padding in max pool operation argument which I don't want so i try to remove it using the caffe_translator script in which remove_legacy_pad flag is there which can be enable when we give it... | caffe2 | low | Critical |
374,744,329 | go | cmd/vet: potential false positive in the "suspect or" check | ### What version of Go are you using (`go version`)?
`go version go1.11.1 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=""
GOCACHE="/home/jnml/.cache/go-build"
GOEXE=""
G... | NeedsInvestigation,Analysis | medium | Critical |
374,758,169 | pytorch | [Caffe2] cmake3 detection error? | cmake 3 is detected however version check fails?
```
$ python setup.py install
Building wheel torch-1.0.0a0+1fe8278
running install
setup.py::run()
running build_deps
setup.py::build_deps::run()
+ SYNC_COMMAND=cp
++ command -v rsync
+ '[' -x /usr/bin/rsync ']'
+ SYNC_COMMAND='rsync -lptgoD'
+ CMAKE_COMMAN... | caffe2 | low | Critical |
374,808,526 | go | x/text/number: support formatting of custom types | <sup>This is based on [a StackOverflow question](https://stackoverflow.com/q/52591678/1892060).</sup>
Package `golang.org/x/text/number` allows locale-specific formatting of numbers à-la `fmt`. Unfortunately, unlike `fmt`, this package doesn't have an interface to let types other than the built-in numeric types tell... | NeedsInvestigation,FeatureRequest | low | Minor |
374,812,405 | rust | libtest: allow for controlling runtime or iterations of benchmarks | There have been instances where it would have been nice to be able to control the minimum number of iterations or the maximum runtime of a set of benchmarks. Currently looking at libtest it seems these values are hardcoded at [1 minimum iteration](https://github.com/rust-lang/rust/blob/master/src/libtest/lib.rs#L1616)... | T-libs-api,C-feature-request,A-libtest | low | Minor |
374,819,404 | flutter | Documentation request: Operations not allowed during the build cycle | There is an interaction between two classes of operations that could be better documented:
1) operations that occur during the widget build cycle. This includes e.g. `build()`, `didChangeDependencies()`, and probably others.
2) operations that are not allowed during the build cycle, but which require a `BuildCont... | framework,d: api docs,c: proposal,P2,team-framework,triaged-framework | low | Minor |
374,823,336 | gin | A new method for parsing form data array type fields | - go version: 1.9
- gin version (or commit ref): master branch
- operating system:
## Description

this image is my http post params .
I'm going to use c.GetPostFormMap to parse processes field, but... | feature | low | Minor |
374,840,361 | pytorch | torch.utils.checkpoint is not compatible with nn.DataParallel | ## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
```
net = nn.Sequential(
# somenet
)
from torch.utils.checkpoint import checkpoint_sequential
net = nn.DataParallel(net)
data = torch.randn(1, 3, 224, 224, requires_grad=True)
out ... | module: checkpoint,triaged,module: data parallel | low | Critical |
374,843,055 | opencv | fisheye.cpp:line 983 and line 997 cv::Mat(cv::Mat((imageLeft - projected).t()).reshape(1, 1).t()).copyTo(ekk.rowRange(0, 2 * n_points)); the size of imageLeft is [1*54], but the size of projected is [54 * 1] | <!--
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).
Please:
* Read the documentation to test with the latest de... | category: calib3d,incomplete,needs reproducer | low | Critical |
374,857,129 | godot | Animation Preview does not work when the process mode is set to Manual | **Godot version:**
<!-- Specify commit hash if non-official. -->
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
`v3.1.alpha.official`
**Issue description:**
<!-- What happened, and what was expected. -->
When the the animation process mode is in `Manual` the an... | enhancement,topic:editor,confirmed,usability,topic:animation | low | Minor |
374,904,429 | flutter | flutter analyze should have option for machine-readable output | `dartanalyzer` has `--format machine`, and we are using that for processing analysis results with `pana` (and on the pub site). Because `flutter analyze` has no such option, we still fall back to `dartanalyzer`, causing inconsistencies like [the bug last week](https://github.com/dart-lang/pub-dartlang-dart/issues/1728)... | c: new feature,tool,P2,team-tool,triaged-tool | low | Critical |
374,906,895 | rust | Native FreeBSD and OpenBSD testing on CI | https://builds.sr.ht/ offers native (no qemu emulation) FreeBSD and OpenBSD CI services. These are currently free and invite only, but invites can be requested at sir@cmpwn.com . They plan to offer these as paid services in the future at $2, $5, and $10 / month price points depending on the plan.
This is currently ... | O-openbsd,O-freebsd,T-infra | low | Minor |
374,952,260 | go | cmd/cgo: avoid calls to cgoCheckPointer when debug.cgocheck=0 | With `DEBUG=cgocheck=0` Go still makes calls to `cgoCheckPointer` which will bail out early in https://github.com/golang/go/blob/8f4fd3f34e8e218cb90435b5a8c6ba9be23a1e1e/src/runtime/cgocall.go#L412. Every such call adds few ns, but funcs with many arguments can end up accumulating a lot of them.
https://golang.org/c... | Performance,NeedsInvestigation,compiler/runtime | medium | Critical |
374,976,647 | neovim | "tnoremap jk <C-\><C-n>" delay when holding down "j" | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.3.2
- Vim (version: ) behaves differently? yes
- Operating system/version: ubuntu16.04
- Terminal name/version:
- `$TERM`:
### Steps to reproduce using `nvim -u NORC`
```
1. nvim -u NORC
2. tnoremap jk <C-\><C-n>... | bug,terminal,event-loop,core | low | Major |
374,990,570 | TypeScript | inline comments are striped in emitted declaration files | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.1.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** inline comments striped
**tsconfig**
```json
{
"compilerOptio... | Suggestion,Needs Proposal | low | Critical |
374,997,298 | go | os/exec: race on cmd.Wait() might lead to panic | The current implementation of [cmd.Wait](https://golang.org/pkg/os/exec/#Cmd.Wait) has a race condition: if multiple goroutines call it, it might cause a panic.
In the first part of the method, copied below, two concurrent calls might check `c.finished`, get false, set it to true, invoke `c.Process.Wait()` and close... | NeedsDecision | medium | 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.