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
613,989,078
flutter
[Focus] When Focus cycles in a Scrollable, the focused item should be scrolled into view
```dart void main() => runApp(App()); class App extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Material( child: ListViewFocusRepro(), ), ); } } class ListViewFocusRepro extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: ListView( padding: EdgeInsets.zero, children: [ Container( height: 300, child: FlatButton(child: Text('Button 1'), onPressed: () {}), ), Container( height: 300, child: FlatButton(child: Text('Button 2'), onPressed: () {}), ), Container( height: 300, child: FlatButton(child: Text('Button 3'), onPressed: () {}), ), ], ), ); } } ``` On desktop, notice that pressing tab when 'Button 3' is focused sets the focus to 'Button 1', as expected, but it isn't visible. The same issue occurs when shift-tabbing from 'Button 1' to 'Button 3'. In both cases, the focused element should be scrolled into view For a more complex example, see https://gallery.flutter.dev/#/crane
framework,a: accessibility,a: desktop,f: focus,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-framework,triaged-framework
low
Major
613,989,459
pytorch
Resnet Model always predicting same label
I am currently playing around with PyTorch trying to successfully attempt facial recognition on a custom dataset of 48 classes with over 5000 images using Resnet50. During training my training and validation set accuracies are fairly high in the regions of 99% for both sets, however when I attempt to test my model on a number of unseen test images, I always get the same label? Would you know what the reason for this is?Is this a bug? cc @fmassa
triaged,module: vision
low
Critical
614,013,377
PowerToys
Path Shortener
A "**Destination path too long**" fix tool When copying folders sometimes the new location exceeds the max character length Goal: - Visualize and shorten long paths exceeding X characters. - Additionally, search for folders/file names longer than X.
Idea-New PowerToy
low
Minor
614,014,351
pytorch
Split more pages into sub-topics
## 📚 Documentation gh-37419 split up the "heaviest" pages into a leading pages and subpages. More can be done to split up pages (these have the most lines of HTML): - [ ] [`docs/source/quantization.rst](https://pytorch.org/docs/stable/quantization.html) - [ ] [`docs/source/tensors.rst`](https://pytorch.org/docs/stable/tensors.html#torch.Tensor) - [ ] [`docs/source/nn.fuctional.rst`](https://pytorch.org/docs/stable/nn.functional.html) - [ ] [`docs/source/distributions.rst`](https://pytorch.org/docs/stable/distributions.html) - [ ] [`docs/source/autograd.rst`](https://pytorch.org/docs/stable/autograd.html) The strategy would start with using `autosummary` like in gh-37419, but more work might be needed to split up classes with many methods. cc @ezyang @zou3519
module: docs,triaged,module: doc infra,open source
low
Minor
614,018,521
tensorflow
Remove GCC_HOST_COMPILER_PREFIX as it may be out of sync with GCC_HOST_COMPILER_PATH
**System information** - OS Platform and Distribution (e.g., Linux Ubuntu 16.04): RHEL 7.5 - TensorFlow installed from (source or binary): source - TensorFlow version: 2.2.0 - Python version: 3.7.4 - Bazel version (if compiling from source): 2.0.0 - GCC/Compiler version (if compiling from source): 7.3.0 **Describe the problem** The file https://github.com/tensorflow/tensorflow/blob/1588f45ee56860d247a1c26ea228cb3721b4bf1b/third_party/gpus/cuda_configure.bzl has a documented environment variable `GCC_HOST_COMPILER_PATH` to set the path (or name) of a GCC host compiler. However it also uses an undocumented variable `GCC_HOST_COMPILER_PREFIX` to get the folder where the gcc binary resides (guessing from name) defaulting to `/usr/bin` if it isn't set: https://github.com/tensorflow/tensorflow/blob/1588f45ee56860d247a1c26ea228cb3721b4bf1b/third_party/gpus/cuda_configure.bzl#L1028-L1030 I have 2 problems with that: - It is undocumented and hence hard to set right if you don't know for sure what it is - The default is wrong when the (documented!) `GCC_HOST_COMPILER_PATH` is used This leads to issues such as ``` external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -o bazel-out/k8-opt/bin/external/protobuf_archive/js_embed -Wl,-no-as-needed -pie -Wl,-z,relro,-z,now '-Wl,--build-id=md5' '-Wl,--hash-style=gnu' -no-canonical-prefixes -B/usr/bin -Wl,--gc-sections -Wl,@bazel-out/k8-opt/bin/external/protobuf_archive/js_embed-2.params) /usr/bin/ld.gold: error: /software/software/GCCcore/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o: unsupported reloc 42 against global symbol _ITM_deregisterTMCloneTable /usr/bin/ld.gold: error: /software/software/GCCcore/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o: unsupported reloc 42 against global symbol _ITM_registerTMCloneTable /usr/bin/ld.gold: error: bazel-out/k8-opt/bin/external/protobuf_archive/_objs/js_embed/embed.o: unsupported reloc 42 against global symbol std::ios_base::Init::~Init() /software/software/GCCcore/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o(.text+0x1a): error: unsupported reloc 42 /software/software/GCCcore/7.3.0/lib/gcc/x86_64-pc-linux-gnu/7.3.0/crtbeginS.o(.text+0x6b): error: unsupported reloc 42 bazel-out/k8-opt/bin/external/protobuf_archive/_objs/js_embed/embed.o:embed.cc:function _GLOBAL__sub_I_main: error: unsupported reloc 42 collect2: error: ld returned 1 exit status ``` As reported at https://github.com/easybuilders/easybuild-easyconfigs/pull/7800#issuecomment-471447493 I hence propose to either completely remove that variable in favor of deriving its value from `GCC_HOST_COMPILER_PATH` or properly documenting it with a better default. It does not seem to be required at all so it's likely best to just remove it. This should have been done by #34218 but for some reason that merge was reverted with a very misleading commit title: https://github.com/tensorflow/tensorflow/commit/f0571998d0195b5b243cf409a64d5fa17bd44d43 @gunan @mihaimaruseac please take a look what went wrong
stat:awaiting tensorflower,type:build/install,subtype: ubuntu/linux,TF 2.2
low
Critical
614,020,943
pytorch
Formatting of topic and sub-topic pages
## 📚 Documentation After gh-37419, there are now [subtopic pages](https://pytorch.org/docs/master/generated/torch.is_tensor.html#torch.is_tensor) underneath the [main topic pages](https://pytorch.org/docs/master/torch.html). Should the subtopic pages have a right-navbar to indicate where they fall inside the topic pages? In any case, the left- and right- navbars are quite long without alot of visual formatting to indicate where the current page is located. Indenting or color or other clues could help users see where they are. cc @ezyang @zou3519
module: docs,triaged,module: doc infra
low
Minor
614,039,222
electron
Child window minimizes to a black rectangle
<!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. --> ### Preflight Checklist <!-- Please ensure you've completed the following steps by replacing [ ] with [x]--> * [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project. * [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 5.0.x * 8.x.y * **Operating System:** * platform/windows 10 ### Expected Behavior Show some sort of identification for the child window when it is minimized (title, id or custom text) with buttons. ### Actual Behavior Window minimizes in to a black rectangle. ### To Reproduce Create frame-less windows: let mainWin = new BrowserWindow({ width:500, height:500, frame: false }); let childWin = new BrowserWindow({ width:500, height:500, frame: false, parent: mainWin // To relate the windows }); minimize the child window and it will turn into a black rectangle. ### Screenshots ![window issue](https://user-images.githubusercontent.com/14168151/81297100-79f99b80-907b-11ea-8b2a-382a25bb06b9.png) ### Additional Information I have been experiencing this issue in windows since electron 3.0.x. Currently on the latest v.8.2.5
platform/windows,bug :beetle:,8-x-y,11-x-y
medium
Major
614,044,994
nvm
Document that curl is required for nvm to work
## Use case I tried `nvm install 12.16.2` on an Ubuntu install that didn’t come with curl and nvm hung. (Oddly, `nvm install --lts` worked.) ## Workaround If curl is required (and my error was not due to some other issue), it should be documented in the readme. e.g., ``` ## Prerequisites - curl ``` Happy to issue a PR if necessary.
needs followup,installing nvm
low
Critical
614,051,621
go
cmd/link: support -linkmode=internal with Cgo
### What version of Go are you using (`go version`)? <pre> $ go version go version devel +3afa74115b Sun Apr 12 15:37:29 2020 +0000 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? <details><summary><code>go env</code> Output</summary><br><pre> $ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/elias/.cache/go-build" GOENV="/home/elias/.config/go/env" GOEXE="" GOFLAGS="-mod=readonly" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/elias/go/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/elias/go" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/home/elias/dev/go-tip" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/home/elias/dev/go-tip/pkg/tool/linux_amd64" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/home/elias/proj/gio/example/go.mod" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build621404981=/tmp/go-build -gno-record-gcc-switches" </pre></details> ### What did you do? linux/amd64: ``` $ mkdir tmp $ cd tmp $ go mod init blah go: creating new go.mod: module blah $ go run -ldflags=-linkmode=internal gioui.org/example/kitchen go: finding module for package gioui.org/example/kitchen go: downloading gioui.org/example v0.0.0-20200506145455-3957be37c821 go: downloading gioui.org v0.0.0-20200506145455-3957be37c821 go: found gioui.org/example/kitchen in gioui.org/example v0.0.0-20200506145455-3957be37c821 # gioui.org/example/kitchen gioui.org/app/internal/window(.data.rel): unexpected R_X86_64_64 relocation for dynamic symbol wl_surface_interface gioui.org/app/internal/window(.data.rel): unexpected R_X86_64_64 relocation for dynamic symbol wl_surface_interface gioui.org/app/internal/window(.data.rel): unexpected R_X86_64_64 relocation for dynamic symbol wl_surface_interface gioui.org/app/internal/window(.data.rel): unhandled relocation for wl_surface_interface (type 45 (SDYNIMPORT) rtype 1 (R_ADDR)) gioui.org/app/internal/window(.data.rel): unhandled relocation for wl_surface_interface (type 45 (SDYNIMPORT) rtype 1 (R_ADDR)) gioui.org/app/internal/window(.data.rel): relocation target wl_seat_interface not defined gioui.org/app/internal/window(.data.rel): unhandled relocation for wl_surface_interface (type 45 (SDYNIMPORT) rtype 1 (R_ADDR)) gioui.org/app/internal/window(.data.rel): relocation target wl_seat_interface not defined gioui.org/app/internal/window(.data.rel): relocation target wl_output_interface not defined gioui.org/app/internal/window._Cvar_wl_compositor_interface: relocation target wl_compositor_interface not defined gioui.org/app/internal/window._Cvar_wl_output_interface: relocation target wl_output_interface not defined gioui.org/app/internal/window._Cvar_wl_seat_interface: relocation target wl_seat_interface not defined gioui.org/app/internal/window._Cvar_wl_shm_interface: relocation target wl_shm_interface not defined ``` darwin/amd64 with ``` diff --git a/src/cmd/link/internal/amd64/asm.go b/src/cmd/link/internal/amd64/asm.go index c2d54703c1..8ee95b66e7 100644 --- a/src/cmd/link/internal/amd64/asm.go +++ b/src/cmd/link/internal/amd64/asm.go @@ -181,7 +181,7 @@ func adddynrel2(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s load su.SetRelocType(rIdx, objabi.R_ADDR) if targType == sym.SDYNIMPORT { - ldr.Errorf(s, "unexpected reloc for dynamic symbol %s", ldr.SymName(targ)) + ldr.Errorf(s, "unexpected reloc %s for dynamic symbol %s", r.Type(), ldr.SymName(targ)) } return true ``` applied: ``` $ go run -ldflags=-linkmode=internal gioui.org/example/kitchen # gioui.org/example/kitchen gioui.org/app/headless(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSOpenGLPixelFormat gioui.org/app/headless(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSOpenGLContext gioui.org/app/internal/window(__DATA/__objc_data): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSOpenGLView gioui.org/app/internal/window(__DATA/__objc_data): unexpected reloc RelocType(2048) for dynamic symbol _objc_empty_cache gioui.org/app/internal/window(__DATA/__objc_data): unexpected reloc RelocType(2048) for dynamic symbol OBJC_METACLASS_$_NSObject gioui.org/app/internal/window(__DATA/__objc_data): unexpected reloc RelocType(2048) for dynamic symbol OBJC_METACLASS_$_NSOpenGLView gioui.org/app/internal/window(__DATA/__objc_data): unexpected reloc RelocType(2048) for dynamic symbol _objc_empty_cache gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSArray gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSOpenGLPixelFormat gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSOpenGLContext gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSEvent gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSRunningApplication gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSApplication gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSMenuItem gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSMenu gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSWindow gioui.org/app/internal/window(__DATA/__objc_classrefs): unexpected reloc RelocType(2048) for dynamic symbol OBJC_CLASS_$_NSString gioui.org/app/internal/window(__DATA/__cfstring): unexpected reloc RelocType(2048) for dynamic symbol __CFConstantStringClassReference gioui.org/app/internal/window(__DATA/__cfstring): unexpected reloc RelocType(2048) for dynamic symbol __CFConstantStringClassReference gioui.org/app/internal/window(__DATA/__cfstring): unexpected reloc RelocType(2048) for dynamic symbol __CFConstantStringClassReference gioui.org/app/internal/window(__DATA/__cfstring): unexpected reloc RelocType(2048) for dynamic symbol __CFConstantStringClassReference /Users/elias/go-tip/pkg/tool/darwin_amd64/link: too many errors ``` android/*, buildmode=c-shared: ``` $ GOFLAGS= go run gioui.org/cmd/gogio -target android -linkmode internal gioui.org/example/kitchen gogio: go build -ldflags=-w -s -X gioui.org/app/internal/log.appID=org.gioui.kitchen -linkmode=internal -buildmode=c-shared -o /tmp/gogio-146873352/jni/x86_64/libgio.so gioui.org/example/kitchen failed: # gioui.org/example/kitchen /home/elias/dev/go-tip/pkg/tool/linux_amd64/link: internal linking requested but external linking required: android/amd64 requires external linking ``` With ``` diff --git src/cmd/internal/sys/supported.go src/cmd/internal/sys/supported.go index c27b3b986d..72f6707b36 100644 --- src/cmd/internal/sys/supported.go +++ src/cmd/internal/sys/supported.go @@ -35,9 +35,9 @@ func MSanSupported(goos, goarch string) bool { func MustLinkExternal(goos, goarch string) bool { switch goos { case "android": - if goarch != "arm64" { - return true - } + //if goarch != "arm64" { + //return true + //} case "darwin": if goarch == "arm64" { return true diff --git src/cmd/link/internal/ld/config.go src/cmd/link/internal/ld/config.go index 2373b500e3..31b5b94f3a 100644 --- src/cmd/link/internal/ld/config.go +++ src/cmd/link/internal/ld/config.go @@ -189,9 +189,9 @@ func mustLinkExternal(ctxt *Link) (res bool, reason string) { if iscgo && ctxt.Arch.InFamily(sys.MIPS64, sys.MIPS, sys.PPC64) { return true, objabi.GOARCH + " does not support internal cgo" } - if iscgo && objabi.GOOS == "android" { + /*if iscgo && objabi.GOOS == "android" { return true, objabi.GOOS + " does not support internal cgo" - } + }*/ // When the race flag is set, the LLVM tsan relocatable file is linked // into the final binary, which means external linking is required because @@ -205,7 +205,7 @@ func mustLinkExternal(ctxt *Link) (res bool, reason string) { case BuildModeCArchive: return true, "buildmode=c-archive" case BuildModeCShared: - return true, "buildmode=c-shared" + //return true, "buildmode=c-shared" case BuildModePIE: switch objabi.GOOS + "/" + objabi.GOARCH { case "linux/amd64", "linux/arm64", "android/arm64": ``` the `gogio -target android` build completes, but the resulting apk fails at runtime with: ``` java.lang.UnsatisfiedLinkError: dlopen failed: "/data/app/org.gioui.kitchen-xs1nOo55BAjSrffNWB8gBQ==/lib/x86_64/libgio.so" has unexpected e_type: 2 ``` (e_type 2 is ET_EXEC, the loader expects ET_DYN) darwin/arm64 (iOS): ``` $ go run gioui.org/cmd/gogio -target ios -linkmode internal gioui.org/example/kitchen gogio: go build -ldflags=-s -w -X gioui.org/app/internal/log.appID=org.gioui.kitchen -linkmode=internal -buildmode=c-archive -o /var/folders/_7/lnt35k555hl2bs7fjygkhgx00000gp/T/gogio-897284295/gio-arm64 -tags ios gioui.org/example/kitchen failed: # gioui.org/example/kitchen /Users/elias/go-tip/pkg/tool/darwin_amd64/link: internal linking requested but external linking required: darwin/arm64 requires external linking ``` With ``` $ git diff diff --git a/src/cmd/internal/sys/supported.go b/src/cmd/internal/sys/supported.go index c27b3b986d..5ffc088358 100644 --- a/src/cmd/internal/sys/supported.go +++ b/src/cmd/internal/sys/supported.go @@ -39,9 +39,9 @@ func MustLinkExternal(goos, goarch string) bool { return true } case "darwin": - if goarch == "arm64" { + /*if goarch == "arm64" { return true - } + }*/ } return false } diff --git a/src/cmd/link/internal/ld/config.go b/src/cmd/link/internal/ld/config.go index 2373b500e3..c972961c4b 100644 --- a/src/cmd/link/internal/ld/config.go +++ b/src/cmd/link/internal/ld/config.go @@ -203,7 +203,7 @@ func mustLinkExternal(ctxt *Link) (res bool, reason string) { // Some build modes require work the internal linker cannot do (yet). switch ctxt.BuildMode { case BuildModeCArchive: - return true, "buildmode=c-archive" + //return true, "buildmode=c-archive" case BuildModeCShared: return true, "buildmode=c-shared" case BuildModePIE: ``` ``` $ go run gioui.org/cmd/gogio -target ios -linkmode internal gioui.org/example/kitchen gogio: go build -ldflags=-s -w -X gioui.org/app/internal/log.appID=org.gioui.kitchen -linkmode=internal -buildmode=c-archive -o /var/folders/_7/lnt35k555hl2bs7fjygkhgx00000gp/T/gogio-032492589/gio-arm64 -tags ios gioui.org/example/kitchen failed: # gioui.org/example/kitchen loadmacho: /Users/elias/Library/Caches/go-build/b5/b5e636c59e2b0dce3881e4c1dfe5f49890fd7ffc8dabfa89e4c44faee895a24e-d(_x001.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/b5/b5e636c59e2b0dce3881e4c1dfe5f49890fd7ffc8dabfa89e4c44faee895a24e-d(_x002.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/b5/b5e636c59e2b0dce3881e4c1dfe5f49890fd7ffc8dabfa89e4c44faee895a24e-d(_x003.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/a1/a1b18baa12e8cfcff9d2149878989bf8d3212abe425e72aab827c249f9c1f9aa-d(_x001.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/a1/a1b18baa12e8cfcff9d2149878989bf8d3212abe425e72aab827c249f9c1f9aa-d(_x002.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/a1/a1b18baa12e8cfcff9d2149878989bf8d3212abe425e72aab827c249f9c1f9aa-d(_x003.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/a1/a1b18baa12e8cfcff9d2149878989bf8d3212abe425e72aab827c249f9c1f9aa-d(_x004.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/a1/a1b18baa12e8cfcff9d2149878989bf8d3212abe425e72aab827c249f9c1f9aa-d(_x005.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/a1/a1b18baa12e8cfcff9d2149878989bf8d3212abe425e72aab827c249f9c1f9aa-d(_x006.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/bf/bfc3cd3cbc11f70eee4813613929853ddba3f7efa3b8e6c59544b47c17e10f16-d(_x001.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/bf/bfc3cd3cbc11f70eee4813613929853ddba3f7efa3b8e6c59544b47c17e10f16-d(_x002.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/bf/bfc3cd3cbc11f70eee4813613929853ddba3f7efa3b8e6c59544b47c17e10f16-d(_x003.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x001.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x002.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x003.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x004.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x005.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x006.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x007.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x008.o): mach-o arm64 unimplemented loadmacho: /Users/elias/Library/Caches/go-build/6f/6f1a0820507421e19028b78d9efe163c52175627d10178d0968d09fd3d95379d-d(_x009.o): mach-o arm64 unimplemented /Users/elias/go-tip/pkg/tool/darwin_amd64/link: too many errors ``` ### What did you expect to see? A running program. ### What did you see instead? Link errors. By itself, `-linkmode=internal` doesn't seem important when using Cgo, but in combination with https://github.com/golang/go/issues/38917 internal linking is a crucial step towards dropping the native toolchain altogether.
NeedsInvestigation,FeatureRequest,compiler/runtime
low
Critical
614,053,104
PowerToys
Share a zone for video conference apps
# Summary of the new feature/enhancement It would be great to be able to share a zone in Fancyzones in Teams/Skype crutkas: strongly believe #279 is the correct solution here
Idea-Enhancement,FancyZones-Layouts,Product-FancyZones
high
Critical
614,055,625
rust
Confusing error message "this doc comment doesn't document anything" when there is a syntax error right after a comment
I tried this code: ```rust /// Some documentation. Below "async" is before "pub" by mistake. async pub fn hello() {} fn main() { } ``` I expected to see this happen: a clear error message telling me about the mistake (`async` before `pub`). Instead, this happened: ``` error: expected item after doc comment --> src/main.rs:1:1 | 1 | /// Some documentation. Below "async" is before "pub" by mistake. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this doc comment doesn't document anything ``` This is a confusing error message. Without the comment, the error is clearer (though arguably still not completely obvious): ``` error: expected item, found keyword `async` --> src/main.rs:1:1 | 1 | async pub fn hello() {} | ^^^^^ expected item ``` ### Meta <!-- If you're using the stable version of the compiler, you should also check if the bug also exists in the beta or nightly versions. --> `rustc --version --verbose`: ``` rustc 1.43.0 binary: rustc commit-hash: unknown commit-date: unknown host: x86_64-unknown-linux-gnu release: 1.43.0 LLVM version: 10.0 ``` <!-- Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your environment. E.g. `RUST_BACKTRACE=1 cargo build`. --> <details><summary>Backtrace</summary> <p> ``` No backtrace. ``` </p> </details>
C-enhancement,A-diagnostics,A-parser,T-compiler
low
Critical
614,094,353
terminal
Method to suppress the default CTRL+C/CTRL+V mapping specifically for WSL; profile-specific keybindings?
Editor's Note (@DHowett-MSFT): This may be a good place to track profile-specific keybindings? With the _classic_ Windows terminal, <kbd>Ctrl</kbd>+<kbd>c</kbd> and <kbd>Ctrl</kbd>+<kbd>v</kbd> can be used for copy and paste when working within a Windows shell just as I would expect/prefer. However, when using WSL, this is typically not the case and those keys are available for use by Linux applications such as Vim. How can I replicate this same behavior with the new Windows Terminal? Background: When working specifically within the WSL environment, Vim is my primary editor and the presence of any <kbd>Ctrl</kbd>+<kbd>v</kbd> mapping effectively blocks the use of blockwise Visual mode (http://vimdoc.sourceforge.net/htmldoc/visual.html#CTRL-V). Removal of these mappings in a global scope is undesirable since I do not want to lose the use of <kbd>Ctrl</kbd>+<kbd>c</kbd> and <kbd>Ctrl</kbd>+<kbd>v</kbd> for copy and paste when working within a Windows shell. I realize that similar issues have been discussed at length and that any choice here is somewhat of a compromise, but the ability to replicate the current behavior of the _classic_ Windows terminal in this regard is a tradeoff that I find acceptable/desirable.
Issue-Feature,Area-Settings,Product-Terminal
high
Critical
614,097,280
vscode
Use contentEditable for our hidden accessibility textArea
Investigate into using `contenteditable` instead of a plain `textArea` for our hidden accessibility field. It migh have performance implications, but it would allow us to have richer accessibility content on each line. Including line number, breakpoints etc..
accessibility,editor-core,under-discussion
low
Major
614,162,496
TypeScript
`typeChecker.getTypeArguments` returns unexpected extra type argument
**TypeScript Version:** 3.8.3 **Search Terms:** getTypeArguments **Code** Given input like ```ts class X extends Y<string> {} ``` Call `typeChecker.getTypeArguments(typeChecker.getTypeAtLocation(...))` on the `Y<string>` node. **Expected behavior:** You get back one type argument (string). **Actual behavior:** You get back two, `string` and `X`. I imagine this is maybe something around how TS handles `this` typing internally, but as a user of the API I'm not sure I can predict when this function returns these or not. **Playground Link:** <!-- A link to a TypeScript Playground "Share" link which demonstrates this behavior --> **Related Issues:** <!-- Did you find other bugs that looked similar? --> https://github.com/microsoft/TypeScript/issues/33693 suggests this API changed recently
Bug,Help Wanted
low
Critical
614,171,481
go
Gerrit: messy merge commits created when merges are not fresh
Gerrit took it upon itself to create a merge commit to merge CL 227650, itself a merge commit, because there was a commit on the target branch after the parent of the merge under review. 392a746b15 was created by Gerrit because d41987bb5b was on master after the parent of e067ce5225. ``` * 49367815c7 - (dev.boringcrypto) [dev.boringcrypto] crypto/internal/boring: reject short signatures in VerifyRSAPKCS1v15 (4 weeks ago) <Filippo Valsorda> * 392a746b15 - Merge "[dev.boringcrypto] all: merge master into dev.boringcrypto" into dev.boringcrypto (4 weeks ago) <Gerrit Code Review> |\ | * e067ce5225 - [dev.boringcrypto] all: merge master into dev.boringcrypto (4 weeks ago) <Filippo Valsorda> | |\ | | * 9baafabac9 - crypto/rsa: refactor RSA-PSS signing and verification (5 weeks ago) <Filippo Valsorda> | | * aa4d92b8aa - cmd/link: skip symbol references when looking for missing symbols (5 weeks ago) <Joel Sing> | | [...] | | * 72e043e48b - cmd/doc: show variables of unexported types for -all (6 months ago) <Agniva De Sarker> | | * c2edcf4b12 - crypto/tls: take key size into account in signature algorithm selection (6 months ago) <Filippo Valsorda> * | | d41987bb5b - [dev.boringcrypto] misc/boring: add new releases to RELEASES file (6 weeks ago) <Filippo Valsorda> |/ / * | 79284c2873 - [dev.boringcrypto] crypto/internal/boring: make accesses to RSA types with finalizers safer (9 weeks ago) <Filippo Valsorda> * | 6c64b188a5 - [dev.boringcrypto] crypto/internal/boring: update BoringCrypto module to certificate 3318 (9 weeks ago) <Filippo Valsorda> ``` I am tempted to rewrite history, as the dev.boringcrypto branch is confusing enough as is, and we need it to be clean enough for it to be possible to easily flatten into a patchset. Gerrit should definitely refuse to merge an out of date merge commit, or update it, not make a merge commit for the merge commit. Regrettably, this also happened a number of times on master for dev.link merges: f092be8fd8, 00753d5232, da33f9c78a, cd42fa581a. `git log --graph --oneline master` is now an unreadable maze, in part because of this and in part because it's unavoidable for long-running branches that get multiple merges from master before being merged multiple times into master. Not sure what we should do about that. /cc @golang/osp-team
Unfortunate,NeedsDecision
low
Major
614,184,829
pytorch
torch.cuda.nccl.init_rank does not handle "uid" properly, causing runtime error
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ``torch.cuda.nccl.init_rank`` does not handle argument ``uid`` properly, causing runtime error (expected 128 bytes, found 14xxxxxxxxxxxxx) > "14xxxxxxxxxxxxx" is a 15-digit 10-based integer around 140T After some research, I found ``id_len`` [python_nccl.cpp#L99](https://github.com/pytorch/pytorch/blob/master/torch/csrc/cuda/python_nccl.cpp#L99) is defined as a 64-bit integer, but later at [python_nccl.cpp#L102](https://github.com/pytorch/pytorch/blob/master/torch/csrc/cuda/python_nccl.cpp#L102) ``PyArg_ParseTuple`` treats it as an ``int`` (32-bit), resulting in the higher 4 bytes of ``id_len`` remains uninitialized. ## To Reproduce Steps to reproduce the behavior: 1. minimum reproduce ```python import torch def create_func(dev: int, uid: bytes): rank = 0 nrank = 1 with torch.cuda.device(dev): c = torch.cuda.nccl.init_rank(nrank, uid, rank) return c if __name__ == '__main__': dev = 0 uid = torch.cuda.nccl.unique_id() print('uid =', uid) print('dev =', dev) print('calling create_func') comm = create_func(dev, uid) # error happens here print('comm:', comm) # expect to be a nccl communicator, likely found None ``` 2. save above code as "repr.py" and run ```shell python repr.py ``` <!-- If you have a code sample, error messages, stack traces, please provide it here as well --> ## Expected behavior ``comm`` is expected to be a ``capsure`` of ``Communicator``, but likely found ``None`` with error message (here is a possible example) > [~/tmp]$ python3 repr.py > uid = b"\x02\x00\x82rdb0o\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac\xbf\x16\x18\xd8\xada\x02\x00\x00\x00\x00\xa0\xb1\xa5\xf3\x17\x7f\x00\x00\xb8\xb1\xa5\xf3\x17\x7f\x00\x00p\xb1\xa5\xf3\x17\x7f\x00\x00\x00Y\x97\x02\x00\x00\x00\x00\x1b\xbb\xefH\xa2\t\xe7p]5\x00\x00\x18\x7f\x00\x00\x00\x97\x1a\xfd\x17\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00p\xb1\xa5\xf3\x17\x7f\x00\x00\x08\xf7\xf1\x84\x18\x7f\x00\x00Z\xfe:\xcb\x08'h?" > dev = 0 > calling create_func > Traceback (most recent call last): > File "repr.py", line 19, in <module> > comm = create_func(dev, uid) # error happens here > File "repr.py", line 8, in create_func > c = torch.cuda.nccl.init_rank(nrank, uid, rank) > File "/env/python36/lib/python3.6/site-packages/torch/cuda/nccl.py", line 39, in init_rank > return torch._C._nccl_init_rank(num_ranks, uid, rank) > RuntimeError: invalid unqiue_id (expected 128 bytes, got 139741055942784) <!-- A clear and concise description of what you expected to happen. --> ## Environment - PyTorch Version 1.3.1+cu92 - OS (e.g., Linux): Centos 7 - How you installed PyTorch (`conda`, `pip`, source): `pip` (wheel package url is [here](https://download.pytorch.org/whl/cu92/torch-1.3.1%2Bcu92-cp36-cp36m-linux_x86_64.whl)) - Build command you used (if compiling from source): N/A - Python version: 3.6 - CUDA/cuDNN version: shipped with wheel package (9.2.148) - GPU models and configuration: 8 x P40 - Any other relevant information: N/A ## Additional context <!-- Add any other context about the problem here. --> cc @ngimel
module: cuda,triaged,module: nccl
low
Critical
614,196,173
godot
Light2D not working on rotated polygon on bones
ver. 3.2.1 (gle3) win 10 Moving Light2D over polygon stops working if bones are rotated or in certain position. I have attached TSCN - mostly light works, but if you rotate polygon to some extent it stops working. -> open TSCN -> player (KinematicBody2D with bones and polygons) is rotated 90 degrees -> Select Light 2D and move it to left or right, light disappears on far left or right side [light2d_b13.zip](https://github.com/godotengine/godot/files/4594365/light2d_b13.zip)
bug,topic:rendering
low
Minor
614,203,892
rust
Bors links to the wrong build in GitHub Actions
When bors reports that a build failed in GitHub Actions, it links to the "bors build finished" meta-job instead of the actual job tha failed. This makes the UX for our contributors worse.
T-infra,A-github-actions
low
Critical
614,251,267
TypeScript
Suggestion: short-circuit type inference for ternary operators when both branches have the same type
From https://github.com/squidfunk/typescript-issue-38339-repro (courtesy of @squidfunk) **TypeScript Version:** 3.9.1-rc **Search Terms:** Subtype reduction, ternary **Code** ```ts import { JSX } from "preact" type IntrinsicElements = JSX.IntrinsicElements[keyof JSX.IntrinsicElements] export type IntrinsicElements2< T = IntrinsicElements > = { [K in keyof T]: K extends "accept" ? T[K] | [string] : T[K] } export type IntrinsicElements3< T = IntrinsicElements2 > = { [K in keyof T]: K extends "class" ? T[K] | [boolean] : T[K] } export type IntrinsicElements4< T = IntrinsicElements3 > = { [K in keyof T]: K extends "id" ? T[K] | [number] : T[K] } export function foo(): IntrinsicElements4 | undefined { let t: IntrinsicElements4 | undefined // this takes 2 seconds to check return t // this takes 10 seconds to check // return true ? t : t } ``` **Expected behavior:** `return t` and `return true ? t : t` check in a comparable amount of time **Actual behavior:** the ternary is much slower **Playground Link:** https://www.typescriptlang.org/play/?ts=Nightly#code/JYWwDg9gTgLgBAbzgKQMoA04F84DMoQhwBEYUApgIYDGMxAUPTAJ5jlwCSAdjFMFwGdg1AKIAbciHI8BcALwoMAOm69+Q0RKkyA2gGtyzCLkXoVPPoOHjJ0mAIC6jcgA9IsOCzacL661rsBACYAHno4OAAVeR81K01bGXoAPhiEcLgdAGk4fjgDIxNIhwAuOBzXGGkAE1liGmpyMDoMiIB+KOyHOAAfTIE4gHMnCIiyyK76LGc3aHgvdlVLDRttewBmMIjohSW-BLXglLSM7NyufMNjKNLyuEqauuoxSgEBBlG4Doms7r6dABGEAgEkoXBGo3Gk2m9Fc7nmrEWvniq0CABYtlEYnsUQEZOtjgp0hEznkCtdimUKi4qlxaiRgNUPqNvl1epkuABXEAA8hQCFjTq-KYzeF4TlcWjACAXXDAgAUAEoyjiVnj7Gj2RLquRcPxyNVEBkJPMVci1YkNVq6br9dUMgB6B0UGCcqAXeBOuAAMVeMAyLrdHqgnPYHXgZU9DrgqDEEAA7iKgA **Related Issues:** #38339
Domain: Performance
low
Major
614,277,804
pytorch
Support Slicing of ModuleList during JIT model tracing/scripting
## 🐛 Bug Torch.jit.trace fails if model slicing is used anywhere within the model functions. Steps to reproduce the behavior: Say you have VGG16 model like below - ```python3 class VGG16_frontend(nn.Module): def __init__(self,block_num=5,decode_num=0,load_weights=True,bn=False,IF_freeze_bn=False): super(VGG16_frontend,self).__init__() self.block_num = block_num self.load_weights = load_weights self.bn = bn self.IF_freeze_bn = IF_freeze_bn self.decode_num = decode_num block_dict = [[64, 64, 'M'], [128, 128, 'M'], [256, 256, 256, 'M'],\ [512, 512, 512,'M'], [512, 512, 512,'M']] self.frontend_feat = [] for i in range(block_num): self.frontend_feat += block_dict[i] if self.bn: self.features = make_layers(self.frontend_feat, batch_norm=True) else: self.features = make_layers(self.frontend_feat, batch_norm=False) if self.load_weights: if self.bn: pretrained_model = models.vgg16_bn(pretrained = True) else: pretrained_model = models.vgg16(pretrained = True) pretrained_dict = pretrained_model.state_dict() model_dict = self.state_dict() # filter out unnecessary keys pretrained_dict = {k: v for k, v in pretrained_dict.items() if k in model_dict} # overwrite entries in the existing state dict model_dict.update(pretrained_dict) # load the new state dict self.load_state_dict(model_dict) if IF_freeze_bn: self.freeze_bn() def forward(self,x): if self.bn: x = self.features[ 0:7](x) # <-- Scripting fails here conv1_feat =x if self.decode_num>=4 else [] x = self.features[ 7:14](x) conv2_feat =x if self.decode_num>=3 else [] x = self.features[ 14:24](x) conv3_feat =x if self.decode_num>=2 else [] x = self.features[ 24:34](x) conv4_feat =x if self.decode_num>=1 else [] x = self.features[ 34:44](x) conv5_feat =x else: x = self.features[ 0: 5](x) conv1_feat =x if self.decode_num>=4 else [] x = self.features[ 5:10](x) conv2_feat =x if self.decode_num>=3 else [] x = self.features[ 10:17](x) conv3_feat =x if self.decode_num>=2 else [] x = self.features[ 17:24](x) conv4_feat =x if self.decode_num>=1 else [] x = self.features[ 24:31](x) conv5_feat =x feature_map = {'conv1':conv1_feat,'conv2': conv2_feat,\ 'conv3':conv3_feat,'conv4': conv4_feat, 'conv5': conv5_feat} # feature_map = [conv1_feat, conv2_feat, conv3_feat, conv4_feat, conv5_feat] return feature_map def freeze_bn(self): for m in self.modules(): if isinstance(m, nn.BatchNorm2d): m.eval() ``` **Command to run** ```python3 example = torch.rand(1, 3, 768, 1024) fr_end = VGG16_frontend(5,4,True,False,False) VGG_traced = torch.jit.script(fr_end,example) ``` **Error Message -** ```python3 RuntimeError: Arguments for call are not valid. The following variants are available: aten::slice.Tensor(Tensor(a) self, int dim=0, int start=0, int end=9223372036854775807, int step=1) -> (Tensor(a)): Expected a value of type 'Tensor' for argument 'self' but instead found type '__torch__.torch.nn.modules.container.Sequential'. aten::slice.str(str string, int start, int end=9223372036854775807, int step=1) -> (str): Expected a value of type 'str' for argument 'string' but instead found type '__torch__.torch.nn.modules.container.Sequential'. aten::slice.t(t[] l, int start, int end=9223372036854775807, int step=1) -> (t[]): Could not match type __torch__.torch.nn.modules.container.Sequential to List[t] in argument 'l': Cannot match List[t] to __torch__.torch.nn.modules.container.Sequential. The original call is: File "/home/ubuntu/mayub/Github/SS-DCNet/Network/SSDCNet.py", line 92 def forward(self,x): if self.bn: x = self.features[0:7](x) ~~~~~~~~~~~~~~~~~ <--- HERE conv1_feat =x if self.decode_num>=4 else [] x = self.features[ 7:14](x) ``` Expected behavior - should run the trace successfully. ## Environment ```python3 PyTorch version: 1.6.0a0+675e77e Is debug build: No CUDA used to build PyTorch: 10.0 OS: Ubuntu 16.04.6 LTS GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.12) 5.4.0 20160609 CMake version: version 3.13.3 Python version: 3.6 Is CUDA available: No CUDA runtime version: 10.0.130 GPU models and configuration: Could not collect Nvidia driver version: Could not collect cuDNN version: /usr/local/cuda-10.1/targets/x86_64-linux/lib/libcudnn.so.7.6.2 Versions of relevant libraries: [pip3] numpy==1.15.4 [conda] _tflow_select 2.3.0 mkl [conda] blas 1.0 mkl [conda] cudatoolkit 10.1.243 h6bb024c_0 [conda] magma-cuda101 2.5.2 1 pytorch [conda] mkl 2019.4 243 [conda] mkl-service 2.3.0 py36he904b0f_0 [conda] mkl_fft 1.0.15 py36ha843d7b_0 [conda] mkl_random 1.1.0 py36hd6b4f25_0 [conda] numpy 1.16.2 <pip> [conda] numpy 1.18.3 <pip> [conda] numpy 1.17.4 py36hc1035e2_0 [conda] numpy-base 1.17.4 py36hde5b4d6_0 [conda] pytorch 1.5.0 py3.6_cuda10.1.243_cudnn7.6.3_0 pytorch [conda] pytorch-model-summary 0.1.1 <pip> [conda] tensorflow 1.15.0 mkl_py36h4920b83_0 [conda] tensorflow-base 1.15.0 mkl_py36he1670d9_0 [conda] torch 1.6.0a0+675e77e <pip> [conda] torchfile 0.1.0 <pip> [conda] torchsummary 1.5.1 <pip> [conda] torchvision 0.6.0 py36_cu101 pytorch (Crowd_Detection_mayub) ubuntu@ip-172-31-15-199:~/mayub/Github/example-app/build$ ``` @suo Thanks ! cc @suo
oncall: jit,module: bootcamp,triaged,large,medium
low
Critical
614,278,948
pytorch
Quantile Regression Loss
When interested in fitting an unknown probability distribution using a neural network model, we are sometimes interested in quantile regression. I suggest we add the quantile regression loss to the losses we have in pytorch. * Example implementation [here](https://medium.com/the-artificial-impostor/quantile-regression-part-2-6fdbc26b2629). * Relates to pytorch/audio#267 cc @albanD @mruberry
module: nn,triaged,OSS contribution wanted
low
Major
614,279,376
go
x/tools/present: no section headers in Markdown syntax
IIRC we used to be able to use `*` and `**` for section and subsection headers. It appears as though that's no longer the case: `#` terminates the content [1] (without an error...?), and `##` is a subsection header. Not sure if this is a bug or feature request. 1: As in, no header is displayed and no content is displayed after that point.
NeedsInvestigation
low
Critical
614,306,399
terminal
MongoDB linewrap isn't working.
# Environment ```none Windows build number: [run `[Environment]::Replicable in CMD and Powershell] Windows Terminal version (if applicable): 0.11.1251.0 Any other software? None. ``` # Steps to reproduce Run Mongo in the windows terminal and fill the first line with text. # Expected behavior Linewrap so that you can continue in the next line. ![imagen](https://user-images.githubusercontent.com/13491373/81338865-eb811c00-9072-11ea-87a5-74fc11ff48f8.png) # Actual behavior Linewrapping continues over itself. ![imagen](https://user-images.githubusercontent.com/13491373/81338669-a0670900-9072-11ea-8e1f-13cff8e4c5b5.png)
Product-Conpty,Area-Server,Issue-Bug,Priority-2,Impact-Correctness
low
Major
614,322,785
flutter
Strip plugins created from `dev_dependencies` from release-mode apps
2024-11-21 update from @matanlurey: - Android work https://github.com/flutter/flutter/issues/157949 /cc @camsim99 - iOS/macOS work https://github.com/flutter/flutter/issues/74274 /cc @cbracken --- Currently the flutter tool creates a plugin for all package dependencies, even though in the dev_dependencies section. We'd like to remove this behavior, since it can lead to plugins used for testing accidentally getting included in released builds. This will be a breaking change, so we can proceed in several steps. 1. Compute both the current and dependencies-only plugin list and use the current strategy. If discrepancies are found, print a warning that this will be disabled in a future release and how to fix. 2. Compute both the current and dependencies-only plugin list and use the dependencies only strategy. If discrepancies are found, print a warning/notification that certain plugins have been disabled and include how to fix. 3. Remove the current strategy, remove the warning.
a: tests,tool,a: build,f: integration_test,P2,blocked,a: plugins,team-tool,triaged-tool
low
Critical
614,340,752
flutter
SceneDisplayLag events have incorrect duration on Fuchsia
Sample measurements: ``` frame_target_time "610779766332" current_frame_target_time "16666666" vsync_transitions_missed "-36646" ```
customer: fuchsia,framework,dependency: fuchsia,platform-fuchsia,P2,team-framework,triaged-framework
low
Minor
614,351,453
pytorch
Div by zero error not triggered and inf not returned when dividing by 0 for some dtypes
## 🐛 Bug For some combinations of types, division by an integer tensor with value zero neither throws an error nor returns inf, instead returning either -2^63 or 2^63-1 (for dtype torch.int64), with the sign either consistent with the sign of the numerator or not depending on if the operation is done on the GPU or not. ## To Reproduce Steps to reproduce the behavior: ``` >>> 1 / torch.tensor(0.0) tensor(inf) >>> 1 / torch.tensor(0) tensor(-9223372036854775808) >>> 1.0 / torch.tensor(0) tensor(-9223372036854775808) >>> (-1) / torch.tensor(0) tensor(-9223372036854775808) >>> 1 / torch.tensor(0).cuda() tensor(9223372036854775807, device='cuda:0') >>> (-1) / torch.tensor(0).cuda() tensor(-9223372036854775808, device='cuda:0') >>> 1 / torch.tensor(0, dtype=torch.int32) tensor(-2147483648, dtype=torch.int32) >>> 1 / torch.tensor(0, dtype=torch.int32).cuda() tensor(2147483647, dtype=torch.int32) >>> torch.tensor(1.0) / torch.tensor(0) tensor(inf) ``` ## Expected behavior Either tensor(inf) to be returned, with the sign consistent with the sign of the numerator, or for this error to be thrown: https://github.com/pytorch/pytorch/blob/f0f587366c1953755782f862c61e8772e10db971/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp#L75. ## Environment PyTorch version: 1.5.0+cu101 Is debug build: No CUDA used to build PyTorch: 10.1 OS: Ubuntu 18.04 LTS GCC version: (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 CMake version: Could not collect Python version: 3.6 Is CUDA available: Yes CUDA runtime version: 9.1.85 GPU models and configuration: GPU 0: GeForce GTX 1050 Ti Nvidia driver version: 435.21 cuDNN version: Could not collect Versions of relevant libraries: [pip3] numpy==1.18.3 [pip3] torch==1.5.0+cu101 [pip3] torchaudio==0.5.0 [pip3] torchvision==0.6.0+cu101 [conda] Could not collect cc @ezyang @gchanan @zou3519 @nairbv
module: numerical-stability,triaged,module: type promotion
low
Critical
614,355,976
terminal
[Scenario] 2 Resize 2 Reflow
During 1.0, we discovered a ton of bugs in our resize with reflow implementation, and now that we need to keep both the conpty and the terminal in sync on these things, it's more important than ever to do these things right. I'm collecting up all the straggling tasks I've found that might _possibly_ be related. This is a combo of "Make Reflow work correctly", and "Get rid of the spaghetti in the VtEngine related to line wrapping" (see also #4200, the original reflow mega thread) ## Issues * [ ] #796 Resize reflow tests * [ ] #797 Resize with Reflow loses leading spaces on resize operation * [ ] #3088 WSL Terminal Line Endings (the "exact wrap" bug) * #802 [host] If a line is exactly the width of the buffer and you increase the buffer width, it will wrap incorrectly resize reflow * [ ] #5228 Conpty: Additional `ScrollFrame` optimizations * [x] [REGRESSION >0.11.1251] Backward-kill-word after line wrapping in powershell doesn't clear exited line properly #5839 (PR #5870) * [ ] MSFT:19446208 - [This code in `TextBuffer::Reflow`](https://github.com/microsoft/terminal/blob/cf62922ad8da67464c517931b89f3fc098381b76/src/buffer/out/textBuffer.cpp#L2034-L2043) * [ ] #6566 Some text not displayed when the screen scrolls * [ ] #6901 When Copying, Line Wrapped Text Is Inconsistently Broken Into Multiple Lines - [ ] #10833 Multi-line paste with WSL omits and splices together lines - [ ] #11739 - [ ] #11809 * [ ] #7028 No line wrap at the bottom of the Terminal window when entering text in TCC * [ ] #7253 Un-snapping Terminal Placing Cursor in Middle of Previous Command's Output * (actually has a consistent repro) * [ ] #6987 Rendering errors in tmux split panes - [ ] This might also be "Tmux pane content gets garbled after refreshing tmux client #4029" * [ ] #7019 conpty exhibits pathological performance on scrolling region redraw (repaints entire screen) * [ ] #7479 * [ ] #7581 * [ ] #12440, which might just be #780 ### Things I think will all be fixed by #8000 * [ ] #6546 Command History on wrong line * [ ] #10130 * [ ] #10848 Cursor position is lost when resizing the window if not on the bottom line * [ ] #10868 also looks like this ## PRs Many of these are 1.0 PRs, but they've all got important context. <details> <summary> 1.0 PRs </summary> * [x] Don't remove spaces when printing a new bottom line with a background color #5550 * [x] Fix wrapped lines in `less` in Git for Windows #5771 * [x] Don't duplicate spaces from potentially-wrapped EOL-deferred lines #5398 * [x] Add a test to cover #5428 #5449 * [x] Fix copying wrapped lines by implementing better scrolling #5181 * [x] Emit lines wrapped due to spaces at the end correctly #5294 * [x] Fix an accidental regression from #5771 #5870 </details> * [ ] Don't reflow a line as wrapped if it broke on the last cell #5368
Product-Conpty,Area-CodeHealth,Issue-Scenario
low
Critical
614,363,379
pytorch
DNNL's backward pass much slower when using nn.grad.conv2d_input and nn.grad.conv2d_weight
## 🐛 Bug Hello, DNNL's performance is much worse in the backward pass of a custom convolution operation. When stride > 1 performance further decreases. Number of calls to the dilated_conv2d operation increases heavily and the backward pass is about 100x slow. You can find the profiling data for the forward and backward pass below. ## To Reproduce ``` import torch import torch.nn as nn import torch.nn.functional as F class op_Conv2D(torch.autograd.Function): @staticmethod def forward(ctx, input, weight, bias=None, stride=1, padding=0, dilation=1, groups=1): ctx.save_for_backward(input, weight, bias) ctx.stride = stride ctx.padding = padding ctx.groups = groups ctx.dilation = dilation out = F.conv2d(input, weight, bias, stride, padding, dilation, groups) return out @staticmethod def backward(ctx, grad_output): input, weight, bias = ctx.saved_tensors grad_input = grad_weight= grad_bias = None if ctx.needs_input_grad[0]: grad_input = torch.nn.grad.conv2d_input(input.shape, weight, grad_output, ctx.stride, ctx.padding, ctx.dilation, ctx.groups) if ctx.needs_input_grad[1]: grad_weight = torch.nn.grad.conv2d_weight(input, weight.shape, grad_output, ctx.stride, ctx.padding, ctx.dilation, ctx.groups) if bias is not None and ctx.needs_input_grad[2]: grad_bias = grad_output.sum((0,2,3)) if bias is not None: return grad_input, grad_weight, grad_bias, None, None, None, None else: return grad_input, grad_weight, None, None, None, None, None w = nn.Parameter(torch.randn(32, 32, 3, 3, device=torch.device("cpu"))) b = nn.Parameter(torch.zeros(32, device=torch.device("cpu"))) data = torch.rand(32, 32, 3, 3) with torch.autograd.profiler.profile(use_cuda=False) as prof: x_act = op_Conv2D.apply(data,w, b, 2, 0, 1, 1) print("forward pass F.conv2d --- \n", prof.key_averages().table(sort_by="self_cpu_time_total")) with torch.autograd.profiler.profile(use_cuda=False) as prof: x_act.sum().backward() print("backward pass F.conv2d --- \n", prof.key_averages().table(sort_by="self_cpu_time_total")) conv_block = nn.Conv2d(32, 32, 3, stride=2).cpu() with torch.autograd.profiler.profile(use_cuda=False) as prof: x_act = conv_block(data) print("forward pass nn.Conv2d --- \n", prof.key_averages().table(sort_by="self_cpu_time_total")) with torch.autograd.profiler.profile(use_cuda=False) as prof: x_act.sum().backward() print("backward pass nn.Conv2d --- \n", prof.key_averages().table(sort_by="self_cpu_time_total")) ``` ## Expected behavior Number of calls to dilated_conv2d in backward pass should be much less making backward pass much faster ## Environment PyTorch version: 1.6.0a0+47fec01 Is debug build: No CUDA used to build PyTorch: Could not collect OS: Ubuntu 18.04.2 LTS GCC version: (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 CMake version: version 3.17.0 Python version: 3.7 Is CUDA available: No CUDA runtime version: 10.1.243 GPU models and configuration: GPU 0: GeForce GTX 850M Nvidia driver version: 435.21 cuDNN version: /usr/local/cuda-10.1/targets/x86_64-linux/lib/libcudnn.so.7.6.4 Versions of relevant libraries: [pip3] numpy==1.13.3 [conda] mkl 2020.1 217 conda-forge [conda] mkl-include 2020.1 217 conda-forge [conda] torch 1.6.0a0+47fec01 pypi_0 pypi [conda] torchvision 0.7.0a0+c4f77c2 pypi_0 pypi ## Additional Context Forward Pass ``` -------------------------- --------------- --------------- --------------- --------------- --------------- --------------- Name Self CPU total % Self CPU total CPU total % CPU total CPU time avg Number of Calls -------------------------- --------------- --------------- --------------- --------------- --------------- --------------- mkldnn_convolution 36.62% 120.430ms 73.66% 242.227ms 5.767ms 42 C_Connect 28.26% 92.930ms 31.67% 104.140ms 4.734ms 22 S_Connect 18.63% 61.264ms 20.19% 66.377ms 8.297ms 8 native_batch_norm 4.63% 15.231ms 10.89% 35.819ms 895.465us 40 _cat 3.58% 11.760ms 4.21% 13.851ms 364.492us 38 add 1.08% 3.536ms 2.51% 8.261ms 56.585us 146 empty 0.78% 2.562ms 0.79% 2.603ms 7.912us 329 mul 0.57% 1.861ms 1.16% 3.822ms 238.906us 16 sub 0.55% 1.796ms 1.12% 3.692ms 230.766us 16 op_Conv2D 0.47% 1.532ms 37.70% 123.974ms 5.904ms 21 is_leaf 0.41% 1.341ms 0.50% 1.648ms 0.659us 2500 leaky_relu 0.39% 1.277ms 0.84% 2.759ms 153.299us 18 ``` Backward Pass ``` ----------------------------------- --------------- --------------- --------------- --------------- --------------- --------------- Name Self CPU total % Self CPU total CPU total % CPU total CPU time avg Number of Calls ----------------------------------- --------------- --------------- --------------- --------------- --------------- --------------- slow_conv_dilated2d 20.68% 1.287s 69.93% 4.352s 37.949us 114688 slow_conv_transpose2d 13.49% 839.662ms 27.88% 1.735s 43.386ms 40 copy_ 11.12% 691.946ms 11.37% 707.678ms 2.842ms 249 mkldnn_convolution 10.04% 624.944ms 20.11% 1.252s 41.719ms 30 size 6.53% 406.650ms 6.53% 406.650ms 0.243us 1674695 op_Conv2DBackward 5.99% 372.616ms 95.47% 5.942s 282.958ms 21 slice 4.58% 285.351ms 8.29% 515.909ms 2.246us 229714 _cat 4.14% 257.976ms 5.55% 345.569ms 12.342ms 28 _convolution 2.87% 178.902ms 77.67% 4.834s 117.910ms 41 empty 2.75% 171.139ms 2.78% 172.734ms 1.499us 115224 fill_ 2.39% 149.045ms 2.39% 149.047ms 2.592us 57500 as_strided 2.36% 147.065ms 2.36% 147.065ms 0.631us 233126 select 2.33% 144.808ms 4.15% 258.508ms 2.193us 117878 narrow 1.96% 121.740ms 8.09% 503.789ms 4.384us 114916 C_ConnectBackward 1.95% 121.317ms 2.45% 152.702ms 6.941ms 22 contiguous 1.40% 86.923ms 1.56% 97.384ms 0.424us 229539 ``` cc @ezyang @SsnL @albanD @zou3519 @gqchen @gujinghui @PenghuiCheng @XiaobingSuper @jianyuh @VitalyFedyunin @mruberry
module: autograd,module: nn,triaged,module: mkldnn
low
Critical
614,371,165
create-react-app
Give me the token
### Is your proposal related to a problem? I am currently dealing with an unexpected token issue, but I don't know what special character has been inserted <img width="446" alt="image" src="https://user-images.githubusercontent.com/97965/81348521-0fdcf880-9073-11ea-814e-c18433894340.png"> ### Describe the solution you'd like Ideally the character (and/or unicode values of the character) would be output so I could search for it. ### Describe alternatives you've considered Guess and check ### Additional context The file in question is just a import and re-export file. It would be nice if the error were reported on the actual file. Currently rearranging the imports to track it down by column number change. This is happening on a Linux CI server (GitHub Actions) and not on my local (macOS)
issue: proposal,needs triage
low
Critical
614,375,308
flutter
Allow backdrop filter to be used as blur effect behind Scaffold's drawer and endDrawer
## Use Case Currently I have my Scaffold's `drawerScrimColor` set to `Colors.grey.withOpacity(0.5)`. I wanted to change this to something closer to the "Frosted Glass" effect which seems to be achievable using the BackdropFilter widget. I was able to achieve this desired effect by modifying the lines 554-556 in drawer.dart **(Flutter version 1.14.6)** from: ``` child: Container( // The drawer's "scrim" color: _scrimColorTween.evaluate(_controller), ), ``` to this (just an example): ``` child: new BackdropFilter( filter: new ImageFilter.blur(sigmaX: 5.0 * _controller.value, sigmaY: 5.0 * _controller.value), child: Container(color: Colors.grey.shade200.withOpacity(0.2)), ), ``` The issue is that there doesn't seem to be a way to do this without modifying Flutter's source code directly. ## Proposal I'm not sure what the best way to achieve this would be but having a parameter in Scaffold which could be set to a BackdropFilter would be ideal.
c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design
low
Minor
614,386,286
flutter
Add a flag to flutter pub/packages to use a self-signed cert file
See https://github.com/flutter/website/issues/2472 This would work by plumbing a tool flag to the `DART_VM_OPTIONS` environment variable of the pub subprocess environment.
c: new feature,tool,customer: crowd,P2,team-tool,triaged-tool
low
Minor
614,387,477
flutter
Flutter drive --use-existing-app should accept either http or ws vm service uri.
c: new feature,tool,t: flutter driver,P2,team-tool,triaged-tool
low
Minor
614,388,628
flutter
[Web] Unexpected anti aliasing with custom painter on web only.
When using a `CustomPainter` to draw multiple rects on top of each other, flutter web seems to be applying anti-aliasing, even when the `Paint` objects have `isAntiAlias = false`. ## Steps to Reproduce In the following example, I'm trying to paint a `white` box on top of a `black` box of equal size. Because `isAntiAlias` is false, I would expect to _never_ see any black. Here is how the app behaves on iOS **note that you can never see the box, regardless of its size.**: ![giphy](https://user-images.githubusercontent.com/4229329/81351064-6b1de380-9091-11ea-8391-d3af80045f5c.gif) Now on flutter web, I _can_ see the box, whenever the size is not a clean number of pixels. I expected to _never_ see the box. ![giphy](https://user-images.githubusercontent.com/4229329/81351148-aa4c3480-9091-11ea-8528-2b0d2e6b23ae.gif) ## Example source code: ```dart // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', debugShowCheckedModeBanner: false, theme: ThemeData( primarySwatch: Colors.blue, ), home: Scaffold(backgroundColor: Colors.white, body: Body()), ); } } class Body extends StatefulWidget { @override _BodyState createState() => _BodyState(); } class _BodyState extends State<Body> { var _height = 50.0; @override Widget build(BuildContext context) { return Center( child: Row( children: [ Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('Box height: $_height'), Slider( onChanged: (val) => setState(() { _height = val; }), value: _height, min: 50, max: 400, ), ], ), Container( width: _height, height: _height, child: CustomPaint(painter: BoxPainter()), ), ], ), ); } } class BoxPainter extends CustomPainter { @override void paint(Canvas canvas, Size size) { final paint = Paint()..isAntiAlias = false; canvas.drawRect( size.topLeft(Offset.zero) & size, paint..color = Colors.black, ); canvas.drawRect( size.topLeft(Offset.zero) & size, paint..color = Colors.white, ); } @override bool shouldRepaint(CustomPainter oldDelegate) { return true; } } ``` <details> <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` [✓] Flutter (Channel master, 1.18.0-10.0.pre, on Mac OS X 10.14.6 18G3020, locale en-US) • Flutter version 1.18.0-10.0.pre at /Users/johnsonmh/mdc/flutter • Framework revision 0d452b8305 (7 days ago), 2020-04-30 11:20:14 -0700 • Engine revision 2db3276573 • Dart version 2.9.0 (build 2.9.0-3.0.dev 726d3c7725) [!] Android toolchain - develop for Android devices (Android SDK version 29.0.2) • Android SDK at /Users/johnsonmh/Library/Android/sdk • Platform android-stable, build-tools 29.0.2 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405) ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses [!] Xcode - develop for iOS and macOS (Xcode 11.3) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 11.3, Build version 11C29 ! CocoaPods 1.7.5 out of date (1.8.0 is recommended). CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side. Without CocoaPods, plugins will not work on iOS or macOS. For more info, see https://flutter.dev/platform-plugins To upgrade: sudo gem install cocoapods [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio • Android Studio at /Applications/Android Studio with Blaze.app/Contents • Flutter plugin version 45.1.2 • Dart plugin version 193.6494.35 • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593) [✓] Android Studio (version 3.5) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin version 39.0.3 • Dart plugin version 191.8423 • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405) [✓] Connected device (4 available) • iPhone 11 Pro • 1B783592-BEFF-4105-8FDA-74B084EEB388 • ios • com.apple.CoreSimulator.SimRuntime.iOS-13-3 (simulator) • macOS • macOS • darwin-x64 • Mac OS X 10.14.6 18G3020 • Web Server • web-server • web-javascript • Flutter Tools • Chrome • chrome • web-javascript • Google Chrome 81.0.4044.138 ``` </details>
engine,platform-web,e: web_html,has reproducible steps,P3,found in release: 3.10,found in release: 3.12,team-web,triaged-web
low
Critical
614,395,286
vscode
Provide some richer (optional) UI for custom tree views
Refs: #96927 It would be great to have some richer optional UI components that could be enabled within a custom view, e.g. - [x] Search/Filter box - [ ] General input box - [ ] "Details" pane -- kind of like a footer to show details about the selected item(s) - [x] Richer hovers https://github.com/microsoft/vscode/issues/84032 @idoprz Can you please add some more details here too?
feature-request,tree-views
high
Critical
614,411,446
rust
Optimize away bounds check in loop indexing into slice, given an assertion
I wrote a simple loop indexing into a slice, to test rustc's ability to optimize away bounds checks if it knows an index is in bounds. Even with this very simple test case, I can't seem to get rust to omit the bounds checks no matter what `assert!` I add. (I know that I could trivially write this code using iterators instead, but I'm trying to figure out rust's ability to optimize here.) Test case (edited since original posting to augment the `assert!` further): ```rust #[no_mangle] fn f(slice: &[u64], start: usize, end: usize) -> u64 { let mut total = 0; assert!(start < end && start < slice.len() && end <= slice.len()); for i in start..end { total += slice[i]; } total } ``` I put that into the compiler explorer, with `-O`, and the resulting assembly looks like this: ``` f: push rax cmp rdx, rcx jae .LBB5_8 cmp rsi, rdx jbe .LBB5_8 cmp rsi, rcx jb .LBB5_8 xor eax, eax .LBB5_4: cmp rdx, rsi jae .LBB5_7 add rax, qword ptr [rdi + 8*rdx] add rdx, 1 cmp rcx, rdx jne .LBB5_4 pop rcx ret .LBB5_7: lea rax, [rip + .L__unnamed_5] mov rdi, rdx mov rdx, rax call qword ptr [rip + core::panicking::panic_bounds_check@GOTPCREL] ud2 .LBB5_8: call std::panicking::begin_panic ud2 ``` Based on the x86 calling convention, `rdi` contains the slice base address, `rsi` contains the slice length, `rdx` contains `start`, and `rcx` contains `end`. So, the first three comparisons verify the assertion and jump to `.LBB5_8` if it fails, to panic. Then inside the loop, there's still another comparison of `rdx` to `rsi`, and a jump to `.LBB5_7` to panic if out of bounds. As far as I can tell, that's exactly the same comparison. Shouldn't rustc be able to optimize away that bounds check? Things I've tested: - I tried replacing the `assert!` with an `if` and `unreachable!`, or an `if` and `unsafe { std::hint::unreachable_unchecked() }`, but in both cases the loop still checked if the index was in bounds on each iteration. - I tried using `-Zmutable-noalias=yes`, which didn't help. - I tried various forms of the assertion condition. Ideally, rustc should be able to optimize away the bounds check in the loop, based on the assertion. Even better would be if rustc could hoist the bounds check out of the loop even without the assertion, but that seems like a harder problem.
A-LLVM,I-slow,C-enhancement,E-needs-test,T-compiler,C-optimization
medium
Critical
614,412,893
TypeScript
Ignore Specific Error [AGAIN]
Yes, this is a duplicate of #11051, but that issue is closed and this **NEEDS** to be addressed. People use Typescript for more than just Javascript compilation now. There are tons of transpilers that convert TS to all sorts of useful languages. Typescript must have a proper way to disable certain error codes project-wide. My specific issue right now is that I'm using TypescriptToLua, a Typescript transpiler that produces lua code, and Typescript throws a fit whenever I try to use mathematical operators on classes. This would make sense if I was compiling to Javascript, but I'm not, but I'm forced to annotate every line with @ts-ignore (unrealistic) or suffer through constant reports of TS2362 and TS2363 in my console (infuriating). There could easily be an `ignoreErrors: number[]` in the .tsconfig file that provides this functionality. The only thing stopping it from existing is stubborness. Well designed errors that never cause issues are a nice dream, but realistically there will always be use cases that are not met by the error handler, and the user should have the power to suppress invalid warnings. A short example of my issue: **Typescript that will be converted using TypescriptToLua:** ```Typescript /** @customConstructor vector.new */ declare class Vector { constructor(x: number, y?: number, z?: number); } const v = new Vector(1, 2, 3); const vSquared = v * v; ``` **Generated (valid) lua code:** ```Lua --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]] v = vector.new(1, 2, 3) vSquared = v * v ``` **Obnoxious compiler output:** ``` main.ts:9:18 - error TS2362: The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type. 9 const vSquared = v * v; ~ main.ts:9:22 - error TS2363: The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type. 9 const vSquared = v * v; ~ ``` Thank you for your time, I hope that this issue can be seen as what is is, which is a frustrating lack of user control and agency.
Suggestion,Awaiting More Feedback
medium
Critical
614,423,025
pytorch
ImportError: libtorch_cpu.so: cannot open shared object file: No such file or directory
## Issue description Attempting to run Detectron 2, getting the above error ## Code example python demo.py –config-file ../configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml --webcam \ --opts MODEL.WEIGHTS detectron2://COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x/137849600/model_final_f10217.pkl Ubuntu 20 Pytorch 1.4.0 Python3.7 ## System Info Traceback (most recent call last): File "demo.py", line 11, in <module> from detectron2.data.detection_utils import read_image File "/home/ty/anaconda3/envs/detectron_env/lib/python3.7/site-packages/detectron2/data/__init__.py", line 4, in <module> from .build import ( File "/home/ty/anaconda3/envs/detectron_env/lib/python3.7/site-packages/detectron2/data/build.py", line 14, in <module> from detectron2.structures import BoxMode File "/home/ty/anaconda3/envs/detectron_env/lib/python3.7/site-packages/detectron2/structures/__init__.py", line 6, in <module> from .keypoints import Keypoints, heatmaps_to_keypoints File "/home/ty/anaconda3/envs/detectron_env/lib/python3.7/site-packages/detectron2/structures/keypoints.py", line 6, in <module> from detectron2.layers import interpolate File "/home/ty/anaconda3/envs/detectron_env/lib/python3.7/site-packages/detectron2/layers/__init__.py", line 3, in <module> from .deform_conv import DeformConv, ModulatedDeformConv File "/home/ty/anaconda3/envs/detectron_env/lib/python3.7/site-packages/detectron2/layers/deform_conv.py", line 10, in <module> from detectron2 import _C ImportError: libtorch_cpu.so: cannot open shared object file: No such file or directory cc @malfet
module: build,triaged
low
Critical
614,423,044
go
cmd/go: trim build cache incrementally
Can't reproduce reliably, but... After running `go test`, I am sometimes seeing the test complete successfully (prints "ok ... pkg ... time"), and then it appears to hang for an indefinite period of time. Sending SIGINT does not terminate the process. Sending SIGTERM does. This happens with std lib tests (strings, crypto/x509). Each time I passed the `-v` flag, although I'm not sure that that is necessary. Using commit 5c13cab36b4667cc1a42667b16b8f049016586e0. This behavior is new, although this is the first time I've run tests in a few days or a week. And it doesn't reproduce 100%, so it's a bit muddled. I attached lldb to two hung binaries and got similar backtraces from each. <details> <summary>First backtrace</summary> <pre> $ lldb -p 55409 (lldb) process attach --pid 55409 Process 55409 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP frame #0: 0x00007fff71de4ce6 libsystem_kernel.dylib`__psynch_cvwait + 10 libsystem_kernel.dylib`__psynch_cvwait: -> 0x7fff71de4ce6 <+10>: jae 0x7fff71de4cf0 ; <+20> 0x7fff71de4ce8 <+12>: movq %rax, %rdi 0x7fff71de4ceb <+15>: jmp 0x7fff71de2a89 ; cerror_nocancel 0x7fff71de4cf0 <+20>: retq Target 0: (go) stopped. Executable module set to "/Users/josh/go/tip/bin/go". Architecture set to: x86_64h-apple-macosx-. (lldb) bt * thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP * frame #0: 0x00007fff71de4ce6 libsystem_kernel.dylib`__psynch_cvwait + 10 frame #1: 0x00007fff71ea6185 libsystem_pthread.dylib`_pthread_cond_wait + 701 frame #2: 0x000000000106ceb0 go`runtime.pthread_cond_wait_trampoline + 16 frame #3: 0x000000000106ad8d go`runtime.asmcgocall + 173 frame #4: 0x0000000001054c0c go`runtime.libcCall + 108 frame #5: 0x00000000010557d9 go`runtime.pthread_cond_wait + 57 frame #6: 0x0000000001032dcd go`runtime.semasleep + 141 frame #7: 0x000000000100dca7 go`runtime.notesleep + 231 frame #8: 0x000000000103c9a5 go`runtime.stopm + 197 frame #9: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #10: 0x000000000103edd7 go`runtime.schedule + 727 frame #11: 0x000000000103f37d go`runtime.park_m + 157 frame #12: 0x000000000106933b go`runtime.mcall + 91 frame #13: 0x00000000010557d9 go`runtime.pthread_cond_wait + 57 frame #14: 0x0000000001032dcd go`runtime.semasleep + 141 frame #15: 0x000000000100dca7 go`runtime.notesleep + 231 frame #16: 0x000000000103c9a5 go`runtime.stopm + 197 frame #17: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #18: 0x000000000103edd7 go`runtime.schedule + 727 frame #19: 0x000000000103f37d go`runtime.park_m + 157 frame #20: 0x000000000106933b go`runtime.mcall + 91 frame #21: 0x0000000001032dcd go`runtime.semasleep + 141 frame #22: 0x000000000100dca7 go`runtime.notesleep + 231 frame #23: 0x000000000103c9a5 go`runtime.stopm + 197 frame #24: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #25: 0x000000000103edd7 go`runtime.schedule + 727 frame #26: 0x000000000103f37d go`runtime.park_m + 157 frame #27: 0x000000000106933b go`runtime.mcall + 91 frame #28: 0x000000000100dca7 go`runtime.notesleep + 231 frame #29: 0x000000000103c9a5 go`runtime.stopm + 197 frame #30: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #31: 0x000000000103edd7 go`runtime.schedule + 727 frame #32: 0x000000000103f37d go`runtime.park_m + 157 frame #33: 0x000000000106933b go`runtime.mcall + 91 frame #34: 0x000000000103c9a5 go`runtime.stopm + 197 frame #35: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #36: 0x000000000103edd7 go`runtime.schedule + 727 frame #37: 0x000000000103f37d go`runtime.park_m + 157 frame #38: 0x000000000106933b go`runtime.mcall + 91 frame #39: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #40: 0x000000000103edd7 go`runtime.schedule + 727 frame #41: 0x000000000103f37d go`runtime.park_m + 157 frame #42: 0x000000000106933b go`runtime.mcall + 91 frame #43: 0x000000000103edd7 go`runtime.schedule + 727 frame #44: 0x000000000103f37d go`runtime.park_m + 157 frame #45: 0x000000000106933b go`runtime.mcall + 91 frame #46: 0x000000000103f37d go`runtime.park_m + 157 frame #47: 0x000000000106933b go`runtime.mcall + 91 frame #48: 0x000000000106933b go`runtime.mcall + 91 frame #49: 0x000000000101edff go`runtime.gcBgMarkWorker + 255 frame #50: 0x000000000106b121 go`runtime.goexit + 1 frame #51: 0x000000000106b121 go`runtime.goexit + 1 (lldb) ^D </pre> </details> <details> <summary>Second backtrace</summary> <pre> $ lldb -p 55473 (lldb) process attach --pid 55473 Process 55473 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP frame #0: 0x00007fff71de4ce6 libsystem_kernel.dylib`__psynch_cvwait + 10 libsystem_kernel.dylib`__psynch_cvwait: -> 0x7fff71de4ce6 <+10>: jae 0x7fff71de4cf0 ; <+20> 0x7fff71de4ce8 <+12>: movq %rax, %rdi 0x7fff71de4ceb <+15>: jmp 0x7fff71de2a89 ; cerror_nocancel 0x7fff71de4cf0 <+20>: retq Target 0: (go) stopped. Executable module set to "/Users/josh/go/tip/bin/go". Architecture set to: x86_64h-apple-macosx-. (lldb) bt * thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGSTOP * frame #0: 0x00007fff71de4ce6 libsystem_kernel.dylib`__psynch_cvwait + 10 frame #1: 0x00007fff71ea6185 libsystem_pthread.dylib`_pthread_cond_wait + 701 frame #2: 0x000000000106ceb0 go`runtime.pthread_cond_wait_trampoline + 16 frame #3: 0x000000000106ad8d go`runtime.asmcgocall + 173 frame #4: 0x0000000001054c0c go`runtime.libcCall + 108 frame #5: 0x00000000010557d9 go`runtime.pthread_cond_wait + 57 frame #6: 0x0000000001032dcd go`runtime.semasleep + 141 frame #7: 0x000000000100dca7 go`runtime.notesleep + 231 frame #8: 0x000000000103c9a5 go`runtime.stopm + 197 frame #9: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #10: 0x000000000103edd7 go`runtime.schedule + 727 frame #11: 0x000000000103f37d go`runtime.park_m + 157 frame #12: 0x000000000106933b go`runtime.mcall + 91 frame #13: 0x00000000010557d9 go`runtime.pthread_cond_wait + 57 frame #14: 0x0000000001032dcd go`runtime.semasleep + 141 frame #15: 0x000000000100dca7 go`runtime.notesleep + 231 frame #16: 0x000000000103c9a5 go`runtime.stopm + 197 frame #17: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #18: 0x000000000103edd7 go`runtime.schedule + 727 frame #19: 0x000000000103f37d go`runtime.park_m + 157 frame #20: 0x000000000106933b go`runtime.mcall + 91 frame #21: 0x0000000001032dcd go`runtime.semasleep + 141 frame #22: 0x000000000100dca7 go`runtime.notesleep + 231 frame #23: 0x000000000103c9a5 go`runtime.stopm + 197 frame #24: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #25: 0x000000000103edd7 go`runtime.schedule + 727 frame #26: 0x000000000103f37d go`runtime.park_m + 157 frame #27: 0x000000000106933b go`runtime.mcall + 91 frame #28: 0x000000000100dca7 go`runtime.notesleep + 231 frame #29: 0x000000000103c9a5 go`runtime.stopm + 197 frame #30: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #31: 0x000000000103edd7 go`runtime.schedule + 727 frame #32: 0x000000000103f37d go`runtime.park_m + 157 frame #33: 0x000000000106933b go`runtime.mcall + 91 frame #34: 0x000000000103c9a5 go`runtime.stopm + 197 frame #35: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #36: 0x000000000103edd7 go`runtime.schedule + 727 frame #37: 0x000000000103f37d go`runtime.park_m + 157 frame #38: 0x000000000106933b go`runtime.mcall + 91 frame #39: 0x000000000103e15f go`runtime.findrunnable + 2687 frame #40: 0x000000000103edd7 go`runtime.schedule + 727 frame #41: 0x000000000103f37d go`runtime.park_m + 157 frame #42: 0x000000000106933b go`runtime.mcall + 91 frame #43: 0x000000000103edd7 go`runtime.schedule + 727 frame #44: 0x000000000103f37d go`runtime.park_m + 157 frame #45: 0x000000000106933b go`runtime.mcall + 91 frame #46: 0x000000000103f37d go`runtime.park_m + 157 frame #47: 0x000000000106933b go`runtime.mcall + 91 frame #48: 0x000000000106933b go`runtime.mcall + 91 frame #49: 0x000000000101edff go`runtime.gcBgMarkWorker + 255 frame #50: 0x000000000106b121 go`runtime.goexit + 1 frame #51: 0x000000000106b121 go`runtime.goexit + 1 (lldb) ^D </pre> </details>
NeedsInvestigation
medium
Critical
614,434,751
vscode
up-vote release note features
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Allow up-voting of features in (and via) the release notes. For instance: I tried switching tabs using mouse wheel for first time tonight after seeing the feature in the release notes. It was so smooth and natural it's like I found a muscle memory I never realized I had all along. I wanted to up-vote the feature right in the release notes for whomever it was that implemented it.
question-discussion
low
Minor
614,446,218
tensorflow
tf.Module.name_scope overrides parent scopes
**System information** - Have I written custom code: Yes - OS Platform and Distribution: macOS 10.15.5 - Mobile device if the issue happens on mobile device: n/a - TensorFlow installed from (source or binary): binary - TensorFlow version (use command below): 2.2.0 - Python version: 3.6.8 - Bazel version (if compiling from source): n/a - GCC/Compiler version (if compiling from source): n/a - CUDA/cuDNN version: n/a - GPU model and memory: n/a **Describe the current behavior** The `name_scope` of a `tf.Module` instance has a forward slash appended to the name, which causes the scope to disregard any parent scopes. Using `with tf.Module.name_scope` and `with tf.name_scope(mymod.name_scope.name):` both result in this issue. **Describe the expected behavior** Each of the following should have the same outcome: - `with tf.Module.name_scope:` - `with tf.name_scope(tf.Module.name_scope.name):` - `with tf.name_scope(tf.Module.name):` **Standalone code to reproduce the issue** ```python import tensorflow as tf def my_test_mod_scopes(): mymod = tf.Module(name='mymod') with tf.name_scope('first_scope'): with mymod.name_scope: tf.summary.scalar('scalar1', 84.9) with tf.name_scope(mymod.name): tf.summary.scalar('scalar2', 74.3) with tf.name_scope(mymod.name_scope.name): tf.summary.scalar('scalar3', 79.7) with tf.summary.create_file_writer('./logs').as_default(): tf.summary.experimental.set_step(0) my_test_mod_scopes() ``` ![Screen Shot 2020-05-07 at 21 43 20](https://user-images.githubusercontent.com/31281983/81361269-e7bdbb80-90ab-11ea-84b9-4d41f84250b8.png) **Other info / logs** Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.
comp:tensorboard,stat:awaiting tensorflower,type:bug,TF 2.5
low
Minor
614,510,939
storybook
Addon-docs: Pretty json in Props table
**Is your feature request related to a problem? Please describe.** No **Describe the solution you'd like** ![image](https://user-images.githubusercontent.com/15278220/81369807-006ab780-9126-11ea-970f-c8f4cf9d0f9b.png) If the input value is object, the content is not pretty, so, it looks terrible **Describe alternatives you've considered** No **Are you able to assist bring the feature to reality?** yes, add JSON.stringfy is ok
feature request,addon: docs,block: argstable
low
Minor
614,530,415
PowerToys
Resize windows with alt right click
# Summary of the new feature/enhancement Resize windows with alt right click Sometimes my cursor is to far from the windows edge and I click something I didn't mean to click on another window. With this feature the user would just hold the alt key while right clicking near the edge they want to resize. I know some linux distros have this feature and its really useful. # Proposed technical implementation details (optional) <!-- A clear and concise description of what you want to happen. -->
Idea-New PowerToy,Product-Always On Top
medium
Major
614,556,218
godot
AutoComplete dialog doesn't resize when clipped
**Godot version:** 3.2.1.stable.offical **OS/device including version:** win 10 home 10.0.18362 build 18362 HP laptop 15-da0xxx **Issue description:** When the autocomplete dialogue is clipped by the text editor region it doesn't add scrollbars. **Steps to reproduce:** open the script editor and resize the window so it only shows 9 lines. type "V" it shows the complete autocomplete dialogue with scroll bar. type "e" so it's auto-completing "Ve" Vector2d is clipped off the top. ![godot](https://user-images.githubusercontent.com/25010423/81380473-98d64d00-90d0-11ea-85d1-b009d2d08289.png) **Minimal reproduction project:** [Map Editor.zip](https://github.com/godotengine/godot/files/4597514/Map.Editor.zip)
bug,topic:editor,usability
low
Minor
614,565,080
rust
constant reference has unstable address acrosss compilation units.
Consider the following code, split across two crates: ```rust //crate_b; lib.rs: #![feature(const_fn)] pub const fn give_ptr<T>(x: &T) -> *const T { x as *const T } pub const MY_CONST: &'static i32 = &1; pub const fn my_const_ptr() -> *const i32 { give_ptr(MY_CONST) } //crate_a; depends on crate_b; main.rs: fn main() { assert_eq!(crate_b::my_const_ptr(), crate_b::give_ptr(crate_b::MY_CONST)); // thread 'main' panicked at 'assertion failed: `(left == right)` // left: `0x13fe2b3d0`, // right: `0x13fe2b300`', src\main.rs:3:5 } ``` This behavior is mildly surprising - effectively inlining a function changes the computation result. [The reference](https://doc.rust-lang.org/reference/items/constant-items.html) mentions a similar situation: > References to the same constant are not necessarily guaranteed to refer to the same memory address however, as written, this is not applicable to the code above - there's only *one* reference to a constant, not multiple. It is *the same* reference to a constant that gets treated differently based on the compilation unit. I understand that this is an incredibly niche situation, and likely no real code hits it. I also understand that it's likely very hard to "fix" the "bug" (i.e. make `assert_eq!` above pass). I think I'd be happy if the reference doc was simply adjusted instead (but have no suggestion on a better wording). I'm mildly concerned that even with better wording, the code might be obfuscated enough to the point where `main()` does not see any reference types while doing the inlining, yet still triggers the bug (but I couldn't craft such obfuscation myself).
A-docs,C-bug,A-const-eval
low
Critical
614,566,731
rust
Enhance Error Message For Misusing Methods As Functions
Consider the following example ([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=56822f4bd3c9bb8bf0bdaa8f3e75e967)): ```rust struct S; trait T { fn some(&self) {} } impl T for S {} fn main() { let s = S; s.some(); s::some(); } ``` If there is `fn some(&self);`, and I called `s::some()` instead of `s.some()` (the correct one), the compiler wil emit `error[E0433]: failed to resolve: use of undeclared type or module 's'`. I think this is hard for developers to understand, and a hint of using method would be better in this case. To be more precise, when the code misuses methods as functions, in addition to the current `E0433`, a hint would be provided, for example `possible misusing methods as functions, try change to method call`.
C-enhancement,A-diagnostics,A-resolve,T-compiler,D-papercut
low
Critical
614,588,888
opencv
Please add seamlessClone do openCV.js
In mean while are there some alternatives?
feature
low
Minor
614,618,927
opencv
Add decompression bombs protection
https://libpng.sourceforge.io/decompression_bombs.html
feature,category: imgcodecs,effort: few days
low
Major
614,633,900
flutter
Xcode build failed due to concurrent builds.
Xcode build failed due to concurrent builds. Retry in 2 seconds. Xcode build failed due to concurrent builds. Retry in 4 seconds. Xcode build failed due to concurrent builds. Retry in 8 seconds. I see this message every time I run my app and then build gets succeeded after some tries. I created a new app it's not happening in that case. It's been in existence for some time for my existing project and happening in dev channel too. <!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you have found a bug or if our documentation doesn't have an answer to what you're looking for, then fill our the template below. Please read our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports --> ## Steps to Reproduce <!-- You must include full steps to reproduce so that we can reproduce the problem. --> 1. Run `flutter create bug`. 2. Update the files as follows: ... <!-- include every file that is different from the template app! --> 3. ... <!-- describe how to reproduce the problem --> **Expected results:** <!-- what did you want to see? --> **Actual results:** <!-- what did you see? --> <details> <summary>Logs</summary> <!-- Run your application with `flutter run --verbose` and attach all the log output below between the lines with the backticks. If there is an exception, please see if the error message includes enough information to explain how to solve the issue. --> ``` { "simulator" : true, "operatingSystemVersion" : "6.2 (17T256)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,4", "identifier" : "BF756B0B-FAD1-4435-A034-599C56D730EF", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "2351BAD2-22DA-4FFD-92C6-935F6A4D33AC", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K", "name" : "Apple TV 4K" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "2693DFCF-50D5-4B4B-A6A8-D402357786EC", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" } ] [ +16 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ +4 ms] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +83 ms] Found plugin alice at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/alice-0.0.23/ [ +17 ms] Found plugin barcode_scan at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/barcode_scan-2.0.1/ [ +49 ms] Found plugin firebase_analytics at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_analytics-5.0.11/ [ +4 ms] Found plugin firebase_crashlytics at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_crashlytics-0.1.3+3/ [ +2 ms] Found plugin firebase_messaging at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-6.0.12/ [ +1 ms] Found plugin firebase_remote_config at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_remote_config-0.3.0+3/ [ +7 ms] Found plugin flutter_local_notifications at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-0.9.1+3/ [ +5 ms] Found plugin flutter_segment at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/flutter_segment-1.0.0/ [ +27 ms] Found plugin open_file at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/open_file-3.0.1/ [ +2 ms] Found plugin package_info at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/package_info-0.4.0+14/ [ +4 ms] Found plugin path_provider at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.5/ [ +1 ms] Found plugin path_provider_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4/ [ +2 ms] Found plugin permission_handler at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.3.0/ [ +11 ms] Found plugin sensors at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/sensors-0.4.1+8/ [ +1 ms] Found plugin share at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/share-0.6.3+6/ [ +1 ms] Found plugin shared_preferences at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.6+2/ [ +1 ms] Found plugin shared_preferences_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+6/ [ +1 ms] Found plugin shared_preferences_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+4/ [ +7 ms] Found plugin sqflite at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/sqflite-1.2.1/ [ +10 ms] Found plugin url_launcher at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.4.2/ [ +1 ms] Found plugin url_launcher_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-0.0.1+4/ [ +1 ms] Found plugin url_launcher_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-0.1.1+1/ [ +3 ms] Found plugin video_player at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/video_player-0.10.8+1/ [ +1 ms] Found plugin video_player_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.2+1/ [ +1 ms] Found plugin wakelock at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/wakelock-0.1.3+4/ [ +3 ms] Found plugin webview_flutter at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/webview_flutter-0.3.19+9/ [ +30 ms] Found plugin alice at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/alice-0.0.23/ [ +4 ms] Found plugin barcode_scan at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/barcode_scan-2.0.1/ [ +17 ms] Found plugin firebase_analytics at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_analytics-5.0.11/ [ +1 ms] Found plugin firebase_crashlytics at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_crashlytics-0.1.3+3/ [ +1 ms] Found plugin firebase_messaging at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-6.0.12/ [ ] Found plugin firebase_remote_config at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_remote_config-0.3.0+3/ [ +3 ms] Found plugin flutter_local_notifications at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-0.9.1+3/ [ +2 ms] Found plugin flutter_segment at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/flutter_segment-1.0.0/ [ +13 ms] Found plugin open_file at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/open_file-3.0.1/ [ +1 ms] Found plugin package_info at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/package_info-0.4.0+14/ [ +2 ms] Found plugin path_provider at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.5/ [ ] Found plugin path_provider_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4/ [ +1 ms] Found plugin permission_handler at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.3.0/ [ +6 ms] Found plugin sensors at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/sensors-0.4.1+8/ [ +1 ms] Found plugin share at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/share-0.6.3+6/ [ ] Found plugin shared_preferences at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.6+2/ [ ] Found plugin shared_preferences_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+6/ [ +1 ms] Found plugin shared_preferences_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+4/ [ +4 ms] Found plugin sqflite at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/sqflite-1.2.1/ [ +5 ms] Found plugin url_launcher at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.4.2/ [ ] Found plugin url_launcher_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-0.0.1+4/ [ ] Found plugin url_launcher_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-0.1.1+1/ [ +1 ms] Found plugin video_player at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/video_player-0.10.8+1/ [ +1 ms] Found plugin video_player_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.2+1/ [ ] Found plugin wakelock at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/wakelock-0.1.3+4/ [ +1 ms] Found plugin webview_flutter at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/webview_flutter-0.3.19+9/ [ +64 ms] Generating /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +203 ms] Launching lib/main.dart on Pawan Kumar’s iPhone in debug mode... [ +12 ms] /Users/vijaykumar/flutter/flutter/bin/cache/dart-sdk/bin/dart /Users/vijaykumar/flutter/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/vijaykumar/flutter/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_tool.OpwFbI/app.dill --packages /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/.packages -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill [ +16 ms] executing: /usr/bin/plutil -convert json -o - /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner/Info.plist [ +9 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner/Info.plist [ ] {"CFBundleName":"Frontier","UILaunchStoryboardName":"LaunchScreen","NSAppleMusicUsageDescription":"You should never see this, please contact us","LSApplicationQueriesSchemes":["trust","imtokenv2","cbwallet"],"NSCalendarsUsageDescription":"You should never see this, please contact us","ITSAppUsesNonExemptEncryption":false,"NSMotionUsageDescription":"You should never see this, please contact us","CFBundleDevelopmentRegion":"$(DEVELOPMENT_LANGUAGE)","CFBundleVersion":"$(FLUTTER_BUILD_NUMBER)","NSCameraUsageDescription":"Camera permission is required for barcode scanning.","UIBackgroundModes":["fetch","remote-notification"],"UIStatusBarHidden":true,"CFBundlePackageType":"APPL","CFBundleShortVersionString":"$(FLUTTER_BUILD_NA ME)","UIMainStoryboardFile":"Main","com.claimsforce.segment.TRACK_APPLICATION_LIFECYCLE_EVENTS":false,"com.claimsforce.segment.WRITE_KEY":"fTp01KluxO29az9TSonOthWQ6V 6l31oJ","io.flutter.embedded_views_preview":true,"CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"$(EXECUTABLE_NAME)","UISupportedInterfaceOrientations~ip ad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBun dleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLSchemes":["frontierwallet"]}],"CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","NSContactsUsageDescription" :"You should never see this, please contact us","CFBundleSignature":"????","UIViewControllerBasedStatusBarAppearance":false,"LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientation Portrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"NSLocationAlwaysUsageDescription":"You should never see this, please contact us","NSSpeechRecognitionUsageDescription":"You should never see this, please contact us","NSLocationWhenInUseUsageDescription":"You should never see this, please contact us"} ⣽[ +16 ms] executing: [/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner.xcodeproj -target Runner -showBuildSettings [ ] executing: [/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner.xcodeproj -target Runner -showBuildSettings [ +14 ms] <- compile package:frontier_flutter/main.dart ⢿[+1814 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner.xcodeproj -target Runner -showBuildSettings Resolve Package Graph Resolved source packages: ed25519swift: https://github.com/pebble8888/ed25519swift @ 1.2.5 CryptoSwift: https://github.com/krzyzanowskim/CryptoSwift.git @ 1.3.1 Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = vijaykumar ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO APPLY_RULES_IN_COPY_HEADERS = NO ARCHS = arm64 ARCHS_STANDARD = arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products BUILD_LIBRARY_FOR_DISTRIBUTION = NO BUILD_ROOT = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/ BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS BUNDLE_FORMAT = shallow BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks BUNDLE_PLUGINS_FOLDER_PATH = PlugIns BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers CACHE_ROOT = /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/C/com.apple.DeveloperTools/11.4.1-11E503a/Xcode CCHROOT = /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/C/com.apple.DeveloperTools/11.4.1-11E503a/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.4 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 47 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 DERIVED_FILES_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = en DEVELOPMENT_TEAM = 56Q7Q23TPG DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation DONT_GENERATE_INFOPLIST_FILE = NO DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HARDENED_RUNTIME = NO ENABLE_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = NO ENABLE_TESTING_SEARCH_PATHS = NO ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_DESTINATION = Signature ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 2.0.3 FLUTTER_BUILD_NUMBER = 47 FLUTTER_FRAMEWORK_DIR = /Users/vijaykumar/flutter/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/vijaykumar/flutter/flutter FLUTTER_TARGET = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Alamofire" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Analytics" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/BigInt" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/BinanceChain" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/BitcoinKit" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/CryptoSwift" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FMDB" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseABTesting" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseCore" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseCoreDiagno stics" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseInstallati ons" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseInstanceID " "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseMessaging" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseRemoteConf ig" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/GoogleDataTranspor t" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/GoogleDataTranspor tCCTSupport" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/GoogleUtilities" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/HDWalletKit" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/MTBBarcodeScanner" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/ObjcExceptionBridg ing" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/PromisesObjC" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Protobuf" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Starscream" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/SwiftDate" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/SwiftProtobuf" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/SwiftyJSON" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/TrustSDK" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/TrustWalletCore" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/XCGLogger" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/alice" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/barcode_scan" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_analytics " "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_crashlyti cs" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_messaging " "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_remote_co nfig" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/flutter_local_noti fications" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/flutter_segment" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/nanopb" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/open_file" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/package_info" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/path_provider" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/permission_handler " "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/secp256k1.swift" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/sensors" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/share" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/shared_preferences " "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/sqflite" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/url_launcher" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/video_player" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/wakelock" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/webview_flutter" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/../Flutter" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/Crashlytics/iOS" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/Fabric/iOS" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/GoogleAppMeasurement/Frameworks" /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GCC_SYMBOLS_PRIVATE_EXTERN = YES GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Alamofire/Alamofir e.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Analytics/Analytic s.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/BigInt/BigInt.fram ework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/BinanceChain/Binan ceChain.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/BitcoinKit/Bitcoin Kit.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/CryptoSwift/Crypto Swift.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FMDB/FMDB.framewor k/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseABTesting/ FirebaseABTesting.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseCore/Fireb aseCore.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseCoreDiagno stics/FirebaseCoreDiagnostics.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseInstallati ons/FirebaseInstallations.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseInstanceID /FirebaseInstanceID.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseMessaging/ FirebaseMessaging.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/FirebaseRemoteConf ig/FirebaseRemoteConfig.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/GoogleDataTranspor t/GoogleDataTransport.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/GoogleDataTranspor tCCTSupport/GoogleDataTransportCCTSupport.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/GoogleUtilities/Go ogleUtilities.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/HDWalletKit/HDWall etKit.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/MTBBarcodeScanner/ MTBBarcodeScanner.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/ObjcExceptionBridg ing/ObjcExceptionBridging.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/PromisesObjC/FBLPr omises.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Protobuf/protobuf. framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Starscream/Starscr eam.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/SwiftDate/SwiftDat e.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/SwiftProtobuf/Swif tProtobuf.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/SwiftyJSON/SwiftyJ SON.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/TrustSDK/TrustSDK. framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/TrustWalletCore/Tr ustWalletCore.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/XCGLogger/XCGLogge r.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/alice/alice.framew ork/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/barcode_scan/barco de_scan.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_analytics /firebase_analytics.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_crashlyti cs/firebase_crashlytics.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_messaging /firebase_messaging.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/firebase_remote_co nfig/firebase_remote_config.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/flutter_local_noti fications/flutter_local_notifications.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/flutter_segment/fl utter_segment.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/nanopb/nanopb.fram ework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/open_file/open_fil e.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/package_info/packa ge_info.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/path_provider/path _provider.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/permission_handler /permission_handler.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/secp256k1.swift/se cp256k1.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/sensors/sensors.fr amework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/share/share.framew ork/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/shared_preferences /shared_preferences.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/sqflite/sqflite.fr amework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/url_launcher/url_l auncher.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/video_player/video _player.framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/wakelock/wakelock. framework/Headers" "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/webview_flutter/we bview_flutter.framework/Headers" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/Headers/Public" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/Headers/Public/Firebase" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/Headers/Public/FirebaseAnalyticsInterop" "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsInterop" /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/Firebase/CoreOnly/Sources "/Sources/FBLPromises/include" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/vijaykumar ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = vijaykumar INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 11.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = "/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/TrustWalletCore/build/ios" /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios11.0 LLVM_TARGET_TRIPLE_VENDOR = apple LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString LOCALIZED_STRING_SWIFTUI_SUPPORT = YES LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 19E287 MAC_OS_X_VERSION_ACTUAL = 101504 MAC_OS_X_VERSION_MAJOR = 101500 MAC_OS_X_VERSION_MINOR = 1504 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/Runner.app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = NO NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/Objects-normal OBJROOT = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile OTHER_LDFLAGS = -framework Flutter OTHER_SWIFT_FLAGS = -D COCOAPODS PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/usr/local/git/bin:/Us ers/vijaykumar/flutter/flutter/bin:/usr/local/git/bin:/usr/local/bin: PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 17E8258 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products PODS_CONFIGURATION_BUILD_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos PODS_PODFILE_DIR_PATH = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/. PODS_ROOT = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.frontierwallet PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/DerivedSou rces PROJECT_DIR = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios PROJECT_FILE_PATH = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.4.sdk SDK_DIR_iphoneos13_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.4.sdk SDK_NAME = iphoneos13.4 SDK_NAMES = iphoneos13.4 SDK_PRODUCT_BUILD_VERSION = 17E8258 SDK_VERSION = 13.4 SDK_VERSION_ACTUAL = 130400 SDK_VERSION_MAJOR = 130000 SDK_VERSION_MINOR = 400 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios SRCROOT = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_MACCATALYST = NO SUPPORTS_TEXT_BASED_API = NO SWIFT_COMPILATION_MODE = wholemodule SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h SWIFT_OPTIMIZATION_LEVEL = -O SWIFT_PLATFORM_TARGET_PREFIX = ios SWIFT_SWIFT3_OBJC_INFERENCE = Default SWIFT_VERSION = 4.0 SYMROOT = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_HEADER_SEARCH_PATHS = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/Pods/TrustWalletCore/include SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Products/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build TEMP_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build TEMP_FILES_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build TEMP_FILE_DIR = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex/Runner.build/Release-ip honeos/Runner.build TEMP_ROOT = /Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-fvrulkytmjldmpeacjdyqrqsaila/Build/Intermediates.noindex TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = vijaykumar USER_APPS_DIR = /Users/vijaykumar/Applications USER_LIBRARY_DIR = /Users/vijaykumar/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES VALIDATE_PRODUCT = YES VALIDATE_WORKSPACE = NO VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = vijaykumar VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-47" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 11E503a XCODE_VERSION_ACTUAL = 1141 XCODE_VERSION_MAJOR = 1100 XCODE_VERSION_MINOR = 1140 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +86 ms] Building Runner.app for 00008020-001C19C21ABA002E [ +26 ms] executing: [/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/] /usr/bin/xcodebuild -list [+1205 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -list Resolve Package Graph Resolved source packages: ed25519swift: https://github.com/pebble8888/ed25519swift @ 1.2.5 CryptoSwift: https://github.com/krzyzanowskim/CryptoSwift.git @ 1.3.1 Information about project "Runner": Targets: Runner Build Configurations: Debug Release Profile If no build configuration is specified and -scheme is not passed then "Release" is used. Schemes: Runner [ +14 ms] Automatically signing iOS for device deployment using specified development team in Xcode project: 56Q7Q23TPG [ +20 ms] Found plugin alice at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/alice-0.0.23/ [ +6 ms] Found plugin barcode_scan at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/barcode_scan-2.0.1/ [ +27 ms] Found plugin firebase_analytics at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_analytics-5.0.11/ [ +1 ms] Found plugin firebase_crashlytics at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_crashlytics-0.1.3+3/ [ +2 ms] Found plugin firebase_messaging at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-6.0.12/ [ +1 ms] Found plugin firebase_remote_config at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/firebase_remote_config-0.3.0+3/ [ +3 ms] Found plugin flutter_local_notifications at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-0.9.1+3/ [ +1 ms] Found plugin flutter_segment at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/flutter_segment-1.0.0/ [ +12 ms] Found plugin open_file at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/open_file-3.0.1/ [ +1 ms] Found plugin package_info at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/package_info-0.4.0+14/ [ +2 ms] Found plugin path_provider at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.5/ [ ] Found plugin path_provider_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4/ [ +1 ms] Found plugin permission_handler at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.3.0/ [ +6 ms] Found plugin sensors at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/sensors-0.4.1+8/ [ +1 ms] Found plugin share at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/share-0.6.3+6/ [ +1 ms] Found plugin shared_preferences at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.6+2/ [ +1 ms] Found plugin shared_preferences_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+6/ [ +1 ms] Found plugin shared_preferences_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+4/ [ +3 ms] Found plugin sqflite at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/sqflite-1.2.1/ [ +5 ms] Found plugin url_launcher at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.4.2/ [ +1 ms] Found plugin url_launcher_macos at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-0.0.1+4/ [ +1 ms] Found plugin url_launcher_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-0.1.1+1/ [ +2 ms] Found plugin video_player at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/video_player-0.10.8+1/ [ +1 ms] Found plugin video_player_web at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.2+1/ [ +1 ms] Found plugin wakelock at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/wakelock-0.1.3+4/ [ +2 ms] Found plugin webview_flutter at /Users/vijaykumar/.pub-cache/hosted/pub.dartlang.org/webview_flutter-0.3.19+9/ [ +39 ms] executing: mkfifo /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout [ +5 ms] Exit code 0 from: mkfifo /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout [ +4 ms] Running Xcode build... [ +2 ms] executing: [/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO [+33264 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout SDKROOT = iphoneos13.4 VERBOSE_SCRIPT_LOGGING = YES Resolve Package Graph Resolved source packages: CryptoSwift: https://github.com/krzyzanowskim/CryptoSwift.git @ 1.3.1 ed25519swift: https://github.com/pebble8888/ed25519swift @ 1.2.5 note: Using new build system note: Building targets in parallel note: Planning build note: Constructing build description Build system information error: unable to attach DB: error: accessing build database "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-ewxmvyixpwebszeoyijozvymbjpt/Build/Intermediates.noindex/XCBuildData/build.db": database is locked Possibly there are two concurrent builds running in the same filesystem location. ** BUILD FAILED ** [ +3 ms] Xcode build failed due to concurrent builds, will retry in 2 seconds. [+2002 ms] executing: [/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO [+21257 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout SDKROOT = iphoneos13.4 VERBOSE_SCRIPT_LOGGING = YES Resolve Package Graph Resolved source packages: ed25519swift: https://github.com/pebble8888/ed25519swift @ 1.2.5 CryptoSwift: https://github.com/krzyzanowskim/CryptoSwift.git @ 1.3.1 note: Using new build system note: Building targets in parallel note: Planning build note: Using build description from disk Build system information error: unable to attach DB: error: accessing build database "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-ewxmvyixpwebszeoyijozvymbjpt/Build/Intermediates.noindex/XCBuildData/build.db": database is locked Possibly there are two concurrent builds running in the same filesystem location. 2020-05-08 14:59:04.233 xcodebuild[77868:3305595] DTDeviceKit: deviceType from 00008020-001C19C21ABA002E was NULL ** BUILD FAILED ** [ +1 ms] Xcode build failed due to concurrent builds, will retry in 4 seconds. [+4000 ms] executing: [/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO [+10655 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout SDKROOT = iphoneos13.4 VERBOSE_SCRIPT_LOGGING = YES Resolve Package Graph Resolved source packages: ed25519swift: https://github.com/pebble8888/ed25519swift @ 1.2.5 CryptoSwift: https://github.com/krzyzanowskim/CryptoSwift.git @ 1.3.1 note: Using new build system note: Building targets in parallel note: Planning build note: Using build description from disk Build system information error: unable to attach DB: error: accessing build database "/Users/vijaykumar/Library/Developer/Xcode/DerivedData/Runner-ewxmvyixpwebszeoyijozvymbjpt/Build/Intermediates.noindex/XCBuildData/build.db": database is locked Possibly there are two concurrent builds running in the same filesystem location. ** BUILD FAILED ** [ +1 ms] Xcode build failed due to concurrent builds, will retry in 8 seconds. [+8002 ms] executing: [/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vijaykumar/Desktop/dev/flutterdev/frontier-flutter/build/ios -sdk iphoneos ONLY_ACTIVE_ARCH=YES ARCHS=arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/bq/3mjkcdld3794q1rk_f3szlfm0000gn/T/flutter_build_log_pipe.mPfRsO/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO [+90339 ms] Running Xcode build... (completed in 1,69,522ms, longer than expected) ``` <!-- Run `flutter analyze` and attach any output of that command below. If there are any analysis errors, try resolving them before filing this issue. --> ``` ``` <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` ✓] Flutter (Channel stable, v1.17.0, on Mac OS X 10.15.4 19E287, locale en-IN) • Flutter version 1.17.0 at /Users/vijaykumar/flutter/flutter • Framework revision e6b34c2b5c (6 days ago), 2020-05-02 11:39:18 -0700 • Engine revision 540786dd51 • Dart version 2.8.1 [✓] Android toolchain - develop for Android devices (Android SDK version 30.0.0-rc2) • Android SDK at /Users/vijaykumar/Library/Android/sdk • Platform android-R, build-tools 30.0.0-rc2 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 11.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 11.4.1, Build version 11E503a • CocoaPods version 1.9.1 [✓] Android Studio (version 3.6) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin version 45.1.1 • Dart plugin version 192.7761 • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211) [✓] VS Code (version 1.42.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.8.1 [✓] Connected device (2 available) • Pawan Kumar’s iPhone • 00008020-001C19C21ABA002E • ios • iOS 13.4.1 • iPhone 11 Pro • 1C1809BE-4CF4-4F53-98D9-8A5C7005A756 • ios • com.apple.CoreSimulator.SimRuntime.iOS-13-4 (simulator) • No issues found! ``` </details>
c: crash,platform-ios,tool,t: xcode,P3,team-ios,triaged-ios
medium
Critical
614,663,622
TypeScript
JSDoc import integration doesn't support return-style AMD modules
<!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 4.0.0-dev.20200508 also 3.8.3 (and presumably any other version) <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** require, AMD, exports, import, JSDoc, module **Code** `mod.js` ```ts // @ts-check define(function () { // (1) this checks // exports.number = 12; // (2) this doesn't check // var exports = { // number: 12 // }; // return exports; // (3) this also doesn't check return { number : 12 } }); ``` `usage.js` ```ts // @ts-check define(function(require) { /** @type {import('mod')} */ var Mod = require('mod'); Mod.number; }); ``` My tsconfig is configured for JS/AMD/es5/noEmit: ``` "allowJs": true, "module": "AMD", "target": "es5", "noEmit": true, ``` **Expected behavior:** The [import](https://www.typescriptlang.org/docs/handbook/type-checking-javascript-files.html#import-types) in the `@type` annotation in `usage.js` is correctly resolved for all three AMD module variants of `mod.js` . **Actual behavior:** Only the first variant, where `number` is explicitly added to `exports` works. For the second and third variants, I get a compile error. ``` src/usage.js:4:23 - error TS2306: File 'd:/ns-prog/ts-jsdoc/src/mod.js' is not a module. 4 /** @type {import('mod')} */ ``` Considering both (2) and (3) are valid AMD modules, I would expect this to work. Note that JSDoc supports [@exports](https://jsdoc.app/tags-exports.html) annotation. Perhaps that could be utilized in the TypeScript-JSDoc integration? **Playground Link:** N/A (I didn't see an option to have multiple files.) **Related Issues:** <!-- Did you find other bugs that looked similar? --> There's a StackOverflow question from 2016 <https://stackoverflow.com/questions/37035462/importing-amd-modules-that-don-t-use-exports-with-typescript>, but I didn't find any issue for it here.
Awaiting More Feedback
low
Critical
614,669,042
flutter
[animations] PageTransitionSwitcher doesn't work well with IndexedStack
I want to use PageTransitionSwitcher with IndexedStack to display my tab pages. If I don't set a **ValueKey** to **IndexedStack**, it doesn't animate but the IndexStack works well. If **I do** set a **ValueKey**, it animates but IndexedStack rebuilds all the time and causes the tab page's state to be lost. Which defeats the purpose of using IndexedStack. I did try to use **AutomaticKeepAliveClientMixin**, but still rebuilds the tabs, and I just want to avoid it anyways since IndexedStack keeps my code cleaner. I believe there are many users that want to use this combination since it is a very common pattern and it shouldn't be so complicated. What is the best solution? Regards Hiroshi ``` PageTransitionSwitcher( duration: const Duration(milliseconds: 300), reverse: newTabIndex < tabIndexNotifier.previous, transitionBuilder: ( Widget child, Animation<double> animation, Animation<double> secondaryAnimation, ) => SharedAxisTransition( child: child, animation: animation, secondaryAnimation: secondaryAnimation, transitionType: SharedAxisTransitionType.horizontal, ), child: IndexedStack( key: ValueKey(newTabIndex), index: newTabIndex, children: _pageWidgets, ), ), ```
package,p: animations,team-ecosystem,P3,triaged-ecosystem
medium
Critical
614,672,029
node
WIP label vs convert to draft?
Should we remove the WIP label in favor converting PR's to drafts? Update the collaborator guidelines maybe? Or what is the thoughts on this?
meta
low
Minor
614,677,144
flutter
[video_player] Better exception message on iOS devices if the video fails to play
## Steps to Reproduce <!-- You must include full steps to reproduce so that we can reproduce the problem. --> 1. Create an application on iOS with the [video_player](https://pub.dev/packages/video_player) 2. Use a server which does not support [HTTP range header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests) 3. Try to play a video on said server. It throws an `PlatformException(VideoError, Failed to load video: Operation Stopped, null)` exception with no further details. **Expected results:** I would expect a better error message as iOS seems to be capable of giving a better error message. See for example [this stackoverflow post](https://stackoverflow.com/questions/33493662/avplayeritem-status-avplayerstatusfailed-when-playing-video). **Actual results:** `PlatformException(VideoError, Failed to load video: Operation Stopped, null)` with no further details why it throws this exception. <details> <summary>Logs</summary> `flutter analyze` ``` Analyzing zkb-app... No issues found! (ran in 6.6s) ``` `flutter doctor -v` ``` [✓] Flutter (Channel stable, v1.17.0, on Mac OS X 10.15.4 19E287, locale de-DE) • Flutter version 1.17.0 at /Applications/flutter • Framework revision e6b34c2b5c (6 days ago), 2020-05-02 11:39:18 -0700 • Engine revision 540786dd51 • Dart version 2.8.1 [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2) • Android SDK at /Users/user/Library/Android/sdk • Platform android-29, build-tools 29.0.2 • Java binary at: /Users/user/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/192.6392135/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 11.3.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 11.3.1, Build version 11C504 • CocoaPods version 1.8.4 [✓] Android Studio (version 3.6) • Android Studio at /Users/user/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/192.6392135/Android Studio.app/Contents • Flutter plugin version 45.1.1 • Dart plugin version 192.7761 • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211) [!] IntelliJ IDEA Ultimate Edition (version 2020.1.1) • IntelliJ at /Users/user/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. • For information about installing plugins, see https://flutter.dev/intellij-setup/#installing-the-plugins [✓] VS Code (version 1.44.2) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.9.1 [!] Connected device ! No devices available ! Doctor found issues in 2 categories. ``` </details> I guess [this line and the following code](https://github.com/flutter/plugins/blob/master/packages/video_player/video_player/ios/Classes/FLTVideoPlayerPlugin.m#L258) should be expanded.
platform-ios,customer: crowd,p: video_player,package,a: error message,has reproducible steps,P2,found in release: 3.10,found in release: 3.11,team-ios,triaged-ios
low
Critical
614,701,019
rust
std::process::Command should probably implement Display
At the moment, `Command` does not implement `Display`. However, it's often useful to display `Command` for the end user, the most common case being that the command failed, and you want to display an error message. If `cmd.to_string()` returned something like `cargo --metadata --manifest-path ./foo/Cargo.toml`, that would be sweet. It's also instructive to compare it with `Path`s. `Path` deliberately doesn't implement display directly, and the reason for that (I think) is not to make people thing about non-text path when displaing paths, but to make it harder to miss-use string formatting for path operations. IE, we don't want to people doing ``` let path = PathBuf::from(format!("{}/{}", base, name)) ``` , as that doesn't handle bag-of-bytes paths. For `Command`, I don't think `to_string()` can be missused in a similar manner, so adding `Display` seems like a clear win to me.
T-libs-api,C-feature-request,A-process
low
Critical
614,713,475
flutter
Changing into using Swift UI instead of Storyboard
<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you have found a bug or if our documentation doesn't have an answer to what you're looking for, then fill our the template below. Please read our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports --> ## Use case <!-- Please tell us the problem you are running into that led to you wanting a new feature. Is your feature request related to a problem? Please give a clear and concise description of what the problem is. Describe alternative solutions you've considered. Is there a package on pub.dev/flutter that already solves this? --> This is not a problem in the meantime but could be in the near future. The problem is that Flutter uses `storyboard` instead of `Swift UI`. As I said not a real problem but could be in the future, better to consider it as a feature :). ## Proposal <!-- Briefly but precisely describe what you would like Flutter to be able to do. Consider attaching images showing what you are imagining. Does this have to be provided by Flutter directly, or can it be provided by a package on pub.dev/flutter? If so, maybe consider implementing and publishing such a package rather than filing a bug. --> The proposal is to switch from using `storyboard` to `Swift UI`. Short but to the point.
c: new feature,platform-ios,tool,t: xcode,c: proposal,P3,team-ios,triaged-ios
low
Critical
614,719,575
rust
cfg_accessible does not respect feature gating
(Since `cfg(version)`'s support for nightly is under discussion, I decided to check how `cfg(accessible)`'s support was going. I realise it is far from done, but since it's possible to write a testcase for this now I thought it would be worth having an issue to make sure it's not forgotten.) ```rust #![feature(cfg_accessible)] #[cfg_accessible(std::fmt::rt::v1)] const _: () = { use std::fmt::rt::v1; }; ``` This code ([playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=8ddc1c43d992b457d16dea7fd8d74ba4)) should cleanly compile as `std::fmt::rt::v1` is gated behind the inactive `fmt_internals` feature, and [`cfg(accessible)` should ignore disabled gated features](https://github.com/rust-lang/rfcs/blob/master/text/2523-cfg-path-version.md#feature-gating). Instead it errors out: ``` error[E0658]: use of unstable library feature 'fmt_internals': internal to format_args! ``` cc #64797
T-lang,requires-nightly,F-cfg_accessible
low
Critical
614,752,688
flutter
[VoiceOver] Confusing "Page -9223xxxxxx of 9223xxxxxx" when double tapping on the status bar time
When a flutter app is running with Voice Over on, selecting the iOS statusbar's time and double tapping causes Voice over to read some weird message. The message is something like: "Page -9223xxxxxx of 9223xxxxxx". I've attached an image with the voice over text being read. The code that reproduces it easily is: ``` import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: SemanticsCardHomePage(), ); } } class SemanticsCardHomePage extends StatelessWidget { @override Widget build(BuildContext context) { SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark); return Scaffold( body: Column( mainAxisAlignment: MainAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.stretch, children: <Widget>[ Padding( padding: const EdgeInsets.all(24.0), child: Text("Hello"), ), Padding( padding: const EdgeInsets.all(24.0), child: Text("World"), ), ], ), ); } }
platform-ios,framework,engine,a: accessibility,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-ios,triaged-ios
low
Major
614,782,074
pytorch
Add helpers to save/load RPC-based models
Currently, there is no convenient ways to save and load RPC models. Applications need to implement this in the user code, e.g., by using RPC to tell all participating works to trigger local save/load. Moreover, we intentionally disabled RRef pickling to avoid messing up reference count, which makes the save/load process even trickier. ## Pitch We should add a helper to save/load RPC-based models. ### Save Similar to distributed optimizer, the helper can potentially: 1. Take a model and recursively walk through all its attributes and extract all RRefs into a set 2. Save all non-RRef attributes locally 3. For RRef attributes, use RPC to recursively trigger save on the remote side 4. For `OwnerRRef` save its `local_value()` and remember all its `UserRRef`s. This also needs to be done recursively as the `local_value` can contain other RRefs. ### Load 1. Load all local parts 2. Use loaded local parts to create `OwnerRRef`s. 3. Use `OwnerRRef` to create all `UserRRef`s. Step 2 and 3 need to be done recursively, as `OwnerRRef.local_value` can contain other RRefs. cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @gqchen @aazzolini @rohan-varma @xush6528 @jjlilley @osalpekar
feature,triaged,module: rpc
low
Minor
614,800,360
TypeScript
TypeScript service: inconsystent behaviour between OpenExternalProject / CloseExternalProject commands on Windows
In WebStorm we use external projects for configs with non-standard names e.g. tsconfig.app.json. The life-cycle is very simple: 1. Open an external project using ``` {"sessionId":1588939608894,"seq":6,"type":"request","command":"openExternalProject","arguments":{"projectFileName":"C:\\BuildAgent\\temp\\buildTmp\\unitTest_useCustomConfig\\unitTest10801416240959877233\\subdir1\\tsconfig.app.json","rootFiles":[{"fileName":"C:\\BuildAgent\\temp\\buildTmp\\unitTest_useCustomConfig\\unitTest10801416240959877233\\subdir1\\tsconfig.app.json"}],"typeAcquisition":{"enable":false}}} ``` after work (when all files are closed) we close the external project: ``` {"sessionId":1588939608894,"seq":23,"type":"request","command":"closeExternalProject","arguments":{"projectFileName":"C:\\BuildAgent\\temp\\buildTmp\\unitTest_useCustomConfig\\unitTest10801416240959877233\\subdir1\\tsconfig.app.json"}} ``` It works fine for Linux / OS X but by some reason it doesn't close the project for Windows. I've checked source code these open / close commands and I've found that the open command doesn't normalize the ``projectFileName`` e.g. ``` //src/server/editorServices.ts:3157 this.externalProjectToConfiguredProjectMap.set(proj.projectFileName, tsConfigFiles) ``` while the close command always use normalized name: ``` //src/server/editorServices.ts:2908 const fileName = toNormalizedPath(uncheckedFileName); const configFiles = this.externalProjectToConfiguredProjectMap.get(fileName); ``` I believe it is a bug and the behavior must be similar for open / close.
Bug
low
Critical
614,825,228
go
x/build/cmd/gerritbot: should determine author from first commit rather not last
When an imported PR has many commits, the Gerrit CL author is seemingly determined by taking the git author of the latest commit in the PR. I think it may be better to take the git author of the first commit rather than last. That way, if an additional contributor adds more commits, the author of the CL would not change. The first commit seems like a more stable source for this information. I noticed this in https://go-review.googlesource.com/c/go/+/216617/47..48 when I pushed a new merge commit to the end of https://github.com/golang/go/pull/36815/commits, and the author of the Gerrit CL changed. /cc @golang/osp-team @griesemer P.S. For bonus points, it can be considered to convert additional authors into "Co-authored-by" lines.
Builders,NeedsInvestigation,FeatureRequest,Community
low
Minor
614,829,934
pytorch
Pybind11 cpp extensions broken with pytorch v1.5.0
## 🐛 Bug Dear community, I am a dev from [KeOps project](https://github.com/getkeops/keops/) building optimized operations written in C++/Cuda that are compatible with pytorch (among others scientific languages). We successfully build python modules compatible with pyTorch since the pyTorch v0.2... But the last v1.5 broke our modules with a runtime error complaining about [missing symbols](https://github.com/getkeops/keops/issues/59). To simplify the analysis you may find below a minimal working example that builds a module through pybind11n the spirit of [pytorch doc](https://pytorch.org/tutorials/advanced/cpp_frontend.html#writing-a-basic-application). It should output a file `test_module.cpython-38-x86_64-linux-gnu.so` that can be imported from python. This module works well when building with pytorch 1.4 but raised a runtime error when building with pytorch v1.5. ## To Reproduce Assuming pyTorch and pybind11 installed (e.g. through conda). There are 2 files `module_test.cpp` contains ```cpp #include <torch/extension.h> #include <pybind11/pybind11.h> // Main function at::Tensor foo(int s) { return torch::eye(s); } // PyBind11 entry point PYBIND11_MODULE(test_module, m) { m.def("foo", &foo, "Entry point to test module"); } ``` and `CMakeList.txt` contains ``` project(test_module LANGUAGES CXX) find_package(Torch REQUIRED) find_package(pybind11 REQUIRED) pybind11_add_module(test_module ${CMAKE_CURRENT_SOURCE_DIR}/test_module.cpp) target_link_libraries(test_module PUBLIC "${TORCH_LIBRARIES}") ``` it can be compile with ```bash $ mkdir build $ cd build $ cmake -DCMAKE_PREFIX_PATH="/home/bcharlier/.conda/envs/keops/lib/python3.8/site-packages/torch/" .. && make ``` and run with (note that `torch` is imported first) ``` $ python -c "import torch; print(torch.__version__); import test_module; print(test_module.foo(3))" 1.5.0 Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: /home/bcharlier/src/test_module/build/test_module.cpython-38-x86_64-linux-gnu.so: undefined symbol: _Z16THPVariable_WrapN2at6TensorE ``` The missing symbol is not exactly the same when [building a module with the keops library](https://github.com/getkeops/keops/issues/59)... But I guess this is irrelevant. ## Expected behavior It works fine when compiling with pytorch v1.4 ```bash $ cmake -DCMAKE_PREFIX_PATH="/home/bcharlier/.conda/envs/keops_torch14/lib/python3.8/site-packages/torch/" .. && make $ python -c "import torch; print(torch.__version__); import test_module; print(test_module.foo(3))" 1.4.0 tensor([[1., 0., 0.], [0., 1., 0.], [0., 0., 1.]]) ``` ## Environment The bug was reported by various users running on linux. Here is my config: ``` Collecting environment information... PyTorch version: 1.5.0 Is debug build: No CUDA used to build PyTorch: 10.2 OS: Arch Linux GCC version: (Arch Linux 9.3.0-1) 9.3.0 CMake version: version 3.14.0 Python version: 3.8 Is CUDA available: Yes CUDA runtime version: 10.2.89 GPU models and configuration: GPU 0: Quadro T2000 Nvidia driver version: 440.82 cuDNN version: /usr/lib/libcudnn.so.7.6.5 Versions of relevant libraries: [pip3] numpy==1.18.4 [conda] blas 1.0 mkl [conda] cudatoolkit 10.2.89 hfd86e86_1 [conda] mkl 2020.0 166 [conda] mkl-service 2.3.0 py38he904b0f_0 [conda] mkl_fft 1.0.15 py38ha843d7b_0 [conda] mkl_random 1.1.0 py38h962f231_0 [conda] numpy 1.18.1 py38h4f9e942_0 [conda] numpy-base 1.18.1 py38hde5b4d6_1 [conda] pytorch 1.5.0 py3.8_cuda10.2.89_cudnn7.6.5_0 pytorch ``` cc @ezyang @gchanan @zou3519 @malfet @yf225 @glaringlee
high priority,module: build,module: docs,module: cpp,triaged,module: regression
medium
Critical
614,832,280
flutter
[gen_l10n] Exposing tool's options when using l10n.yaml to configure
When running `gen_l10n` from the command line, there are descriptions for each option that are available to the user. When using `l10n.yaml` to configure and use the gen_l10n tool, we should still have a good way to share the list of available options with users, as well as descriptions for how to use the tool.
tool,a: internationalization,c: proposal,P3,team-tool,triaged-tool
medium
Major
614,849,729
godot
Mono build StackOverflowException when opening project in editor
**Godot version:** Godot_v3.2.1-stable_mono_win64.exe **OS/device including version:** Windows 8.1 **Issue description:** Godot editor crashes **Steps to reproduce:** Open a project to edit **What happened** I was editing C# script. Saved it and clicked on Build in Godot editor and it crashed. Tried to open my project but it closes every time while opening. Other projects are opening fine. Contents of projects log.txt file: > Godot Engine v3.2.1.stable.mono.official - https://godotengine.org > OpenGL ES 3.0 Renderer: GeForce 840M/PCIe/SSE2 > > Mono: Logfile is: C:\Users\Username\AppData\Roaming/Godot/mono/mono_logs/2020_05_08 19.08.42 (9340).txt > **WARNING**: EditorSettings::_get - Property not found: mono/editor/editor_path_optional > At: editor/editor_settings.cpp:151:_get() - EditorSettings::_get - Property not found: mono/editor/editor_path_optional > **ERROR**: System.StackOverflowException: The requested operation caused a stack overflow. > At: modules/mono/mono_gd/gd_mono_utils.cpp:357:debug_send_unhandled_exception_error() - System.StackOverflowException: The requested operation caused a stack overflow. > **ERROR**: System.StackOverflowException: The requested operation caused a stack overflow. > At: modules/mono/mono_gd/gd_mono_utils.cpp:357:debug_send_unhandled_exception_error() - System.StackOverflowException: The requested operation caused a stack overflow. > **ERROR**: System.StackOverflowException: The requested operation caused a stack overflow. > At: modules/mono/mono_gd/gd_mono_utils.cpp:357:debug_send_unhandled_exception_error() - System.StackOverflowException: The requested operation caused a stack overflow. **Here is contents of [2020_05_08 19.08.42 (9340).txt](https://pastebin.com/xkaDVkqW) file.**
bug,topic:editor,topic:dotnet,crash
low
Critical
614,851,278
neovim
cursor shape in st
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: ``` NVIM v0.4.3 Build type: Release LuaJIT 2.1.0-beta3 Compilation: /usr/bin/cc -g -O2 -fdebug-prefix-map=/build/neovim-U5Ub0w/neovim-0.4.3=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=1 -DDISABLE_LOG -Wdate-time -D_FORTIFY_SOURCE=1 -O2 -DNDEBUG -DMIN_LOG_LEVEL=3 -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wmissing-prototypes -Wimplicit-fallthrough -Wvla -fstack-protector-strong -fdiagnostics-color=always -DINCLUDE_GENERATED_DECLARATIONS -D_GNU_SOURCE -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -I/build/neovim-U5Ub0w/neovim-0.4.3/build/config -I/build/neovim-U5Ub0w/neovim-0.4.3/src -I/usr/include -I/usr/include/lua5.1 -I/build/neovim-U5Ub0w/neovim-0.4.3/build/src/nvim/auto -I/build/neovim-U5Ub0w/neovim-0.4.3/build/include Скомпилирован [email protected] Features: +acl +iconv +tui See ":help feature-compile" общесистемный файл vimrc: "$VIM/sysinit.vim" значение $VIM по умолчанию: "/usr/share/nvim" Run :checkhealth for more info ``` - Operating system/version: `Ubuntu 18.04` - Terminal name/version: `st 0.8.3` - `$TERM`: `st-256color` Terminfo entry is installed and has required capabilities. Output of `infocmp -1x | grep "Se\|Ss"`: ``` Se=\E[2 q, Ss=\E[%p1%d q, ``` `nvim -u NORC -V3` has this: ``` Extended string capabilities: Ms = <Esc>]52;%p1%s;%p2%s<C-G> Se = <Esc>[2 q Ss = <Esc>[%p1%d q rmxx = <Esc>[29m smxx = <Esc>[9m ext.get_bg = <Esc>]11;?<C-G> Ss = <Esc>]50;CursorShape=%?%p1%{3}%<%t%{0}%e%p1%{5}%<%t%{2}%e%{1}%;%d;BlinkingCursorEnabled=%?%p1%{1}%<%t%{1}%e%p1%{1}%&%;%d<C-G> Se = <Esc>]50;<C-G> ext.resize_screen = <Esc>[8;%p1%d;%p2%dt setrgbf = <Esc>[38;2;%p1%d;%p2%d;%p3%dm setrgbb = <Esc>[48;2;%p1%d;%p2%d;%p3%dm ext.save_title = <Esc>[22;0;0t ext.restore_title = <Esc>[23;0;0t ext.enable_lr_margin = <Esc>[?69h ext.disable_lr_margin = <Esc>[?69l ext.enable_bpaste = <Esc>[?2004h ext.disable_bpaste = <Esc>[?2004l ext.enable_focus = <Esc>[?1004h ext.disable_focus = <Esc>[?1004l ext.enable_mouse = <Esc>[?1002h<Esc>[?1006h ext.disable_mouse = <Esc>[?1002l<Esc>[?1006l ``` Notice how Se and Ss appear on the list twice. According to terminal log, neovim actually writes ESC]50 (the wrong one). `tput Ss 6` works. ### Steps to reproduce using `nvim -u NORC` ``` nvim -u NORC i ``` ### Actual behaviour Cursor remains in the block shape. ### Expected behaviour Cursor takes the shape of a bar.
bug,tui,complexity:low
low
Critical
614,867,051
go
image/gif: "not enough image data" on gif that works in browser
There are images which browsers can render but which image/gif chokes on. The following runs successfully for most gifs: ``` import ( "fmt" "image/gif" "os" ) const example = "sample.gif" func main() { fmt.Println("attempting to read gif") file, err := os.Open(example) if err != nil { fmt.Println("Can't open this file:", err) return } img, err := gif.Decode(file) if err != nil { fmt.Println("Can't decode this as a gif:", err) return } _ = img.Bounds() fmt.Println("gif decoded") } ``` But when trying to run it on a particular gif (below), this happens: $ go run main.go ``` attempting to read gif Can't decode this as a gif: gif: not enough image data ``` Here’s the offending gif ![girl](https://user-images.githubusercontent.com/12746710/81430635-5412ea80-9192-11ea-9a62-80208204bf45.gif)
NeedsInvestigation
low
Major
614,873,283
TypeScript
New "persistentDocumentation" and removeComments
<!-- 🚨 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 FAQ, especially the "Common Feature Requests" section: https://github.com/Microsoft/TypeScript/wiki/FAQ --> ## Search Terms <!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> removeComments documentation comments removed persistentDocumentation ## Suggestion <!-- A summary of what you'd like to see added or changed --> In the current version of TypeScript, when `removeComments` is set to `true`, it removes all comments except copy-right header comments beginning with `/*!`. This is very useful, but I think it can be refined. ### My actual suggestion In my JavaScript editors, comments beginning with `/**` are treated as a kind of JSDoc comment, which describes the function directly below it. If `removeComments` is set to `true`, then it also removes these documentation comments which can be VERY useful. So, I want to propose a change to this setting. Everything says the same, but when `"removeComments": true` is combined with something like `"persistentDocumentation": true`, the compiler removes all comments except for comments beginning with either `/*!` OR `/**`. ## Use Cases <!-- What do you want to use this for? What shortcomings exist with current approaches? --> My current approach includes just leaving `removeComments` off. This is not ideal, as there are many comments that are for devs and devs only, but there are also many JS documentation comments that are meant for the person using the library. With this suggestion, no changes would be made to any current compiler settings. The user must know of this feature and change their compiler settings. This feature would only benefit the TS community. ## Examples (using ES6 export) <!-- Show how this would be used and what the behavior would be --> ```typescript /*! Super-awesome legal statement */ // The adding function /** * Returns the sum of two addends * @param number1 The first addend * @param number2 The second addend */ export function add(number1: number, number2: number): number { return number1 + number2; // Return the number } /* Continue to build out this library. Future additions: Subtraction Multiplication Exponents Factorials */ ``` We all know what just `removeComments` would do, so the same but with `persistentDocumentation`: ### The main file, compiled ```javascript /*! Super-awesome legal statement */ export function add(number1, number2) { return number1 + number2; } ``` ### The .d.ts file ```typescript /*! Super-awesome legal statement */ /** * Returns the sum of two addends * @param number1 The first addend * @param number2 The second addend */ export function add(number1: number, number2: number): number; ``` Very handy indeed! ## An alternative Instead of this, which would be ideal, something could be set up with the ts-to-js map file that can be generated, which maps the documentation comments to the compiled js file, but as mentioned, this is... less than ideal. Also, I can imagine it would be harder to code. I just wanted to throw this out there just in case. ## Checklist My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code * [x] This wouldn't change the runtime behavior of existing JavaScript code * [x] This could be implemented without emitting different JS based on the types of the expressions * [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.) * [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
Suggestion,Awaiting More Feedback
low
Critical
614,885,924
flutter
[web] Can't place breakpoint to debug framework tests
Repro: flutter run -d chrome -t test/painting/image_provider_test.dart --start-paused Able to put breakpoint in web engine but not in the test itself.
tool,a: debugging,platform-web,P3,team-web,triaged-web
low
Critical
614,903,394
youtube-dl
Site support request for mixdrop.to
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl: - First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2020.05.08. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED. - Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser. - Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights. - Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates. - Finally, put x into all relevant boxes (like this [x]) --> - [X] I'm reporting a new site support request - [X] I've verified that I'm running youtube-dl version **2020.05.08** - [X] I've checked that all provided URLs are alive and playable in a browser - [X] I've checked that none of provided URLs violate any copyrights - [X] I've searched the bugtracker for similar site support requests including closed ones ## Example URLs <!-- Provide all kinds of example URLs support for which should be included. Replace following example URLs by yours. --> - Single video: https://mixdrop.to/e/8418pr3et64g38o - Single video: https://mixdrop.to/e/j9q1pn1wtm9vq3 ## Description <!-- Provide any additional information. If work on your issue requires account credentials please provide them or explain how one can obtain them. --> Add support for it please.
site-support-request
low
Critical
614,904,915
go
x/build/cmd/gopherbot: for repos not mirrored to GitHub, close issues listed under "Fixes" when CL is submitted (to an active branch)
I recently sent a series of CLs (ending with https://golang.org/cl/232742) to fix a gollvm bug, https://github.com/golang/go/issues/38728. Gopherbot noticed the CLs as they were put up, adding "mentioned" notices to the issue: ` Change https://golang.org/cl/232742 mentions this issue: gollvm: add workaround for hard-wired cf-protection=branch ` however when the CLs were merged, it didn't take any actions. In particular the bot didn't annotate the issue with the merge, and didn't auto-close the bug. Wondering if there is something I did wrong with the CLs (I used the usual "Updates/Fixes" notation), or if there is something else gumming up the works? Any pointers appreciated. Thanks.
Builders,NeedsFix,FeatureRequest
low
Critical
614,909,885
pytorch
test_cpp_warnings_have_python_context_cpu fails under some build configurations
On my local DEBUG build I have ``` ====================================================================== FAIL: test_cpp_warnings_have_python_context_cpu (__main__.TestTorchDeviceTypeCPU) ---------------------------------------------------------------------- Traceback (most recent call last): File "/data/users/ezyang/pytorch-tmp/torch/testing/_internal/common_device_type.py", line 210, in instantiated_test return test(self, device_arg) File "test/test_torch.py", line 5943, in test_cpp_warnings_have_python_context self.assertTrue(re.search(s, str(warning.message)) is not None) AssertionError: False is not true ``` This is because two warnings are emitted: ``` [<warnings.WarningMessage object at 0x7f437bebc780>, <warnings.WarningMessage object at 0x7f437c51d780>] ``` The first warning is: ``` pybind11-bound class 'torch.distributed.rpc.RRef' is using an old-style placement-new '__setstate__' which has been deprecated. See the upgrade guide in pybind11's docs. This message is only visible when compiled in debug mode. ``` cc @mruberry
module: tests,triaged
low
Critical
614,912,381
godot
Container can't be shrunk past children when clip content is enabled
**Godot version:** 3.2.1 **OS/device including version:** Windows 10 Pro Education 64 bit **Issue description:** Containers like VBoxContainer can't be shunk down to clip its content when clip content is enabled this makes the clip content option useless on containers since there will never be anything to clip **Steps to reproduce:** - Add a VBoxContainer - Add Two buttons to it - Enable Clip content on the VBoxContainer - Try to shrink the VBoxContainer to only show 1 button **Minimal reproduction project:** [Container Clip Bug.zip](https://github.com/godotengine/godot/files/4600926/Container.Clip.Bug.zip)
discussion,topic:gui
low
Critical
614,917,358
pytorch
TorchScript to support == None, != None
## 🐛 Bug We do support `is None`, `is not None` in TorchScript. We should also allow `== None` and `!= None` because unless the comparison operator is overwritten for the left hand side they behave equivalently. Note that PEP8 recommends `is` version, but both work in python (https://docs.quantifiedcode.com/python-anti-patterns/readability/comparison_to_none.html) ## To Reproduce ```python import torch from typing import Optional @torch.jit.script def bar(x : Optional[torch.Tensor]): if x != None: x = torch.tensor([1,2,3]) return x bar(None) ``` produces ``` RuntimeError: Arguments for call are not valid. The following variants are available: aten::ne.Tensor(Tensor self, Tensor other) -> (Tensor): Expected a value of type 'Tensor' for argument 'self' but instead found type 'Optional[Tensor]'. ... ``` ## Expected behavior Should have the same behavior as `is None`. cc @suo
oncall: jit,triaged
low
Critical
614,925,627
rust
const validation hides sibling validation errors
If a const validation finds an invalid part of a constant, it reports that one error and bails out, this means that ```rust #![feature(const_transmute)] static FOO: (&bool, &bool) = unsafe { std::mem::transmute((&42u8, &43u8)) }; ``` gives us just ``` type validation failed: encountered 0x2b at .1.<deref>, but expected a boolean ``` While it would be trivial to change https://github.com/rust-lang/rust/blob/29630cea47506125fb0b94318104b1b93a59b052/src/librustc_mir/const_eval/eval_queries.rs#L192 to continue after errors, that would just give us more of these verbose diagnostics. Furthermore ```rust #![feature(const_transmute)] static FOO: (&i32, &i32) = unsafe { std::mem::transmute((42usize, 43usize)) }; ``` gives us just ``` type validation failed: encountered a dangling reference (created from integer) at .0 ``` since we bail out early in https://github.com/rust-lang/rust/blob/29630cea47506125fb0b94318104b1b93a59b052/src/librustc_mir/interpret/visitor.rs#L188 we never see errors in the other fields. Thinking about different ways to report better diagnostics, maybe we could report something as an inline-expansion similar to what we print when we print constants. I don't want to repeat the const printing infrastructure, we could just replace all valid fields with <VALID>, but still report errors inline: ``` type validation failed: ( &<expected boolean, got 0x2a>, &<expected boolean, got 0x2b>, ) ``` So here's a complex example of how this could look like: ``` type validation failed: MyStruct { field_a: <VALID>, field_b: [ TupleStruct(<expected boolean, got 0x3>), <VALID>, <VALID>, ], field_c: Enum::Variant { meh: <dangling reference (created from integer)>, }, } ``` I haven't deeply thought about implemenation details of such a scheme, but the `mir::interpret::visitor` can definitely be extended to stop returning `Result` in all functions, and instead have a custom `enum`: ```rust enum ValidationResult { Valid, Invalid(Error), InvalidStruct { name: Symbol, fields: HashMap<FieldName, ValidationResult>, } InvalidTuple(Vec<ValidationResult>), // ... or something similar } ``` cc @rust-lang/wg-const-eval @rust-lang/wg-diagnostics
C-enhancement,A-diagnostics,T-compiler,A-const-eval
low
Critical
614,926,614
pytorch
[JIT] Aliased Python references to script::Object escape IValue reference counting
Test class: https://github.com/pytorch/pytorch/pull/38141 Test script: ``` import torch class AliasTest(torch.nn.Module): def __init__(self): super().__init__() self.cpp = torch.classes._TorchScriptTesting._AliasTester([300, 400]) self.alias = [self.cpp] m = torch.jit.script(AliasTest()) torch.jit.save(m, 'test.zip') ``` After you run this script, looking at the zip archive indicates that the serialized tensor was written out redundantly: ``` $ unzip -v test.zip Archive: test.zip Length Method Size Cmpr Date Time CRC-32 Name -------- ------ ------- ---- ---------- ----- -------- ---- 2 Stored 2 0% 00-00-1980 00:00 55679ed1 test/version *480000 Stored 480000 0% 00-00-1980 00:00 611fb420 test/data/0* *480000 Stored 480000 0% 00-00-1980 00:00 611fb420 test/data/1* 456 Stored 456 0% 00-00-1980 00:00 937a9532 test/data.pkl 203 Defl:N 120 41% 00-00-1980 00:00 1b463388 test/code/__torch__.py 28 Stored 28 0% 00-00-1980 00:00 accc6c4e test/code/__torch__.py.debug_pkl 0 Stored 0 0% 00-00-1980 00:00 00000000 test/code/__torch__/torch/classes/_TorchScriptTesting.py 6 Stored 6 0% 00-00-1980 00:00 816d0907 test/code/__torch__/torch/classes/_TorchScriptTesting.py.debug_pkl 4 Stored 4 0% 00-00-1980 00:00 57092f6d test/constants.pkl -------- ------- --- ------- 960699 960616 0% 9 files ``` This is because of the two references to the `script::Object` in the module. Since these references don't bump the use_count for the underlying IValue, the memoization check in the pickler fails: https://github.com/pytorch/pytorch/blob/ff9a809ccd5bd61f18dfaa04d41b681e600b3a02/torch/csrc/jit/serialization/pickler.cpp#L186 As we're serializing AliasTest, we write serialize the two references to self.cpp twice as we traverse the attributes. Essentially, the fact that we have this indirection via `script::Object` on top of the IValue means we're missing references in a way that is usually benign. However, when used as an optimization in the pickler in this case, this is causing issues by making objects that would have been memoized get serialized redundantly cc @suo
oncall: jit,triaged
low
Critical
614,978,165
go
proposal: cmd/go: configurable extra vcs paths
Go module vcs identification is currently based on an array of regular expressions (vcsPaths) for known hosting platforms. https://github.com/golang/go/blob/98d20fb23551a7ab900fcfe9d25fd9cb6a98a07f/src/cmd/go/internal/get/vcs.go#L1026-L1083 There is a generic fallback regular expression that requires the vcs name be included as a suffix (.git) in the module path. Otherwise Go falls back to a dynamic check that fails if the server doesn't allow HTTPS access or else has non-standard connection/authentication requirements associated with HTTPS access that can't be negotiated. https://github.com/golang/go/blob/98d20fb23551a7ab900fcfe9d25fd9cb6a98a07f/src/cmd/go/internal/get/vcs.go#L788-L800 This proposal is to add support for cmd/go configuration to provide extra vcsPaths for use in mapping servers to vcs. The goal is to provide more flexibility for using go modules with smaller/internal repository servers while adding minimal complexity to the go command. By providing users with an option to specify the vcs for a module Go can delegate all further module download operations to the relevant client (git) and bypass the dynamic fallback function that is problematic for SSH-only and some HTTPS repository server deployments. ### Example: Current behavior Module: some.internal.com/agroup/depmod VCS: Git (prefer ssh) #### Attempt 1 ``` git config --global url."[email protected]:".insteadOf "https://some.internal.com" export GOPRIVATE="some.internal.com" # if applicable, add the following to $HOME/.netrc # machine some.internal.com login YOU password APIKEY go get some.internal.com/agroup/depmod ``` - repo is not identified as git through vcsPaths - dynamic fallback fails with "[unrecognized import path](https://github.com/golang/go/blob/98d20fb23551a7ab900fcfe9d25fd9cb6a98a07f/src/cmd/go/internal/get/vcs.go#L665)...[https fetch](https://github.com/golang/go/blob/98d20fb23551a7ab900fcfe9d25fd9cb6a98a07f/src/cmd/go/internal/get/vcs.go#L795-L799)" if the server only allows SSH access or otherwise uses a more custom HTTPS access/authentication implementation #### Attempt 2 ``` git config --global url."[email protected]:".insteadOf "https://some.internal.com" export GOPRIVATE="some.internal.com" # add login credentials to $HOME/.netrc, if applicable go get some.internal.com/agroup/depmod.git ``` - repo is identified as git through vcsPaths - all download requests are delegated to git client, which is configured to use SSH as above -> download succeeds - parsing fails unless module path also includes .git suffix #### Attempt 3 (hack) ``` # configure git to map fake github.com/some-group prefix to [email protected] git config --global url."[email protected]:".insteadOf "https://github.com/some-group" export GOPRIVATE="github.com/some*" # module path includes fake github.com/some-group prefix go get github.com/some-group/depmod ``` - repo is identified as git through vcsPaths - download requests delegated to git client -> download succeeds - parsing succeeds as long as module path is consistent but this requires using a fake path prefix ### Example: Proposed ``` git config --global url."[email protected]:".insteadOf "https://some.internal.com" export GOPRIVATE="some.internal.com" export GOVCSEXT="root:some.internal.com:vcs:git" go get some.internal.com/agroup/depmod ``` - repo is identified as git through vcsPaths - download requests delegated to git client -> download succeeds - no module path mismatch -> parsing succeeds #### Alternatives Local go get config - See https://github.com/golang/go/issues/30304#issuecomment-465134045 VCS as protocol prefix in GOPRIVATE - `export GOPRIVATE="git://some.internal.com"`
Proposal,Proposal-Hold,modules
medium
Major
614,995,354
excalidraw
title tooltips are not discoverable enough
Someone asked me what the lock icon did and after I explained they asked me to add a tooltip. We already have one implemented with `title` html attribute which is taking a second to show up. We implemented a custom tooltip for the badge icon. We should think about using it for all the places where we use title.
enhancement
low
Minor
614,998,688
pytorch
Python script name with "profile.py" will run twice
## 🐛 Bug Python script name with "profile.py" will run twice ## To Reproduce 1. (optional) Create an empty folder outside pytorch source code foder. 2. Create a new file with name "profile.py". 3. Add following code to the file ```python import torch print(torch.__version__) print("hello world") ``` 4. Run with `python profile.py` ## Expected behavior Run once? ## Environment This behavior exists when pytorch is compiled from source, ~~or installed with pip~~. Update: it seems like this only affects pytorch built from source. ## Additional context @zasdfgbnm
needs reproduction,triaged
low
Critical
615,023,897
flutter
[proposal] Make "value" required for "DropdownMenuItem"
`DropdownButtonFormField` is not showing the value provided into `value` param. Facing this on the latest Flutter version (`1.17.0`) ## Steps to Reproduce 1. Run `flutter create bug`. 2. Run the code bellow 3. Try to select a item in the dropdown field... **Expected results:** The selected value should be visible to the user **Actual results:** The first value is displayed instead ## Code ``` class MyHomePage extends StatefulWidget { @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { String _i; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('Página Inicial')), body: Column( children: <Widget>[ DropdownButtonFormField<String>( value: _i, onChanged: (i) { setState(() { _i = i; }); }, items: List.generate( 10, (index) => DropdownMenuItem( child: Text('$index'), ), ), ) ], ), ); } } ``` </details>
c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design
low
Critical
615,039,681
pytorch
OneCycleLR raises "Tried to step { step_num + 1 } times" after the value is more than expected.
I am not sure but maybe it is better to remove +1 in the print statement because it rises only when num_step is greater than total_steps, therefore, debugging without +1 will be a bit clearer. ``` if step_num > self.total_steps: raise ValueError("Tried to step {} times. The specified number of total steps is {}" .format(step_num + 1, self.total_steps)) ```
triaged
low
Critical
615,049,518
flutter
IOSPlatformView: document that the [FlutterPlatformView view] should not return a new instance every time its called
The `view` API is declared here: https://github.com/flutter/engine/blob/master/shell/platform/darwin/ios/framework/Headers/FlutterPlatformViews.h#L22 After we implemented the unobstructed platform view. We need the embedded view to be cached. As a result, the platform view implementer must not create a new instance of the platform view every frame. It was never a good practice anyway as it reduces performance. One example of good implementation of platform view would be: ```swift class UIRectView: NSObject, FlutterPlatformView { let embedded_view: UIView init(_ frame: CGRect) { embedded_view = UIView(frame: frame) embedded_view.backgroundColor = UIColor.cyan } func view() -> UIView { return embedded_view } } ``` A bad example would be: ```swift class UIRectView: NSObject, FlutterPlatformView { func view() -> UIView { let embedded_view = UIView(frame: frame) embedded_view.backgroundColor = UIColor.cyan return embedded_view; } } ``` We should document the same in the public API.
platform-ios,framework,d: api docs,a: platform-views,P3,team-ios,triaged-ios
low
Major
615,071,345
TypeScript
Decorator mixin intellisense working improperly
<!-- 🚨 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 before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ Please fill in the *entire* template below. --> <!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 3.8.3 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** Intellisense Decorator Mixin Interface **Code** ```ts // A *self-contained* demonstration of the problem follows... // Test this by running `tsc` on the command-line, rather than through another build tool such as Gulp, Webpack, etc. class AccountSchema { // Implementation } abstract class AccountLoginSchema { username: string; password: string; getTokenID() { // Implementation } } interface CustomerSchema extends AccountLoginSchema {} @Mixin(AccountLoginSchema) class CustomerSchema extends AccountSchema { constructor() { super(); // Intellisense showing up this.getTokenID(); } // Intellisense not showing up getToken } ``` **Expected behavior:** 1) Invoking method, 2) accessing property, 3) redefining method implementation should display intellisense. **Actual behavior:** 1 and 2 works, however 3 doesn't display intellisense properly. **Playground Link:** <!-- A link to a TypeScript Playground "Share" link which demonstrates this behavior --> https://www.typescriptlang.org/play?ssl=25&ssc=68&pln=25&pc=8#code/MYGwhgzhAECCzAPYFcB2AXAysAFgUwFsxoBvAKGkugHproBJAgBxELwzHQEtFUyBfMmVrQAKgE8meAOaJEEPNAi5CxCImhdpqRACdFyBbtRgCisKgAm0JpAgB3PdZ3poAIzxdU0zc1ZmMPGsvaCRUCHRdZGB0PTIwNwjdMBjQ8Cg4BBQMABlEaS9sfCJSCioRAAEmXUQmAAoSfQBHZC59SwAuaEjkPH4ASjLKJmQ3EC5gaEM8Y1M8LqSvaQBuIZtR8cnbKEddTqVIpdWqaGk8dFFEAGt2egAROv6Fw+9Sk5ORRhY2Dm5eNZO+nQyGM0AARGDjlRBIIyF50DMAGYpRQAYUMsTMuiKqmgeAAHgirDB4Eg0Og8gVUDiSiRBCJYFBkGZujhOKzFMAMYgsUoVCU2TBiAQuPiQpY8EhkrFdGRQHZoOiIjyZjTiASiZYSVlyWq3lQwklojLHvr3kpkFJdI8oeb0DguBAAHTTWYsgC84LATG+kIBVHtjqdZwu11ud2gntN7oAfODAzBdlcIH6TrCPnR6IEQOMFOFFPh9NBLIg8BBUAByVxJ6D2fCoTSuCA4FAgawQLzARRcat6ZNrEQh0QCMhAA **Related Issues:** <!-- Did you find other bugs that looked similar? -->
Needs Investigation
low
Critical
615,073,063
pytorch
valgrind says libtorch has memory leak
linux c++ app with libtorch valgrind report that at::native::mm_cpu_out in libtorch_cpu.so cause "possibly loss" in memory leak checking.
module: memory usage,triaged
low
Minor
615,074,774
PowerToys
[KBM] Visualizer and Tester
# Summary of the new feature/enhancement <!-- A clear and concise description of what the problem is that the new feature would solve. Describe why and how a user would use this new functionality (if applicable). --> A keyboard manager can't be "perfect" and "complete" without an actual visualization for the new remapped keyboard. With a fluent UI it would be cool to have something which would show you how your keyboard layout looks like after remappings keys, and even better something where you can press your keys and see animation like the On-Screen Keyboard. ![image](https://user-images.githubusercontent.com/32061677/81461906-cc15ec00-9163-11ea-979f-5292315ac3d8.png) If you swapped your Win and Ctrl keys, the keyboard visualizer extension would appear like that, and whenever you click your keys that would highlight. The same could be done for remapping shortcuts, so users can see exactly what happens when they remap their keys and shortcuts. Having a visualization makes it much easier for users to remember and understand their mappings as well as they could have the opportunity to use a tool which swallows all keyboard input to test out their new remappings. This could start out as an English keyboard feature since it might be hard to handle all languages. It is a known thing that even for english keyboards, the layout varies a bit from keyboard to keyboard. To solve that we could have a default layout and the users can move the keys around to make it appear like their physical keyboard pre-remap. # Proposed technical implementation details (optional) <!-- A clear and concise description of what you want to happen. --> Everything mentioned above is technically possible, it just mostly needs UI development. For just having a tool which swallows all your input we already have the Type Key interface on KBM, so the backend will be exactly the same as that, except instead of displaying the key name, we would highlight the key on the keyboard (at the end of the day everything is just key codes internally). For the UI to support keyboard with different layouts we would need to have draggable blocks which would be keys, and they would start in a default keyboard layout. The user would then be able to move the keys around to look more like there own keyboard (sort of reminiscent of the FancyZones editor). For highlighting the key and showing the remapped versions of keyboard the above layout doesnt really matter since we deal with key codes at the end of the day. It just makes the visualization for the user better and improves the user experience a ton.
Idea-Enhancement,Product-Keyboard Shortcut Manager,Area-User Interface
low
Minor
615,076,328
PowerToys
Teaching Tips in PowerToys
# Summary of the new feature/enhancement <!-- A clear and concise description of what the problem is that the new feature would solve. Describe why and how a user would use this new functionality (if applicable). --> PowerToys has many tools which have complicated terminology or certain "not-straightforward" concepts. Most of these things can become clear to the user by taking a look at the Readme, but going to the current "Module overview" link isn't the first thing a user would do if they get frustrated with some terminology or understanding how to use the tool. They might just uninstall instead. Inspired by the fact that KBM has complicated terminology and users need to know what are valid shortcuts and things like that, having warnings is not enough, and certain things will have to be clarified using the Readme. With the migration to Fluent UI, what if instead of expecting the users to go to the readme when they are facing issues we use WinUI teaching tips instead by detecting when users are stuck on something. The teaching tip could either just provide more information, or an easier more noticeable solution would be to redirect the user to the readme. Imagine the text in the teaching tip in the image below as "_Confused with the terminology? Check out the documentation to clear things up._" which would link to the Readme. ![image](https://user-images.githubusercontent.com/32061677/81462222-c9b49180-9165-11ea-82cb-b2629319b2d2.png) This idea actually reminds me a lot of PaperClip. It could also have some buttons for Dismiss, or Never Show Again so that a well versed user doesn't need to deal with annoying pop ups. # Proposed technical implementation details (optional) <!-- A clear and concise description of what you want to happen. --> For Keyboard Manager a scenario that can be implemented easily would be that a user tries remapping shortcuts and encounters say "10" warnings or they have stayed on the window for X minutes without getting a successful remap, we can show a little teaching tip on the side which would redirect the user to the readme. Teaching tips as shown in the screenshot earlier are a WinUI feature which means implementation should be straight forward too.
Idea-Enhancement,Area-User Interface,Area-OOBE
low
Minor
615,092,897
flutter
Reusing the same type of items in the sliver can bring better performance
## Use case &nbsp;&nbsp;&nbsp;&nbsp;Our app uses the flutter list component sliver to display the results on the search results page. The feature of this page is an infinitely long list. There are a total of 5 kinds of cards, and one of them will appear in a large number, with a probability of about 80%. &nbsp;&nbsp;&nbsp;&nbsp;This means that when the user swipes down, the newly appeared card is likely to be the same kind of card that has appeared before. The tree structure of the nodes of the same card is generally consistent except that individual leaf nodes may be inconsistent. &nbsp;&nbsp;&nbsp;&nbsp;We noticed that in sliver, there is a layer of origin cache mechanism "keepAlive", but the problem with keepAlive is that it does not reuse the card created for the first time, only the card that slides out for the second time can be reused . And the key it uses is "index", which makes it impossible to reuse cards of the same type but in different positions. &nbsp;&nbsp;&nbsp;&nbsp;In the case that the card does not meet the keepAlive, the sliver container will remove the slide-out card and re-create the slide-in card. Among them, we have not found any other effective caching mechanism to cached and reuse cards with same type( which means they have basically the same tree structure). Each time dettach and create will bring additional overhead. ## Proposal &nbsp;&nbsp;&nbsp;&nbsp;We try to add a layer of cache before the updateChild method is called in the removeChild and createChild methods of sliver. In removeChild, we will put the removed Element into the cache with the card type as the key, and when createChild, we first go to the cache to look for the cached Element whose key is the same card type, and then updateChild is called. Because the tree structure of the same card is basically the same, so it is highly likely that child.update will be called at the end without going to infalte to recreate a new one. &nbsp;&nbsp;&nbsp;&nbsp;The schematic is shown below ![image](https://user-images.githubusercontent.com/8213373/81463979-9e2ab900-91f0-11ea-968f-b76e1963b274.png) &nbsp;&nbsp;&nbsp;&nbsp;And we conducted automated tests on both before and after optimization on the local model (HUAWEI P9), and the results are as follows: ![优化效果](https://user-images.githubusercontent.com/8213373/81464466-a127a880-91f4-11ea-9cf9-59cac716d0f3.png)
c: new feature,framework,f: material design,f: scrolling,c: proposal,perf: speed,P3,team-design,triaged-design
low
Major
615,104,136
pytorch
Feature Request: Log uniform candidate sampler
Analogous to TensorFlow's https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/log-uniform-candidate-sampler. This was first proposed in https://github.com/pytorch/pytorch/issues/3718. cc @albanD @mruberry
feature,module: nn,triaged
low
Minor
615,104,442
pytorch
Feature Request: Sampled softmax loss
Analogous to TensorFlow's https://www.tensorflow.org/api_docs/python/tf/nn/sampled_softmax_loss. This was first proposed in #3718. cc @albanD @mruberry @jbschlosser
feature,module: nn,module: loss,triaged
low
Minor
615,106,707
vscode
Quick fix from hover interaction issues
Steps to Reproduce: 1. hover over a problem 2. click on Quick fix link => 🐛 menu appears somewhere? => hover closes? I would either expect the hover to stay and the menu to appear right below, or at least that the menu appears below the problem. ![cap](https://user-images.githubusercontent.com/900690/81466215-074e0480-91d0-11ea-83fb-b9341e8f0d28.gif)
bug,help wanted,polish,editor-code-actions,editor-hover
low
Major
615,108,565
TypeScript
Make defining a data class easier
## Search Terms Data class, Property parameters <!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> ## Suggestion Data class just means a class, with certain forms of pattern of how it is defined (required), and some predefined methods (optional, like hashCode, equals...). Basically we want to achieve the following, very simple goal. ``` const data = new SomeData({ field1: 'abc', field2: 123 }) // But think there're 10 fields data.field1 // This should have proper jsdoc showing when hovering ``` Goals: 1. Use keyword arguments to instantiate the class. - This is because for larger class, fields can easily have the same type and using an array-like argument is an anti-pattern 2. Very easy to define the class itself, without a tons of boilerplate 3. (Optional) Being able to define a `DataClass` generic class 4. (Optional) Play nice with property visibility modifier (private/protected/public) 5. (Optional) Can deal with default value The most immediate pain point is, due to lack of keyword arguments in JS, defining a data class is very awkward. There are a few ways to mimic a data class, but they all come with different awkwardness. ### The most correct and cumbersome definition ``` class SomeData { field1: string field2: number constructor(args: { field1: string, field2: number }) { this.field1 = args.field1 this.field2 = args.field2 } } ``` That's a lot of boilerplate! Each field is written 4 times! This already feels like Java. ### Property parameters ``` class SomeData { constructor(private field1: string, private field2: number) {} } ``` Most ideal when defining the class, but don't really satisfy requirement 1. ### Define constructor argument based on class info ``` class SomeData { private field1!: string private field2!: number // The '!', ehhh constructor(args: Partial<SomeData>) { Object.assign(this, args) } } ``` The issues with this approach is: - Under `strict`, have to add `!` to every field - `Partial` cannot ensure the most correct type info Another try to improve the type safety around missing fields: ``` type Shape<T> = { [P in keyof T]: T[P] } class SomeData { private field1!: string private field2!: number // The '!', ehhh constructor(args: Shape<SomeData>) { Object.assign(this, args) } } ``` The issue is, `Shape` will include all the methods and stuff that's not really part of the constructor we want. ### Interface + Class ``` interface SomeDataProps { field1: string field2: number } class SomeData implements SomeDataProps { field1!: string // Have to repeat them field2!: number constructor(args: SomeDataProps) { Object.assign(this, args) } } ``` <!-- A summary of what you'd like to see added or changed --> ## Use Cases <!-- What do you want to use this for? What shortcomings exist with current approaches? --> Data class is a super common use case, and is already natively supported in other languages like in [Kotlin](https://kotlinlang.org/docs/reference/data-classes.html), [Python](https://docs.python.org/3/library/dataclasses.html), [Scala](https://docs.scala-lang.org/tour/case-classes.html) and etc. That being said, I wouldn't doubt this would have numerous use cases and it would make things so much easier, especially in large code base. Use case I've personally seen: - In TypeORM, defining a entity class: https://github.com/typeorm/typeorm/issues/3445 Thinking about React's component and their props, it's actually the same pattern, compared to the interface+class approach above. But React's choice is to have to append `.props` on every field access. Reasonable choice given there's also `this.state`, but it could be better. ## Possible Solutions There's many ways we could make this better. Just listing some of the possibility. I'm honestly not sure which one is the best. But the idea here is to have a design that have no runtime assumption or changing how JS is emitted. Non-solutions: 1. `data class` (as in kotlin/scala) modifier on class definition. This would have runtime implications, changing how classes code are emitted in JS 2. decorator (as in python): Don't think it's possible, since currently TS's decorator has no ability to change the class's typing info ### Extend property parameters to support objects ``` class SomeData { constructor(args: { private field1: number private field2: string }) { } } ``` Looks legit and scoped, since. this only changes the typing of constructor. But this might put limitation on constructor arguments: For example, maybe we only allow one constructor argument to have this behavior, or not. ### Have a way to mark fields as needed in constructor Similiarly to `readonly`: ``` class SomeData { construct field1: number = 10 // Can have default value construct field2: string // Alternatively, this constructor can be auto generated, but that's really against the design goal constructor(args: construct SomeData) { // construct SomeData = { field2: string; field1?: number } // Maybe if there's a way to query a object type with whether each field has the construct modifier, it could be something like // type Construct<T> = { [P in keyof T]: construct T[P] ? T[P] : never } // Ideally, we could figure out the intersection of args and the fields with default values forms correctly SomeData Object.assign(this, args) } } // Maybe this could be generalized by using "args: construct this"? ``` ### Asserts in constructor This has to use the Props pattern. Given this is not really adding return types to constructor, but merely an assert type. Definitely feels harder to implement because it might interfere with flow control analysis. But the nice thing is, - constructor don't have return type either way, so that complies with assert methods don't have a return type. - assert methods currently have the limitation to have to explicitly mark the type of the receiver, where in this case, we don't have to, since it's a constructor, we already know what it is. ``` interface SomeDataProps { field1: number field2: string } class SomeData { constructor(props: SomeDataProps): asserts this is SomeDataProps { Object.assign(this, props) } } // And, it's possible to have a generic one! class DataClass<Props> { constructor(props: Props): asserts this is Props { Object.assign(this, props) } // hashCode, equals... } class SomeData extends DataClass<SomeDataProps> { // methods } ``` <!-- Show how this would be used and what the behavior would be --> ## Checklist I'm quite sure we can find a way to satisfy all the guidelines here. My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code * [x] This wouldn't change the runtime behavior of existing JavaScript code * [x] This could be implemented without emitting different JS based on the types of the expressions * [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.) * [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
Suggestion,Awaiting More Feedback
low
Major
615,110,941
flutter
Android Instant App Support
I reviewed the previous discussion [here](https://github.com/flutter/flutter/issues/16833#issuecomment-447151309), but it seems that Instant App is not supported, and the APK growing up again. ## Steps to Reproduce 1. create new flutter app. 1. build a release appbundle. 1. generate the apks file from the appbundle. 1. run the ia checker on the generated apks file. ## Logs ``` WARNING - Combined size of an APK and its dependent APKs is larger than 4 megabytes The following group of APKs has a combined size of 5976.3 KB: base-master.apk (635.7 KB) + base-tvdpi.apk (12.2 KB) + base-x86_64.apk (5328.4 KB) If you are not publishing as a game, there is a 4 MB size limit to enable additional discovery surfaces beyond Try Now. You may also need to enroll in the 10 MB app beta program before releasing to the production track. ``` When I tried to analyze the APK, t seems like `libflutter.so` and `libapp.so` alone will exceed the 4 MB limit alone without any extra assets. <img width="768" alt="Screen Shot 2020-05-09 at 09 57 16" src="https://user-images.githubusercontent.com/9499808/81466576-7aa94380-91db-11ea-9d8b-2868139b18c1.png"> Is there any possibility to reduce the size -even if it will disable some features- or we need to wait from the Play Store team until they make the 10 MB limit available for public?
c: new feature,platform-android,framework,engine,c: performance,a: size,perf: app size,a: release,P3,team-android,triaged-android
low
Major
615,116,799
pytorch
test_interpolate_nearest_scale_3d in test_nn takes too long to run
It's timing out on an internal test runner. Maybe there's a way we can keep the test effective but speed it up? cc @mruberry
module: tests,triaged
low
Minor
615,116,939
pytorch
test_LocalResponseNorm_3d_custom_params (test_nn.TestNN) takes too long to run
This test is timing out in one of our internal test runners. cc @mruberry
module: tests,triaged
low
Minor
615,117,015
pytorch
test_ReplicationPad3d (test_nn.TestNN) takes too long to run
This test is timing out in one of our internal test runners. cc @mruberry
module: tests,triaged
low
Minor
615,160,157
pytorch
Can't Build Pytorch0.4.1 From Source
I am trying to build Pytorch0.4.1 from the source on my Ubuntu18.04 desktop PC. The environment details are as follows, - OS: Ubuntu 18.04 - GPU: RTX 2080 Supper - CUDA: 10.2 - Anaconda Environment with Python 3.6 I used the following commands to install Pytorch from source, 1. conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi 2. conda install -c pytorch magma-cuda102 3. git clone --recursive https://github.com/pytorch/pytorch 4. cd pytorch 5. git checkout v0.4.1 6. git submodule sync 7. git submodule update --init --recursive 8. export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"} 9. python setup.py install I am getting the following error CMakeFiles/Makefile2:923: recipe for target 'caffe2/CMakeFiles/caffe2_gpu.dir/all' failed make[1]: *** [caffe2/CMakeFiles/caffe2_gpu.dir/all] Error 2 Makefile:140: recipe for target 'all' failed make: *** [all] Error 2 Failed to run 'bash tools/build_pytorch_libs.sh --use-cuda --use-nnpack nccl caffe2 nanopb libshm gloo THD c10d' Any workaround? Thanks cc @malfet
module: build,triaged
low
Critical
615,168,068
flutter
[tool_crash] FileSystemException: Creation failed, OS Error: L’étiquette présente dans le tampon du point d’analyse n’est pas valide., errno = 4393
## Command ``` flutter run -d chrome ``` ## Steps to Reproduce 1. ... 2. ... 3. ... ## Logs FileSystemException: Creation failed, OS Error: L’étiquette présente dans le tampon du point d’analyse n’est pas valide. , errno = 4393 ``` #0 _Directory.createSync (dart:io/directory_impl.dart:133:7) #1 ForwardingDirectory.createSync (package:file/src/forwarding/forwarding_directory.dart:22:16) #2 ForwardingDirectory.createSync (package:file/src/forwarding/forwarding_directory.dart:22:16) #3 writeBundle.<anonymous closure> (package:flutter_tools/src/bundle.dart:234:21) <asynchronous suspension> #4 writeBundle.<anonymous closure> (package:flutter_tools/src/bundle.dart) #5 MappedIterator.moveNext (dart:_internal/iterable.dart:392:20) #6 Future.wait (dart:async/future.dart:401:26) #7 writeBundle (package:flutter_tools/src/bundle.dart:224:16) #8 WebDevFS.update (package:flutter_tools/src/build_runner/devfs_web.dart:735:15) #9 _ResidentWebRunner._updateDevFS (package:flutter_tools/src/build_runner/resident_web_runner.dart:628:54) #10 _rootRunUnary (dart:async/zone.dart:1198:47) #11 _CustomZone.runUnary (dart:async/zone.dart:1100:19) #12 _FutureListener.handleValue (dart:async/future_impl.dart:143:18) #13 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45) #14 Future._propagateToListeners (dart:async/future_impl.dart:725:32) #15 Future._completeWithValue (dart:async/future_impl.dart:529:5) #16 _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15) #17 _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13) #18 _ResidentWebRunner._generateEntrypoint (package:flutter_tools/src/build_runner/resident_web_runner.dart) #19 _rootRunUnary (dart:async/zone.dart:1198:47) #20 _CustomZone.runUnary (dart:async/zone.dart:1100:19) #21 _FutureListener.handleValue (dart:async/future_impl.dart:143:18) #22 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45) #23 Future._propagateToListeners (dart:async/future_impl.dart:725:32) ``` ``` [✓] Flutter (Channel master, 1.19.0-1.0.pre.21, on Microsoft Windows [version 10.0.19619.1000], locale fr-FR) • Flutter version 1.19.0-1.0.pre.21 at C:\tools\flutter • Framework revision f5d2c8c770 (12 hours ago), 2020-05-08 17:35:40 -0700 • Engine revision 9b905d3f03 • Dart version 2.9.0 (build 2.9.0-7.0.dev 617bc54b71) [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3) • Android SDK at C:\Users\Paul-Henri\AppData\Local\Android\sdk • Platform android-29, build-tools 29.0.3 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b04) • All Android licenses accepted. [✓] Chrome - develop for the web • Chrome at C:\Program Files (x86)\Google\Chrome\Application\chrome.exe [✓] Visual Studio - develop for Windows (Visual Studio Enterprise 2019 16.5.4) • Visual Studio at C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise • Visual Studio Enterprise 2019 version 16.5.30011.22 [✓] Android Studio (version 3.6) • Android Studio at C:\Program Files\Android\Android Studio • Flutter plugin version 45.1.1 • Dart plugin version 192.7761 • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b04) [✓] VS Code (version 1.45.0) • VS Code at C:\Users\Paul-Henri\AppData\Local\Programs\Microsoft VS Code • Flutter extension version 3.10.1 [✓] Connected device (3 available) • Windows • Windows • windows-x64 • Microsoft Windows [version 10.0.19619.1000] • Web Server • web-server • web-javascript • Flutter Tools • Chrome • chrome • web-javascript • Google Chrome 81.0.4044.138 • No issues found! ``` ## Flutter Application Metadata **Type**: app **Version**: 1.0.0+1 **Material**: true **Android X**: false **Module**: false **Plugin**: false **Android package**: null **iOS bundle identifier**: null **Creation channel**: master **Creation framework version**: f5d2c8c77009f0a121da655c71d35927042808af
c: crash,tool,platform-web,P2,team-web,triaged-web
low
Critical
615,177,672
neovim
E173 (n more file(s) to edit) seems like an erroneous "error"
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: NVIM v0.4.3 - `vim -u DEFAULTS` (version: ) behaves differently? No. - Operating system/version: Ubuntu 18.04 - Terminal name/version: # GNOME Terminal 3.28.2 using VTE 0.52.2 +GNUTLS -PCRE2 ### Steps to reproduce using `nvim -u NORC` nvim -u NORC file-1.html file2.json If you quit without visiting the second buffer, Neovim gives you this error: ![Screenshot from 2020-05-09 09-28-20](https://user-images.githubusercontent.com/1170326/81475036-7b3fdb00-91d7-11ea-85ed-2697d66bd586.png) It's not that that file has unsaved changes, it simply hasn't been visited yet, and that hardly seems like a reason to throw an error. ### Actual behaviour It throws an error. ### Expected behaviour It not to throw an error unless I have unsaved changes. ### Note I realize it's likely the buffers that haven't been visited, have also not been loaded, and so there's no way to know if they have unsaved changes (but if you haven't visited, how can there be changes?). I'm not sure of the best solution here. I'm just reporting the part I got hung up on repeatedly for years. I added ``` " Avoid E173 (n more file(s) to edit) if argc() > 1 silent blast " load last buffer silent bfirst " switch back to the first endif ``` To my init.vim to solve it, but recently that's been creating syntax issues. Changing buffers in init.vim seems to be a bad practice too.
enhancement,ux
low
Critical
615,197,257
go
x/net/webdav: FileSystem interface should include CopyFile
WebDAV requires support for the `COPY` method (defined in [RFC 2518 section 8.8](https://tools.ietf.org/html/rfc2518#section-8.8)). Go's WebDAV server implementation in `golang.org/x/net/webdav` implements it, however [the current implementation](https://github.com/golang/net/blob/7e3656a0809f6f95abd88ac65313578f80b00df2/webdav/file.go#L654) simply calls `FileSystem.OpenFile` on the source and destination and uses `io.Copy` to pipe the content. While this is fine in some cases, I really think that the user should be able to override / implement this by adding a `CopyFile` method to the `FileSystem` interface. Two major reasons I see: - The current implementation is inefficient on filesystems that support copy-on-write. - The current implementation is inefficient on remote filesystems (effectively, it will pull a file locally and send it back).
NeedsInvestigation
low
Minor
615,210,060
TypeScript
Assigning array values by index treats Array<A> | Array<B> as Array<A | 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 before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ Please fill in the *entire* template below. --> <!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 4.0.0-dev.201xxxxx reproducible starting from at least 3.3.3 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** discriminated unions, distributive **Code** ```ts // A *self-contained* demonstration of the problem follows... // Test this by running `tsc` on the command-line, rather than through another build tool such as Gulp, Webpack, etc. function main() { var a: (number[] | string[]) = []; a[0] = 3; a[1] = "xxx"; } ``` **Expected behavior:** error TS2322: Type '"xxx"' is not assignable to type 'number'. **Actual behavior:** All is compiled without warnings or errors. Keep in mind that this works as expected: ```typescript var a: (number[] | string[]) = [3, "xxx"]; // Not OK as it should be ``` Thus, depending on how exactly we're initialising the array, behaviour differs. **Playground Link:** <!-- A link to a TypeScript Playground "Share" link which demonstrates this behavior --> https://www.typescriptlang.org/play?ts=4.0.0-dev.20200508#code/C4TwDgpgBAggTnAcgVwLYGVhygXigOzQCMI4BtAXSgB8oBnLAS3wHNKBuAKE4DNl8AxsEYB7fFFQBDZgAoAlFADenKKqgA3SdkkAuKDMKoS5KrQZxmbCgtxQOUFWslkADFTwBmLmqjOAjO5QAEQAHmFBXAC+nEA **Related Issues:** <!-- Did you find other bugs that looked similar? -->
Suggestion,In Discussion
low
Critical
615,223,577
pytorch
Why no `torch.randperm_like`?
## ❓ Questions and Help I am looking at various tensor generators in the `torch` module and I've noticed, that `torch.randperm` seems to miss a `randperm_like` alternative, although it supports all the necessary flags (`dtype`, `device` and `layout`). I want to permute the elements of a tensor `a` along an axis, using an index tensor generated with `randperm`. This tensor `a` might be a cuda tensor. Does it make any sense to generate the indexing tensor on the cuda device as well or should I generate the index permutation on the cpu?
triaged,enhancement,module: tensor creation
low
Minor
615,252,422
rust
Weird nonsesnical 'one type is more general than the other' error
Getting mismatched types error despite exactly the same types. Works when called from some areas of project, fails from other areas. I tried this code: https://github.com/AS207960/whois-email, function send_mail in client.rs, called from sender.rs line 161. I expected to see this happen: Works as if called from main.rs line 101 Instead, this happened: ```rust error[E0308]: mismatched types --> src/main.rs:104:5 | 104 | tokio::task::spawn(async { | ^^^^^^^^^^^^^^^^^^ one type is more general than the other | = note: expected type `std::ops::FnOnce<(&trust_dns_proto::rr::rdata::mx::MX,)>` found type `std::ops::FnOnce<(&trust_dns_proto::rr::rdata::mx::MX,)>` ``` ### Meta <!-- If you're using the stable version of the compiler, you should also check if the bug also exists in the beta or nightly versions. --> `rustc --version --verbose`: ``` rustc 1.44.0-nightly (dbf8b6bf1 2020-04-19) binary: rustc commit-hash: dbf8b6bf116c7bece2987ff4bd2792f008a6ee77 commit-date: 2020-04-19 host: x86_64-unknown-linux-gnu release: 1.44.0-nightly LLVM version: 9.0 ```
A-diagnostics,A-lifetimes,C-bug,D-terse
low
Critical
615,268,349
godot
Node2D.visible Value Set Incorrectly When Not Using Setter Function
**Godot version:** 3.2.1 Stable **OS/device including version:** KDE Neon 5.18/Intel Atom x7-8700 **Issue description:** Behavior differs on `Node2D.visible` when setting using `Node2D.visible` versus using the setter function `Node2D.set_visible(boolean)`. ``` prints(unit.qInfo.visible, unit.tile.is_visible(unit.player.game.thisPlayer)) unit.qInfo.visible = unit.tile.is_visible(unit.player.game.thisPlayer) prints(unit.qInfo.visible, unit.tile.is_visible(unit.player.game.thisPlayer)) unit.qInfo.set_visible(unit.tile.is_visible(unit.player.game.thisPlayer)) prints(unit.qInfo.visible, unit.tile.is_visible(unit.player.game.thisPlayer)) ``` **Output:** True True False True True True `unit.qInfo` extends `Node2D` while `unit.tile` extends `Node`. The `is_visible(int)` method on the `unit.tile` script returns a boolean value. This game is multi-threaded and a second thread is running in the backround when the above code is called, however, it is not called from the background thread, the background thread does not access or modify `unit.qInfo` at any time. At the time the above code is executed the backround thread is idle due to a call to `Semaphore.wait()`. `unit.qInfo.visible` is also set from `_ready()` in the `Unit` script, which extends `Spatial`, without using the setter function and that works. The background thread is also idle at that time. The code above is called from `Unit._process(float)`. At no point does the background thread modify the values of any variables associated with `unit`, `unit.qInfo` or `unit.tile`. It does access some information from `unit` and `unit.tile`, but not while the above code is called. Moreover the output from the above code is always the same. In the above code snippet calling `unit.qInfo.set_visible()` always works while using `unit.qInfo.visible` never works. **Steps to reproduce:** Unclear
bug,topic:gdscript
low
Minor