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 |
|---|---|---|---|---|---|---|
329,216,085 | flutter | FlutterHeadlessDartRunner should return an error on invalid launches. | Proposed API: `-[FlutterHeadlessDartRunner initWithProject:(FlutterDartProject*) project completion: (LaunchResult) result];`
with `typedef void(^LaunchResult)(NSError*);` | engine,P2,team-engine,triaged-engine | low | Critical |
329,319,911 | pytorch | GRU is implementation of GRU v1 draft rather than final GRU paper algo | GRU is implementation of v1 https://arxiv.org/pdf/1406.1078v1.pdf rather than final v3 https://arxiv.org/pdf/1406.1078.pdf
Concretely, in v1, the reset gate is applied to the result of applying a linear layer to the incoming state, equation 8:
<img width="287" alt="screen shot 2018-06-05 at 1 33 21 pm" src="https... | module: docs,module: rnn,triaged | low | Major |
329,344,276 | rust | to_lowercase only uses unconditional parts of unicode.org's special-casing | https://github.com/rust-lang/rust/blob/f9157f5b869fdb14308eaf6778d01ee3d0e1268a/src/libcore/unicode/unicode.py#L168-169
Since #25800, to_lowercase uses unicode.org's SpecialCasing.txt.
However, it only follows unconditional rules from this file. One "interesting" case is:
1. The main UnicodeData.txt file says that... | C-enhancement,A-Unicode,T-libs-api | low | Minor |
329,444,226 | go | cmd/compile: detect divisions that always result in 0 | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version devel +b7f3c178a3 Mon May 14 04:42:45 2018 +0000 darwin/amd64
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architectu... | Performance,NeedsDecision,compiler/runtime | low | Major |
329,461,314 | material-ui | [Menu] Support cascading / nested menu | Hello,
I wrote some two advanced components, who can handle Submenuitems.
I defined an anchorElement, which will be passed as property to the Mui Menu Component.
Is there a way to define where the Popup Element should be displayed? Because now it will just overlap. Maybe I want to calculate it more left or more ri... | new feature,waiting for 👍,component: menu | high | Critical |
329,465,025 | TypeScript | Missing error when awaiting dynamic import of module with 'then' export | <!-- 🚨 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 | low | Critical |
329,508,336 | rust | 'static lifetime elision in associated constants should mirror normal non-associated constants | https://play.rust-lang.org/?gist=8fb655fdb61666de91bd38bfedb537b6&version=stable&mode=debug
```rust
const A: &str = "A"; // defaults to 'static
trait Foo {
const S: &str; // should behave the same
}
impl Foo for () {
const S: &str = "bar";
}
fn main() {}
```
```
error[E0106]: missing lifetime specif... | A-lifetimes,A-associated-items,T-lang,C-feature-request,needs-rfc | low | Critical |
329,510,803 | go | proposal: tools for more readable stacktraces | As a Go beginner, I've benefitted a lot from using visual aides to assist reading dense panics and stacktraces. In particular, @maruel's [panicparse](https://github.com/maruel/panicparse) has been helpful for reading panics while I work (even though the information is basically the same). Example from the project's REA... | Proposal,Proposal-Hold | medium | Critical |
329,519,978 | flutter | Open the persistent bottom sheet programmatically | Any way to do this? | framework,f: material design,d: api docs,P2,team-design,triaged-design | low | Minor |
329,610,105 | TypeScript | API: incorrect declarations in types.ts | The `--strictNullChecks` PR changed some declarations in `types.ts` to avoid frequent assertions in the compiler's code. Unfortunately these changes make it really unsafe for API users because they no longer contain the actually nullable types: https://github.com/Microsoft/TypeScript/pull/22088#discussion_r184149465 ht... | Breaking Change,Help Wanted,Infrastructure | low | Major |
329,667,860 | go | x/build/maintner: new empty milestones are not detected | A new milestone with no issues does not show up in the corpus.
(Also, don't mind me while I use this issue to prime the corpus.) | Builders,NeedsInvestigation | low | Minor |
329,685,067 | TypeScript | Migration refactorings after renaming from `.js` to `.ts` files | At least week's design meeting, @sheetalkamat had the idea that we should consider applying refactorings for when you rename a `.js` file to a `.ts` file.
I think this is definitely worth experimenting with. From the refactoring pipeline, I could imagine things like
* moving from CommonJS to ES Modules
* lifting... | Suggestion,Needs Proposal,Awaiting More Feedback,Domain: Refactorings | low | Minor |
329,689,779 | TypeScript | Migration suggestions after *introducing* a .ts file | After I brought #24713 up with @chrisdias, he mentioned his thinking was more about the "I'm going to introduce a `.ts` file into a JS project" scenario. I think once you have some `.ts` files around a project, you're going to want to migrate the `.js` files eventually too, so both scenarios are valid.
But things we... | Suggestion,Needs Proposal,Awaiting More Feedback | low | Minor |
329,691,027 | rust | Can't implement Drop on a type with a higher ranked lifetime as a trait bound. | Example:
```rust
trait Foo<'id> {}
struct Bar<T>(T) where T: for<'id> Foo<'id>;
impl<T> Drop for Bar<T> where T: for<'id> Foo<'id> {
fn drop(&mut self) {
}
}
fn main() {
}
```
We get the following error:
```backtrace
error[E0367]: The requirement `for<'id> T: Foo<'id>` is added only... | C-enhancement,A-trait-system,A-destructors,T-compiler,T-types,A-higher-ranked | low | Critical |
329,711,298 | pytorch | [Caffe2] Successive in-place operators cause RuntimeError of gradient operator versions | ## Issue description
Errors are reported when running a network with two successive in-place operators, e.g.
```
FC(x, y)-->ReLU(y, y)-->Dropout(y, y)
Conv(x, y)--> ReLU(y, y)-->UserDefinedInplaceOp(y, y)
```
The error (from the `FC-ReLU-Dropout` case) is as follows:
```
...
File "/home/<user_name>/repo/py... | caffe2 | low | Critical |
329,714,198 | vue | vdom: warn innerHTML not watch when the string have some escaped chars | ### Version
2.5.17-beta.0
### Reproduction link
[https://codepen.io/cxtom/pen/XYKgde](https://codepen.io/cxtom/pen/XYKgde)
### Steps to reproduce
1. using v-html and the string has \" \'
2. ssr
3. warn not match during hybrating in browser
### What is expected?
not warn The client-side rendered ... | improvement | medium | Minor |
329,783,517 | pytorch | error when import caffe2.python.onnx.backend | when i transform onnx to caffe2, i meet this problem <_>
import caffe2.python.onnx.backend
Segmentation fault (core dumped)
can someone help me, thank you very very much | caffe2 | low | Critical |
329,795,969 | rust | aobench hangs when compiled with -C target-cpu=native | I've ported ISPC ambient occlusion benchmark to use `std::simd` portable vector types here: https://github.com/gnzlbg/aobench
Running the binary with
```
cargo run --release -- 800 600 --algo vector
```
works fine. However, using:
```
RUSTFLAGS="-C target-cpu=native" cargo run --release -- 800 600 --algo... | O-macos,I-hang | low | Critical |
329,828,743 | flutter | Android release build not working with disabled signing | Hi,
We want to disable the signing of the APK because we sign it on the build server.
Therefore we changed the build.gradle (from module app) to
```groovy
release {
signingConfig null
}
```
So far this works and the gradle build produces an unsigned APK. This APK is named _app-release-unsigned.a... | c: new feature,tool,t: gradle,P2,team-tool,triaged-tool | low | Critical |
329,919,375 | go | encoding/xml: add support for xml version 1.1 |
### What version of Go are you using (`go version`)?
go 1.10.2
### Does this issue reproduce with the latest release?
n/a
### What operating system and processor architecture are you using (`go env`)?
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
There are any plans to add support for XML version 1.1 in the "... | NeedsInvestigation,FeatureRequest | medium | Critical |
329,929,828 | rust | Custom (synonym) suggestions for nonexistent methods | Currently if the user types a method that does not exist, a suggestion may be provided if what was typed is reasonably close to an existing method.
```rust
let set = ::std::collections::HashSet::new();
set.insrt(0u8); // = help: did you mean `insert`?
```
However, this only catches typos — completely different nam... | C-enhancement,A-diagnostics,T-compiler | low | Minor |
329,946,124 | kubernetes | Validation Tightening is not Generally Possible | I have made this comment on a few PRs so maybe it's time to document and/or build a mechanism.
You cannot generally make validation tighter, because any existing objects that violate the new rule will not be able to be updated, and in many cases, deleted (because deletions involving finalizers require a sequence of ... | kind/bug,sig/api-machinery,priority/important-longterm,lifecycle/frozen,wg/api-expression | medium | Critical |
329,981,537 | react-native | Set polyfill says it is [object Object] but should say [object Set] | ## Environment
Any - you can reproduce the issue using only file
https://github.com/facebook/react-native/blob/master/Libraries/vendor/core/Set.js
and any Javascript encironment.
EDIT: Just for the bot, it is completely irrelevant:
Environment:
OS: Windows 10
Node: 10.3.0
Yarn: Not Found
npm:... | JavaScript,Priority: Low,Bug | low | Major |
329,991,967 | go | net/http: provide some Transport knob (bool?) to keep max 1 TLS dial in flight at once when discovering http2 support | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.10.2 darwin/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
Container Linux ... | NeedsFix,FeatureRequest | low | Major |
330,015,524 | svelte | SVG baseVal | It turns out that this...
```js
rect.x.baseVal.value = 200;
```
...is faster than this:
```js
rect.setAttribute('x', 200);
```
This might be something we can use to our benefit. | feature request,perf,stale-bot,compiler,temp-stale | low | Major |
330,021,724 | rust | Method resolution for trait object types does not prefer inherent methods | Normally, inherent methods are given precedence over all trait methods, so that there is no ambiguity.
However, this behavior does not appear to be implemented for trait object types:
```rust
trait Foo {
fn f(&self) { }
}
impl Foo {
fn f(&self) { }
}
impl Foo for i32 { }
struct Bar;
impl ... | A-trait-system,T-lang,C-bug,T-types,A-trait-objects | low | Critical |
330,072,986 | rust | Great stack overflow error messages | As a coder
Given I have a fn main() { main() }
Then I expect the following output:
```
Exception in thread "main" java.lang.StackOverflowError
at X.main(X.java:3)
at X.main(X.java:3)
at X.main(X.java:3)
at X.main(X.java:3)
```
Obviously this is an example of how Java handles stack overflows, but you ... | A-debuginfo,T-libs | medium | Critical |
330,078,193 | react | Consider removing Mobile Safari empty onclick hack | See https://github.com/facebook/react/issues/238 and https://github.com/facebook/react/pull/1536 for historical context.
Is that still relevant? The code is here:
https://github.com/facebook/react/blob/52fbe7612e0527b8c86decac519c344626f6bd72/packages/react-dom/src/client/ReactDOMFiberComponent.js#L244-L245
Ev... | Component: DOM,Type: Needs Investigation,React Core Team | medium | Major |
330,099,501 | go | runtime: SIGSEGV when building on freebsd ARM | Trying to build go on freebsd-arm. I've tried both 1.10.2 and master branch from git. Both have the same issue.
I was able to bootstrap with go14 just fine, and the output of go env is
```
GOARCH="arm"
GOBIN=""
GOCHAR="5"
GOEXE=""
GOHOSTARCH="arm"
GOHOSTOS="freebsd"
GOOS="freebsd"
GOPATH=""
GORACE=""
GORO... | OS-FreeBSD,NeedsInvestigation,compiler/runtime | medium | Critical |
330,122,651 | godot | gui events don't propagate to parent control nodes | **Godot version:** 3.0.2
**Issue description:**
From the docs, regarding event propagation:
"Second, it will try to feed the input to the GUI, and see if any control can receive it. If so, the Control will be called via the virtual function Control._gui_input() and the signal “input_event” will be emitted (t... | bug,confirmed,topic:gui | low | Major |
330,129,222 | TypeScript | json files should be usable in .d.ts files without breaking things | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
<!-- List of keywords you searched for before creating this issu... | Suggestion,Awaiting More Feedback | low | Critical |
330,185,181 | TypeScript | JSDoc comment for destructuring param: description text not displayed | **TypeScript Version:**
2.9
**Search Terms:**
JSDoc destructuring param
**Code**
```javascript
/**
* @param {Object} arg
* @param {number} arg.id - This param description won't show up
*/
function foo({ id }) {}
```
**Expected behavior:**
In VSCode 1.24.0, when typing `foo(`, IntelliSense should... | Bug,Help Wanted,Domain: JSDoc | medium | Critical |
330,237,153 | rust | The run-pass/issue-36856.rs fails on beta for mips{el}-linux-gnu | The test starts failing after revert in #50137. This issue is still present in FastISel which incorrectly sign extends i1 constants to I32 when selecting binary ops [link](https://github.com/llvm-mirror/llvm/blob/master/lib/CodeGen/SelectionDAG/FastISel.cpp#L621). I was able to trigger the issue reliably on mips32 http... | O-MIPS,T-compiler | low | Major |
330,263,617 | opencv | imread block resources when it can't read image | <!--
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... | incomplete | low | Critical |
330,315,970 | create-react-app | Fonts are not loaded in IE11 with built app | <!--
PLEASE READ THE FIRST SECTION :-)
-->
### Is this a bug report?
Yes
<!--
If you answered "Yes":
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don... | issue: needs investigation | medium | Critical |
330,335,273 | pytorch | Different behavior of LSTM and LSTMCell implementation | ## Issue description
I was testing the difference between LSTM and LSTMCell implementations, ideally for same input they should have same outputs, but the outputs are different, looks like something fishy is going on.
The numbers are different that's still okay, but the problem is I am getting very different perfor... | module: numerical-stability,module: rnn,triaged,module: numerical-reproducibility | low | Major |
330,367,525 | go | database/sql: *Rows.Err() does not return errors from *Rows.Scan() | I'm not really advocating for the behavior to change, but the usage of the word "iteration" in the current documentation of [`Rows.Err()`](https://golang.org/pkg/database/sql/#Rows.Err) is ambiguous with respect to the behavior of `*Rows.Scan()`. More examples and/or more precise documentation would help.
### What ... | Documentation,NeedsInvestigation | low | Critical |
330,456,301 | opencv | cv::Mat::convertTo(…) undesired new behavior | ##### System information (version)
- OpenCV => 3.4 branch (3.4.1-dev)
- Operating System / Platform => macOS (and probably all other platforms)
- Compiler => clang (an probably all other compilers)
##### Detailed description
Among other changes in the following changeset, there are changes to the cv::Mat::co... | category: core,RFC | low | Critical |
330,458,601 | godot | Snap scaling to grid | **Godot version:**
3.1.dev.custom_build.c80ac06
**OS/device including version:**
Elementary OS Loki
**Issue description:**
Scaling an object in 3D does not respect the grid, it respects only scaling rate settings.
**Steps to reproduce:**
I create a CSG box, and I want to scale it so that its vertices a... | enhancement,topic:editor,usability | low | Minor |
330,506,672 | angular | Service Worker makes show up a "Live Broadcast" message on HTML audio player on Safari | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | type: bug/fix,help wanted,freq1: low,area: service-worker,browser: safari,state: needs more investigation,P4 | low | Critical |
330,543,768 | opencv | OpenCV EGL support for none X Server environment offscreen render | <!--
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: gpu/cuda (contrib),RFC | low | Critical |
330,546,271 | pytorch | [Installation]: Support conda/pip install with ppc64le(power8) | It would be very convenient to have conda/pip supported for installing PyTorch in ppc64le (power8). For now the only possibility is to build from source.
cc @ezyang @seemethere @malfet @walterddr | module: binaries,triaged,enhancement,module: POWER | low | Minor |
330,548,095 | go | x/net/http2: Transport ignores net/http.Transport.Proxy once connected | ### What version of Go are you using (`go version`)?
`go1.10.2 darwin/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="..."
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
G... | NeedsFix | low | Critical |
330,551,582 | rust | Many `From` implementations are undocumented | While `std::convert::From` has [very detailed high level documentation](https://doc.rust-lang.org/std/convert/trait.From.html), the implementations often lack docs on how they work and use the default "performs the conversion" boilerplate.
This at least includes all `String` methods, also, all integer conversions. B... | E-easy,C-enhancement,P-medium,E-mentor,T-libs-api,A-docs | medium | Critical |
330,571,728 | kubernetes | Figure out what's the best path for delivering cloud config in nodes | I feel that similar to how node bootstrapping and dynamic kubelet config work today, it would be nice to provide a similar mechanism for serving cloud provider config from the API server. Or maybe there is a better option.
Today we have the following options:
1. lay the extra config inside the machine (prebaked in ... | sig/node,kind/feature,lifecycle/frozen,sig/cloud-provider,needs-triage | low | Major |
330,613,288 | flutter | Step.state should not be final | Can't seem to find any documentation on how to change the state of a [Step](https://docs.flutter.io/flutter/material/Step-class.html) within a [Stepper](https://docs.flutter.io/flutter/material/Stepper-class.html).
I tried doing a simple solution like:
```dart
class EnhancedStepper extends Step {
set stepState(... | framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Major |
330,661,423 | angular | html element property and input naming conflict |
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Performance issue
[x] Feature request
[ ] Docu... | area: core,core: binding & interpolation,core: inputs / outputs,type: confusing,P4 | low | Critical |
330,720,686 | TypeScript | Object spread incorrectly compiles getter | <!-- 🚨 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,ES2018 | low | Critical |
330,797,066 | pytorch | [feature request] MPI init_method for torch.distributed | That would be nice to have an init_method that is not socket-based, using MPI for initializing/side-channel communications. I am not talking about MPI backend (or cuda-aware MPI) here, but want to use mpi just for the init part. If we could use a custom `init_method` we could even use `mpi4py`.
## Code example
Id... | oncall: distributed,triaged | low | Critical |
330,820,503 | rust | Implementations conflict when using associated type across crates | crate bar:
```rust
pub struct Bar;
pub struct BarNext;
pub trait SomeTrait {
type Next;
}
impl SomeTrait for Bar {
type Next = BarNext;
}
```
crate foo:
```rust
extern crate bar;
struct Foo;
struct Baz;
struct BazNext;
pub trait MyTrait<T> {
}
impl MyTrait<BazNext> for F... | A-diagnostics,A-associated-items,T-lang,T-compiler,C-bug | low | Critical |
330,881,352 | TypeScript | Destructure of function parameters - Refactoring | ```javascript
const calllback = event=> {
let {target} = event;
// code with used target
}
```
to
```javascript
const calllback = ({target})=> {
// code with used target
}
```
Same in the opposite direction and with a more complex and deep destructure and function content. | Suggestion,Needs Proposal,Domain: Refactorings | low | Major |
330,886,653 | rust | std::process:Command blocks with child.wait() and stdout "piped" | Hi,
I have 2 applications that spawn a new process with stdout redirected to `Stdio::piped()`. The command is executed through `spawn()` call.
I'm waiting until process will finish through `child.wait()` interface. If the output of the command is large(several thousands lines) then the process is blocked. If I re... | T-libs-api,A-io,A-process | low | Minor |
330,892,481 | godot | Scene containing CollisionShape2D throws errors when added to SceneTree asynchronically | **Godot version:**
Godot_v3.0.3-rc3_mono_win64
**OS/device including version:**
Windows 10
**Issue description:**
Scene containing CollisionShape2D throws errors when added to SceneTree asynchronically.
```
0:00:06:0396 - Index p_index=0 out of size (shapes.size()=0)
----------
Type:Error
Description:
... | discussion,topic:core,documentation | low | Critical |
330,921,466 | go | cmd/go: install/build doesn't remove temporary files when aborted | Go version: go1.10 linux/amd64
I've noticed `go build` and `go install` don't remove temporary files in `/tmp/go-*` when aborted with Ctrl-C.
This is an issue with big programs (binary size ~1GB due to linking with a [huge C/C++ library](https://godoc.org/llvm.org/llvm/bindings/go/llvm)), because late in the linkin... | NeedsInvestigation,GoCommand | low | Major |
330,934,226 | vscode | Emmet too active in files such as JSX, TSX, and PHP | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: Version 1.24.0 (1.24.0)
- OS Version: macOS 10.13.4 (17E199)
Steps to Reproduce:
1. Open a new file, set language to `javascriptreact`.
2. Add the following code:
```j... | bug,emmet,emmet-parse | low | Major |
330,971,901 | flutter | Document ListView usage with the Column widget | I use flutter framework with following revisions:
```
Flutter 0.4.4 • channel beta • https://github.com/flutter/flutter.git
Framework • revision f9bb4289e9 (4 weeks ago) • 2018-05-11 21:44:54 -0700
Engine • revision 06afdfe54e
Tools • Dart 2.0.0-dev.54.0.flutter-46ab040e58
```
I cannot use ListView or ListVi... | framework,f: scrolling,d: api docs,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-framework,triaged-framework | low | Critical |
330,986,580 | flutter | SliverAppBar flexibleSpace with height depending on children | I have a SliverAppBar with a flexibleSpace that holds information that will change in height. I simply want my AppBar to determine it's height at runtime rather than the static expandedHeight option. Do I really need to calculate the height of this widget before I pass it to the flexibleSpace? Or is there a built in me... | c: new feature,framework,f: material design,f: scrolling,customer: crowd,c: proposal,P2,team-design,triaged-design | low | Critical |
331,043,189 | rust | Improper use of closures not detected | The following code gets "overflow evaluating the requirement `[closure@src/main.rs:20:19: 20:28]: std::ops::FnMut<(i32,)>`" if the line in `main` is uncommented.
If the error should exist (which I'm unsure about), it should be detected without needing to call `map`.
If not, that's a bug.
```rust
enum Foo<T> {
... | A-diagnostics,A-closures,T-compiler,C-bug | low | Critical |
331,107,273 | pytorch | how can I fetch the result of output's Blobs_namet after I sum two numpy array via brew.sum | for example:
data1=np.random.randint(20,size=(2,3)).astype(np.int32)
data2=np.random.randint(20,size=(2,3)).astype(np.int32)
workspace.FeedBlob('data1',data1)
workspace.FeedBlob('data2',data2)
model=model_helper.ModelHelper(name="sumsum")
data3=brew.sum(model,['data1','data2'],"data3")
when I print the type of d... | caffe2 | low | Minor |
331,115,613 | rust | Unchecked array indices with --emit=metadata | This is a spinoff of Issue #51308.
Using:
```
rustc 1.28.0-nightly (a805a2a5e 2018-06-10)
binary: rustc
commit-hash: a805a2a5ebba2802f432d79874e59c24e398f82a
commit-date: 2018-06-10
host: x86_64-pc-windows-gnu
release: 1.28.0-nightly
LLVM version: 6.0
```
On this code:
```
fn main() {
let a: [... | A-lints,T-compiler,C-bug | low | Critical |
331,201,375 | rust | Method resolution should obey usual shadowing rules for glob imports & prelude | Today item import take precedence over glob imports which take precedence over prelude imports. This works for traits:
```rust
mod a {
pub trait X {
fn x(&self) { println!("a"); }
}
impl X for () {}
}
mod b {
pub trait X {
fn x(&self) { println!("b"); }
}
im... | A-resolve,A-trait-system,T-lang,T-libs-api | low | Critical |
331,271,925 | go | cmd/compile: combine append calls | ```go
// A)
xs = append(xs, v1)
xs = append(xs, v2)
// B)
xs = append(xs, v1, v2)
```
Currently, compiler does not rewrite `A` into `B` and generates 2 `append` sequences for `A` (or, more generally, N append sequences for N consecutive appends to the same slice).
Synthetic benchmarks show quite significant d... | Performance,compiler/runtime | low | Critical |
331,317,037 | go | cmd/cgo: undefined reference for C function with -buildmode=c-archive | ### What version of Go are you using (`go version`)?
go version go1.10.3 darwin/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="/Users/Andari/Library/Caches/go-build"
GOEXE=""
GO... | help wanted,NeedsInvestigation,compiler/runtime | medium | Critical |
331,335,454 | rust | Implementing `Alloc` for mutable references to `Alloc` | I don't see why this shouldn't be implemented. It certainly proves useful when working with generic allocators, without requiring a `Copy` bound on them. For example:
struct AllocWithInternalMutability {
...
}
impl<'a> Alloc for &'a AllocWithInternalMutability { ... }
impl Alloc... | T-lang,C-feature-request | low | Minor |
331,368,392 | TypeScript | Source code transpiles, but emitted declarations filled with errors | <!-- 🚨 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: Declaration Emit | low | Critical |
331,415,176 | TypeScript | Finding definitions exported by string key does not work | _From @Flamefire on June 9, 2018 12:35_
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.24.0
- OS Version: WIn10 x64
Steps to Reproduce:
1. Export by string key:
```
function parse(){return 1;}
exports["parse"] = ... | Bug,VS Code Tracked,Domain: JavaScript | low | Minor |
331,445,544 | ant-design | Is there a Listener triggered after Sider component's animation is finished ? | ### What problem does this feature solve?
I want do something AFTER the Sider component's collapse animation is finished . But the listener `onCollapse` triggered when the animation begin . Is there a listener like `onCollapsed` but not `onCollapse` ?
### What does the proposed API look like?
Just the same behavio... | Inactive | low | Major |
331,543,704 | TypeScript | Inference fails nondeterministic when callback gets a `typeof` in an object | <!-- 🚨 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 | low | Critical |
331,546,606 | godot | Refactoring Scene breaks custom properties in inherited scene | **Godot version:**
3.0.3 rc1
**Issue description:**
Refactoring the scene hierarchy in the parent scene makes the inherited scene lose custom property.
If the nodes are just moved around and/or renamed, they should keep the child property.
related to #16650
**Steps to reproduce**
1. Make Scene A, with B as a... | bug,topic:core,confirmed | low | Major |
331,564,453 | rust | Compiler doesn't suggest missing method that is implemented for different type parameter | Consider the following API that allows us to control some piece of hardware, while providing some compile-time guarantees by tracking the hardware state as a type parameter:
``` rust
pub struct Hardware<State>(State);
impl Hardware<Disabled> {
pub fn new() -> Self {
Hardware(Disabled)
}
p... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
331,585,994 | pytorch | [Feature request] Add torch.multiprocessing.Pipe | It would be convenient to support Pipe in PyTorch wrapper of multiprocessing. Since pipe sometimes much faster than Queue when only two points transmissions needed. | module: bootcamp,module: multiprocessing,triaged,enhancement,small | low | Minor |
331,666,512 | neovim | UI: "fold" events | It would be nice to have an RPC API for manipulating folds directly without switching to a window first. It'd also be nice to get fold update events, but window events deserve their own issue: https://github.com/neovim/neovim/issues/8539
https://github.com/neovim/neovim/blob/77192889f09a118c8993af79b2eaa7f43623b6c2/... | enhancement,api,ui-extensibility,core | low | Minor |
331,689,495 | pytorch | Properly release NCCL resources | Right now we're simply leaking them, because NCCL segfaults if you attempt to destroy them after the driver is unloaded.
One strategy to fix it would be to use an `atexit` handler.
See #8352 for more context. | triaged,module: nccl | low | Minor |
331,740,793 | go | gccgo: internal compiler error for interface with cyclic result types | With
```$ gccgo --version
gccgo (google-gccgo-261288) 9.0.0 20180607 (experimental)
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
```
the following program
`... | NeedsInvestigation | low | Critical |
331,747,214 | scrcpy | Mouse pointer visibility | Under full screen mode make mouse pointer fade away after some time without mouse activity.
It's specially useful for presentations. | feature request | low | Minor |
331,751,656 | go | proposal: io/v2: remove io.Seeker, SeekStart, etc., change Seek method | Copying @bradfitz's comment https://github.com/golang/go/issues/17920#issuecomment-260542015 into a separate proposal.
For Go 2 we should consider changing the `Seek` method to just take a file position, not a whence argument. We should consider adding `SeekFromCurrent` and `SeekFromEnd`, though I suspect they are ... | v2,Proposal | low | Major |
331,762,882 | flutter | Provide a way to screenshot an entire ListView.builder | (Coming here from #12994)
`ListView.builder` will only render the items visible on the screen. For widget screenshot tests, however, it would be useful to screenshot the entire contents of the widget -- as if there were no vertical constraints, resulting in all the widgets being built.
Possible ideas to do this:
... | a: tests,c: new feature,framework,P3,team-framework,triaged-framework | low | Critical |
331,789,401 | rust | NLL no longer figures out non-lexical lifetimes within loop | Minimal useful example:
```rust
#![feature(nll)]
use std::collections::VecDeque;
fn next(queue: &mut VecDeque<u32>, above: u32) -> Option<&u32> {
let result = loop {
{
let next = queue.front()?;
if *next > above {
break next;
}
}
... | C-enhancement,T-compiler,A-NLL,NLL-polonius | low | Critical |
331,854,935 | go | proposal: spec: interface literals | Filing this for completeness sake, since it was mentioned in https://github.com/golang/go/issues/21670 that this proposal had been discussed privately prior to Go 1. Just like literals allow the construction of slice, struct, and map values, I propose "interface literals" which specifically construct values that satisf... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
331,882,308 | rust | Nightly version is off by one | This says it all:
```
$ rustc +nightly-2016-06-10 --version
rustc 1.11.0-nightly (7d2f75a95 2016-06-09)
```
The version reported by rustc itself is consistently off by one compared to what I requested from rustup. That's particularly confusing when looking at e.g. Travis CI build logs of of my project with a parti... | T-infra,C-feature-request | low | Major |
331,914,322 | angular | How do I get my Angular 6 components to inherit it's extended component's styles? | ## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[?] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Performance issue
[?] Feature request
[ ] Docume... | feature,area: core,core: stylesheets,core: component extension and customization,feature: under consideration | high | Critical |
331,914,616 | flutter | Support soft hyphenation (line breaks at U+00AD plus rendering a hyphen at the end of the line) | I was surprised not to find a parameter to have automatic hyphenation in Text widgets (and the likes). I think it is a useful feature to get nice designs. Without it, justified text may be filled with ugly blank spaces if there are too many very long words.
Could text hyphenation be implemented in flutter, or does i... | c: new feature,framework,engine,a: typography,customer: crowd,P2,team-engine,triaged-engine | low | Critical |
331,924,157 | flutter | FlutterDriver does not support to find/read validation errors (errorText) of a form field. | Hi,
I'm writing an integration test for my flutter application. Goal of the integrationtest is to test the form field validation behaviour.
As an example, I want to check if an email field contains a valid email address. If not, an appropriate errorText is displayed below the form field.
As far as I have seen,... | a: tests,c: new feature,framework,t: flutter driver,P2,team-framework,triaged-framework | low | Critical |
331,927,203 | vue | VNode.componentInstance is undefined when rendered by a functional component | ### Version
2.5.17-beta.0
2.5.16
### Reproduction link
[https://codepen.io/anon/pen/rKwWXq?editors=1010](https://codepen.io/anon/pen/rKwWXq?editors=1010)
### Steps to reproduce
Open the console
### What is expected?
An instance of `MyComponent` should be logged
### What is actually happening?
`undefin... | regression | low | Major |
331,945,781 | go | cmd/compile: teach prove.go that {strings|bytes}.Index* return value in the range [-1 .. len(s)) | ## The issue
Currently [prove.go](https://github.com/golang/go/blob/master/src/cmd/compile/internal/ssa/prove.go) doesn't know that functions like `strings.Index*` always return value in the range `[-1 .. len(s))` where `s` - input string / byte slice. So it emits unnecessary bounds checks in the following code:
... | Performance,NeedsInvestigation,compiler/runtime | low | Major |
331,975,984 | rust | Compilation for mips64-unknown-linux-gnu | I'm trying to compile the `std` crate using a custom target specification for `mips64-unknown-linux-gnu`. I've got stuck a little and I'd appreciate a little help. My specification is a copy of the built-in specification for `mips64-unknown-linux-gnuabi64` with the following differences:
1. The `data-layout` field h... | A-LLVM,O-MIPS,T-compiler | low | Critical |
331,981,979 | go | cmd/compile: merge sequential memory moves into bigger memory moves | ## The issue
Go tip compiles the following code into the following assembly:
```go
func fff(s string) int {
return strings.IndexByte(s, ' ')
}
```
```asm
EXT fff(SB)
func fff(s string) int {
0x50f060 64488b0c25f8ffffff MOVQ FS:0xfffffff8, CX
0x50f069 483b6110 ... | Performance,NeedsInvestigation,compiler/runtime | low | Minor |
332,033,651 | neovim | Custom text objects (or: syntax group as text object) | Hello,
I know this somewhat planned https://www.reddit.com/r/neovim/comments/2zm7s1/what_neovim_feature_will_do_you_get_the_most/cpl2t36
But I wanted to start discussions and possible design for this.
I am pretty sure this will be hugely inspired by https://github.com/kana/vim-textobj-user and projects based o... | enhancement,needs:design,syntax | low | Major |
332,060,100 | pytorch | batchnorm2d track_running_stats | when I load a pretrained model, Runtime error occurred: Missing key(s) in state_dict: bn.num_batches_tracked in every BatchNorm2d layer | module: serialization,triaged | low | Critical |
332,086,825 | go | cmd/go: allow forcing tags on/off during go mod vendor, tidy | In https://golang.org/cl/117258 the "vendor ALL" was introduced to include all files when walking the source tree, except for ignore build tags. This is great.
In https://golang.org/cl/118317 the command introduces flags for "mod -fix" and "mod -sync" (but waits for another CL to implement them). These flags use the... | NeedsDecision,modules | medium | Major |
332,090,671 | pytorch | Use CMAKE_<LANG>_COMPILER_LAUNCHER | Moving more parts of the build into CMake we should use
- CMAKE_C_COMPILER_LAUNCHER (since CMake 3.4)
- CMAKE_CXX_COMPILER_LAUNCHER (since CMake 3.4)
- CMAKE_CUDA_COMPILER_LAUNCHER (since CMake 3.10)
To transparently use ccache in development. Latest ccache (version 3.4) includes working support for nvcc.
cc... | module: build,triaged | low | Minor |
332,093,730 | kubernetes | Unrecognized internal errors in apiserver when etcd server is restarted | <!-- 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/).
If the matter is security related, ple... | kind/bug,sig/api-machinery,lifecycle/frozen | medium | Critical |
332,097,453 | go | net: SplitHostPort errors if no port is specified, but not if input ends with a trailing ":" | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
All
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
All
### What did you do?
Repro ca... | NeedsInvestigation | low | Critical |
332,112,999 | rust | Tracking issue for the #[alloc_error_handler] attribute (for no_std + liballoc) | This attribute is mandatory when using the `alloc` crate without the `std` crate. It is used like this:
```rust
#[alloc_error_handler]
fn foo(_: core::alloc::Layout) -> ! {
// …
}
```
Implementation PR: https://github.com/rust-lang/rust/pull/52191
## Blocking issues
* [ ] #83430
* [ ] https://github.com/rust-la... | A-allocators,T-lang,T-libs-api,B-unstable,C-tracking-issue,WG-embedded,finished-final-comment-period,disposition-close,Libs-Tracked,S-tracking-design-concerns,S-tracking-needs-summary | high | Critical |
332,119,834 | node | readline with /dev/tty: echos and doesn't close | * **Version**: v10.2.1
* **Platform**: Linux and macOS
* **Subsystem**: readline
The use case is that a node script is being run from a piped bash script and so `process.stdin` is the pipe and `/dev/tty` must be used explicitly to get user input.
```js
var readline = require('readline');
var input = require('... | readline,tty | low | Major |
332,130,808 | pytorch | [caffe2] Why the GPU memory consumption has no change after enable optimize_gradient_memory? | ## Issue description
When I ran the file of 'resnet50_trainer.py' in caffe2/python/examples, I found that the GPU memory consumption has no change whether I enable the property of 'optimize_gradient_memory'. I would like to ask what is the reason. The input I use 'null'. Other parameters are default. Thanks.
## Cod... | caffe2 | low | Minor |
332,174,654 | go | crypto: document which cipher.Block implementations are safe for concurrent use | Many of them are, but since it's undocumented it might change from one architecture to the next.
This came up in https://go-review.googlesource.com/c/crypto/+/118535 because x/crypto/xts effectively assumes they all are. | Documentation,help wanted,NeedsFix | low | Major |
332,175,561 | pytorch | [JIT] Generalize checkTrace() to also compare gradients of parameters, not just inputs | Right now `checkTrace()` in test_jit.py only checks gradients for inputs, but does not check gradients for parameters on a traced module. We should generalize this so that we can pass in regular modules and test them | oncall: jit | low | Minor |
332,199,408 | vscode | Add DecorationRangeBehavior.Word | From #50779
**Problem**
Using decorators, a common pattern is that you want an decoration that applies to a given whole word. None of the current `DecorationRangeBehavior` values handle this well. `Open` will always expand the decorator even if you type non-word characters, while `Close` never expands the decorator... | feature-request,api,editor-textbuffer | low | Minor |
332,238,009 | pytorch | Does the caffe2 have the depthwise separable convolution oprater ? | Rencently, I need depthwise separable convolution for my project in order to reduce the parameters.
Does the caffe2 have the depthwise separable convolution oprater ?
| caffe2 | low | Minor |
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.