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 |
|---|---|---|---|---|---|---|
314,187,529 | go | path/filepath: TestEvalSymlinks tests with "/" prefix fail in Windows | ### What version of Go are you using (`go version`)?
go version go1.10.1 windows/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
set GOARCH=amd64
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows
### ... | help wanted,OS-Windows,NeedsInvestigation | low | Major |
314,187,984 | TypeScript | Describe object vs Object in the Handbook | https://www.typescriptlang.org/docs/handbook/basic-types.html should cover the built-in `object` type and have a brief discussion of it vs `Object`
See #20614 | Docs | low | Minor |
314,190,638 | vscode | Windows update failed: Access is denied | Log from %HOME%\AppData\Local\Temp\vscode-inno-updater.log
```
Apr 13 11:27:40.666 INFO Starting: C:\Program Files\Microsoft VS Code\Code.exe, false
Apr 13 11:27:40.670 INFO Checking for running Code.exe processes... (attempt 1)
Apr 13 11:27:40.670 INFO Code.exe is running, wait a bit
Apr 13 11:27:41.148 INFO Ch... | bug,install-update,windows | high | Critical |
314,191,034 | three.js | Request function Render To Depth | You need a function similar to renderer.render, but with the ability to render it in depth.
Why is not standard use appropriate?
```
scene.overrideMaterial = overrideMaterial;
renderer.render (scene, camera, ...);
scene.overrideMaterial = null;
```
due to the fact that using this method for Skin mesh will be dra... | Enhancement | low | Minor |
314,194,066 | terminal | Add an option to toggle the width of ambiguous-width characters | This bug-tracker is monitored by Windows Console development team and other technical types. **We like detail!**
If you have a feature request, please post to [the UserVoice](https://wpdev.uservoice.com/forums/266908).
> **Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or... | Issue-Feature,Product-Conhost,Help Wanted,Product-Conpty,Area-Server,Area-Settings,Product-Terminal | low | Critical |
314,258,581 | vue | v-once for component tag doesn't work in v-for | ### Version
2.5.16
### Reproduction link
[https://jsfiddle.net/hL0rrbs9/6/](https://jsfiddle.net/hL0rrbs9/6/)
### Steps to reproduce
Run code, and watch.
### What is expected?
"Yay Yay ;)" values should not change to "hell naw!" in 3 seconds.
### What is actually happening?
"Yay Yay ;)" values are chan... | bug,has PR | low | Minor |
314,276,107 | go | cmd/go: list command crashes on testdata packages under vendor | If the Go files in a `testdata` package import another package found in `vendor` directory, running `go list` command in the `testdata` package will result in an error:
```
unexpected directory layout:
import path: p
root: /Users/zplin/gocode/src
dir: /Users/zplin/gocode/src/go_examples/vendor/p
expand root... | NeedsInvestigation | low | Critical |
314,278,022 | TypeScript | Support a @nonnull/@nonnullable JSDoc assertion comment | This could be used in place of the non-null assertion operator, and solve #23403.
```js
while (queue.length) {
(/** @nonnull */ queue.pop())();
}
```
Related is #23217, which tracks definite assignment assertions. | Suggestion,Committed,Domain: JSDoc,Domain: JavaScript | medium | Critical |
314,280,956 | vscode | Add wordwrap indicator | There's currently no visual indication when you use the `"editor.wordWrap": "on"` setting.
I'd propose optionally adding a wordwrap-indicator on each newline, something like this:

so it becomes easy... | feature-request,editor-wrapping | high | Critical |
314,317,401 | vue | Creating a component named map should warn the user (as with button) | ### Version
2.5.15
### Reproduction link
[https://jsfiddle.net/e2yxoomh/2/](https://jsfiddle.net/e2yxoomh/2/)
### Steps to reproduce
Create a component that includes the word "map" (case insensitive). For example:
- Map
- MapView
- mapper
### What is expected?
I expect these to work, or at least give ... | contribution welcome,improvement,good first issue,has PR | medium | Critical |
314,364,165 | go | x/build/maintner: GerritMessage doesn't include inline comments | Consider [CL 97058](https://golang.org/cl/97058) as an example. It has reviews with inline comments. For example, here's one by Andrew:

[`GerritMessage`](https://godoc.org/golang.org/x/build/maintner#Gerr... | Builders,NeedsDecision,FeatureRequest | low | Major |
314,375,674 | rust | No compiler error when attempting to change field of const struct | There is no compiler error, when trying to change the field of a ```const``` struct.
I tried this code:
```rust
struct StructA {
pub a: u32,
}
const A: StructA = StructA{a: 0};
fn main() {
A.a = 10;
println!("{}", A.a);
}
```
I expected to see this happen:
Compiler error, because I try t... | C-enhancement,A-lints,T-compiler | low | Critical |
314,376,492 | go | x/build/maintner: occasional unexpected updates for specific issues/PRs | I created a [`NewNetworkMutationSource`](https://godoc.org/golang.org/x/build/maintner#NewNetworkMutationSource) and let it stream events for the last hour or so. Most of the events that came in was legitimate current activity.
However, I also noticed a few suspect events. They refer to issues/PRs that as far as I c... | Builders,NeedsInvestigation | low | Critical |
314,377,130 | rust | Putting `#![feature(…)]` in a module `.rs` file is silently ignored | Putting `#![feature(…)]` in a mod is silently ignored.
I tried this code (minimized version):
https://github.com/nelhage/feature-in-mod
I'm writing some toy Rust code that needs to perform pattern-matching over ASTs (that use `Box` to reference children), and wanted to use `box` patterns. On advice of https:/... | C-enhancement,A-diagnostics,T-compiler | low | Critical |
314,394,404 | react | Unexpected warning when hydrating with portal and SSR | **Do you want to request a *feature* or report a *bug*?**
*bug*
**What is the current behavior?**
Given the following (simplified) snippet:
```jsx
class HoverMenu extends React.Component {
render() {
if (typeof document === 'undefined') return null
const root = document.getElementById('root')
... | Type: Bug,Difficulty: medium | medium | Critical |
314,400,013 | flutter | RenderFilter to change the brightness/contrast of all child widgets. | ## feature request.
RenderFilter to change the brightness/contrast of all child widgets. | c: new feature,framework,P3,team-framework,triaged-framework | low | Major |
314,403,137 | vscode | Allow webviews to be shown in modal windows | It would be very helpful if extension writers could show a popup/modal window with various kinds of graphical options (e.g: create file from list, with a preview of various file types).
In fact there is already something like that (the built-in issue report window), but I'd prefer more flexibility by either allowing... | feature-request,api,webview | medium | Major |
314,407,008 | go | x/net/dns/dnsmessage: cannot parse mDNS SRV records | DNS message compression was disabled SRV Target fields in golang/go#10622 / https://golang.org/cl/100055 (as per [RFC 2782](https://tools.ietf.org/html/rfc2782#page-4)).
However, compression is explicitly allowed for the MDNS SRV target field ([RFC 6762 Sec 18.14](https://tools.ietf.org/html/rfc6762#section-18.14)):... | NeedsInvestigation | low | Critical |
314,417,509 | pytorch | [caffe2] benchmark performance for different operators | The environment of server is the following:
- Framework: Caffe2
- OS: Centos-7.3.1611
- CUDA/cuDNN version: CUDA-8.0(cudnn-6.0)
- GPU: Tesla K80
- GCC version: gcc-4.8
- CMake version: cmake3
I want to test the performance on different convolution and fully-connected operators. But I got a rather ridiculous r... | caffe2 | low | Major |
314,430,731 | rust | Writing Eq::eq produces an unhelpful diagnostic (`std::cmp::Eq` cannot be made into an object) | ```rust
fn hi() -> bool {
Eq::eq(&(), &())
}
```
```
Compiling playground v0.0.1 (file:///playground)
error[E0038]: the trait `std::cmp::Eq` cannot be made into an object
--> src/main.rs:3:5
|
3 | Eq::eq(&(), &())
| ^^^^^^ the trait `std::cmp::Eq` cannot be made into an object
|
=... | C-enhancement,A-diagnostics,A-trait-system,T-compiler,D-confusing | low | Critical |
314,433,171 | vue | keep-alive: include/exclude components by component key attribute | ### What problem does this feature solve?
The include and exclude props allow components to be conditionally cached only by component name. If we want to reuse components but force replacement using the `key` attribute, there is no control over which components we want to keep-alive only matching components by their n... | feature request,has PR | medium | Major |
314,452,575 | go | x/build/maintner: be confident that returned GerritCL.Status always has one of documented values | [`GerritCL.Status`](https://godoc.org/golang.org/x/build/maintner#GerritCL.Status) is documented as:
```Go
// Status will be "merged", "abandoned", "new", or "draft".
Status string
```
We want clients of `maintner` API to be confident in that statement, and not have to doubt it by adding their own "if cl.Statu... | Builders,NeedsInvestigation | low | Minor |
314,453,661 | go | cmd/compile: bounds check elimination for `if len(x) > 32 { ...; x = x[8:]; ... }` | ( From https://github.com/golang/go/issues/23354#issuecomment-365753223 )
In https://github.com/dgryski/go-metro/commit/1308eab584388b3f8f6050f027708891c4f4143a I got a major performance boost by changing the loop to remove the reassignments to ptr which, even though they were still within range, invalidated the bou... | Performance,NeedsFix,compiler/runtime | low | Major |
314,483,388 | go | sync: mutex profiling information is confusing (wrong?) for mutexes with >2 contenders | ERROR: type should be string, got "https://github.com/golang/go/blob/2b2348ab143368a35031a814a8d41eb5a437aa33/src/runtime/sema.go#L340\r\n\r\nPlease answer these questions before submitting your issue. Thanks!\r\n\r\n\r\n### What version of Go are you using (`go version`)?\r\n\r\n`(lldb) plat sh go version\r\ngo version go1.10.1 darwin/amd64`\r\n\r\n### Does this issue reproduce with the latest release?\r\n\r\nYes\r\n\r\n### What operating system and processor architecture are you using (`go env`)?\r\n```\r\n(lldb) plat sh go env\r\nGOARCH=\"amd64\"\r\nGOBIN=\"\"\r\nGOCACHE=\"off\"\r\nGOEXE=\"\"\r\nGOHOSTARCH=\"amd64\"\r\nGOHOSTOS=\"darwin\"\r\nGOOS=\"darwin\"\r\nGOPATH=\"\"\r\nGORACE=\"\"\r\nGOROOT=\"/usr/local/Cellar/go/1.10.1/libexec\"\r\nGOTMPDIR=\"\"\r\nGOTOOLDIR=\"/usr/local/Cellar/go/1.10.1/libexec/pkg/tool/darwin_amd64\"\r\nGCCGO=\"gccgo\"\r\nCC=\"clang\"\r\nCXX=\"clang++\"\r\nCGO_ENABLED=\"1\"\r\nCGO_CFLAGS=\"-g -O2\"\r\nCGO_CPPFLAGS=\"\"\r\nCGO_CXXFLAGS=\"-g -O2\"\r\nCGO_FFLAGS=\"-g -O2\"\r\nCGO_LDFLAGS=\"-g -O2\"\r\nPKG_CONFIG=\"pkg-config\"\r\nGOGCCFLAGS=\"-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build604482558=/tmp/go-build -gno-record-gcc-switches -fno-common\"`\r\n```\r\n### What did you do?\r\n\r\n```\r\npackage main\r\n\r\nimport (\r\n\t\"fmt\"\r\n\t\"os\"\r\n\t\"runtime\"\r\n\t\"runtime/pprof\"\r\n\t\"sync\"\r\n\t\"testing\"\r\n)\r\n\r\nfunc TestMutex(t *testing.T) {\r\n\truntime.SetMutexProfileFraction(1)\r\n\tfmt.Printf(\"Running with fraction = %v\\n\", runtime.SetMutexProfileFraction(1))\r\n\tch := make(chan struct{}, 3)\r\n\tm := sync.Mutex{}\r\n\tgo func1(ch, &m, 10)\r\n\tgo func2(ch, &m, 10)\r\n\tgo func3(ch, &m, 10)\r\n\r\n\t<-ch\r\n\t<-ch\r\n\t<-ch\r\n\tfmt.Println(\"Done waiting\")\r\n\tprofile := pprof.Lookup(\"mutex\")\r\n\tprofile.WriteTo(os.Stdout, 1)\r\n}\r\n\r\nfunc core(m *sync.Mutex, loops int) {\r\n\tm.Lock()\r\n\r\n\tfor i := 0; i < loops*1000*1000*1000; i++ {\r\n\t}\r\n\tm.Unlock()\r\n}\r\nfunc func1(ch chan<- struct{}, m *sync.Mutex, loops int) {\r\n\tcore(m, loops)\r\n\tfmt.Println(\"Done func1 loops=\", loops)\r\n\tch <- struct{}{}\r\n}\r\n\r\nfunc func2(ch chan<- struct{}, m *sync.Mutex, loops int) {\r\n\tcore(m, loops)\r\n\tfmt.Println(\"Done func2 loops=\", loops)\r\n\tch <- struct{}{}\r\n}\r\n\r\nfunc func3(ch chan<- struct{}, m *sync.Mutex, loops int) {\r\n\tcore(m, loops)\r\n\tfmt.Println(\"Done func3 loops=\", loops)\r\n\tch <- struct{}{}\r\n}\r\n\r\n```\r\n\r\n\r\n### What did you expect to see?\r\n\r\nThat one func was contended for twice as long as the other: e.g.\r\n```\r\nlldb) c\r\nProcess 90281 resuming\r\nRunning with fraction = 1\r\nDone func3 loops= 10\r\nDone func1 loops= 10\r\nDone func2 loops= 10\r\nDone waiting\r\n--- mutex:\r\ncycles/second=3096003024\r\nsampling period=1\r\n37586656890 1 @ 0x105ad75 0x10e7897 0x10e78e9 0x1053ac1\r\n# 0x105ad74 sync.(*Mutex).Unlock+0x74 /usr/local/Cellar/go/1.10.1/libexec/src/sync/mutex.go:201\r\n# 0x10e7896 testmutex.core+0x56 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:34\r\n# 0x10e78e8 testmutex.func1+0x38 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:37\r\n\r\n19168525985 1 @ 0x105ad75 0x10e7897 0x10e7ac9 0x1053ac1\r\n# 0x105ad74 sync.(*Mutex).Unlock+0x74 /usr/local/Cellar/go/1.10.1/libexec/src/sync/mutex.go:201\r\n# 0x10e7896 testmutex.core+0x56 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:34\r\n# 0x10e7ac8 testmutex.func3+0x38 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:49\r\n```\r\n\r\n### What did you see instead?\r\n\r\n```\r\nRunning with fraction = 1\r\nDone func3 loops= 10\r\nDone func1 loops= 10\r\n Done func2 loops= 10\r\nDone waiting\r\n--- mutex:\r\ncycles/second=3095995234\r\nsampling period=1\r\n20145330860 1 @ 0x105ad75 0x10e7897 0x10e7ac9 0x1053ac1\r\n# 0x105ad74 sync.(*Mutex).Unlock+0x74 /usr/local/Cellar/go/1.10.1/libexec/src/sync/mutex.go:201\r\n# 0x10e7896 testmutex.core+0x56 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:34\r\n# 0x10e7ac8 testmutex.func3+0x38 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:49\r\n\r\n19631603241 1 @ 0x105ad75 0x10e7897 0x10e78e9 0x1053ac1\r\n# 0x105ad74 sync.(*Mutex).Unlock+0x74 /usr/local/Cellar/go/1.10.1/libexec/src/sync/mutex.go:201\r\n# 0x10e7896 testmutex.core+0x56 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:34\r\n# 0x10e78e8 testmutex.func1+0x38 /Users/qjeremy/gocode/src/testmutex/testmutex_test.go:37\r\n```\r\n\r\n### Analysis\r\n\r\n I believe the cause is the linked line number, I am not sure why the next sudog (t) should be considered to have start waiting from the time first sudog (s) is released \r\n" | NeedsInvestigation,compiler/runtime | low | Critical |
314,555,528 | go | x/mobile/cmd/gomobile: bind fails for cloud.google.com/go/trace | ### What version of Go are you using (`go version`)?
1.10
### Does this issue reproduce with the latest release?
Not quite sure. I tried re-installing gomobile but still getting:
```
[matti@babylon trace (master)] % gomobile version
gomobile version unknown: binary is out of date, re-install it
```
... | mobile | low | Critical |
314,556,362 | pytorch | [Caffe2] CUDNN_STATUS_BAD_PARAM Error with the LRN layer while trying to run the code using CUDA. The training works fine on CPU | Original python traceback for operator 39 in network `fast_style_train` in exception above (most recent call last):
File "styleCaffe.py", line 284, in <module>
File "styleCaffe.py", line 250, in main
File "styleCaffe.py", line 126, in styleNetModelDef
File "styleCaffe.py", line 68, in customVGGY
File "/u... | caffe2 | low | Critical |
314,597,734 | rust | Surprising type inference on method call without explicit turbo-fish | Please excuse the lack of specificity in the title, it reflects my lack of understanding what is going on here.
Here's a distilled example of what I'm going for:
```rust
trait FooMut {
type Baz: 'static;
fn bar<'a, I>(self, iterator: &'a I) where for <'b> &'b I: IntoIterator<Item= &'b &'a Self::Baz>;... | C-enhancement,T-lang,A-inference | low | Critical |
314,631,837 | vue | Have template compiler add source metadata to HTML tags | ### What problem does this feature solve?
I'm developing an all-in-one editor for webdevs that runs inside Chrome DevTools.
Just by replacing `npm start` with `[name-not-finalized] start`, users can have a fully featured text editor right inside Chrome DevTools shell, automatically pointing at their project directo... | feature request | low | Critical |
314,648,158 | You-Dont-Know-JS | Include some coverage of common tag functions for tagged template literals | When reading though [YDKJS: ES6 & Beyond; Chapter 2: Syntax](https://github.com/getify/You-Dont-Know-JS/blob/master/es6%20%26%20beyond/ch2.md) about [Tagged Template Literals](https://github.com/getify/You-Dont-Know-JS/blob/master/es6%20%26%20beyond/ch2.md#tagged-template-literals), I thought of the case, "what if a mu... | for second edition | medium | Minor |
314,690,913 | opencv | VideoCapture: Accessing physical camera with MJPG produces artifacts | ##### System information (version)
- OpenCV => 3.2.0
- Operating System / Platform =>Win 10 64bit
- Compiler => Visual Studio 2013, 64bit
##### Detailed description
Accessing my (physical) webcam compressed by setting the FOURCC to MJPG works (I see a noticeable increase in FPS for 120fps-capable devices) but ... | category: videoio,platform: win32 | low | Minor |
314,695,939 | vscode | Feature: Settable "keyboard.chords.mode" | <h1 align=center><img alt="consequential inaccessibility ≠ incidental feature request" src="https://upload.wikimedia.org/wikipedia/commons/3/3b/Antu-preferences-desktop-accessibility-32.svg" height=48 /></h1>
<details><summary align=center><b><code>Explainer</code></b></summary>
---
**Note** — The following wa... | feature-request,keybindings | low | Critical |
314,729,577 | TypeScript | Callback in mapped type implicitly has 'any' type | **TypeScript Version:** 2.9.0-dev.20180414
**Code**
```ts
declare function watch<T>(obj: T, propertyChangedCallbacks: { [K in keyof T]: (obj: T) => void }): void;
watch({ x: 0 }, {
x: obj => {},
});
```
**Expected behavior:**
`obj` is `{ x: number }`.
**Actual behavior:**
`src/a.ts(3,8): erro... | Bug | low | Critical |
314,763,755 | go | x/build: make sure builders always set $HOME and $USER | The builders don't always set $HOME and $USER.
Fix that, and revert the os/user testing hacks from https://go-review.googlesource.com/c/go/+/107300
| Builders | low | Minor |
314,787,035 | rust | Provide natstepfilter and/or natjmc files for debugging with Visual Studio | Visual Studio has support for specifying functions to step over unconditionally, or to step over if debugging "just my code". See the documentation [here](https://docs.microsoft.com/en-us/visualstudio/debugger/just-my-code#BKMK_C___Just_My_Code).
I'm investigating if these files can be embedded in the pdb (like a n... | O-windows,A-debuginfo,C-enhancement,T-compiler,O-windows-msvc | low | Critical |
314,814,811 | go | x/build/cmd/gerritbot: Gerrit edits are immediately overwritten by older GitHub commits | I tried to edit a commit message on Gerrit, but gopherbot fought me and reverted it:
https://go-review.googlesource.com/c/sys/+/107302
https://go-review.googlesource.com/c/sys/+/107302/2..3
I'd only expect it to be reverted if there was a new patchset on GitHub's side.
/cc @andybons | Builders,NeedsFix | medium | Major |
314,857,048 | TypeScript | Don't offer to change spelling to not-yet-defined variables | **TypeScript Version:** 2.8.1
**Search Terms:** suggest change spelling auto fix import
**Code**
```typescript
// This import is missing, but can be auto-suggested
import { /* SomeClass */ } from "./SomeClass";
const bindContainer = (container) => {
const someClass = container.get(SomeClass);
};
`... | Suggestion,Awaiting More Feedback,Domain: Quick Fixes | low | Minor |
314,863,924 | electron | Change default web behaviors that don't make sense in the context of Electron | There are a number of behaviors that Electron inherits from Chromium which don't make sense for the vast majority of Electron apps. For instance:
- dragging a file into a window navigates to that file
- pinch-zooming in a window zooms the UI
- <kbd>Cmd+Click</kbd> opens links a new BrowserWindow
Electron apps t... | discussion | medium | Critical |
314,866,425 | flutter | Move Rasterizer::Snapshot to the IO thread. | Currently, snapshotting for the service protocol happens on the raster (formerly GPU) thread because we need access to IO GrContext resident textures. However, this could also be done on the IO thread itself. The only roadblock was the fact that the sole ownership of the layer tree was with the rasterizer which was onl... | team,engine,P3,team-engine,triaged-engine | low | Minor |
314,867,550 | go | cmd/compile: compiler variable folding can break linker's -X option | I'm facing a problem when I'm trying to set a variable at build time using the LDFLAG -X. The issue seem to occur because the compiler optimizes the variable into a constant since it's not being used in the package.
Here's a very simplfied code snippet that shows the issue:
```
package main
import "fmt"
var ... | NeedsInvestigation,compiler/runtime | low | Major |
314,890,944 | TypeScript | Allow Typescript to detect when imported html relative paths are incorrect | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 -->
<!--
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the CONT... | Suggestion,Awaiting More Feedback | low | Critical |
314,913,050 | three.js | CubeTexture Support for the Threejs Editor | This is a feature request.
For a long time, threejs editor has been lacking the support of `CubeTexture`.
Not just for importing but exporting as well.
I'm assuming that many people would love this feature.
Most of the time, we have to go through threejs editor in order to create a scene with proper texture... | Enhancement,Editor | low | Minor |
314,921,947 | flutter | [Widget Request] BasicApp | Maybe something like this already exists and I've just missed it.
What would be very useful is a simple bare bones "App" widget (no navigation, nothing) for creating single view app. Basically, something that just sets the text direction and locale etc (a stripped down version of WidgetsApp). | c: new feature,framework,P3,team-framework,triaged-framework | low | Major |
314,973,256 | three.js | Texture panel for all textures in Threejs Editor | Hello Everyone,
Hope you all would find this feature request interesting.
At this point, threejs editor supports the texture implementation but there is no easier way to set various texture properties like anisotropy, filters, repeat, offset etc.
I would propose a texture panel to have all the texture propert... | Enhancement,Editor | low | Minor |
314,991,985 | godot | Floating point values in the inspector are forcibly rounded to 3 decimal places | **Godot version:**
3.0.2
**OS/device including version:**
Arch Linux
**Issue description:**
<!-- What happened, and what was expected. -->
Fractional numbers, when entered in the inspector of the editor, e.g. for the `Height` of a `CapsuleShape`, are rounded to two decimal places. For example, when entering 2... | discussion,topic:editor,confirmed | medium | Critical |
314,992,309 | every-programmer-should-know | What about Network ? | Needs some ❤️,good first issue | low | Minor | |
315,060,176 | pytorch | [feature request] Stochastic Variance Reduced Gradient (SVRG) optimizer | I'm currently working on neural networks for my Master's thesis and I stumbled upon the optimizer described in this paper:
https://papers.nips.cc/paper/4937-accelerating-stochastic-gradient-descent-using-predictive-variance-reduction.pdf
and I managed to make an implementation for myself and I thought I could contrib... | feature,module: optimizer,triaged,needs research | low | Minor |
315,084,879 | pytorch | [caffe2] GANs | Is it possible to develop a Generative Adversial Network with caffe2?
I'm struggling a bit on how to give the gradient of the discriminator to the generator.
Is there any minimal example?
Thanks | caffe2 | low | Major |
315,110,544 | pytorch | Autogenerate code example / tutorial outputs in documentation | It would be nice to have an automated way of doing the following:
- Generates output of code examples and includes it in the docs
- Error or warn if any of the code examples don't run (or crash) so it's easy to identify what to fix
Something like [nbsphinx](https://nbsphinx.readthedocs.io/en/0.3.2/) does both of t... | todo,module: docs,good first issue,triaged,module: doc infra | medium | Critical |
315,116,368 | vscode | Search and replace across files corrupts files with CR line endings |
Issue Type: <b>Bug</b>
Execute these commands:
```cmd
git clone https://github.com/AArnott/pinvoke.git
cd pinvoke
git checkout b1239bc075f87f202a410973d7faa468a5e6b9cf
code .
```
In the Search panel, search for "LICENSE.txt" and replace with "LICENSE" (no other options such as regex are selected).
In... | bug,search,confirmed | low | Critical |
315,148,165 | angular | Generated output in ngsw.json is wrong | ## I'm submitting a...
<pre><code>
[x] Bug report
[ ] Feature request
</code></pre>
## Current behavior
When run the build script with the inline argument of `--base-href /current/` and in the `ngsw.json` file use the absolute path for the files, it produces the path `/current/index.html` in the built `ngsw.js... | type: bug/fix,freq1: low,area: service-worker,state: needs more investigation,P4 | low | Critical |
315,157,569 | TypeScript | In JS, type annotations should not block errors from the rest of the program | In a Javascript file that is checked by flow, we may see code like this (from create-react-app/packages/react-error-overlay/src/utils/parseCompileError.js)
```js
export type ErrorLocation = {|
fileName: string,
lineNumber: number,
colNumber?: number,
|}
function parseCompileError(message: string): ?ErrorLo... | Suggestion,Awaiting More Feedback,Domain: JavaScript | low | Critical |
315,215,285 | kubernetes | Guidelines for node-level plugin auth | **Overview**
I get a lot of questions about how to setup mutual authentication for node-level cluster plugins. Examples include:
- Local volume provisioning
- Device plugins (modify node object)
- Device metrics (scraping)
- CRI Streaming
- _Are there others I'm missing?_
For the general case, our recommen... | kind/cleanup,kind/feature,sig/auth,priority/important-longterm,lifecycle/frozen | low | Major |
315,269,253 | go | testing: show rusage statistics for benchmarks | When optimizing CPU usage, it would be useful to get CPU usage information from Go benchmarks.
Could we add, where supported, [getrusage](http://man7.org/linux/man-pages/man2/getrusage.2.html) calls before and after running each benchmark, in addition to wall-time?
I have no opinion about the API for requesting t... | NeedsInvestigation | low | Minor |
315,348,817 | rust | Detect recursive instantiation of generic functions | #### We currently have a quite helpful diagnostic for unconditionally recursive functions:
```rust
pub fn recur() {
recur();
}
```
```
warning: function cannot return without recurring
--> src/main.rs:1:1
|
1 | pub fn recur() {
| ^^^^^^^^^^^^^^ cannot return without recurring
2 | recur();
... | A-type-system,C-enhancement,A-diagnostics,T-compiler,D-terse,T-types | low | Critical |
315,391,388 | go | x/sys/linux/perf: add package for Linux perf tracing | Linux ships with a robust suite of performance counters and samplers accessed via the [perf_event_open](http://man7.org/linux/man-pages/man2/perf_event_open.2.html) system call.
Recent [changes](https://go-review.googlesource.com/c/sys/+/105756) to x/sys/unix make it possible to call perf_event_open from Go, but usi... | Proposal,Proposal-Accepted | medium | Major |
315,416,030 | puppeteer | Inconsistent text rendering in headless mode | **EDIT:** The fix is to add `--font-render-hinting=none` to the launch args. E.g.
```
var browser = await puppeteer.launch({
headless: true,
args: ['--font-render-hinting=none']
});
```
**Original Comment:**
Font spacing seems to be inconsistent between headless and non headless mode.
This is lik... | feature,upstream,chromium | high | Critical |
315,439,177 | ant-design | slider缺少对某个点禁止选中的API | - [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
当 included=false 时,表明不同标记间为并列关系;此时marks其中的某一个点需要设置为disabled状态;然而现有的API是针对整个slide设置的disabled,不能满足扩展要求。
### What does the propos... | help wanted,Inactive | low | Major |
315,450,582 | vscode | editor.action.sortLinesAscending has confusing sort order for symbols | When sorting lines using `editor.action.sortLinesAscending` ("Sort Lines Ascending" via the Command Palette) the lines are sorted in a very strange order when the comparison involves a symbol character.
I would expect that `.` (period) would be sorted before `_` (underscore) because in ASCII, period is 46 and unders... | feature-request,editor-sorting | medium | Critical |
315,453,246 | ant-design | The `Row` component will overflow when setting gutter | - [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### Version
3.4.1
### Environment
os: mac os 12, browser: chrome 65
### Reproduction link
[https://zhuchuji.github.io/antd-issues/](https://zhuchuji.github.io/antd... | Inactive | high | Critical |
315,462,393 | rust | proc_macro::TokenStream: provide AST node kind hint | ```rust
/// Enum representing AST nodes a #[proc_macro_attribute] may be applied to
// Bikeshedding welcome
pub enum SyntaxNodeKind {
// when crates as macro inputs aren't pretty-printed as modules (#41430)
Crate,
Item, // could be module, function, impl, etc. `syn` can figure the rest out
State... | C-feature-request,A-macros-2.0 | low | Critical |
315,565,723 | go | cmd/compile: avoiding zeroing new allocations when possible | Consider:
```go
func f() *int {
x := new(int)
*x = 1
return x
}
```
The first line gets translated into `x = newobject(type-of-int64)`, which calls `mallocgc` with a "needszero" argument of true. But it doesn't need zeroing: it has no pointers, and data gets written to the whole thing.
Same holds f... | Performance,compiler/runtime | low | Major |
315,567,620 | go | runtime: sparse zeroing in mallocgc | This is a performance idea; it needs experimentation to see whether it is worth it.
mallocgc accepts a flag to not zero the new allocation. It is used in a few places in the runtime where we know already that we'll entirely overwrite the new memory; #24926 contemplates having the compiler use it too.
mallocgc mus... | Performance,compiler/runtime | low | Major |
315,573,159 | go | cmd/compile: sometimes issue rematerializable values early | ```go
package p
var (
s *int
b bool
)
func f() {
var q *int
if b {
q = new(int)
} else {
q = new(int)
}
s = q
}
```
This code is a bit silly, but it's the smallest reproduction I have handy. :)
When compiled, this code tests b, and on each branch it contains an LEAQ of `type.int`. Th... | Performance,compiler/runtime | low | Minor |
315,584,902 | go | x/build/cmd/gerritbot: don't push to Gerrit if checklist hasn't been deleted | In https://github.com/golang/go/pull/24927 the checklist was kept in the commit message and gopherbot pushed it to Gerrit.
Gopherbot could instead just look for "Please ensure you adhere to every item in this list" and, if found, refuse to push it to Gerrit, saying something on the PR instead.
/cc @andybons | Builders | low | Minor |
315,621,695 | vscode | Option to configure editor scrollbar to be opaque | Currently, if editor.renderLineHighlight is set to "line" or "all", the highlight extends into the scrollbar. It would be helpful if it stopped just left of the scrollbar. Here is my rationale:
- The line position isn't the same as the scrollbar position, except by coincidence. They are independent, however the highli... | feature-request,editor-scrollbar | medium | Major |
315,669,787 | flutter | Rename LICENSE to NOTICES and update code accordingly | We currently have a LICENSES file in the engine repo. Based on feedback from our legal team, we should (to make things clearer) rename that to NOTICES. This will involve updating the license script documentation to write to NOTICES instead of LICENSE.
We should also update the flutter tool to read from the NOTICES f... | tool,framework,engine,P2,team-engine,triaged-engine | low | Minor |
315,731,013 | flutter | Update Tonic to better indicate error conditions. | Currently, Tonic has sub-optimal mechanisms of indicating errors in some of its functions. The convention followed (somewhat inconsistently) is [to log to standard error and then exit the process](https://github.com/fuchsia-mirror/topaz/blob/efc5ace130b83ed77accc67788ce28998d0b10fc/lib/tonic/file_loader/file_loader.cc#... | team,engine,P2,team-engine,triaged-engine | low | Critical |
315,818,169 | go | x/build/cmd/gerritbot: perform gofmt checks before pushing to Gerrit | In https://golang.org/cl/99337 a file using CRLF instead of LF line endings was added. When using git-codereview to send CLs, there is a gofmt check which prevents this. But it seems there is no corresponding check when sending CLs via Github PRs.
It would be nice to run the gofmt check also for PRs submitted via Gi... | help wanted,Builders,NeedsFix | low | Minor |
315,824,740 | react-native | [SectionList][inverted] SectionList headers are sticky-at-the-top-footers if the list is inverted | - [x] I have reviewed the [documentation](https://facebook.github.io/react-native)
- [x] I have searched [existing issues](https://github.com/facebook/react-native/issues)
- [x] I am using the [latest React Native version](https://github.com/facebook/react-native/releases)
## Environment
Environment:
OS: macOS... | Resolution: PR Submitted,Component: SectionList,Bug | high | Critical |
315,887,577 | pytorch | [Feature request] LayerNormLSTMCell and LayerNormLSTM | It could be convenient to have `LayerNormLSTMCell` and `LayerNormLSTM` implemented in `torch.nn`. | triaged,enhancement | low | Minor |
316,002,759 | kubernetes | Allow use of $ref in in CRD validation schema | (combined with https://github.com/kubernetes/kubernetes/issues/76965)
### `$ref` scenario 1:
In go types, we can define a type and use it in several other types. When generating CRD from this go types, we want to use reference for that type in the validation so that the schema has better readability.
```
packa... | sig/api-machinery,kind/feature,priority/important-longterm,area/custom-resources,lifecycle/frozen | high | Critical |
316,044,600 | flutter | Would like a tool to do symbolication (ideally, would like "flutter logs"/"flutter run" to do it automatically) | Related to https://github.com/flutter/flutter/issues/1016
Would be really nice to have a tool to symbolicate, e.g. follow the steps of:
https://github.com/flutter/engine/wiki/Symbolicating-production-crash-stacks
Including from custom engine builds. We hit an issue recently with customer:gold where they are bui... | c: new feature,tool,engine,P2,team-engine,triaged-engine | low | Critical |
316,048,492 | go | x/build: add Gerrit plugin to give us REST endpoint for last-modified time of anything globally | Gerrit doesn't have pubsub, so we instead have a dummy Google account that subscribes to all possible email spam from Gerrit. That dummy Google account has an email address with a domain name whose MX record goes to an SMTP server we run (see https://pubsubhelper.golang.org/).
That lets us get realtime updates from ... | Builders | low | Minor |
316,070,401 | pytorch | [caffe2] IfOp | Does anybody know how to use the IfOp? Are there any examples?
| caffe2 | low | Minor |
316,076,089 | pytorch | [caffe2] Training and inference | Hi,
I have a train net and a validation net declared in the same workspace. It seems that the weights are shared as both nets are in the same workspace. Now, my question is: when applying:
CAFFE_ENFORCE(workspace.RunNet(trainNet.predict().net().name()));
I'm expecting an update of my weights as I added... | caffe2 | low | Minor |
316,110,105 | neovim | cannot change colors of existing :terminal with 'termguicolors' | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`:
```
NVIM v0.2.2
Build type: Release
LuaJIT 2.0.5
Compilation: /usr/local/Homebrew/Library/Homebrew/shims/super/clang -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -D... | enhancement,terminal | medium | Critical |
316,113,437 | go | path/filepath: WalkFunc is called with a "file does not exist" error if a file is deleted between readdirnames and lstat (inside walk). | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
% go version
go version go1.10 linux/amd64
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
% go... | NeedsInvestigation | low | Critical |
316,118,898 | pytorch | [Caffe2] TensorProtosDBInput AttributeError | When I run the `lmdb_create_example.py --output_file ~/git/caffe2/build/caffe2/python/examples/test.lmdb`
I got the below error:
>>> Write database...
Inserted 0 rows
Inserted 16 rows
Inserted 32 rows
Inserted 48 rows
Inserted 64 rows
Inserted 80 rows
Inserted 96 rows
Inserted 112 rows
Checksum/write: 17... | caffe2 | low | Critical |
316,150,741 | go | gccgo: objcopy needs to be required by configure | gcc 7.3.0
"objdump" is actually a required executable for building gccgo, as I understand it.
Therefore, it would be nice to flag it as such, in libgo/configure, rather than have the build bomb out later, mysteriously.
Oddly, there is already a line related to it, in configure.ac:
AC_CHECK_TOOL(OBJCOPY, objco... | NeedsFix | low | Critical |
316,194,024 | three.js | Spatial Index and Occlusion culling introducing into core | # Spatial Index
Spatial index is necessary when dealing with large scenes, such large scenes are very common in games for example.
### Motivation
If you want to do a raycast into the scene - currently you are stuck with a linear search, which is dominated by number of objects and polygons. A spatial index would ena... | Suggestion | medium | Major |
316,194,883 | three.js | Optimizations to Animation Engine | # Optimizations to animation engine
Currently animation engine chokes on some 500 bones being animated simultaneously, resulting in a very high CPU usage.
### Motivation
It is not uncommon to see 3-5 characters at the same time with 500+ bones each in modern games, with current CPU demand such fidelity is not achie... | Suggestion | medium | Major |
316,195,195 | three.js | Support of Compressed Textures in core | # Compressed Textures
Compressed textures as a first-class citizen, along with tools for on-line compression
### Motivation
Compressed textures offer a great amount of extra detail requiring only a little space, for applications with large textures and/or large number of textures, this draws a line between interacti... | Suggestion | medium | Critical |
316,206,053 | opencv | ORB detector crashed | ##### System information (version)
- OpenCV => 3.4.1 dev
- Operating System / Platform => Windows 64 Bit/32bit (check both)
- Compiler => Visual Studio 2017
##### Detailed description
// C++ code example
https://docs.opencv.org/3.4.1/dc/d16/tutorial_akaze_tracking.html
Can`t use ORB detector in demo and own ... | bug,category: features2d,incomplete,needs reproducer | low | Critical |
316,217,259 | opencv | imshow upscale displayed image | Using the latest OpenCV on Windows 10, any image I show or any options I use for creating the window (autosize, or normal with specified size) the resulted window displays a scaled version of the image. The scale seems to correspond to the general scale set in Windows display settings. Is there a way to disable that sc... | feature,category: highgui-gui,platform: win32 | low | Minor |
316,277,384 | rust | PathBuf set_file_name and with_file_name need docs for input abspaths | Looking at:
https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.with_file_name
and
https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.set_file_name
I had thought, based on what was written there, that the code would extract the filename alone from the input, dropping the directory prefi... | C-enhancement,T-libs-api,A-io | low | Minor |
316,279,837 | vscode | Licensing unnecessarily prohibits usage in cloud services | I've been using a cloud service provider for remote work. In their service they provide Atom as a text editor, but I've been using Code for about a year now and am loathe to switch over my development environment.
They've bumped on something in the licensing. They cannot:
> share, publish, or lend the software, o... | under-discussion,license | low | Minor |
316,281,106 | godot | Using the `viewport` stretch mode and resizing the window (or using "shrink" value other than 1) results in black screen if MSAA is forced on in NVIDIA or AMD settings | **Godot version:** Git https://github.com/godotengine/godot/commit/7d6f210ccb5de9ef414f94ad42f9f3dea14c0493
**OS/device including version:** Fedora 27, NVIDIA 390.48
**Issue description:** When the window scaling mode is set to `2d` or `viewport`, setting the `display/window/stretch/shrink` project setting to a v... | bug,topic:rendering,confirmed,topic:thirdparty | medium | Critical |
316,339,404 | TypeScript | Exhaustiveness checking against an enum only works when the enum has >1 member. | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** typescript@2.9.0-dev.20180420
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** discriminated, exhaustiveness, type guard, narr... | Bug | low | Critical |
316,346,122 | flutter | SceneBuilder requires having only one root layer | If you push two layers onto a SceneBuilder, the second is silently dropped on the floor.
The first time you push a layer onto a scene builder, DefaultLayerBuilder::PushLayer sees it doesn't have a root layer yet, and uses the new layer as its root layer.
Then you pop that layer, and we set the current layer to th... | engine,c: rendering,P2,team-engine,triaged-engine | low | Critical |
316,366,204 | TypeScript | Option to disable sorting when running organize imports | _From @ssi-hu-tasi-norbert on April 20, 2018 9:9_
<!-- 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.22.2
- OS Version: win 10
Sort should be optional. I have imports from 3rd parties above ... | Suggestion,Awaiting More Feedback,Domain: Organize Imports | low | Major |
316,382,523 | kubernetes | Volume metrics causing node to become not ready | <!-- 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 this may be security issue, please ... | kind/bug,sig/storage,lifecycle/frozen | low | Critical |
316,398,544 | flutter | Support splitting a Flutter app's assets into multiple packages | For Android Instant Apps, and probably for Fuchsia and probably for hot updates, we will want to split an apps' assets into blobs of data each of which can be shipped separately and loaded independently. It would probably make sense to do it along `package:` boundaries like we do for Dart code.
cc @zanderso @tvolker... | c: new feature,tool,framework,engine,c: proposal,P2,team-engine,triaged-engine | low | Minor |
316,400,572 | flutter | Flutter needs a way to manage image assets by locale | Both iOS and Android asset systems have ways to manage images per-locale. Maybe those are already sufficient?
Or maybe we need some combined method as part of the `pubspec.yaml` flutter assets tag system?
(Filing based on a comment from @Hixie in an email.) | c: new feature,tool,framework,a: assets,P2,team-framework,triaged-framework | low | Minor |
316,410,020 | go | bytes, strings: optimize Contains with fast-path for sub-slices | Consider the following:
```go
func Benchmark(b *testing.B) {
buf := make([]byte, 1<<20)
rand.Read(buf)
for n := 64; n <= len(buf); n <<= 1 {
b.Run(fmt.Sprintf("%d", n), func(b *testing.B) {
for i := 0; i < b.N; i++ {
bytes.Contains(buf, buf[n-64:n])
}
})
}
}
```
On my machine, this pri... | Performance,NeedsDecision | low | Minor |
316,437,269 | flutter | All-purpose Media widget | It's a rather minor request, and totally up for discussion, however I feel that Flutter would benefit from having a generic ``Media`` widget, alongside ``Image`` and ``VideoPlayerController``.
Back in the days, when glittering GIFs ruled the world, if a website hosted images it hosted images, when it hosted videos –... | c: new feature,framework,a: video,P3,team-framework,triaged-framework | low | Major |
316,454,081 | rust | Module decarations when using include! are relative to the included file | I'm not sure if this is actually a bug or intended behavior, but when using the `include!` macro to include a file which contains module declarations i.e. `mod foo`, it searches for the module relative to the included file's path and not relative to the file which uses the `include!`.
Here's some example code to dem... | T-lang,C-feature-request | low | Critical |
316,463,688 | rust | Invalid collision with TryFrom implementation? | Sorry for the code dump. This is the smallest code I could make to reproduce the problem.
```rust
use std::marker::PhantomData;
use std::convert::TryFrom;
trait Integer {}
impl Integer for u8 {}
trait Adapter<I: Integer>: TryFrom<I> + Into<I> {}
enum Choice {
Foo,
Bar,
Baz
}
impl From<... | A-trait-system,T-lang,C-bug | high | Critical |
316,493,208 | rust | Warnings and error suggestions are wrong when originating from inside proc-macros | For example
```
warning: unused import: `Form`
--> example/src/main.rs:11:26
|
11 | #[derive(Debug, Default, Form)]
| ^^^^
|
= note: #[warn(unused_imports)] on by default
error[E0369]: binary operation `+` cannot be applied to type `&str`
--> example/src/main.rs:18... | C-enhancement,A-macros,T-compiler | low | Critical |
316,511,776 | rust | Tracking issue for f32 and f64 methods in libcore | https://github.com/rust-lang/rust/pull/49896 removes from libcore (and moves to libstd) three methods of `f32` and `f64` (that were only usable through the unstable trait `core::num::Float`) because they’re implemented by calling LLVM intrinsics, and it’s not clear whether those intrinsics are lowered on any platform t... | T-libs-api,C-tracking-issue,A-intrinsics,A-floating-point,Libs-Tracked | medium | Critical |
316,521,804 | youtube-dl | Add support for reelz.com | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | site-support-request,tv-provider-account-needed | low | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.