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
194,037,954
react
Undo behavior in controlled textareas works differently from the default behaviour in chrome
If you control a textarea with **value**, it behaves differently when you use undo. When the textarea is controlled, you can only undo one letter at a time. This is not how undo works normally with an uncontrolled component. Undo seems to work as expected with input components. With a controlled textarea component, you can only undo one letter at a time. The normal undo works with some kind of algorithm for how much is going to be un- or redone. You can try the difference in this codepen: https://codepen.io/fabsor/pen/LbmBOv Tested with React 15.3.1 and Chrome 54 and Chrome Canary. Works as expected in Firefox and Safari. It might be a Chrome bug?
Type: Bug,Component: DOM
medium
Critical
194,043,408
opencv
cudaErrorCudartUnloading (error 29) due to “driver shutting down”
##### System information (version) - OpenCV => 3.1 - Operating System / Platform => Debian Jessie 8.0 - Compiler => gcc 4.9: ##### Detailed description I am running a simple face detection test using the `cuda` version: ```cpp #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/cudaimgproc.hpp> #include <opencv2/core/cuda.hpp> #include <opencv2/cudaobjdetect.hpp> #include <opencv2/cudafeatures2d.hpp> #include <iostream> #include <stdio.h> #include <chrono> int detectAndDisplay( cv::Mat frame, cv::Ptr<cv::cuda::CascadeClassifier> & cascade_gpu ) { cv::cuda::GpuMat image_src, image_grey; std::vector<cv::Rect> faces; image_src.upload(frame); cv::cuda::cvtColor(image_src, image_grey, CV_BGR2GRAY); cv::cuda::equalizeHist(image_grey, image_grey); cascade_gpu->setFindLargestObject(true); cascade_gpu->setScaleFactor(1.23); cascade_gpu->setMinNeighbors(3); cascade_gpu->setMinObjectSize(cv::Size(0, 0)); cascade_gpu->setMaxObjectSize(image_src.size()); cv::cuda::GpuMat buffer; cascade_gpu->detectMultiScale(image_grey, buffer); cascade_gpu->convert(buffer, faces); return faces.size(); } int main( int argc, const char* argv[] ) { cv::String face_cascade_name = "/usr/share/opencv/haarcascades/haarcascade_frontalface_alt.xml"; cv::Mat image; image = cv::imread("catniss.jpeg", CV_LOAD_IMAGE_COLOR); cv::Ptr<cv::cuda::CascadeClassifier> cascade_gpu; cascade_gpu = cv::cuda::CascadeClassifier::create(face_cascade_name); for (int j = 0; j < 100; j++) { detectAndDisplay(image, cascade_gpu); } return 0; } ``` The application complies and runs fine, but looking for leaks and other issues using `cuda-memcheck --leak-check full ./face_detection` I get the following errors: ```sh ========= Program hit cudaErrorCudartUnloading (error 29) due to "driver shutting down" on CUDA API call to cudaStreamSynchronize. ========= Saved host backtrace up to driver entry point at error ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcuda.so.1 [0x2eeda3] ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcudart.so.7.5 (cudaStreamSynchronize + 0x15e) [0x421ce] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0x29a909] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 (_ZN2cv4cuda6Stream4ImplD1Ev + 0x6e) [0x29c0ee] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0x29c12a] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0x29a886] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0x29d08e] ========= Host Frame:/lib/x86_64-linux-gnu/libc.so.6 (__cxa_finalize + 0x8f) [0x37eaf] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0xbb033] ========= ========= Program hit cudaErrorCudartUnloading (error 29) due to "driver shutting down" on CUDA API call to cudaSetDevice. ========= Saved host backtrace up to driver entry point at error ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcuda.so.1 [0x2eeda3] ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcudart.so.7.5 (cudaSetDevice + 0x180) [0x2fa30] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0x29d0fd] ========= Host Frame:/lib/x86_64-linux-gnu/libc.so.6 (__cxa_finalize + 0x8f) [0x37eaf] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0xbb033] ========= ========= Program hit cudaErrorCudartUnloading (error 29) due to "driver shutting down" on CUDA API call to cudaFree. ========= Saved host backtrace up to driver entry point at error ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcuda.so.1 [0x2eeda3] ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcudart.so.7.5 (cudaFree + 0x186) [0x3c666] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0x29d0cd] ========= Host Frame:/lib/x86_64-linux-gnu/libc.so.6 (__cxa_finalize + 0x8f) [0x37eaf] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0xbb033] ========= ========= Program hit cudaErrorCudartUnloading (error 29) due to "driver shutting down" on CUDA API call to cudaSetDevice. ========= Saved host backtrace up to driver entry point at error ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcuda.so.1 [0x2eeda3] ========= Host Frame:/usr/lib/x86_64-linux-gnu/libcudart.so.7.5 (cudaSetDevice + 0x180) [0x2fa30] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0x29d0fd] ========= Host Frame:/lib/x86_64-linux-gnu/libc.so.6 (__cxa_finalize + 0x8f) [0x37eaf] ========= Host Frame:/usr/local/lib/libopencv_core.so.3.1 [0xbb033] ========= ========= LEAK SUMMARY: 0 bytes leaked in 0 allocations ========= ERROR SUMMARY: 4 errors ``` ##### Steps to reproduce 1. copy-paste above code to `main.cpp` 2. `mkdir build && cd build && cmake ..` 3. `wget https://metrouk2.files.wordpress.com/2013/07/ay114305102the-hunger-games.jpg?quality=80&strip=all -O catniss.jpg` 3. `make` 4. `cuda-memcheck --leak-check full ./face_detection` You can use the below `CMakeLists.txt`: ```cmake cmake_minimum_required(VERSION 2.6) project(face_detection) add_executable(face_detection main.cpp) find_package(OpenCV REQUIRED) target_link_libraries(face_detection ${OpenCV_LIBS}) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}-std=c++1y") ```
bug,priority: low,category: gpu/cuda (contrib)
low
Critical
194,138,595
rust
Consider different way of inheriting handles in child processes on Windows
Currently to avoid handles being inherited incorrectly by child processes due to race conditions, Rust wraps the whole blob of code in a mutex to synchronize it. However, it will still accidentally inherit any handles created elsewhere that are inheritable, can cause race conditions with people creating processes using libraries other than std, and isn't very efficient. By switching from `STARTUPINFO` to `STARTUPINFOEX`, we can pass a value for `lpAttributeList` and that attribute list can specify an explicit list of handles to inherit. For more information on this, see https://blogs.msdn.microsoft.com/oldnewthing/20111216-00/?p=8873 Unfortunately this does require vista, so XP users will lose out.
O-windows,T-libs-api,C-feature-request,A-process
low
Major
194,179,350
go
runtime: frequent blocking syscalls cause high sysmon overhead
The hard-coded 20us `sysmon` tick in the runtime appears to be far too aggressive for minority architectures. Our storage controllers run a single-core 800MHz arm cpu, which runs single-threaded workloads between 10 and 20 times slower than my desktop Intel machine. ![](http://packetpushers.net/wp-content/uploads/2016/10/Igneousnano-serverwebJPG.jpg) Most of our product-level benchmarks improved substantially (5-10%) when I manually adjusted the minimum tick to 2ms on our arm devices. (Our use-case benefits from particularly long syscall ticks, since we tend to make `read` and `write` syscalls with large buffers, and those can take a long time even if they never actually block in I/O. Also, as you might imagine, the relative cost of thread creation and destruction on this system is quite high.) Perhaps the runtime should calibrate the sysmon tick based on the performance of a handful of trivial syscalls (`getpid()`, etc). Similarly, the tick could be adjusted upwards if an `m` wakes up within a millisecond (or so) of being kicked off its `p`. Perhaps someone with a better intuition for the runtime can suggest something heuristically less messy. Thanks, Phil
Performance,NeedsInvestigation,compiler/runtime
medium
Major
194,187,765
go
runtime: scheduler is slow when goroutines are frequently woken
### What version of Go are you using (`go version`)? go1.7.3 ### What operating system and processor architecture are you using (`go env`)? linux/amd64; [Xeon E5-2670](https://ark.intel.com/products/64595/Intel-Xeon-Processor-E5-2670-20M-Cache-2_60-GHz-8_00-GTs-Intel-QPI) (dual-socket 6-core packages, non-HT) Our profiles indicate that we're spending an enormous number of cycles in `runtime.findrunnable` (and its callees) on the hosts that serve as our protocol heads. Briefly, our these hosts translate HTTP CRUD operations into sets of transactions to be performed [on our storage hosts](http://packetpushers.net/wp-content/uploads/2016/10/Igneousnano-serverwebJPG.jpg), so the only real I/O these hosts do is networking. Here's what I see in our cpu profiles when I run a benchmark with 40 clients against a single host backed by 60 storage controllers: ``` host 486938695e10692ab3a6a554cf47486b: 7356 samples top flat pct symbol 1831 2030 24.9 syscall.Syscall 900 900 12.2 i/c/siphash.blocks 835 835 11.4 runtime.futex 661 661 9.0 runtime.epollwait 224 224 3.0 runtime.memmove 180 297 2.4 runtime.runqgrab 176 2584 2.4 runtime.findrunnable 171 171 2.3 runtime/internal/atomic.Cas 116 116 1.6 runtime/internal/atomic.Xchg 85 85 1.2 runtime/internal/atomic.Load ------------------------------------------------------------------------------------- host 486938695e10692ab3a6a554cf47486b "runtime.findrunnable" -- in 2584 samples of 7356 (35.1%) 1 callers: in flat symbol 2584 2694.0 runtime.schedule 21 callees: out flat symbol 67 130.0 runtime.unlock 20 46.0 runtime/internal/atomic.Xadd 14 85.0 runtime/internal/atomic.Load 406 406.0 runtime.injectglist 488 488.0 runtime.stopm 331 331.0 runtime.runqsteal 139 238.0 runtime.lock 16 31.0 runtime/internal/atomic.Xchg64 26 26.0 runtime.pidleput 2 2.0 runtime.releasep 59 66.0 runtime.runqempty 21 161.0 runtime.casgstatus 777 777.0 runtime.netpoll 9 9.0 runtime/internal/atomic.Store64 8 8.0 runtime.netpollinited 2 8.0 runtime.acquirep 10 15.0 runtime.pidleget 8 8.0 runtime.globrunqget 2 12.0 runtime.fastrand1 2 2.0 runtime.nanotime 1 10.0 runtime.runqget ``` ... here's the same benchmark, but this time against two hosts backed by (the same) 60 storage controllers: ``` host 91b42bdeee8bc69fe40c33dff7c146ac: 6563 samples top flat pct symbol 1695 1829 25.8 syscall.Syscall 977 977 14.9 i/c/siphash.blocks 639 639 9.7 runtime.futex 431 431 6.6 runtime.memmove 373 373 5.7 runtime.epollwait 155 221 2.4 runtime.runqgrab 112 1756 1.7 runtime.findrunnable 100 100 1.5 runtime/internal/atomic.Cas 89 89 1.4 runtime/internal/atomic.Xchg 83 83 1.3 runtime.usleep -------------------------- host f8e02f9facaa304dce98c8d876270a10: 6540 samples top flat pct symbol 1593 1716 24.4 syscall.Syscall 895 895 13.7 i/c/siphash.blocks 598 598 9.1 runtime.futex 399 399 6.1 runtime.memmove 385 385 5.9 runtime.epollwait 130 130 2.0 runtime/internal/atomic.Cas 128 233 2.0 runtime.runqgrab 104 1763 1.6 runtime.findrunnable 102 102 1.6 runtime.usleep 101 101 1.5 runtime/internal/atomic.Xchg host 91b42bdeee8bc69fe40c33dff7c146ac "runtime.findrunnable" -- in 1756 samples of 6563 (26.8%) 1 callers: in flat symbol 1756 1846.0 runtime.schedule 20 callees: out flat symbol 41 98.0 runtime.unlock 5 53.0 runtime/internal/atomic.Load 45 51.0 runtime.runqempty 12 12.0 runtime/internal/atomic.Store64 8 91.0 runtime.casgstatus 15 49.0 runtime/internal/atomic.Xadd 364 365.0 runtime.stopm 443 443.0 runtime.netpoll 108 172.0 runtime.lock 295 295.0 runtime.injectglist 246 246.0 runtime.runqsteal 3 3.0 runtime.releasep 30 30.0 runtime.pidleput 8 16.0 runtime.pidleget 4 4.0 runtime.netpollinited 3 12.0 runtime.runqget 9 9.0 runtime.globrunqget 3 22.0 runtime/internal/atomic.Xchg64 1 7.0 runtime.fastrand1 1 1.0 runtime.nanotime ----------------- host f8e02f9facaa304dce98c8d876270a10 1 callers: in flat symbol 1763 1853.0 runtime.schedule 21 callees: out flat symbol 268 268.0 runtime.runqsteal 24 24.0 runtime.pidleput 477 477.0 runtime.netpoll 109 167.0 runtime.lock 4 12.0 runtime.acquirep 6 58.0 runtime/internal/atomic.Load 7 7.0 runtime/internal/atomic.Store64 298 298.0 runtime.injectglist 49 54.0 runtime.runqempty 33 71.0 runtime.unlock 11 117.0 runtime.casgstatus 327 328.0 runtime.stopm 5 12.0 runtime.pidleget 10 10.0 runtime.globrunqget 5 9.0 runtime.runqget 7 7.0 runtime.netpollinited 12 40.0 runtime/internal/atomic.Xadd 1 7.0 runtime.fastrand1 4 24.0 runtime/internal/atomic.Xchg64 1 1.0 runtime.releasep 1 1.0 runtime.nanotime ``` Interestingly, the single-head cpu consumption is at 560% of 1200%, and the dual-head cpu consumption is at 470% and 468% of 1200%, respectively. A couple notable details: - Performance is substantially worse in the single-host case (65% of the dual-host case), despite the fact that it is only half-loaded and backed by the same set of storage nodes running an identical front-end workload. I suppose *some* of this could be chalked up to head-of-line blocking, but I suspect there's more going on. In principle I'd expect very little difference between the two configurations, since none of these requests need to synchronize. - Proportionally more time (35% vs 27%) is spent in `runtime.findrunnable` in the single-node case. I'd expect that system to have on average 2x the number of goroutines, but I didn't think more goroutines would cause the proportional amount of time in the scheduler to *increase.* (I had presumed that more goroutines meant less work-stealing and polling, which would mean proportionally less time doing expensive stuff like syscalls and atomics.) Let me know if there are other details I can provide. Thanks, Phil
Performance,NeedsInvestigation
medium
Major
194,279,966
rust
export_name with unusual utf8 breaks new version script based linker
Unfortunately it looks like the awesome changes in #38117 caused breakage while linking when a weird export name is used (probably due to the version script requiring ascii, or some other esoterica): ```rust #[export_name="bad_∢"] pub extern fn bad(i: usize) {} ``` **NOTE** haven't checked this particular version, but certain combinations of values cause linker error complaining about invalid chars in version script.
A-linkage,A-Unicode,C-feature-request
medium
Critical
194,379,013
go
cmd/compile: some local variables are missing from DWARF
``` $ cat a.go package main func f(x int) { s := "string" for i := 0; i < x; i++ { println(i, s) } } func main() { f(10) } $ go build a.go $ readelf -w a ... <1><1530f>: Abbrev Number: 2 (DW_TAG_subprogram) <15310> DW_AT_name : main.f <15317> DW_AT_low_pc : 0x44cd50 <1531f> DW_AT_high_pc : 0x44cde4 <15327> DW_AT_external : 1 <2><15328>: Abbrev Number: 4 (DW_TAG_variable) <15329> DW_AT_name : i <1532b> DW_AT_location : 4 byte block: 9c 11 68 22 (DW_OP_call_frame_cfa; DW_OP_consts: -24; DW_OP_plus) <15330> DW_AT_type : <0x16c15> <2><15338>: Abbrev Number: 5 (DW_TAG_formal_parameter) <15339> DW_AT_name : x <1533b> DW_AT_location : 1 byte block: 9c (DW_OP_call_frame_cfa) <1533d> DW_AT_type : <0x16c15> <2><15345>: Abbrev Number: 0 ... ``` For function `f`, gc emits debug information about the formal parameter x and the local variable i, but not the local variable s. In this instance I imagine the reason is that s is effectively constant, but still it would improve the debug view if such variables were included. And in other programs, many other locals that are truly variable are omitted too. (Is there a simple explanation for how the compiler currently decides which variables get a DW_TAG_variable record?)
Debugging,compiler/runtime
low
Critical
194,388,408
TypeScript
Inconsistent errors for non-module entities
**TypeScript Version:** nightly (2.2.0-dev.20161208) **Code** ```ts // @Filename: /node_modules/f/index.d.ts declare const s: Static; export = s; interface Static { f(): void; } // @Filename: /node_modules/lib1/index.d.ts import { f } from "f"; declare const _f: typeof f; export = _f; // @Filename: /node_modules/lib2/index.d.ts import { f } from "f"; export = f; // @Filename: /a.ts import * as lib1 from "lib1"; import * as lib2 from "lib2"; lib1(); lib2(); ``` **Expected behavior:** Both imports are errors. **Actual behavior:** Only the second import is an error.
Bug
low
Critical
194,464,841
go
cmd/vet: duplicate struct field tag check does not handle XMLName
In Go 1.8beta1 a new check to detect duplicate names used in struct field tags was introduced to `go vet` ([CL 16704](https://golang.org/cl/16704)). This check produces false positive warnings when XML attributes and the special `XMLName` field name are used: - When fields are encoded as XML attributes, a warning is produced when an attribute reuses a name previously used for an element. ``` type Foo struct { First int `xml:"a" NoDup int `xml:"a,attr"` // warning about reuse of "a" } ``` - When XMLName is used to set the name of the enclosing struct element, it is treated as a regular struct field. ``` type Bar struct { XMLName xml.Name `xml:"a"` NoDup int `xml:"a"` // warning about reuse of "a" } ``` Both cases are addressed in [CL 34070](https://golang.org/cl/34070). The original implementation does not take into account the specific behavior of `encoding/xml` regarding the `XMLName` field, and the fix only does so in order to eliminate false positive warnings. No warning is currently generated for a struct field with `XMLName` field: ``` type Foo struct { Bar int `xml:"a"` Baz struct { XMLName xml.Name `xml:"a"` } } ``` As `go vet` generates a warning about other naming collisions in tags, it should generate a warning in this case as well. I am currently working on an implementation. EDIT: added detailed description of original problem addressed by CL 34070
help wanted,NeedsFix,Analysis
low
Minor
194,484,830
youtube-dl
Add support for Adobe Pass Auth TV Provider Cox Communications
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.09** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [ ] Bug report (encountered problems with youtube-dl) - [ ] Site support request (request for adding support for a new site) - [x] Feature request (request for a new functionality) - [ ] Question - [ ] Other ### Description of your *issue*, suggested solution and other information Would like to request support for Cox Communications as an Adobe Pass MSO option. I can provide a Cox login as needed.
tv-provider-account-needed
medium
Critical
194,493,196
rust
Can't step into libstd with gdb on Windows
```rust fn main() { let mut input = String::new(); ``` When I try to step in, I get: `Source C:\bot\slave\nightly-dist-rustc-win-gnu-64\build\obj\../src/libcollections/string.rs is not available.` When I set a breakpoint in string.rs and start a debug session, I get the error: `No source file named d:\dev\gnu\rust\src\libcollections\string.rs.` Note: this does not mean the file doesn't exist on the filesystem, it means it's not in the debug binary. # Workaround: Set `RUST_SRC_PATH=C:\bot\slave\nightly-dist-rustc-win-gnu-64\build\src` Either: - Copy/move rust source code to `C:\bot\slave\nightly-dist-rustc-win-gnu-64\build\src` - Or, as administrator: ``` C:\bot\slave\nightly-dist-rustc-win-gnu-64>mklink build C:\Users\Elahn\.multirust\toolchains\nightly-x86_64-pc-windows-gnu\lib\rustlib symbolic link created for build <<===>> C:\Users\Elahn\.multirust\toolchains\nightly-x86_64-pc-windows-gnu\lib\rustlib ```
A-debuginfo,C-enhancement,T-compiler,O-windows-gnu
low
Critical
194,519,558
rust
issues with ABIs and struct return types
With the MSVC x64 ABI, structs are returned in RAX if and only if they are <= 8 bytes in size, *and are effectively a POD type*. See https://msdn.microsoft.com/en-us/library/7572ztz4.aspx . Unfortunately, I can't figure out how to tell Rust this. In C++, `sk_sp<T>` has a user-defined constructor, destructor, etc. In Rust, I couldn't figure out any way to do this. It's defined as.. ``` #[repr(C)] #[derive(Debug, Copy, Clone)] pub struct sk_sp<T> { pub ptr: *mut T, } ``` This causes segfaults because the C++ calling convention isn't upheld. A temporary workaround is to just add another dummy field, making this type bigger than 8 bytes. This happens to work in this case since this type is only ever used as a smart pointer return type; params are passed as basic `T*`. Is there any way to tell `rustc` to treat this type as non-POD when giving it to LLVM? If not, can such a mechanism be added?
A-FFI,T-lang,T-compiler,C-bug
low
Critical
194,538,503
go
go/printer: adjust formatting of structs with unexported fields
The documentation for [`sql.NamedArg`](https://tip.golang.org/pkg/database/sql/#NamedArg) currently looks like: ```go type NamedArg struct { // Name of the parameter placeholder. If empty the ordinal position in the // argument list will be used. // // Name must omit any symbol prefix. Name string // Value of the parameter. It may be assigned the same value types as // the query arguments. Value interface{} // contains filtered or unexported fields } ``` Can we fix the formatting to look nicer? I expect it to be like: ```go type NamedArg struct { // Name of the parameter placeholder. If empty the ordinal position in the // argument list will be used. // // Name must omit any symbol prefix. Name string // Value of the parameter. It may be assigned the same value types as // the query arguments. Value interface{} // Contains filtered or unexported fields. } ``` This applies to interfaces as well.
NeedsFix
medium
Major
194,581,741
rust
llvm/msvc: IsStatement in codeview data is always false
Each entry in the line table FilenameSegments has a 'IsStatement' member. LLVM hardcodes this to 'false', while in MSVC they seem to basically be always 'true'. Changing the default, at the very least, is trivial, but we don't know what this does. None of the Google employees I have asked know (they have mentioned DWARF has something similar which is also unused though), so I'm trying to ask someone at Microsoft. (cc @michaelwoerister)
A-debuginfo,P-low,T-compiler,O-windows-msvc,C-bug
low
Minor
194,595,931
opencv
cv::cuda::HoughCirclesDetector and cv::HoughCircles do not give the same results
Hello, ##### System information (version) OpenCV 3.1.0, Windows 7 64 bits, Visual Studio 2010, Cuda 8 ##### Detailed description I have noticed that for a similar input, cv::cuda::HoughCirclesDetector and cv::HoughCircles do not give the same results. I am not sure if it is normal, because the documentation does not tell that it should be the case (algorithms may be different). However, it would be convenient, either to fix it, or explain how to circumvent it by adapting the parameters. ##### Steps to reproduce Image provided as attachement, and here is a sample code : ``` cv::Mat img = cv::imread("test.png", cv::IMREAD_GRAYSCALE); float dp = 1; float minDist = 100; int cannyThreshold = 122; int accThreshold = 50; int minRadius = 1; int maxRadius = std::max(img.size().width, img.size().height); std::vector<cv::Vec3f> cpuCircles; cv::HoughCircles(img, cpuCircles, cv::HOUGH_GRADIENT, dp, minDist, cannyThreshold, accThreshold, minRadius, maxRadius); std::vector<cv::Vec3f> gpuCircles; cv::Ptr<cv::cuda::HoughCirclesDetector> gpuDetector = cv::cuda::createHoughCirclesDetector(dp, minDist, cannyThreshold, accThreshold, minRadius, maxRadius); cv::cuda::GpuMat gpuMat; cv::cuda::GpuMat gpuResult; gpuMat.upload(img); gpuDetector->detect(gpuMat, gpuResult); gpuCircles.resize(gpuResult.size().width); if (!gpuCircles.empty()) gpuResult.row(0).download(cv::Mat(gpuCircles).reshape(3, 1)); printf("CPU circles :\n"); for(std::vector<cv::Vec3f>::const_iterator it = cpuCircles.begin() ; it != cpuCircles.end() ; ++it) printf("(%f,%f,%f)", it->val[0], it->val[1], it->val[2]); printf("\n"); printf("GPU circles :\n"); for(std::vector<cv::Vec3f>::const_iterator it = gpuCircles.begin() ; it != gpuCircles.end() ; ++it) printf("(%f,%f,%f)", it->val[0], it->val[1], it->val[2]); printf("\n"); ``` Output result : CPU circles : (165.500000,329.500000,56.925388) GPU circles : (165.500000,328.500000,100.000000)(165.500000,328.500000,56.000000)(165.500000,3 28.500000,60.000000)(165.500000,328.500000,65.000000)(165.500000,328.500000,73.0 00000)(165.500000,328.500000,87.000000)(165.500000,328.500000,151.000000)(165.50 0000,328.500000,178.000000)(165.500000,328.500000,180.000000)(165.500000,328.500 000,183.000000)(165.500000,328.500000,185.000000)(165.500000,328.500000,187.0000 00)(165.500000,328.500000,190.000000)(165.500000,328.500000,224.000000) ![test](https://cloud.githubusercontent.com/assets/7251617/21050443/14b9393c-be1b-11e6-8cfe-061b284959b2.png)
category: imgproc,category: gpu/cuda (contrib),RFC
low
Major
194,658,707
create-react-app
Run Lint from the command line?
It would be great to be able to type `eslint` into bash and have it run ESLint just like it was building. As it is, it can't find the config file unless I eject. Is ejection really necessary here?
contributions: up for grabs!,issue: proposal,difficulty: starter
high
Critical
194,659,475
material-ui
[Modal] Disable background scrolling in iOS
Tested dialogs in http://www.material-ui.com/#/components/dialog. On desktop Chrome, background scrolling is disabled when dialogs are shown. However, it is not disabled in iOS Safari or Chrome.
bug 🐛,external dependency,component: modal
high
Critical
194,686,174
vscode
Add SmartIndent capability
Visual Studio has an extensibility point called SmartIndent: https://msdn.microsoft.com/en-us/library/microsoft.visualstudio.text.editor.ismartindent.aspx This allows a language service to provide the editor, given a line, what the indentation level should be. If you click on a blank line in Visual Studio, it will automatically place the caret at the correct indent level based on the code above. This also works when using the arrow keys to move the caret. Currently in VSCode, it will place the caret at column 0 for blank lines. This may come hand-in-hand with implementing virtual space (see #13960) as Visual Studio will not insert spaces, but just place the caret at the correct column in virtual space. One thing to note is that in Visual Studio, when clicking on a blank line, the X position that you click at must be greater than the expected indentation column in order for this to work, otherwise it will place the caret at column 0. With the arrow keys, unless you are at column 0, your caret will always move to the correct indentation level for that blank line.
feature-request,api,editor-autoindent
low
Major
194,730,074
go
x/net/http2: TestTransportFlowControl takes 31 seconds on OpenBSD
TestTransportFlowControl takes 31 seconds on OpenBSD, but 1.8 seconds on the same hardware on Linux. Why? /cc @tombergan who suspects relation to #15899 /cc @mdempsky @4a6f656c
Performance,OS-OpenBSD,NeedsInvestigation
low
Minor
194,732,059
kubernetes
Harden addons & system pods
Our system pods should run using security best practices, both to enhance cluster security and serve as examples of best practices to users. We should audit all our system pod Dockerfiles, and make sure all security features are enabled with custom profiles when possible. Low hanging fruit: - Run as non-root (& disallow privilege escalation) - Run with the default seccomp profile - ReadOnlyRootFilesystem - Avoid unnecessary HostPath volumes - Don't mount service account token (unless required) More advanced: - Reduce depednencies in the base image (https://github.com/kubernetes/kubernetes/issues/40248) - Custom seccomp profile - Custom AppArmor profile - Drop unneeded capabilities (e.g. `CAP_NET_RAW`) - ~~Run with restricted service accounts~~ (done) /cc @kubernetes/sig-auth @kubernetes/sig-cluster-lifecycle
area/security,kind/cleanup,sig/auth,help wanted,priority/important-longterm,lifecycle/frozen
medium
Major
194,755,967
create-react-app
Help wanted Using react-intl
>## Note from Maintainers > >**Please try the solution in https://github.com/facebookincubator/create-react-app/issues/1227#issuecomment-297604621 and let us know if it works well for you.** ---- Hi all, I'm following this tutorial https://medium.freecodecamp.com/internationalization-in-react-7264738274a0#.pgfd03878 to use internationalization in my app. Apparently the integreation is done by modifying the .babelrc file but to do so I have to eject, and I prefer not to. Is there any way to use React-Intl without ejecting create-react-app?
issue: proposal
medium
Critical
194,769,832
TypeScript
How tsconfig exclude pattern should actually work
**TypeScript Version:** 2.1.1 / nightly (2.2.0-dev.201xxxxx) Say we have a following structure to specially to test `exclude` pattern: ``` /node_modules /module/some.ts nested/ /node_modules /module/some.ts /deep-nested/ /node_modules /module/some.ts ``` Will check this using `tsc --listFiles` How *exclude* patterns work: 1) "node_modules" - will exclude **only** `/node_modules/module/some.ts` 2) "*/node_modules" (the same effect as */node_modules/*") - will exclude **only** `/nested/node_modules/module/some.ts` 3) "**/node_modules" - will **exclude nothing** 4) "**/node_modules/*" - will **exclude everything** (also nested, deep-nested) Some behaviour seem strange to me - why in case 3 it excludes nothing (considering case 2 works)? - by default (if `exclude` not specified) case 1 will be effective, shouldn't it be 4) which excludes `node_modules` in nested folders as well?
Suggestion,Help Wanted
low
Major
194,776,155
TypeScript
Generalize `never` type handling for control flow analysis based type guard
<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> I guess there would be some duplicates, but I cannot find it. **TypeScript Version:** 2.1.14 **Code** ```ts function throwError(): never { throw new Error(); } let foo: string | undefined; if (!foo) { throwError(); } foo; // Expected to be `string` instead of `string | undefined`. ```
Suggestion,In Discussion
medium
Critical
194,833,599
rust
Insufficient normalization
The following should work, as far as I know, but unfortunately doesn't. It seems like the type bound on `Bar` is getting ignored when used in `Foo`. ```rust use ::std::io::Write; pub trait Foo { type FooBaz: Bar; fn get_bars() -> Box<Iterator<Item = Self::FooBaz>>; } pub trait Bar where <Self::BarBaz as ToOwned>::Owned: Write { type BarBaz: ToOwned; } ``` Of course, ideally I would specify the `where` clause on the associated type itself, but this currently isn't possible.
A-type-system,A-trait-system,T-compiler,C-bug,T-types
low
Minor
194,836,880
opencv
capturing frame from webcam crash (macos)
##### System information (version) - OpenCV => 3.1.0-dev - Operating System / Platform => Mac OS X 10.12.1 ##### Detailed description I have a few lines of code that takes a snap from the webcam and tries to display it. It captures the image fine but when it tries to display it the whole process crashes. I have installed opencv with brew, but also tried to build it from source, getting the same error. Also, same in python 2.7 Here is the report the process generates: ```Process: Python [23980] Path: /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/Resources/Python.app/Contents/MacOS/Python Identifier: org.python.python Version: 3.5.2 (3.5.2) Code Type: X86-64 (Native) Parent Process: Python [807] Responsible: Python [23980] User ID: 501 Date/Time: 2016-12-11 15:07:32.211 +0000 OS Version: Mac OS X 10.12.1 (16B2555) Report Version: 12 Anonymous UUID: 43980C08-1A42-062A-94BD-F052E37F9E7B Time Awake Since Boot: 4000 seconds System Integrity Protection: disabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000020 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [0] VM Regions Near 0x20: --> __TEXT 000000010cf11000-000000010cf13000 [ 8K] r-x/rwx SM=COW /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/Resources/Python.app/Contents/MacOS/Python Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libobjc.A.dylib 0x00007fff8b04ff6f objc_release + 31 1 libobjc.A.dylib 0x00007fff8b050e8d (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 781 2 com.apple.CoreFoundation 0x00007fff7682e3f6 _CFAutoreleasePoolPop + 22 3 com.apple.CoreFoundation 0x00007fff76870015 __CFRunLoopRun + 2213 4 com.apple.CoreFoundation 0x00007fff7686f514 CFRunLoopRunSpecific + 420 5 com.apple.HIToolbox 0x00007fff75e0cfbc RunCurrentEventLoopInMode + 240 6 com.apple.HIToolbox 0x00007fff75e0cdf1 ReceiveNextEventCommon + 432 7 com.apple.HIToolbox 0x00007fff75e0cc26 _BlockUntilNextEventMatchingListInModeWithFilter + 71 8 com.apple.AppKit 0x00007fff744f6b79 _DPSNextEvent + 1093 9 com.apple.AppKit 0x00007fff74c0c1c3 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1637 10 com.apple.AppKit 0x00007fff7474c9c8 -[NSApplication _doModalLoop:peek:] + 497 11 com.apple.AppKit 0x00007fff7491f746 __35-[NSApplication runModalForWindow:]_block_invoke + 64 12 com.apple.AppKit 0x00007fff7474a4b2 -[NSApplication runModalForWindow:] + 137 13 com.apple.AppKit 0x00007fff7490fd25 __19-[NSAlert runModal]_block_invoke + 158 14 com.apple.AppKit 0x00007fff747c2928 -[NSAlert runModal] + 125 15 com.apple.AppKit 0x00007fff747f01f6 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1022 16 com.apple.AppKit 0x00007fff747efdbb -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28 17 com.apple.AppKit 0x00007fff747efd5a -[NSPersistentUIRestorer promptToIgnorePersistentState] + 237 18 com.apple.AppKit 0x00007fff744fbd2f -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:completionHandler:] + 181 19 com.apple.AppKit 0x00007fff74637bbc -[NSApplication _sendFinishLaunchingNotification] + 138 20 com.apple.AppKit 0x00007fff744f6f27 _DPSNextEvent + 2035 21 com.apple.AppKit 0x00007fff74c0c1c3 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1637 22 libopencv_highgui.3.1.dylib 0x0000000112092df8 cvWaitKey + 402 23 cv2.cpython-35m-darwin.so 0x00000001108e09f8 pyopencv_cv_waitKey(_object*, _object*, _object*) + 105 24 org.python.python 0x000000010cf56e79 PyCFunction_Call + 60 25 org.python.python 0x000000010cfb72eb PyEval_EvalFrameEx + 22999 26 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 27 org.python.python 0x000000010cfb18ab PyEval_EvalCode + 75 28 org.python.python 0x000000010cfaf387 builtin_exec + 524 29 org.python.python 0x000000010cf56f51 PyCFunction_Call + 276 30 org.python.python 0x000000010cfb72eb PyEval_EvalFrameEx + 22999 31 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 32 org.python.python 0x000000010cfbb16d fast_function + 348 33 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 34 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 35 org.python.python 0x000000010cfbb16d fast_function + 348 36 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 37 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 38 org.python.python 0x000000010cfbb16d fast_function + 348 39 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 40 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 41 org.python.python 0x000000010cfbb16d fast_function + 348 42 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 43 org.python.python 0x000000010cfbb0ed fast_function + 220 44 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 45 org.python.python 0x000000010cfbb0ed fast_function + 220 46 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 47 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 48 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 49 org.python.python 0x000000010cf405a0 function_call + 369 50 org.python.python 0x000000010cf20af5 PyObject_Call + 101 51 org.python.python 0x000000010cfb7983 PyEval_EvalFrameEx + 24687 52 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 53 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 54 org.python.python 0x000000010cf405a0 function_call + 369 55 org.python.python 0x000000010cf20af5 PyObject_Call + 101 56 org.python.python 0x000000010cfb7983 PyEval_EvalFrameEx + 24687 57 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 58 org.python.python 0x000000010cfbb16d fast_function + 348 59 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 60 org.python.python 0x000000010cfbb0ed fast_function + 220 61 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 62 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 63 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 64 org.python.python 0x000000010cf405a0 function_call + 369 65 org.python.python 0x000000010cf20af5 PyObject_Call + 101 66 org.python.python 0x000000010cfb7983 PyEval_EvalFrameEx + 24687 67 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 68 org.python.python 0x000000010cfbb16d fast_function + 348 69 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 70 org.python.python 0x000000010cfbb0ed fast_function + 220 71 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 72 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 73 org.python.python 0x000000010cfbb16d fast_function + 348 74 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 75 org.python.python 0x000000010cfbb0ed fast_function + 220 76 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 77 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 78 org.python.python 0x000000010cfbb16d fast_function + 348 79 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 80 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 81 org.python.python 0x000000010cfb18ab PyEval_EvalCode + 75 82 org.python.python 0x000000010cfaf387 builtin_exec + 524 83 org.python.python 0x000000010cf56f51 PyCFunction_Call + 276 84 org.python.python 0x000000010cfb72eb PyEval_EvalFrameEx + 22999 85 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 86 org.python.python 0x000000010cfbb16d fast_function + 348 87 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 88 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 89 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 90 org.python.python 0x000000010cf405a0 function_call + 369 91 org.python.python 0x000000010cf20af5 PyObject_Call + 101 92 org.python.python 0x000000010cfeac2b RunModule + 147 93 org.python.python 0x000000010cfea630 Py_Main + 2504 94 org.python.python 0x000000010cf12e3f 0x10cf11000 + 7743 95 libdyld.dylib 0x00007fff8b93a255 start + 1 Thread 1: 0 libsystem_kernel.dylib 0x00007fff8ba69e2e kevent + 10 1 libzmq.cpython-35m-darwin.so 0x000000010e77858b zmq::kqueue_t::loop() + 475 2 libzmq.cpython-35m-darwin.so 0x000000010e7a03ef thread_routine(void*) + 47 3 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 4 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 5 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 2: 0 libsystem_kernel.dylib 0x00007fff8ba69e2e kevent + 10 1 libzmq.cpython-35m-darwin.so 0x000000010e77858b zmq::kqueue_t::loop() + 475 2 libzmq.cpython-35m-darwin.so 0x000000010e7a03ef thread_routine(void*) + 47 3 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 4 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 5 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 3: 0 libsystem_kernel.dylib 0x00007fff8ba6a236 poll + 10 1 libzmq.cpython-35m-darwin.so 0x000000010e7a6c78 zmq_poll + 520 2 _poll.cpython-35m-darwin.so 0x000000010e8c5082 __pyx_pf_3zmq_7backend_6cython_5_poll_zmq_poll + 2738 3 _poll.cpython-35m-darwin.so 0x000000010e8c3fe9 __pyx_pw_3zmq_7backend_6cython_5_poll_1zmq_poll + 185 4 org.python.python 0x000000010cf56e79 PyCFunction_Call + 60 5 org.python.python 0x000000010cfb7439 PyEval_EvalFrameEx + 23333 6 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 7 org.python.python 0x000000010cfbb16d fast_function + 348 8 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 9 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 10 org.python.python 0x000000010cfbb16d fast_function + 348 11 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 12 org.python.python 0x000000010cfbb0ed fast_function + 220 13 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 14 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 15 org.python.python 0x000000010cfbb16d fast_function + 348 16 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 17 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 18 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 19 org.python.python 0x000000010cf405a0 function_call + 369 20 org.python.python 0x000000010cf20af5 PyObject_Call + 101 21 org.python.python 0x000000010cfb7983 PyEval_EvalFrameEx + 24687 22 org.python.python 0x000000010cfbb0ed fast_function + 220 23 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 24 org.python.python 0x000000010cfbb0ed fast_function + 220 25 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 26 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 27 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 28 org.python.python 0x000000010cf405a0 function_call + 369 29 org.python.python 0x000000010cf20af5 PyObject_Call + 101 30 org.python.python 0x000000010cf30cf5 method_call + 140 31 org.python.python 0x000000010cf20af5 PyObject_Call + 101 32 org.python.python 0x000000010cfba083 PyEval_CallObjectWithKeywords + 165 33 org.python.python 0x000000010cfed93e t_bootstrap + 70 34 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 35 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 36 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff8ba6a236 poll + 10 1 libzmq.cpython-35m-darwin.so 0x000000010e7a6c78 zmq_poll + 520 2 libzmq.cpython-35m-darwin.so 0x000000010e787b29 zmq::proxy(zmq::socket_base_t*, zmq::socket_base_t*, zmq::socket_base_t*, zmq::socket_base_t*) + 329 3 _device.cpython-35m-darwin.so 0x000000010e8d6697 __pyx_pw_3zmq_7backend_6cython_7_device_3proxy + 423 4 org.python.python 0x000000010cf56e79 PyCFunction_Call + 60 5 _device.cpython-35m-darwin.so 0x000000010e8d578c __pyx_pw_3zmq_7backend_6cython_7_device_1device + 444 6 org.python.python 0x000000010cf56e79 PyCFunction_Call + 60 7 org.python.python 0x000000010cfb72eb PyEval_EvalFrameEx + 22999 8 org.python.python 0x000000010cfbb0ed fast_function + 220 9 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 10 org.python.python 0x000000010cfbb0ed fast_function + 220 11 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 12 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 13 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 14 org.python.python 0x000000010cf405a0 function_call + 369 15 org.python.python 0x000000010cf20af5 PyObject_Call + 101 16 org.python.python 0x000000010cf30cf5 method_call + 140 17 org.python.python 0x000000010cf20af5 PyObject_Call + 101 18 org.python.python 0x000000010cfba083 PyEval_CallObjectWithKeywords + 165 19 org.python.python 0x000000010cfed93e t_bootstrap + 70 20 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 21 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 22 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff8ba69e2e kevent + 10 1 libzmq.cpython-35m-darwin.so 0x000000010e77858b zmq::kqueue_t::loop() + 475 2 libzmq.cpython-35m-darwin.so 0x000000010e7a03ef thread_routine(void*) + 47 3 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 4 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 5 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 6: 0 libsystem_kernel.dylib 0x00007fff8ba69e2e kevent + 10 1 libzmq.cpython-35m-darwin.so 0x000000010e77858b zmq::kqueue_t::loop() + 475 2 libzmq.cpython-35m-darwin.so 0x000000010e7a03ef thread_routine(void*) + 47 3 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 4 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 5 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 7: 0 libsystem_kernel.dylib 0x00007fff8ba68c8a __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff8bb5296a _pthread_cond_wait + 712 2 org.python.python 0x000000010cfe8674 PyThread_acquire_lock_timed + 256 3 org.python.python 0x000000010cfed1f2 acquire_timed + 102 4 org.python.python 0x000000010cfecfa3 lock_PyThread_acquire_lock + 48 5 org.python.python 0x000000010cf56e79 PyCFunction_Call + 60 6 org.python.python 0x000000010cfb72eb PyEval_EvalFrameEx + 22999 7 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 8 org.python.python 0x000000010cfbb16d fast_function + 348 9 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 10 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 11 org.python.python 0x000000010cfbb16d fast_function + 348 12 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 13 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 14 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 15 org.python.python 0x000000010cf405a0 function_call + 369 16 org.python.python 0x000000010cf20af5 PyObject_Call + 101 17 org.python.python 0x000000010cfb7983 PyEval_EvalFrameEx + 24687 18 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 19 org.python.python 0x000000010cfbb16d fast_function + 348 20 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 21 org.python.python 0x000000010cfbb0ed fast_function + 220 22 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 23 org.python.python 0x000000010cfbb0ed fast_function + 220 24 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 25 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 26 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 27 org.python.python 0x000000010cf405a0 function_call + 369 28 org.python.python 0x000000010cf20af5 PyObject_Call + 101 29 org.python.python 0x000000010cf30cf5 method_call + 140 30 org.python.python 0x000000010cf20af5 PyObject_Call + 101 31 org.python.python 0x000000010cfba083 PyEval_CallObjectWithKeywords + 165 32 org.python.python 0x000000010cfed93e t_bootstrap + 70 33 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 34 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 35 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 8: 0 libsystem_kernel.dylib 0x00007fff8ba68f4e __select + 10 1 org.python.python 0x000000010d0113a4 time_sleep + 109 2 org.python.python 0x000000010cfb7407 PyEval_EvalFrameEx + 23283 3 org.python.python 0x000000010cfbb0ed fast_function + 220 4 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 5 org.python.python 0x000000010cfbb0ed fast_function + 220 6 org.python.python 0x000000010cfb716b PyEval_EvalFrameEx + 22615 7 org.python.python 0x000000010cfba83d _PyEval_EvalCodeWithName + 1886 8 org.python.python 0x000000010cfb18ff PyEval_EvalCodeEx + 78 9 org.python.python 0x000000010cf405a0 function_call + 369 10 org.python.python 0x000000010cf20af5 PyObject_Call + 101 11 org.python.python 0x000000010cf30cf5 method_call + 140 12 org.python.python 0x000000010cf20af5 PyObject_Call + 101 13 org.python.python 0x000000010cfba083 PyEval_CallObjectWithKeywords + 165 14 org.python.python 0x000000010cfed93e t_bootstrap + 70 15 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 16 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 17 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff8ba694e6 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8bb517b5 _pthread_wqthread + 1426 2 libsystem_pthread.dylib 0x00007fff8bb51211 start_wqthread + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff8ba694e6 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8bb51622 _pthread_wqthread + 1023 2 libsystem_pthread.dylib 0x00007fff8bb51211 start_wqthread + 13 Thread 11: 0 libsystem_kernel.dylib 0x00007fff8ba694e6 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8bb517b5 _pthread_wqthread + 1426 2 libsystem_pthread.dylib 0x00007fff8bb51211 start_wqthread + 13 Thread 12: 0 libsystem_kernel.dylib 0x00007fff8ba6146e semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff8b90d2c2 _dispatch_semaphore_wait_slow + 103 2 libdispatch.dylib 0x00007fff8b907a94 _dispatch_worker_thread + 275 3 libsystem_pthread.dylib 0x00007fff8bb51aab _pthread_body + 180 4 libsystem_pthread.dylib 0x00007fff8bb519f7 _pthread_start + 286 5 libsystem_pthread.dylib 0x00007fff8bb51221 thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff8ba694e6 __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff8bb517b5 _pthread_wqthread + 1426 2 libsystem_pthread.dylib 0x00007fff8bb51211 start_wqthread + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x9000000000000000 rbx: 0x00007f83d3902010 rcx: 0x0000000000000000 rdx: 0x00000000000ff050 rdi: 0x00007f83d55451a0 rsi: 0x00007f83d5500000 rbp: 0x00007fff52ce9120 rsp: 0x00007fff52ce9120 r8: 0x0000000000000001 r9: 0x00007f83d55412d0 r10: 0x0000000000000001 r11: 0x0000000000000002 r12: 0x00007f83d3902000 r13: 0xa3a3a3a3a3a3a3a3 r14: 0x00007f83d3902a58 r15: 0x00007f83d3902000 rip: 0x00007fff8b04ff6f rfl: 0x0000000000010246 cr2: 0x0000000000000020 Logical CPU: 2 Error Code: 0x00000004 Trap Number: 14 Binary Images: 0x10cf11000 - 0x10cf12fff +org.python.python (3.5.2 - 3.5.2) <9D863B29-1E18-3F83-B577-C8B158CE588E> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/Resources/Python.app/Contents/MacOS/Python 0x10cf16000 - 0x10d075fff +org.python.python (3.5.2, [c] 2001-2016 Python Software Foundation. - 3.5.2) <497B2965-E8F9-3824-B49C-5BAF4E2F7FA8> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/Python 0x10d40a000 - 0x10d40bfff +_heapq.cpython-35m-darwin.so (0) <DB489702-5EE9-3D31-BD42-AD02B7830D98> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_heapq.cpython-35m-darwin.so 0x10d4cf000 - 0x10d4d4ff7 +_json.cpython-35m-darwin.so (0) <C49622AB-0946-364D-A9E5-415AB616C7A2> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_json.cpython-35m-darwin.so 0x10d4d9000 - 0x10d4dafff +_posixsubprocess.cpython-35m-darwin.so (0) <8AB30297-0B65-3B4A-8607-1C4BBE039C01> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_posixsubprocess.cpython-35m-darwin.so 0x10d4dd000 - 0x10d4e0fff +select.cpython-35m-darwin.so (0) <5EB13C6D-273A-36DF-9C28-412F443B34FD> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/select.cpython-35m-darwin.so 0x10d525000 - 0x10d52affb +math.cpython-35m-darwin.so (0) <AB4F0A3B-877A-30A1-A4BC-470981F74F4D> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/math.cpython-35m-darwin.so 0x10d611000 - 0x10d614ffb +_struct.cpython-35m-darwin.so (0) <9896C910-EC05-3E9E-A79A-32D1DCFC043B> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_struct.cpython-35m-darwin.so 0x10d61b000 - 0x10d61bfff +grp.cpython-35m-darwin.so (0) <7C85A3DD-EB90-31C5-A72B-273162E5806B> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/grp.cpython-35m-darwin.so 0x10d65e000 - 0x10d65ffff +_bz2.cpython-35m-darwin.so (0) <48D98409-C877-3084-857A-9CC1771D4A80> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_bz2.cpython-35m-darwin.so 0x10d663000 - 0x10d666ff7 +_lzma.cpython-35m-darwin.so (0) <2A60D066-401C-3A5C-9B95-8D5B76D3D6DD> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_lzma.cpython-35m-darwin.so 0x10d66b000 - 0x10d687ff7 +liblzma.5.dylib (0) <9F5CEED0-E2FF-3C57-B66F-A1053E0312FE> /usr/local/opt/xz/lib/liblzma.5.dylib 0x10d70d000 - 0x10d70dfff +_opcode.cpython-35m-darwin.so (0) <8A0A68B8-E4BC-3283-9781-6D03C69ADA31> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_opcode.cpython-35m-darwin.so 0x10d790000 - 0x10d793fff +_hashlib.cpython-35m-darwin.so (0) <DBEBC7B6-9454-3931-AB61-38B9C2B148A2> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_hashlib.cpython-35m-darwin.so 0x10d797000 - 0x10d7d6ff7 +libssl.1.0.0.dylib (0) <E105E614-7546-3784-975F-C5278723D08C> /usr/local/opt/openssl/lib/libssl.1.0.0.dylib 0x10d7f3000 - 0x10d965af7 +libcrypto.1.0.0.dylib (0) <BA2A57BB-4346-303E-A1E8-7862E6752057> /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib 0x10d9dd000 - 0x10d9defff +_random.cpython-35m-darwin.so (0) <983A432E-58CA-3B4B-983C-9FAEE75BB3D4> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_random.cpython-35m-darwin.so 0x10db21000 - 0x10db22fff +termios.cpython-35m-darwin.so (0) <C2AFE89E-21B0-335C-9FFE-331113E3B393> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/termios.cpython-35m-darwin.so 0x10db26000 - 0x10db27fff +fcntl.cpython-35m-darwin.so (0) <2E1C44AE-21FF-3A4C-9C48-BE668B2F4350> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/fcntl.cpython-35m-darwin.so 0x10db2b000 - 0x10db2cffb +resource.cpython-35m-darwin.so (0) <127F5AE0-16F0-339E-9F3A-0F83890A9134> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/resource.cpython-35m-darwin.so 0x10dc70000 - 0x10dc73ffb +binascii.cpython-35m-darwin.so (0) <7E9CFBFB-9AD2-31A8-9FD7-BD3D5A85B5B6> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/binascii.cpython-35m-darwin.so 0x10dcb6000 - 0x10dcbfffb +_datetime.cpython-35m-darwin.so (0) <39D4A716-0A73-358D-840D-B0EC6FA94911> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_datetime.cpython-35m-darwin.so 0x10dd87000 - 0x10dd8afff +zlib.cpython-35m-darwin.so (0) <47C92FB7-621A-30BD-A890-99B18787BB15> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/zlib.cpython-35m-darwin.so 0x10dd8f000 - 0x10ddaefff +pyexpat.cpython-35m-darwin.so (0) <06AA2803-8EA0-311E-9076-1321047F979A> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/pyexpat.cpython-35m-darwin.so 0x10ddf9000 - 0x10de01ff7 +_socket.cpython-35m-darwin.so (0) <B7505851-DBE1-33CF-8A7C-4AA9818AAF16> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_socket.cpython-35m-darwin.so 0x10e070000 - 0x10e07bffb +_pickle.cpython-35m-darwin.so (0) <951F17CA-D0C7-30C9-B212-4D6DAAF1ECC8> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_pickle.cpython-35m-darwin.so 0x10e0c5000 - 0x10e0cdfff +_sqlite3.cpython-35m-darwin.so (0) <676DE68A-109C-32D3-A3EC-C52617829DF3> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_sqlite3.cpython-35m-darwin.so 0x10e0d7000 - 0x10e177ff7 +libsqlite3.0.dylib (0) <C0D9C0DF-DE18-38AE-922F-B0418B51215F> /usr/local/opt/sqlite/lib/libsqlite3.0.dylib 0x10e24e000 - 0x10e24efff +_bisect.cpython-35m-darwin.so (0) <8DCAE7C5-5229-3CE3-A06A-CC8698810138> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_bisect.cpython-35m-darwin.so 0x10e3d1000 - 0x10e3d2ffb +_multiprocessing.cpython-35m-darwin.so (0) <57C2014F-CAB6-3ED8-B836-0D5B6D81DD24> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_multiprocessing.cpython-35m-darwin.so 0x10e3d5000 - 0x10e3daff7 +array.cpython-35m-darwin.so (0) <B3D846FE-6638-3DC4-97C5-6AC28422C55C> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/array.cpython-35m-darwin.so 0x10e4e1000 - 0x10e4ecfff +_ssl.cpython-35m-darwin.so (0) <70C71319-B2FA-3727-9D94-662C4A98DCC9> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_ssl.cpython-35m-darwin.so 0x10e538000 - 0x10e605ffb +unicodedata.cpython-35m-darwin.so (0) <5FBFB4A9-299C-3F1D-8DBA-1F9B9BD8D350> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/unicodedata.cpython-35m-darwin.so 0x10e6ca000 - 0x10e6cbffb +_lsprof.cpython-35m-darwin.so (0) <63A52964-3433-3196-B9C0-C6C42094D9D2> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_lsprof.cpython-35m-darwin.so 0x10e74f000 - 0x10e75eff7 +_ctypes.cpython-35m-darwin.so (0) <CC1388EE-42A6-3F9F-AAC4-98D5C5692630> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_ctypes.cpython-35m-darwin.so 0x10e76a000 - 0x10e7c8fff +libzmq.cpython-35m-darwin.so (???) <E22DA968-B74C-30E9-B459-3B0F7AD4BEBD> /usr/local/lib/python3.5/site-packages/zmq/libzmq.cpython-35m-darwin.so 0x10e857000 - 0x10e860ff7 +constants.cpython-35m-darwin.so (???) <F814E0AE-FCF5-3817-821B-8632A4CA3E70> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/constants.cpython-35m-darwin.so 0x10e86c000 - 0x10e86eff7 +error.cpython-35m-darwin.so (???) <B39EB9E1-A2B9-3EFA-BD6E-70EE76C46C1C> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/error.cpython-35m-darwin.so 0x10e872000 - 0x10e87cff7 +message.cpython-35m-darwin.so (???) <9B703586-84AA-32D5-8684-A5387CFB01CA> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/message.cpython-35m-darwin.so 0x10e886000 - 0x10e88dff7 +context.cpython-35m-darwin.so (???) <9A134A91-9837-3ABA-93B0-6BEB20C90784> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/context.cpython-35m-darwin.so 0x10e895000 - 0x10e8a9ff7 +socket.cpython-35m-darwin.so (???) <ADCA2383-1EE1-3448-B615-4FE43E1B6A88> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/socket.cpython-35m-darwin.so 0x10e8b7000 - 0x10e8bbfff +utils.cpython-35m-darwin.so (???) <7811BAD4-B631-3C8A-AF98-EBED3D9625B9> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/utils.cpython-35m-darwin.so 0x10e8c1000 - 0x10e8c8ff7 +_poll.cpython-35m-darwin.so (???) <FB6969AA-AE0D-3410-B0D9-5FA21B9074C3> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/_poll.cpython-35m-darwin.so 0x10e8ce000 - 0x10e8cfff7 +_version.cpython-35m-darwin.so (???) <AD480DBD-F461-3485-B5D5-BF060593648B> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/_version.cpython-35m-darwin.so 0x10e8d3000 - 0x10e8d8ff7 +_device.cpython-35m-darwin.so (???) <ADD027C1-3991-3C18-B733-8B47E16B0C76> /usr/local/lib/python3.5/site-packages/zmq/backend/cython/_device.cpython-35m-darwin.so 0x10eb1f000 - 0x10eb1fff3 +speedups.cpython-35m-darwin.so (0) <8AEAD6A4-D08A-356E-AD02-6DABDE26C955> /usr/local/lib/python3.5/site-packages/tornado/speedups.cpython-35m-darwin.so 0x10eb62000 - 0x10eb6dfff +_curses.cpython-35m-darwin.so (0) <25F24232-9872-3395-847D-D0B5A7496DC9> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_curses.cpython-35m-darwin.so 0x10ed65000 - 0x10eeb3ff7 +multiarray.cpython-35m-darwin.so (???) <81FFBEEB-56FD-3222-8184-9F4A13510EA7> /usr/local/lib/python3.5/site-packages/numpy/core/multiarray.cpython-35m-darwin.so 0x10ef70000 - 0x10efedfff +umath.cpython-35m-darwin.so (???) <E1F37C86-64F6-341D-A0BA-4F33F2C7B815> /usr/local/lib/python3.5/site-packages/numpy/core/umath.cpython-35m-darwin.so 0x10f166000 - 0x10f167ff7 +lapack_lite.cpython-35m-darwin.so (???) <65064D75-9098-30F8-8CE5-F38584BE3B35> /usr/local/lib/python3.5/site-packages/numpy/linalg/lapack_lite.cpython-35m-darwin.so 0x10f16b000 - 0x10f180fff +_umath_linalg.cpython-35m-darwin.so (???) <9BF025D0-126D-3FA9-9EFC-C679DABFD5DC> /usr/local/lib/python3.5/site-packages/numpy/linalg/_umath_linalg.cpython-35m-darwin.so 0x10f20e000 - 0x10f216ff7 +fftpack_lite.cpython-35m-darwin.so (???) <0880FF58-F729-3CD2-B34C-C92DCE9F0E1B> /usr/local/lib/python3.5/site-packages/numpy/fft/fftpack_lite.cpython-35m-darwin.so 0x10f25a000 - 0x10f2edff7 +mtrand.cpython-35m-darwin.so (???) <D4A46ECE-8209-320D-A963-84DD7161D286> /usr/local/lib/python3.5/site-packages/numpy/random/mtrand.cpython-35m-darwin.so 0x10f422000 - 0x10f473ff7 +hashtable.cpython-35m-darwin.so (???) <03FF1048-3E0C-3905-8D9E-D306D2E1CCF9> /usr/local/lib/python3.5/site-packages/pandas/hashtable.cpython-35m-darwin.so 0x10f4d3000 - 0x10f637fff +tslib.cpython-35m-darwin.so (???) <7012CD86-BDAF-38B1-905E-A934B138CAA2> /usr/local/lib/python3.5/site-packages/pandas/tslib.cpython-35m-darwin.so 0x10f6a2000 - 0x10f78cff7 +lib.cpython-35m-darwin.so (???) <33230766-11CC-300E-849E-5FA01388DF0C> /usr/local/lib/python3.5/site-packages/pandas/lib.cpython-35m-darwin.so 0x10f813000 - 0x10fa9cfff +algos.cpython-35m-darwin.so (???) <607B1DD6-A2A0-3C96-A48B-D0C29A2AF609> /usr/local/lib/python3.5/site-packages/pandas/algos.cpython-35m-darwin.so 0x10fbc1000 - 0x10fbf1ff7 +index.cpython-35m-darwin.so (???) <50BA4B1F-0928-3AEE-BEE4-0A459A87CE46> /usr/local/lib/python3.5/site-packages/pandas/index.cpython-35m-darwin.so 0x10fcc5000 - 0x10fcc8fff +_csv.cpython-35m-darwin.so (0) <39199CF2-D327-31BA-8F48-9EA215C36419> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_csv.cpython-35m-darwin.so 0x10fd0d000 - 0x10fd0efff +_scproxy.cpython-35m-darwin.so (0) <C3523261-1F19-36FE-AC2D-A6CA5F9EE286> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_scproxy.cpython-35m-darwin.so 0x10fd91000 - 0x10fde1fff +_period.cpython-35m-darwin.so (???) <C2210237-BAE8-3423-910E-960CEFF59509> /usr/local/lib/python3.5/site-packages/pandas/_period.cpython-35m-darwin.so 0x10ff3f000 - 0x10ff81ff7 +_sparse.cpython-35m-darwin.so (???) <7BC078F7-6956-3B83-9884-5458FC5C0CB6> /usr/local/lib/python3.5/site-packages/pandas/_sparse.cpython-35m-darwin.so 0x110294000 - 0x1102beffb +_decimal.cpython-35m-darwin.so (0) <F0B70BA9-40C7-3561-A0E3-49DD9315C687> /usr/local/Cellar/python3/3.5.2_3/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_decimal.cpython-35m-darwin.so 0x110310000 - 0x110333fff +_path.cpython-35m-darwin.so (???) <410EBEEF-1642-3836-9074-766FF9623088> /usr/local/lib/python3.5/site-packages/matplotlib/_path.cpython-35m-darwin.so 0x1104c6000 - 0x110515fff +parser.cpython-35m-darwin.so (???) <D9232B92-184A-32CB-8D43-8C5E81C7C991> /usr/local/lib/python3.5/site-packages/pandas/parser.cpython-35m-darwin.so 0x110533000 - 0x110545ff7 +json.cpython-35m-darwin.so (???) <16E930E5-E129-3AED-9966-F10E55C96BB1> /usr/local/lib/python3.5/site-packages/pandas/json.cpython-35m-darwin.so 0x11064f000 - 0x11065afff +_packer.cpython-35m-darwin.so (???) <4B97AC8E-DC53-3893-B9E1-D6D6E4487C19> /usr/local/lib/python3.5/site-packages/pandas/msgpack/_packer.cpython-35m-darwin.so 0x110663000 - 0x110672fff +_unpacker.cpython-35m-darwin.so (???) <4CA2284B-3F7D-3BAC-B2A9-8952426AF93B> /usr/local/lib/python3.5/site-packages/pandas/msgpack/_unpacker.cpython-35m-darwin.so 0x11067e000 - 0x11067eff7 +_move.cpython-35m-darwin.so (???) <ADAF20F8-014F-3975-9E60-1C35E294C5B6> /usr/local/lib/python3.5/site-packages/pandas/util/_move.cpython-35m-darwin.so 0x1106c1000 - 0x1106cdfff +_testing.cpython-35m-darwin.so (???) <7766EAEB-81C8-34F7-883A-10CEC333B658> /usr/local/lib/python3.5/site-packages/pandas/_testing.cpython-35m-darwin.so 0x110740000 - 0x1109e0fff +cv2.cpython-35m-darwin.so (0) <66765E54-4D11-382D-A089-14E198899987> /usr/local/lib/python3.5/site-packages/cv2.cpython-35m-darwin.so 0x110a94000 - 0x110a9bff3 +libopencv_hdf.3.1.dylib (0) <6210C29D-AB7B-3939-815A-EC67B6006F0A> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_hdf.3.1.dylib 0x110aa0000 - 0x110ab7feb +libopencv_reg.3.1.dylib (0) <91B9423A-4707-3BD1-91C4-20CC846FDEFE> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_reg.3.1.dylib 0x110abe000 - 0x110af5ff7 +libopencv_surface_matching.3.1.dylib (0) <2683233D-63DF-3E0F-9B76-187CC71B8BDC> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_surface_matching.3.1.dylib 0x110b11000 - 0x110cc1feb +libopencv_dnn.3.1.dylib (0) <31DE3B2B-5AA5-3888-B2D7-32FFC10DFC5C> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_dnn.3.1.dylib 0x110db7000 - 0x110dd0ff3 +libopencv_superres.3.1.dylib (0) <1326CF3F-5CFE-3178-BAD8-5EBFA3A585AB> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_superres.3.1.dylib 0x110ddd000 - 0x110deffe3 +libopencv_xobjdetect.3.1.dylib (0) <B2B33A36-E328-3B1A-8BFA-7723FF5E2DEA> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_xobjdetect.3.1.dylib 0x110df7000 - 0x110e5ffeb +libopencv_xphoto.3.1.dylib (0) <41769406-CE70-3142-8981-E1D1594AA91B> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_xphoto.3.1.dylib 0x110e72000 - 0x110e7bffb +libopencv_bgsegm.3.1.dylib (0) <7FBCB11B-F53E-3E1E-9962-6FFD97D89138> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_bgsegm.3.1.dylib 0x110e81000 - 0x110ea2ff7 +libopencv_bioinspired.3.1.dylib (0) <7FB70726-7280-3AB3-84A2-06B1943247F4> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_bioinspired.3.1.dylib 0x110eb2000 - 0x110ec3fe7 +libopencv_dpm.3.1.dylib (0) <B88EBDA3-E73E-3703-A32A-7336093E3DED> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_dpm.3.1.dylib 0x110ecb000 - 0x110eecfe7 +libopencv_line_descriptor.3.1.dylib (0) <6E634FC5-2BC6-3027-95C1-FA3743EAAFDE> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_line_descriptor.3.1.dylib 0x110efc000 - 0x110f1eff3 +libopencv_saliency.3.1.dylib (0) <75ED32D2-11CB-3B47-8909-8CE8A8C451DB> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_saliency.3.1.dylib 0x110f30000 - 0x110fbbff3 +libopencv_ccalib.3.1.dylib (0) <AB25C13E-B115-368F-9FDF-2531606D94DB> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_ccalib.3.1.dylib 0x110fcb000 - 0x1112bcfe3 +libopencv_tracking.3.1.dylib (0) <7A50EB58-56F4-3D2F-97DA-075FD14721DE> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_tracking.3.1.dylib 0x1112e7000 - 0x111316ffb +libopencv_videostab.3.1.dylib (0) <897D00FF-A004-3A9D-B83B-C1CC2C1ABD7D> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_videostab.3.1.dylib 0x11132b000 - 0x111362ffb +libopencv_aruco.3.1.dylib (0) <C5D18379-5154-3545-A9F4-6547F09F185E> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_aruco.3.1.dylib 0x111386000 - 0x1113cbfff +libopencv_optflow.3.1.dylib (0) <446F9281-E9FD-3848-9A71-C06A7A49FF5A> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_optflow.3.1.dylib 0x1113e0000 - 0x111442ff3 +libopencv_stitching.3.1.dylib (0) <B5567BEF-BA8C-34AA-8DA3-687E1A554A07> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_stitching.3.1.dylib 0x111465000 - 0x111476fe3 +libopencv_structured_light.3.1.dylib (0) <0CF61812-7921-3EB6-8DEA-8E31C5B07532> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_structured_light.3.1.dylib 0x11147e000 - 0x111485ffb +libopencv_plot.3.1.dylib (0) <160A8CAE-B2E9-3C22-99C3-943EBD36FF2D> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_plot.3.1.dylib 0x11148a000 - 0x1114c0fef +libopencv_datasets.3.1.dylib (0) <520BD7C0-CDE5-38CD-A5B0-784FCAB437B3> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_datasets.3.1.dylib 0x1114e2000 - 0x1114fefeb +libopencv_face.3.1.dylib (0) <521748B1-35C5-319D-884D-3287A9E68FF5> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_face.3.1.dylib 0x111507000 - 0x111566ff3 +libopencv_text.3.1.dylib (0) <A08E9B9C-E9FB-341A-A63A-82CDCE87EFF4> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_text.3.1.dylib 0x111641000 - 0x1116e4fe7 +libopencv_photo.3.1.dylib (0) <2312D9F3-8CE2-37E7-8D4D-42998BB2248D> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_photo.3.1.dylib 0x111703000 - 0x1117c3fff +libopencv_ximgproc.3.1.dylib (0) <7A1E3F43-285F-3E33-886A-8C1A24E444F0> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_ximgproc.3.1.dylib 0x1118f8000 - 0x11194afe7 +libopencv_objdetect.3.1.dylib (0) <A767EB90-FE52-32F7-9D4A-7CC209550BB8> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_objdetect.3.1.dylib 0x111962000 - 0x111c0ffff +libopencv_xfeatures2d.3.1.dylib (0) <D3DB9205-1213-39A6-B2EF-7AAF264BD9F6> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_xfeatures2d.3.1.dylib 0x111c31000 - 0x111c53ff7 +libopencv_shape.3.1.dylib (0) <5CA368F0-BC50-36F1-B379-6DEF7D330187> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_shape.3.1.dylib 0x111c5f000 - 0x111cb1ff3 +libopencv_video.3.1.dylib (0) <B1AD2771-47F6-33B5-AFC7-2ABBA6C6EC6F> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_video.3.1.dylib 0x111cc0000 - 0x111cc6fe7 +libopencv_phase_unwrapping.3.1.dylib (0) <778F8E83-885B-3535-82D2-AF272AEB109F> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_phase_unwrapping.3.1.dylib 0x111ccc000 - 0x111d3cffb +libopencv_rgbd.3.1.dylib (0) <E6D1C6C2-1E34-3409-A0AD-C6E3EAD203B2> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_rgbd.3.1.dylib 0x111d54000 - 0x111ec2fef +libopencv_calib3d.3.1.dylib (0) <9145A76C-9C57-3396-919B-4970D1AF7155> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_calib3d.3.1.dylib 0x111ee8000 - 0x111f68ff7 +libopencv_features2d.3.1.dylib (0) <63E653F2-1B11-3673-BE13-0EE4DD3BD0CB> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_features2d.3.1.dylib 0x111f8d000 - 0x111fc9fff +libopencv_flann.3.1.dylib (0) <8EB283E3-4A3E-355F-BEFF-5281BAA5D276> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_flann.3.1.dylib 0x111fee000 - 0x11206ffe7 +libopencv_ml.3.1.dylib (0) <224363B3-70BF-32D3-AF5C-F2C87492AD31> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_ml.3.1.dylib 0x11208c000 - 0x112095fff +libopencv_highgui.3.1.dylib (0) <47CBC5C1-562C-3DAB-858E-213F675DEA0C> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_highgui.3.1.dylib 0x11209c000 - 0x1120b1ffb +libopencv_videoio.3.1.dylib (0) <35D932B6-93BF-339C-9222-3D6909F2374C> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_videoio.3.1.dylib 0x1120bf000 - 0x1120e5fe7 +libopencv_imgcodecs.3.1.dylib (0) <A48A4C4E-5759-300A-A365-6ABCDA55B61E> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_imgcodecs.3.1.dylib 0x1120f9000 - 0x112306ff7 +libhdf5.10.dylib (0) <27C0F290-9F28-379F-8FDE-CB55C1EBE207> /usr/local/opt/hdf5/lib/libhdf5.10.dylib 0x112343000 - 0x112380287 dyld (421.2) <13A9466A-2576-3ABB-AD9D-D6BC16439B8F> /usr/lib/dyld 0x1123ce000 - 0x1132d3fef +libopencv_imgproc.3.1.dylib (0) <853A26C1-3632-3554-ABAA-697F94C0C304> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_imgproc.3.1.dylib 0x1134a5000 - 0x113c23fdf +libopencv_core.3.1.dylib (0) <9A7C8EEF-D0D8-38EB-ADFE-D82E6CD44A0E> /usr/local/Cellar/opencv3/HEAD-2fded5d_4/lib/libopencv_core.3.1.dylib 0x113cf6000 - 0x113cfffff +libsz.2.dylib (0) <B108EBDC-CC8E-34B5-9038-D318D0820973> /usr/local/opt/szip/lib/libsz.2.dylib 0x113d0a000 - 0x113d36fff +libjpeg.8.dylib (0) <7A528846-854A-370E-AE9A-EEA0842EEC9C> /usr/local/lib/libjpeg.8.dylib 0x113d3d000 - 0x113d89fff +libwebp.6.dylib (0) <5FE179F9-E092-3B3E-8E23-2CD4042A35E6> /usr/local/opt/webp/lib/libwebp.6.dylib 0x113d95000 - 0x113db8ff7 +libpng16.16.dylib (0) <1D2D0046-B04E-3C6D-8319-7C70405C8FCF> /usr/local/opt/libpng/lib/libpng16.16.dylib 0x113dc1000 - 0x113e0dffb +libtiff.5.dylib (0) <BF6A3B3B-BC6A-3BA2-9019-EE66BA69774F> /usr/local/opt/libtiff/lib/libtiff.5.dylib 0x113e1b000 - 0x113e24fe3 +libImath-2_2.12.dylib (0) <F8D4F83E-AC5A-311C-A814-76CE4A1E9D81> /usr/local/opt/ilmbase/lib/libImath-2_2.12.dylib 0x113e29000 - 0x1140b4ffb +libIlmImf-2_2.22.dylib (0) <B9C43CC3-08B5-3F1C-A63C-8C552EF68B38> /usr/local/opt/openexr/lib/libIlmImf-2_2.22.dylib 0x11410c000 - 0x114110ff7 +libIex-2_2.12.dylib (0) <08119DB5-863D-3DBC-8EDC-A5E581D2443F> /usr/local/opt/ilmbase/lib/libIex-2_2.12.dylib 0x11411e000 - 0x11415fffb +libHalf.12.dylib (0) <38E36D53-E9DF-3F22-8064-BB1AE849E91F> /usr/local/opt/ilmbase/lib/libHalf.12.dylib 0x114162000 - 0x114165ff3 +libIlmThread-2_2.12.dylib (0) <9E2ED14E-60F4-33B3-B2D6-F8303DA28B2F> /usr/local/opt/ilmbase/lib/libIlmThread-2_2.12.dylib 0x11416a000 - 0x11416bff3 +libIexMath-2_2.12.dylib (0) <DBC56624-9BE9-36FE-99A3-205ABBB48D97> /usr/local/opt/ilmbase/lib/libIexMath-2_2.12.dylib 0x11426d000 - 0x114271fff com.apple.audio.AppleHDAHALPlugIn (278.23 - 278.23) <B99D24C0-19D6-383F-A8E5-B543A7B183CA> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn 0x114277000 - 0x114296ff7 com.apple.cmio.DAL.AppleCamera (400.5.57 - AppleCameraDeviceAbstractionLayer-5.57.0) <618FD02D-894D-3956-8254-FEBD0B6BB179> /Library/CoreMediaIO/*/AppleCamera.plugin/Contents/MacOS/AppleCamera 0x1142a1000 - 0x1142c6fff com.apple.cmio.DAL.VDC-4 (803.0 - 4927) <50442D87-A567-31FD-B45B-E7326A331191> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC 0x1142d2000 - 0x1142fcff7 com.apple.FWAVC (501.47 - 47) <5A7A5FB1-5E1C-3992-BB7F-557AAB94CAE8> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC 0x1164b6000 - 0x116619fff com.apple.CMIOUnits (803.0 - 4927) <FD0B694B-BC5D-33E8-BB43-D42BDF99F09E> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Contents/MacOS/CMIOUnits 0x116dbe000 - 0x11731eff7 com.apple.driver.AppleIntelBDWGraphicsGLDriver (10.20.23 - 10.2.0) <12BFD669-E9FD-3262-8D8E-D17D73EF503A> /System/Library/Extensions/AppleIntelBDWGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsGLDriver 0x7fff71682000 - 0x7fff719bafff com.apple.RawCamera.bundle (7.00 - 874) <99AF1865-BCDD-3313-85BF-E246745201F0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff731df000 - 0x7fff7339dff7 com.apple.avfoundation (2.0 - 1183.4) <CF8F272A-5046-389C-A89F-0C71CF700415> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff7339e000 - 0x7fff73441ff7 com.apple.audio.AVFAudio (1.0 - ???) <F340B5A9-80C4-39C2-952A-51F84681103F> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff734d6000 - 0x7fff734d6fff com.apple.Accelerate (1.11 - Accelerate 1.11) <97EF9FB3-581F-3F19-84D0-E9262559A454> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff734d7000 - 0x7fff734eeffb libCGInterfaces.dylib (331.5) <5796C169-B449-33C8-B471-BD711BDCB898> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff734ef000 - 0x7fff73a08feb com.apple.vImage (8.1 - ???) <A5DBF800-F768-3A61-8575-9B45FC32FEAB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff73a09000 - 0x7fff73b79ff3 libBLAS.dylib (1185) <C7E42BBE-2337-3AEF-9C45-A2F2CB1A5B3E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff73b7a000 - 0x7fff73b8effb libBNNS.dylib (14) <CFDEE88D-E002-347C-BC68-83099651585B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff73b8f000 - 0x7fff73f85fef libLAPACK.dylib (1185) <2E8201CB-9A41-3D65-853E-841917FCE77B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff73f86000 - 0x7fff73f9cfff libLinearAlgebra.dylib (1185) <8CC29DE1-A231-3D5E-B5F1-DCC309036FE0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff73f9d000 - 0x7fff73fa3fff libQuadrature.dylib (3) <120F6228-A3D4-3184-89D7-785ADC2AC715> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff73fa4000 - 0x7fff73fb8ff7 libSparseBLAS.dylib (1185) <C35235B7-CFA6-39A7-BD6E-79F4D9CAFD36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff73fb9000 - 0x7fff74140fe7 libvDSP.dylib (600) <DF2860D3-1B2E-3DE0-8D8D-F567374398CB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff74141000 - 0x7fff741f3ffb libvMisc.dylib (600) <5E006F98-FB5C-3AC4-B8B9-6D267B22AA72> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff741f4000 - 0x7fff741f4fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <A395B521-8E54-30F2-B4FE-355D68900DAF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff744b0000 - 0x7fff75190ff3 com.apple.AppKit (6.9 - 1504.60) <5DA1E013-575C-34D5-A028-1639EB7B0040> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff751a2000 - 0x7fff751a2fff com.apple.ApplicationServices (48 - 48) <3E1395EA-C661-3318-9B87-9857BB81021B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff751a3000 - 0x7fff75211ff7 com.apple.ApplicationServices.ATS (377 - 422.1) <FF4D9FCA-D799-3ED1-B5F8-3D81C29342D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff752ab000 - 0x7fff753d9ff7 libFontParser.dylib (194.2) <E29F233F-773A-3070-874A-83799BDF0B5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff753da000 - 0x7fff75424fff libFontRegistry.dylib (196.2) <8AEE7F4E-60F0-33BB-99E4-5381EF1FEC6F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff75481000 - 0x7fff754b3fff libTrueTypeScaler.dylib (194.2) <A8520109-5F65-3144-ABF7-E22B98A74287> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff7551f000 - 0x7fff755c9ff7 com.apple.ColorSync (4.12.0 - 502) <C86F8032-83DD-34EB-A4CB-87E96F25CF1C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff755ca000 - 0x7fff7561afff com.apple.HIServices (1.22 - 590) <109A9893-313B-3467-9892-062F49D1FF0D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff7561b000 - 0x7fff7562aff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <47D1A017-91A4-37F3-93E0-3923CD6ED2DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff7562b000 - 0x7fff75678fff com.apple.print.framework.PrintCore (12 - 491) <B7CC15C1-AF50-37F3-8AF6-65F8CDC323F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff75679000 - 0x7fff756b4fff com.apple.QD (3.12 - 310) <8F718290-DD82-36CE-9AF0-EFB6D31A49F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff756b5000 - 0x7fff756c0ff7 com.apple.speech.synthesis.framework (6.0.15 - 6.0.15) <23EA6076-ECDF-3A50-81E7-3CE6451DC8C4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff756c1000 - 0x7fff758cfff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <BA73DBAD-A9D2-3BA7-BCDB-4790D6C8B460> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff758d0000 - 0x7fff758d0fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <C49668FF-2971-3E30-92BB-09E0720E74A5> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff75a39000 - 0x7fff75dbdff7 com.apple.CFNetwork (807.1.3 - 807.1.3) <336BFAD9-1BAE-368E-8C48-B9F1CC251C67> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff75dd7000 - 0x7fff75dd7fff com.apple.Carbon (154 - 157) <AB71A31F-5B15-3BF5-8532-591EACD07B21> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff75dd8000 - 0x7fff75ddbfff com.apple.CommonPanels (1.2.6 - 98) <DDA2DF0B-86E7-34B6-B688-D7371DBC8A63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff75ddc000 - 0x7fff760e0fff com.apple.HIToolbox (2.1.1 - 856.6) <DAF74CE6-8B6B-3347-B299-FE860B517D38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff760e1000 - 0x7fff760e4ff7 com.apple.help (1.3.5 - 49) <27C5F9FE-838F-3807-A4AC-D99470185B10> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff760e5000 - 0x7fff760eafff com.apple.ImageCapture (9.0 - 9.0) <E3E757FD-4060-33A4-A2AC-85EFBD987FCE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff760eb000 - 0x7fff76182ff3 com.apple.ink.framework (10.9 - 219) <B44BA36D-7549-3EB2-8CF6-E171885194FB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff76183000 - 0x7fff7619dfff com.apple.openscripting (1.7 - 172) <B204BF70-C4AA-3699-8493-66E6645A92A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff7619e000 - 0x7fff7619fff3 com.apple.print.framework.Print (12 - 267) <CA7E9448-0903-34C8-AAF6-9070B52BF70E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff761a0000 - 0x7fff761a2ff7 com.apple.securityhi (9.0 - 55006) <FFB3F28C-B982-34EF-8510-8D6D10975404> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff761a3000 - 0x7fff761a9ff7 com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <A20B0F7B-C32A-3FF1-BB75-BAC0EE4EF889> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff76289000 - 0x7fff76289fff com.apple.Cocoa (6.11 - 22) <5EEB0A26-F1C2-3D57-8441-52C0B80C2A6A> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff763bf000 - 0x7fff7644fff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <4082E8CC-568A-364A-9AF0-92F30F067D42> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff76450000 - 0x7fff76463ff3 com.apple.CoreBluetooth (1.0 - 1) <73A2B185-70E4-3535-A653-E1BC74584E55> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff76464000 - 0x7fff7675affb com.apple.CoreData (120 - 752.2) <CCDCE896-CD36-3483-8E04-C513433BDDC5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff7675b000 - 0x7fff767e7fff com.apple.CoreDisplay (1.0 - 1) <ACA3B0B8-6900-3445-B202-C5C312421E44> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff767e8000 - 0x7fff76c81ff7 com.apple.CoreFoundation (6.9 - 1348.15) <C25C6FB8-E934-349C-952C-26CF913BAC33> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff76c82000 - 0x7fff77300fff com.apple.CoreGraphics (2.0 - 1070.8) <3F5B7647-8006-3738-9A5A-1AD2DF570992> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff77301000 - 0x7fff77540ff7 com.apple.CoreImage (12.0.0 - 451) <4A79760F-FD23-3055-9569-5F038818993F> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff7759e000 - 0x7fff7764eff7 com.apple.CoreMedia (1.0 - 1903.11) <34BC19CF-0203-315F-A75D-1E4237BF3FF4> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff7764f000 - 0x7fff7769aff7 com.apple.CoreMediaIO (803.0 - 4927) <C237F327-930D-30E7-A100-D60F28911154> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff7769b000 - 0x7fff7769bfff com.apple.CoreServices (775.8.2 - 775.8.2) <FE7B0765-C41F-3FD9-8FD7-094466AAD0EB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff7769c000 - 0x7fff776edff7 com.apple.AE (712 - 712) <0EF17D7E-6BA4-3555-BC38-9BD0CC5B82A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff776ee000 - 0x7fff779c9fff com.apple.CoreServices.CarbonCore (1159 - 1159) <837B7ECF-7E62-3210-988C-63D7AB4EAA88> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff779ca000 - 0x7fff779fdfff com.apple.DictionaryServices (1.2 - 274) <302B8678-D057-3CF8-ACA7-7424A4A6A00A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff779fe000 - 0x7fff77a06ffb com.apple.CoreServices.FSEvents (1230 - 1230) <8836E7D0-844F-36F9-9601-B630BB82336B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff77a07000 - 0x7fff77b72fff com.apple.LaunchServices (775.8.2 - 775.8.2) <7389590A-0E30-3294-B39C-F179D237F6C4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff77b73000 - 0x7fff77c23ffb com.apple.Metadata (10.7.0 - 1075.17) <40F7E6E2-B58B-34E1-B97B-26756ECDB947> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff77c24000 - 0x7fff77c83fff com.apple.CoreServices.OSServices (775.8.2 - 775.8.2) <C949CF81-3510-3987-AEB4-9A961B738DA2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff77c84000 - 0x7fff77cf4fff com.apple.SearchKit (1.4.0 - 1.4.0) <F1B3EF8D-E820-317C-AC7F-8F056C246874> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff77cf5000 - 0x7fff77d3bff7 com.apple.coreservices.SharedFileList (38 - 38) <6C5A3FBB-9502-3725-AC3A-AE7B1528BBD4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff77dc8000 - 0x7fff77f13ffb com.apple.CoreText (352.0 - 544.1) <3229A726-303B-3B09-A014-8708C3BEF2D1> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff77f14000 - 0x7fff77f49fff com.apple.CoreVideo (1.8 - 234.0) <48C31E93-87C2-31F4-97E7-9E54C1EA8E7D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff77f4a000 - 0x7fff77fbbffb com.apple.framework.CoreWLAN (11.0 - 1200.25.1) <0425CA71-50D9-32DC-8693-CAE6CB3B799D> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff780b6000 - 0x7fff780bbfff com.apple.DiskArbitration (2.7 - 2.7) <566D5C06-13E8-3638-B2EC-2B834D5F04F1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff7824a000 - 0x7fff785f1ffb com.apple.Foundation (6.9 - 1349) <08A463B1-296E-3AC1-B8D3-01A75B0785A8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff7861d000 - 0x7fff7864efff com.apple.GSS (4.0 - 2.0) <4F3C9982-457C-3731-85DB-8CE1A72621B0> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff78702000 - 0x7fff787a5fff com.apple.Bluetooth (5.0.1 - 5.0.1f7) <406E3901-F5D3-3996-84F7-32975EBE8F86> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff787a6000 - 0x7fff7883bff7 com.apple.framework.IOKit (2.0.2 - 1324.21.1) <EEFE7FF0-CE41-326A-A571-8AA0B2E89271> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff7883c000 - 0x7fff78842ffb com.apple.IOSurface (153.1 - 153.1) <849B0928-3D37-3977-9670-19979DB4EE4D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff78896000 - 0x7fff789ecfef com.apple.ImageIO.framework (3.3.0 - 1570.2) <1133B1CE-C702-3D66-80F3-6BB40D5D1178> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff789ed000 - 0x7fff789f1fff libGIF.dylib (1570.2) <4AE8D51B-E26A-3CB0-9D53-58112F94E3CE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff789f2000 - 0x7fff78ae2fff libJP2.dylib (1570.2) <9F56888C-28CD-3ED0-B7BB-FFB775EF9DE7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff78ae3000 - 0x7fff78b06ffb libJPEG.dylib (1570.2) <BE6386AF-E7F7-3C26-8B9E-7682DA38F496> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff78b07000 - 0x7fff78b2eff7 libPng.dylib (1570.2) <2BC453BB-5E15-3031-AFAE-912025F2674A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff78b2f000 - 0x7fff78b31ff3 libRadiance.dylib (1570.2) <0F2C81F9-2D74-36A6-BCC0-2366E60410C7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff78b32000 - 0x7fff78b8bff3 libTIFF.dylib (1570.2) <897EB69A-1C96-3BC2-A458-A21652249E71> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff7974d000 - 0x7fff79766ff7 com.apple.Kerberos (3.0 - 1) <49DCBE1A-130C-3FBF-AAEA-AF9A518913AC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff799e1000 - 0x7fff799e7fff com.apple.MediaAccessibility (1.0 - 97.1.1) <EE1825C7-3B58-32F8-9F5F-B7172452BB01> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff799fd000 - 0x7fff79f4cff7 com.apple.MediaToolbox (1.0 - 1903.11) <9855FD27-8435-3CB5-8C81-342D3BED69DE> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff79f4d000 - 0x7fff79fa4ff7 com.apple.Metal (85.85 - 85.85) <EF221C0E-9638-312B-9455-FF3C69180C45> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff7a6ba000 - 0x7fff7a6c2fff com.apple.NetFS (6.0 - 4.0) <6614F9B8-0861-338B-8FF0-8E402F96141C> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff7a896000 - 0x7fff7a89eff7 libcldcpuengine.dylib (2.8.4) <B43FD148-4550-3EB1-9971-F5EFC0456CCE> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff7aa67000 - 0x7fff7aab5ff3 com.apple.opencl (2.8.6 - 2.8.6) <819DE36A-893E-3100-8430-EEB9D7023672> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff7aab6000 - 0x7fff7aacfffb com.apple.CFOpenDirectory (10.12 - 194) <BDD22B3E-4149-366A-A974-942280861DD4> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff7aad0000 - 0x7fff7aadbff7 com.apple.OpenDirectory (10.12 - 194) <E1125140-E42C-369C-8DC8-D0935767B275> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff7aadc000 - 0x7fff7aadefff libCVMSPluginSupport.dylib (12.4.5) <AF349AF5-ACC9-32C8-98BE-1DC9523156C5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff7aadf000 - 0x7fff7aae2ff7 libCoreFSCache.dylib (150) <991F00EB-B1B4-3351-9D83-C11E4920C360> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff7aae3000 - 0x7fff7aae6fff libCoreVMClient.dylib (150) <06276E05-1FB2-3748-A236-1F66468A1755> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff7aae7000 - 0x7fff7aaefffb libGFXShared.dylib (12.4.5) <67ABA30E-DA8A-336C-8137-11CD0D455741> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff7aaf0000 - 0x7fff7aafbfff libGL.dylib (12.4.5) <920D2CC5-D64F-35A5-8C54-4A5731AEC552> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff7aafc000 - 0x7fff7ab38ff7 libGLImage.dylib (12.4.5) <BEDFA6BF-0D9C-35ED-9DDD-FDBB1F6AAF95> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff7ab39000 - 0x7fff7acafffb libGLProgrammability.dylib (12.4.5) <6F6A4BA1-2DB2-3D22-9BEE-E45F6455BAE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff7acb0000 - 0x7fff7acf0ff3 libGLU.dylib (12.4.5) <79C811DC-7904-3A7D-A983-B3E8D5439336> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff7b658000 - 0x7fff7b666fff com.apple.opengl (12.4.5 - 12.4.5) <B33F90DE-B86B-38E3-BCDB-5C8B4952D84B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff7b80e000 - 0x7fff7b838ffb GLRendererFloat (12.4.5) <9C53418B-2B6F-3B16-AA50-EF8CD632B05F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat 0x7fff7c378000 - 0x7fff7c572fff com.apple.QuartzCore (1.11 - 449.39.5) <B1815529-31B4-3FD0-923D-C3E964F844FF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff7cad8000 - 0x7fff7cdf3ff7 com.apple.security (7.0 - 57740.20.22) <7E95D13A-0D52-36A9-A1C4-C21EE26AB2AB> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff7cdf4000 - 0x7fff7ce6aff7 com.apple.securityfoundation (6.0 - 55132.20.1) <8DDEA805-C6F7-3EF9-990F-136617DB942D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff7ce94000 - 0x7fff7ce97ff3 com.apple.xpc.ServiceManagement (1.0 - 1) <A88DACDF-71A9-3974-8D8D-DAA2B64F2CA5> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff7d21c000 - 0x7fff7d28dff7 com.apple.SystemConfiguration (1.14 - 1.14) <013957CA-2708-31F0-845D-11E271C96B94> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff7d28e000 - 0x7fff7d639ff7 com.apple.VideoToolbox (1.0 - 1903.11) <E59DEC1D-6E7D-39BB-A589-9166C3C79221> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff7f8a5000 - 0x7fff7f8c0ff3 com.apple.AppContainer (4.0 - 307.20.1) <AE48030D-760D-3C46-A5EB-FD09B42543ED> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff7f8c1000 - 0x7fff7f8ceff3 com.apple.AppSandbox (4.0 - 307.20.1) <6BCD6C7F-470A-3C6A-9A24-3F26037AD6F7> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff7f8cf000 - 0x7fff7f8f1ffb com.apple.framework.Apple80211 (12.0 - 1200.37) <25299C0F-7A30-3BAA-9945-DB1515F68A2C> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff7f8f2000 - 0x7fff7f901fdb com.apple.AppleFSCompression (88 - 1.0) <D3A6F5F9-2132-34B5-933F-DF5D6733DE8B> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff7f902000 - 0x7fff7f9c9ff7 com.apple.AppleGVAFramework (10.0.41 - 10.0.41) <EB5D2164-2436-30C4-BF39-798F83EC77AF> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA 0x7fff7f9ea000 - 0x7fff7fa7597f com.apple.AppleJPEG (1.0 - 1) <B4C3209B-58A5-359F-A898-F61B6C40E5E9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff7fab2000 - 0x7fff7fb04fff com.apple.AppleVAFramework (5.0.34 - 5.0.34) <42A46C0E-877D-349C-A30A-5CA29896391B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff7fe91000 - 0x7fff7ff0fff7 com.apple.backup.framework (1.8.1 - 1.8.1) <792B4983-DE9A-377D-8338-93719706D12F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff80b2d000 - 0x7fff80b54ffb com.apple.ChunkingLibrary (172 - 172) <83E91936-305D-32A4-A256-5582B96B1852> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff8147b000 - 0x7fff81484ffb com.apple.CommonAuth (4.0 - 2.0) <D561391D-80B8-35F8-9EFF-1ACC89895E38> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff81605000 - 0x7fff819e2fe7 com.apple.CoreAUC (224.0.0 - 224.0.0) <8DF6075A-0711-33A9-9031-6FDA22E85C4F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff819e3000 - 0x7fff81a13fff com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <5E1B0512-E50B-3534-99EF-AD15E601877A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff81ba0000 - 0x7fff81bb1ff7 com.apple.CoreEmoji (1.0 - 39.1) <54432658-8481-3F33-ADED-B60684311E11> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff81e93000 - 0x7fff81ec3ff3 com.apple.CoreServicesInternal (276 - 276) <CCB21255-89DC-3F53-A6D6-8FA8F693C837> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff8214c000 - 0x7fff821d6fff com.apple.CoreSymbolication (61050) <15C4AF49-2F85-3265-B53F-4925616C746E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff821d7000 - 0x7fff82315fcf com.apple.coreui (2.1 - 426.9.1) <A7672B5D-9972-34B8-968A-188D422083AE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff82316000 - 0x7fff823b5ffb com.apple.CoreUtils (4.3 - 430.70) <946F5089-9F8D-3595-8208-AD945B26D267> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff82405000 - 0x7fff8246aff3 com.apple.framework.CoreWiFi (12.0 - 1200.25.1) <8DAD3903-9A77-3E50-99C4-3C5708FB25B1> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff8246b000 - 0x7fff82478fff com.apple.CrashReporterSupport (10.12 - 816) <BF292E0C-6CDB-3149-8177-4EF5DD72D544> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff8251e000 - 0x7fff82595ff3 com.apple.datadetectorscore (7.0 - 539) <AA02538E-706E-305B-AABA-FA9A6F4C1B8C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff825cf000 - 0x7fff8260efff com.apple.DebugSymbols (137 - 137) <B229F3F7-250B-3151-8048-CEA7BF80FA52> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff8260f000 - 0x7fff82720fff com.apple.desktopservices (1.11.1 - 1.11.1) <03518A59-79B1-3B16-B923-52D6EFF04ADB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff829ec000 - 0x7fff82e1dff7 com.apple.vision.FaceCore (3.3.2 - 3.3.2) <DEB42099-6927-332C-8D3E-D45096318D25> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff84158000 - 0x7fff84158fff libmetal_timestamp.dylib (600.0.48.26) <681B9F09-0673-3C38-B636-9D77D338D1AF> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib 0x7fff84165000 - 0x7fff84170ff3 libGPUSupportMercury.dylib (12.4.5) <A08E7321-32C4-3008-97C3-870B6AB1E63D> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib 0x7fff84422000 - 0x7fff8443eff7 com.apple.GenerationalStorage (2.0 - 259) <43D40063-BD46-3008-8992-FF092B7C9A58> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff84b34000 - 0x7fff84baaffb com.apple.Heimdal (4.0 - 2.0) <418DD668-7288-3D33-BAFE-959DB96D0351> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff851bd000 - 0x7fff851c4ffb com.apple.IOAccelerator (288.15 - 288.15) <DE5BC493-2F4E-3388-A887-DA5AD7BAD3F4> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff851c6000 - 0x7fff851daff3 com.apple.IOPresentment (1.0 - 25) <40934217-996A-3DDB-A8C4-484CA0F0222B> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff851db000 - 0x7fff851fdff7 com.apple.IconServices (74.1 - 74.1) <F7B83970-4A72-3186-BBB3-90FA86C3E263> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff85298000 - 0x7fff852a8ff3 com.apple.IntlPreferences (2.0 - 216) <5E2D8D16-DBB9-3389-9CEA-1E4094C34A92> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences 0x7fff852df000 - 0x7fff85493fff com.apple.LanguageModeling (1.0 - 123) <10152D7F-C7C0-34AA-A295-D712D16C76E6> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff85ad9000 - 0x7fff85adcfff com.apple.Mangrove (1.0 - 1) <05039E9F-9C07-375B-A940-D90D455A2EC2> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff85d3f000 - 0x7fff85db7fef com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <EDE6F9AA-B863-3936-BA54-177B769080FD> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff85f39000 - 0x7fff85f61fff com.apple.MultitouchSupport.framework (368.4 - 368.4) <18778258-70B1-31BF-845D-1FACBF280108> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff8600e000 - 0x7fff86018fff com.apple.NetAuth (6.0 - 6.0) <D57D5888-0290-3295-A1C4-D673D4DCB497> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff867f4000 - 0x7fff86835ff7 com.apple.PerformanceAnalysis (1.145 - 145) <73A73364-EFB6-3D0A-A7EA-7F924359B3C9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff86ec7000 - 0x7fff86ee1fff com.apple.ProtocolBuffer (1 - 249) <D8B7694B-B598-3728-8583-9C4CC0F05B64> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff86efb000 - 0x7fff86f1eff3 com.apple.RemoteViewServices (2.0 - 124) <280DB828-4613-3DF8-ACBA-C91989B64347> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff87b51000 - 0x7fff87b54fff com.apple.SecCodeWrapper (4.0 - 307.20.1) <2BBC8E7C-7B28-39D2-8273-2BA5ED7DAC45> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff87be2000 - 0x7fff87c5efff com.apple.Sharing (671.15 - 671.15) <37C29D52-CA6E-3E30-9CCF-F7B4A8DE6B9B> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff87c7f000 - 0x7fff87ed1fef com.apple.SkyLight (1.600.0 - 108.11) <5D0C258E-0816-3FF2-AA3C-A7B9F2DEC19C> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff880ab000 - 0x7fff880b7fff com.apple.SpeechRecognitionCore (3.0.15 - 3.0.15) <BE386037-4B61-341F-80E2-5D8B5B50C8BC> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff8879b000 - 0x7fff88807ff3 com.apple.Symbolication (61080.2) <8AB6B520-E8DE-392F-8B86-52098D2A2BA2> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff88bfe000 - 0x7fff88c04ff7 com.apple.TCC (1.0 - 1) <787E8FD8-21A7-39E6-87D4-6AD09156C5A0> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff88c90000 - 0x7fff88e51ff3 com.apple.TextureIO (1.35 - 1.35) <63D75E50-F3C2-3E8E-A49B-F53531C24C54> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff88ec5000 - 0x7fff88ec6fff com.apple.TrustEvaluationAgent (2.0 - 28) <6793B664-C4FC-3CD4-B0E7-25B9933391AC> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff88ec7000 - 0x7fff89056ffb com.apple.UIFoundation (1.0 - 489) <0CD14719-FC52-3AC5-87EF-775437927990> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff89f7e000 - 0x7fff89f84fff com.apple.XPCService (2.0 - 1) <BC3FCE26-6219-3316-949F-37F7005C9A0F> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 0x7fff8a055000 - 0x7fff8a057ffb com.apple.loginsupport (1.0 - 1) <03B57D6F-C210-32BC-B384-5B0E95660283> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff8a0ac000 - 0x7fff8a0c7ff7 libCRFSuite.dylib (34) <BACC371B-6153-36B5-BC54-3BCF26FBB221> /usr/lib/libCRFSuite.dylib 0x7fff8a0c8000 - 0x7fff8a0d3fff libChineseTokenizer.dylib (21) <09E74E18-ADB2-30D2-A858-13691CB1186C> /usr/lib/libChineseTokenizer.dylib 0x7fff8a165000 - 0x7fff8a166ff3 libDiagnosticMessagesClient.dylib (102) <422911A4-E273-3E88-BFC4-DF6470E48242> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff8a167000 - 0x7fff8a37afff libFosl_dynamic.dylib (16.37) <D5551823-1E3D-3BDE-968C-BF022EE4958D> /usr/lib/libFosl_dynamic.dylib 0x7fff8a396000 - 0x7fff8a39dfff libMatch.1.dylib (27) <15FC6217-23E1-3DF0-A5F5-E4C67AED70B5> /usr/lib/libMatch.1.dylib 0x7fff8a39e000 - 0x7fff8a39efff libOpenScriptingUtil.dylib (172) <D025E180-BB3B-3FFA-98FC-B6835354D723> /usr/lib/libOpenScriptingUtil.dylib 0x7fff8a39f000 - 0x7fff8a3a2ffb libScreenReader.dylib (477.10.20) <B48924E9-5301-3141-9D62-ADA2852D5BAA> /usr/lib/libScreenReader.dylib 0x7fff8a3a3000 - 0x7fff8a3a4ff3 libSystem.B.dylib (1238) <CFC3669C-FB44-3A51-8815-1E84A168F3C5> /usr/lib/libSystem.B.dylib 0x7fff8a410000 - 0x7fff8a43bffb libarchive.2.dylib (41.20.1) <FC116AC3-EB4A-3252-821C-4E1703879C82> /usr/lib/libarchive.2.dylib 0x7fff8a43c000 - 0x7fff8a4b0fff libate.dylib (1.12.12) <DD989482-B873-3094-97BB-2B5AE8D3B544> /usr/lib/libate.dylib 0x7fff8a4b4000 - 0x7fff8a4b4ff3 libauto.dylib (187) <5BBF6A00-CC76-389D-84E7-CA88EDADE683> /usr/lib/libauto.dylib 0x7fff8a4b5000 - 0x7fff8a4c5ff3 libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib 0x7fff8a4c6000 - 0x7fff8a4d4ff7 libbz2.1.0.dylib (38) <6FD3B63F-0F86-3A25-BD5B-E243F58792C9> /usr/lib/libbz2.1.0.dylib 0x7fff8a4d5000 - 0x7fff8a52bff7 libc++.1.dylib (307.4) <BEE86868-F831-384C-919E-2B286ACFE87C> /usr/lib/libc++.1.dylib 0x7fff8a52c000 - 0x7fff8a556fff libc++abi.dylib (307.2) <1CEF8ABB-7E6D-3C2F-8E0A-E7884478DD23> /usr/lib/libc++abi.dylib 0x7fff8a557000 - 0x7fff8a567ffb libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib 0x7fff8a568000 - 0x7fff8a57dfc3 libcompression.dylib (34) <1691D6F2-46CD-3DA6-B44F-24CDD9BD0E4E> /usr/lib/libcompression.dylib 0x7fff8a57e000 - 0x7fff8a57eff7 libcoretls.dylib (121.1.1) <F3BAB54C-DA82-37C3-A218-46FEB179D555> /usr/lib/libcoretls.dylib 0x7fff8a57f000 - 0x7fff8a580ffb libcoretls_cfhelpers.dylib (121.1.1) <D12709F3-BBE3-3CF7-9070-C2A0803F5526> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff8a63a000 - 0x7fff8a71eff3 libcrypto.0.9.8.dylib (64) <4CB423CE-0B86-334A-9335-FEE75198024F> /usr/lib/libcrypto.0.9.8.dylib 0x7fff8a8bc000 - 0x7fff8a90fff7 libcups.2.dylib (450) <04CA1F55-4B70-3D65-B4B1-62F6C271A9EF> /usr/lib/libcups.2.dylib 0x7fff8a960000 - 0x7fff8a967ff3 libdscsym.dylib (145) <A130C01E-AC0A-3733-B34C-71741DFFCC7E> /usr/lib/libdscsym.dylib 0x7fff8a989000 - 0x7fff8a989fff libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib 0x7fff8a999000 - 0x7fff8a99eff7 libheimdal-asn1.dylib (498.20.2) <C9B5464F-4A2E-3E3F-B514-B0911B5CB0DA> /usr/lib/libheimdal-asn1.dylib 0x7fff8a99f000 - 0x7fff8aa91ff7 libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib 0x7fff8aa92000 - 0x7fff8acb7fff libicucore.A.dylib (57132.0.1) <C8176937-9271-3F0E-829D-F3BBB9DD44B5> /usr/lib/libicucore.A.dylib 0x7fff8acbd000 - 0x7fff8acbefff liblangid.dylib (126) <3F4530C9-8BE1-3AA7-9A82-98694D240866> /usr/lib/liblangid.dylib 0x7fff8acbf000 - 0x7fff8acd8ffb liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib 0x7fff8acd9000 - 0x7fff8acefff7 libmarisa.dylib (5) <2183D484-032D-3DE5-8984-3A14006E034E> /usr/lib/libmarisa.dylib 0x7fff8acf0000 - 0x7fff8af9afff libmecabra.dylib (744.2.2) <C6C3EA2C-1DC7-3DCB-8A20-C645E38524AB> /usr/lib/libmecabra.dylib 0x7fff8af9b000 - 0x7fff8afccff3 libncurses.5.4.dylib (51) <6B88562D-86DB-3EFA-8C55-0148C30DC642> /usr/lib/libncurses.5.4.dylib 0x7fff8afcd000 - 0x7fff8b046ff3 libnetwork.dylib (856.20.4) <5012EFF3-8FF4-317D-B328-AB21E3B5CA8C> /usr/lib/libnetwork.dylib 0x7fff8b047000 - 0x7fff8b417d97 libobjc.A.dylib (706) <F9AFE665-A3A2-3285-9495-19803A565861> /usr/lib/libobjc.A.dylib 0x7fff8b41a000 - 0x7fff8b41efff libpam.2.dylib (21) <352F8FF6-2248-3594-B357-8D031DEFB06C> /usr/lib/libpam.2.dylib 0x7fff8b41f000 - 0x7fff8b44fff7 libpcap.A.dylib (67) <450DB888-2C0C-3085-A5F1-69324DFE902C> /usr/lib/libpcap.A.dylib 0x7fff8b46d000 - 0x7fff8b489ffb libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib 0x7fff8b48a000 - 0x7fff8b4c3ff3 libsandbox.1.dylib (592.21.2) <7A698C92-CD5C-3BFF-A215-2BE2DE31F88E> /usr/lib/libsandbox.1.dylib 0x7fff8b4d7000 - 0x7fff8b4d8ff3 libspindump.dylib (229) <322AE558-5040-3F9A-8203-F64D8B0B507A> /usr/lib/libspindump.dylib 0x7fff8b4d9000 - 0x7fff8b621fff libsqlite3.dylib (252) <FCA29CD2-E8E4-3324-8E2C-19BDC11F0338> /usr/lib/libsqlite3.dylib 0x7fff8b67d000 - 0x7fff8b6cdfff libstdc++.6.dylib (104.1) <91F66BFD-F927-301F-B8F3-578A5CEA78F4> /usr/lib/libstdc++.6.dylib 0x7fff8b713000 - 0x7fff8b720fff libxar.1.dylib (354) <AAFCF321-8100-3622-880B-9661DCA35D69> /usr/lib/libxar.1.dylib 0x7fff8b724000 - 0x7fff8b813ffb libxml2.2.dylib (30.11) <26676155-64CE-323F-B73C-AD77AF5982E8> /usr/lib/libxml2.2.dylib 0x7fff8b814000 - 0x7fff8b83dfff libxslt.1.dylib (15.8) <FFF5DD45-F544-34B2-BE3C-DB877DC60081> /usr/lib/libxslt.1.dylib 0x7fff8b83e000 - 0x7fff8b84fff3 libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib 0x7fff8b85e000 - 0x7fff8b862ff7 libcache.dylib (79) <84E55656-FDA9-3B29-9E4F-BE31B2C0AA3C> /usr/lib/system/libcache.dylib 0x7fff8b863000 - 0x7fff8b86dfff libcommonCrypto.dylib (60092.20.1) <31040F10-5E57-3B9C-8D5B-33AD87D1BEE8> /usr/lib/system/libcommonCrypto.dylib 0x7fff8b86e000 - 0x7fff8b875fff libcompiler_rt.dylib (62) <486BDE52-81B4-3446-BD72-23977CAE556F> /usr/lib/system/libcompiler_rt.dylib 0x7fff8b876000 - 0x7fff8b87efff libcopyfile.dylib (138) <0DA49B77-56EC-362D-98FF-FA78CFD986D6> /usr/lib/system/libcopyfile.dylib 0x7fff8b87f000 - 0x7fff8b901fdb libcorecrypto.dylib (442.20.2) <2684CC01-087E-33E2-8219-AAA3BBD9BFD7> /usr/lib/system/libcorecrypto.dylib 0x7fff8b902000 - 0x7fff8b934fff libdispatch.dylib (703.20.1) <877B505D-826C-3246-84F7-0F850636039E> /usr/lib/system/libdispatch.dylib 0x7fff8b935000 - 0x7fff8b93aff3 libdyld.dylib (421.2) <7BFA3476-6210-3BCB-8CE8-9B952F87BD84> /usr/lib/system/libdyld.dylib 0x7fff8b93b000 - 0x7fff8b93bffb libkeymgr.dylib (28) <09CD7CA6-46D2-3A9F-B9F1-7C4CA5CA0D68> /usr/lib/system/libkeymgr.dylib 0x7fff8b93c000 - 0x7fff8b948ffb libkxld.dylib (3789.21.3) <F12B5274-44AD-3268-A793-31EF351A4BD9> /usr/lib/system/libkxld.dylib 0x7fff8b949000 - 0x7fff8b949fff liblaunch.dylib (972.20.3) <7AB2E2EA-8B47-3420-87CE-5EE18A4EEE49> /usr/lib/system/liblaunch.dylib 0x7fff8b94a000 - 0x7fff8b94ffff libmacho.dylib (894) <1EAE5ADD-490C-3B1F-9F97-447BA8E0E90F> /usr/lib/system/libmacho.dylib 0x7fff8b950000 - 0x7fff8b952ff3 libquarantine.dylib (85) <F3E47D7C-8776-327C-9426-DD7DEB30DBDD> /usr/lib/system/libquarantine.dylib 0x7fff8b953000 - 0x7fff8b954ffb libremovefile.dylib (45) <C4FC07FF-ED86-382E-B06F-33C34718080C> /usr/lib/system/libremovefile.dylib 0x7fff8b955000 - 0x7fff8b96dff7 libsystem_asl.dylib (349.1.1) <F0987490-8427-367F-B302-A05A7D61FEBF> /usr/lib/system/libsystem_asl.dylib 0x7fff8b96e000 - 0x7fff8b96eff7 libsystem_blocks.dylib (67) <B8C3701D-5A91-3D35-999D-2DC8D5393525> /usr/lib/system/libsystem_blocks.dylib 0x7fff8b96f000 - 0x7fff8b9fcfef libsystem_c.dylib (1158.20.4) <5F9531F5-EDA3-3D25-A827-3E0FD6B392BA> /usr/lib/system/libsystem_c.dylib 0x7fff8b9fd000 - 0x7fff8ba00ffb libsystem_configuration.dylib (888.20.5) <CDC55FCB-C1FC-350D-A919-5DBCFC835B63> /usr/lib/system/libsystem_configuration.dylib 0x7fff8ba01000 - 0x7fff8ba04fff libsystem_coreservices.dylib (41.2) <5DE691C6-7EE6-3210-895D-9EA3ECBC09B4> /usr/lib/system/libsystem_coreservices.dylib 0x7fff8ba05000 - 0x7fff8ba1dffb libsystem_coretls.dylib (121.1.1) <8F7E9B12-400D-3276-A9C5-4546B0258554> /usr/lib/system/libsystem_coretls.dylib 0x7fff8ba1e000 - 0x7fff8ba24fff libsystem_dnssd.dylib (765.20.4) <28E52C39-DF10-340F-A3EC-C0119AF6361F> /usr/lib/system/libsystem_dnssd.dylib 0x7fff8ba25000 - 0x7fff8ba4efff libsystem_info.dylib (503) <C686B834-5E7D-382C-AF6E-44AB78EE83E2> /usr/lib/system/libsystem_info.dylib 0x7fff8ba4f000 - 0x7fff8ba71ff7 libsystem_kernel.dylib (3789.21.3) <EC53F92A-0DFA-3027-A220-414A01F17B2E> /usr/lib/system/libsystem_kernel.dylib 0x7fff8ba72000 - 0x7fff8bab9fe7 libsystem_m.dylib (3121.4) <7F86C291-B105-31C1-9923-90EBAB22B73F> /usr/lib/system/libsystem_m.dylib 0x7fff8baba000 - 0x7fff8bad8ff7 libsystem_malloc.dylib (116) <F9840080-4C2C-3F3B-8087-7C738F12A1C7> /usr/lib/system/libsystem_malloc.dylib 0x7fff8bad9000 - 0x7fff8bb30ff3 libsystem_network.dylib (856.20.4) <2BAFB24F-999C-3148-BDD8-F28E05F716F7> /usr/lib/system/libsystem_network.dylib 0x7fff8bb31000 - 0x7fff8bb3aff3 libsystem_networkextension.dylib (563.20.3) <971DD3AD-D17A-32FF-95DE-0A5A979E68AE> /usr/lib/system/libsystem_networkextension.dylib 0x7fff8bb3b000 - 0x7fff8bb44ff3 libsystem_notify.dylib (165.20.1) <EAD023A2-AD3F-31C8-9489-274B9A42DA61> /usr/lib/system/libsystem_notify.dylib 0x7fff8bb45000 - 0x7fff8bb4dfe7 libsystem_platform.dylib (126.1.2) <2F2D6A81-C36C-353D-B27B-A6643A32375E> /usr/lib/system/libsystem_platform.dylib 0x7fff8bb4e000 - 0x7fff8bb58ff7 libsystem_pthread.dylib (218.20.1) <46375095-4731-3034-9D87-396DE95FC697> /usr/lib/system/libsystem_pthread.dylib 0x7fff8bb59000 - 0x7fff8bb5cff7 libsystem_sandbox.dylib (592.21.2) <2D42A2BF-A7AF-352A-A821-D8F6E85A63AC> /usr/lib/system/libsystem_sandbox.dylib 0x7fff8bb5d000 - 0x7fff8bb5efff libsystem_secinit.dylib (24) <A54B8FEF-E792-3C54-8E0B-E80A376662F2> /usr/lib/system/libsystem_secinit.dylib 0x7fff8bb5f000 - 0x7fff8bb66fff libsystem_symptoms.dylib (532.1.1) <8FB7CA37-79EF-3651-B5B9-B5E1E0947067> /usr/lib/system/libsystem_symptoms.dylib 0x7fff8bb67000 - 0x7fff8bb87ff7 libsystem_trace.dylib (518.20.8) <C029B910-A65F-35F6-B194-B933B454EAB4> /usr/lib/system/libsystem_trace.dylib 0x7fff8bb88000 - 0x7fff8bb8dffb libunwind.dylib (35.3) <9F7C2AD8-A9A7-3DE4-828D-B0F0F166AAA0> /usr/lib/system/libunwind.dylib 0x7fff8bb8e000 - 0x7fff8bbb7ff7 libxpc.dylib (972.20.3) <85EB25FD-218F-38EE-9E69-391CC8EBE6C5> /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 2236 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=341.2M resident=0K(0%) swapped_out_or_unallocated=341.2M(100%) Writable regions: Total=219.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=219.7M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 2 Activity Tracing 256K 2 CG backing stores 15.7M 3 CG image 3632K 4 CoreAnimation 40K 6 CoreUI image data 1060K 7 CoreUI image file 156K 4 Dispatch continuations 8192K 2 Image IO 76K 3 Kernel Alloc Once 8K 2 MALLOC 99.8M 36 MALLOC guard page 48K 10 MALLOC_LARGE (reserved) 384K 3 reserved VM address space (unallocated) Memory Tag 242 12K 2 Memory Tag 251 48K 3 STACK GUARD 56K 15 Stack 40.6M 16 VM_ALLOCATE 31.3M 60 __DATA 26.8M 378 __GLSLBUILTINS 2588K 2 __IMAGE 528K 2 __LINKEDIT 123.8M 132 __TEXT 217.5M 361 __UNICODE 556K 2 mapped file 43.2M 10 shared memory 16.3M 11 =========== ======= ======= TOTAL 632.4M 1052 TOTAL, minus reserved VM space 632.0M 1052 Model: MacBookPro12,1, BootROM MBP121.0167.B17, 2 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 2.28f7 Graphics: Intel Iris Graphics 6100, Intel Iris Graphics 6100, Built-In Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1867 MHz, 0x02FE, 0x4544464132333241324D412D4A442D460000 Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1867 MHz, 0x02FE, 0x4544464132333241324D412D4A442D460000 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x133), Broadcom BCM43xx 1.0 (7.21.171.47.1a8) Bluetooth: Version 5.0.1f7, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en0 Serial ATA Device: APPLE SSD SM0256G, 251 GB USB Device: USB 3.0 Bus USB Device: Bluetooth USB Host Controller Thunderbolt Bus: MacBook Pro, Apple Inc., 27.1 ``` ##### Steps to reproduce ``` >>>import cv2 >>>camera = cv2.VideoCapture(0) >>>return_value, image = camera.read() >>>camera.release() >>>image array([[[100, 106, 108], [100, 106, 108], [108, 114, 116], ..., [ 89, 100, 108], [ 87, 100, 110], [ 78, 92, 102]]], dtype=uint8) >>>cv2.imshow('image',image) >>>cv2.waitKey(0) ```
bug,category: videoio,platform: ios/osx
low
Critical
194,851,063
rust
Overloaded call inferred to be through Fn when only FnOnce works
Repro: https://is.gd/AbO8K4 A wrapper around a closure `F` implements `FnOnce`, `FnMut` and `Fn` where `F` does. However, when the wrapper is created with a closure which implements only `FnOnce`, and then the wrapper is called, the compiler expects the closure to implement `FnMut` or `Fn`. ``` rustc 1.15.0-nightly (daf8c1dfc 2016-12-05) binary: rustc commit-hash: daf8c1dfce3b448fc581cc319f64632ec22bd0e1 commit-date: 2016-12-05 host: x86_64-apple-darwin release: 1.15.0-nightly LLVM version: 3.9 ``` cc @eddyb (discussed on IRC)
P-medium,A-closures,T-compiler,C-bug
low
Major
194,861,101
neovim
:undo also undoes mark positioning since previous edit
- `nvim --version`: 0.1.6 - Vim (version: ) behaves differently? 8.0 -- No, same problem - Operating system/version: Arch linux - Terminal name/version: XTerm(327) - `$TERM`: xterm-256color ### Actual behaviour With the file `test.txt` ``` Hello there I have text here simply So that I can position marks on different lines That makes the problem more obvious ``` Open with `nvim -u NONE test.txt` Put a mark on the first line `:1mark d` Move to the last line `:$` Make some change to that line `dw` Put the same mark used before on a different line `:2mark d` Test that the mark has been moved with `'d` Undo the previous change `:undo` Observe that the mark positioning has been undone with `'d` We end up on the first line of the file, the mark repositioning has been undone with `:undo`. ### Expected behaviour We should end up on the second line of the file: the mark repositioning should not be affected by the `:undo` command (at least in this case where the position of the marks have nothing to do with the text that was changed).
bug-vim,needs:vim-patch
low
Minor
194,919,258
TypeScript
Inference isn't working with constructor that contextually types 'this' with intersections of itself
**TL;DR:** There should be no errors in the below example. I am trying to model a library that takes an options bag for its constructor, and exposes those properties onto the instance that is eventually produced. For example, if I wrote ```ts let instance = new Component({ methods: { hello() { } world() { this.hello(); } } }); ``` I should be able to write `instance.hello()` or `instance.world()`. Additionally, since `this` in `world` will be bound to the instance, `this.hello` should be legal and well-typed in the above example. However, I'm not able to come up with a version of this that works. ```ts /** * Ensures all properties have a `this` param of type `T`. */ interface ThisEnforced<T> { [prop: string]: (this: T, ...args: any[]) => any; } interface ComponentOptions<Methods> { methods?: Methods } interface Component<Methods extends ThisEnforced<Component<Methods> & Methods>> { $methods: Methods; } interface ComponentStatic { new <Methods extends ThisEnforced<Component<Methods> & Methods>>(options: ComponentOptions<Methods>): // Returns... Component<Methods> & Methods; } declare var Component: ComponentStatic; let inst = new Component({ methods: { hello() { // ... }, world() { this.hello; // ~~~~~ // Error: Property `hello` does not exist on this type. } }, }); inst.hello; // ~~~~~ // Error: Property `hello` does not exist on this type. ``` In the above example, there should be no errors - however, it appears that no inferences are being drawn as a type argument for `Methods`, and both `this.hello` and `inst.hello` are causing errors.
Suggestion,Awaiting More Feedback
low
Critical
194,972,807
youtube-dl
[generic] video not found. Fix applied in #7794 no longer works
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.12*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [ X] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.12** ### Before submitting an *issue* make sure you have: - [X ] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [X ] Bug report (encountered problems with youtube-dl) - [] Site support request (request for adding support for a new site) - [ ] Feature request (request for a new functionality) - [ ] Question - [ ] Other --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue* --- ### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows: Add `-v` flag to **your command line** you run youtube-dl with, copy the **whole** output and insert it here. It should look similar to one below (replace it with **your** log inserted between triple ```): ``` $ youtube-dl --verbose http://www.smh.com.au/federal-politics/political-news/malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb.html [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['--verbose', 'http://www.smh.com.au/federal-politics/political-news/malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb.html'] [debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8 [debug] youtube-dl version 2016.12.12 [debug] Python version 3.5.2 - Linux-4.8.10-1-ARCH-x86_64-with-arch [debug] exe versions: ffmpeg 3.2, ffprobe 3.2, rtmpdump 2.4 [debug] Proxy map: {} [generic] malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb: Requesting header WARNING: Falling back on generic information extractor. [generic] malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb: Downloading webpage [generic] malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb: Extracting information ERROR: Unsupported URL: http://www.smh.com.au/federal-politics/political-news/malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb.html Traceback (most recent call last): File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 694, in extract_info ie_result = ie.extract(url) File "/usr/local/bin/youtube-dl/youtube_dl/extractor/common.py", line 357, in extract return self._real_extract(url) File "/usr/local/bin/youtube-dl/youtube_dl/extractor/generic.py", line 2433, in _real_extract raise UnsupportedError(url) youtube_dl.utils.UnsupportedError: Unsupported URL: http://www.smh.com.au/federal-politics/political-news/malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb.html ... <end of log> ``` --- ### If the purpose of this *issue* is a *site support request* please provide all kinds of example URLs support for which should be included (replace following example URLs by **yours**): http://www.smh.com.au/federal-politics/political-news/malcolm-turnbull-to-address-australian-republican-movement-anniversary-dinner-and-monarchists-arent-happy-20161212-gt92mb.html --- ### Description of your *issue*, suggested solution and other information Support for smh.com.au was added by bugfix #7794 but the site appears to have changed some code related to videos that means they are not caught by the generic extractor.
site-support-request
low
Critical
195,061,253
youtube-dl
Support bmObject manifests (was: bloomberg-->add normal mp4s to format dict)
I can't find normal mp4s in -F output, only hls and frm http://www.bloomberg.com/news/videos/2016-12-12/trump-tweets-f-35-jet-program-costs-out-of-control is this link in format dict?: http://cdn3.videos.bloomberg.com/m/Njk3MTgyNQ/MjMzMDc4Mw/Rothacker08511212d_440.mp4
request
low
Major
195,095,027
gin
Response Content-Type Header not set when using c.JSON (while doc says it should)
I am not sure but it seems this function just do nothing, so when using c.JSON, the Content-Type header is not set. ``` func writeContentType(w http.ResponseWriter, value []string) { header := w.Header() if val := header["Content-Type"]; len(val) == 0 { header["Content-Type"] = value } } ``` I have the problem on my code and I opened this thread on Stackoverflow : http://stackoverflow.com/questions/41109065/golang-gin-gonic-content-type-not-setting-to-application-json-with-c-json
bug
low
Major
195,158,293
TypeScript
Changed behaviour in TS2.1 for Promise<void>
In typescript 2.0 any promise could be used a promise of type void, this does not seem to be the case in typescript 2.1. I couldn't find this listed as a breaking change or any existing tickets so raised this one. **TypeScript Version:** 2.1.4 **Code** ```ts function testVoidPromises(promiseA: Promise<void>, promiseB: Promise<void>): Promise<void> { return Promise.all([promiseA, promiseB]); } ``` **Expected behavior:** This compiles without errors in typescript 2.0 **Actual behavior:** This fails to compile in typescript 2.1.4 with the following error: test.ts(2,9): error TS2322: Type 'Promise<[void, void]>' is not assignable to type 'Promise<void>'. Type '[void, void]' is not assignable to type 'void'.
Suggestion,In Discussion
medium
Critical
195,164,315
rust
Tracking issue to stabilize --print target-spec-json
This issue is meant to track the stabilization of the rustc flag `--print target-spec-json` which will output the currently selected target as a valid target spec that can be loaded with `--target` for only the same version of the compiler that generated it. This explicitly avoids saying that target specs are stable but instead intends to assist target spec users to know that their configuration will work with the current version of the compiler. ref #38061
T-compiler,B-unstable,C-tracking-issue,S-tracking-design-concerns
low
Major
195,212,678
go
runtime: dlopen/dlsym without CGo
Hello, Would it be possible to implement dlopen/dlsym functionality to match the Windows DLL loading functionality, for Linux/*nix platforms? It has been discussed that this is possible with CGo, but that doesn't play as well with a simple build and cross-compile environment as your pure-Go tool-chain does. Discussed in golang-nuts: https://groups.google.com/forum/#!topic/golang-nuts/QDEczMhlQBU As I'd like to make this library for SQLite without CGo (https://github.com/iamacarpet/go-sqlite3-win64) cross platform. They suggested following the code path from one of the libc implementations and re-writing it into Go. This for the moment is quite a way beyond my capabilities, so I'd really love some help. Regards, iamacarpet
compiler/runtime
medium
Critical
195,284,434
rust
Identity Result match mapping should optimize to an identity function
This was isolated by @stjepang in #37939 This program: [(playground)](https://play.rust-lang.org/?gist=42f328079e316204cc8885e4c7b9ea22&version=nightly&backtrace=0) ```rust pub fn id_result(a: Result<u64, i64>) -> Result<u64, i64> { match a { Ok(x) => Ok(x), Err(y) => Err(y), } } ``` Should optimize to something that just copies the input to the output, with no conditionals. Output on `rustc 1.15.0-nightly (daf8c1dfc 2016-12-05)` using `-Copt-level=3 --emit=llvm-ir` is this: ```rust ; ModuleID = 'id_result.cgu-0.rs' source_filename = "id_result.cgu-0.rs" target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" %"core::result::Result<u64, i64>" = type { i64, [0 x i64], [1 x i64] } ; Function Attrs: norecurse nounwind uwtable define void @id_result(%"core::result::Result<u64, i64>"* noalias nocapture sret dereferenceable(16), %"core::result::Result<u64, i64>"* noalias nocapture readonly dereferenceable(16)) unnamed_addr #0 { entry-block: %a.sroa.0.0..sroa_idx = getelementptr inbounds %"core::result::Result<u64, i64>", %"core::result::Result<u64, i64>"* %1, i64 0, i32 0 %a.sroa.0.0.copyload = load i64, i64* %a.sroa.0.0..sroa_idx, align 8 %a.sroa.4.0..sroa_idx2 = getelementptr inbounds %"core::result::Result<u64, i64>", %"core::result::Result<u64, i64>"* %1, i64 0, i32 2, i64 0 %a.sroa.4.0.copyload = load i64, i64* %a.sroa.4.0..sroa_idx2, align 8 %2 = getelementptr inbounds %"core::result::Result<u64, i64>", %"core::result::Result<u64, i64>"* %0, i64 0, i32 0 %not.switch = icmp ne i64 %a.sroa.0.0.copyload, 0 %. = zext i1 %not.switch to i64 store i64 %., i64* %2, align 8 %3 = getelementptr inbounds %"core::result::Result<u64, i64>", %"core::result::Result<u64, i64>"* %0, i64 0, i32 2, i64 0 store i64 %a.sroa.4.0.copyload, i64* %3, align 8 ret void } attributes #0 = { norecurse nounwind uwtable } ```
I-slow,C-enhancement,A-codegen,C-optimization
low
Major
195,332,463
go
tools/cmd/present: don't show upcoming slide on the right
The present tool shows some of the upcoming slide on the right. This is particularly bad during some conferences (e.g. GothamGo) with wide screens. It distracts the audience who starts reading the next slide, and it can kill punchlines. Fix this. /cc @rsc @broady
NeedsFix
low
Minor
195,356,765
go
cmd/compile: investigate closure capture issue
This change reduces allocations: https://go-review.googlesource.com/c/33765/4/src/encoding/json/encode.go Why? Can the compiler be changed instead? (See test file in same CL for details) /cc @randall77 @mdempsky @aclements
Performance,NeedsInvestigation,compiler/runtime
low
Major
195,431,470
opencv
Any Simple Solution for conflicts with opencv2 ?
I had installed opencv2.4 in /usr/local path, so when I compile opencv3, I encountered this error : `incomplete type 'cv::Mat' named in nested name specifier` This is because the old version of the header file conflicts with the new version. In xcode project created by cmake, the "Header search paths" setting of all schemes were all similar to the following examples: ``` HEADER_SEARCH_PATHS = ( /Users/logic/Desktop/opencv/3rdparty/ippicv/unpack/ippicv_osx/include, /Users/logic/Desktop/opencv_contrib/build, /usr/local/include, /usr/local/include/eigen3, /Users/logic/Desktop/opencv/modules/imgcodecs/include, /Users/logic/Desktop/opencv/modules/videoio/include, /Users/logic/Desktop/opencv/modules/core/include, /Users/logic/Desktop/opencv/modules/imgproc/include, /Users/logic/Desktop/opencv/modules/highgui/include, ); ``` What we need to do is move `/usr/local/include` to the bottom, like this: ``` HEADER_SEARCH_PATHS = ( /Users/logic/Desktop/opencv/3rdparty/ippicv/unpack/ippicv_osx/include, /Users/logic/Desktop/opencv_contrib/build, /usr/local/include/eigen3, /Users/logic/Desktop/opencv/modules/imgcodecs/include, /Users/logic/Desktop/opencv/modules/videoio/include, /Users/logic/Desktop/opencv/modules/core/include, /Users/logic/Desktop/opencv/modules/imgproc/include, /Users/logic/Desktop/opencv/modules/highgui/include, /usr/local/include, ); ``` However, the number of schemes in the project was too much, one by one manually move is a terrible experience. After nearly a hundred times the move operation, I almost go crazy. How to modify the cmake file so that the path `/usr/local/include` is always in the final? In my opinion, this is also helpful for improving the applicability of cmake for compilation projects.
category: build/install,incomplete
low
Critical
195,452,622
youtube-dl
Show more detailed profile info to properly identify HDR content.
### Make sure you are using the *latest* version: - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.12** ### Before submitting an *issue* make sure you have: - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [x] Feature request (request for a new functionality) --- ### Feature Request: Display color space Currently the profile being "vp9.2" indicates "vp9 profile2: color depth: 10–12 bit, chroma subsampling: 4:2:0". However the VP9 format supports the following color spaces: Rec. 601, Rec. 709, Rec. 2020, SMPTE-170, SMPTE-240, and sRGB. Furthermore spaces that support HDR, like Rec. 2020, may or may not have HDR. It would be nice if more detailed profile information could be shown: * One of the Dolby dynamic metadata profiles * HEVCProfileMain10HDR10 * VP9Profile2HDR * VP9Profile3HDR Or if videos could be flagged as having HDR metadata: * ST-2084 Transfer Function - Dynamic HDR Metadata (Dolby-Vision) * ST-2084 Transfer Function - Static HDR Metadata (HDR10) * ST-2084 Transfer Function - Static HDR Metadata (VP9-PQ) * HLG Transfer Function - No HDR Metadata (VP9-HLG) Long-term goal would be a `--prefer-hdr-formats` type of flag. I'm not sure if this is easy or possible without inspecting the video file. I took a look in the manifest using `--write-pages` but the 330-337 formats did not seem to be in the manifest so I don't know what other info youtube is currently providing. [Youtube HDR Video Upload Requirements Info Here](https://support.google.com/youtube/answer/7126552) [Android Developer Info: Dolby-Vision / HDR10 / VP9-HLG / VP9-PQ ](https://source.android.com/devices/tech/display/hdr.html) --- ### Example [The World in HDR](https://www.youtube.com/watch?v=tO01J-M3g0U) from [HDR Launch Playlist](https://www.youtube.com/playlist?list=PLyqf6gJt7KuGArjMwHmgprtDeY8WDa8YX) ``` $ youtube-dl -F tO01J-M3g0U [youtube] tO01J-M3g0U: Downloading webpage [youtube] tO01J-M3g0U: Downloading video info webpage [youtube] tO01J-M3g0U: Extracting video information [youtube] tO01J-M3g0U: Downloading MPD manifest [info] Available formats for tO01J-M3g0U: format code extension resolution note 249 webm audio only DASH audio 50k , opus @ 50k (48000Hz), 912.10KiB 250 webm audio only DASH audio 65k , opus @ 70k (48000Hz), 1.15MiB 140 m4a audio only DASH audio 127k , m4a_dash container, mp4a.40.2@128k (44100Hz), 2.34MiB 251 webm audio only DASH audio 130k , opus @160k (48000Hz), 2.30MiB 171 webm audio only DASH audio 131k , vorbis@128k (44100Hz), 2.07MiB 160 mp4 256x144 DASH video 115k , avc1.4d400c, 30fps, video only, 2.05MiB 278 webm 256x144 DASH video 122k , webm container, vp9, 30fps, video only, 1.69MiB 133 mp4 426x240 DASH video 246k , avc1.4d4015, 30fps, video only, 4.52MiB 242 webm 426x240 DASH video 272k , vp9, 30fps, video only, 3.61MiB 243 webm 640x360 DASH video 513k , vp9, 30fps, video only, 6.92MiB 134 mp4 640x360 DASH video 636k , avc1.4d401e, 30fps, video only, 7.66MiB 244 webm 854x480 DASH video 988k , vp9, 30fps, video only, 12.66MiB 135 mp4 854x480 DASH video 1165k , avc1.4d401f, 30fps, video only, 15.27MiB 247 webm 1280x720 720p 2036k , vp9, 30fps, video only, 25.57MiB 136 mp4 1280x720 720p 2323k , avc1.4d401f, 30fps, video only, 29.77MiB 248 webm 1920x1080 1080p 3260k , vp9, 30fps, video only, 44.89MiB 302 webm 1280x720 DASH video 3261k , vp9, 60fps, video only, 41.13MiB 298 mp4 1280x720 DASH video 3497k , avc1.4d4020, 60fps, video only, 50.22MiB 137 mp4 1920x1080 1080p 4375k , avc1.640028, 30fps, video only, 54.71MiB 303 webm 1920x1080 DASH video 5108k , vp9, 60fps, video only, 71.01MiB 299 mp4 1920x1080 DASH video 5868k , avc1.64002a, 60fps, video only, 88.13MiB 271 webm 2560x1440 1440p 10248k , vp9, 30fps, video only, 134.26MiB 264 mp4 2560x1440 DASH video 10455k , avc1.640032, 30fps, video only, 126.69MiB 308 webm 2560x1440 DASH video 15387k , vp9, 60fps, video only, 203.80MiB 313 webm 3840x2160 2160p 21981k , vp9, 30fps, video only, 314.00MiB 266 mp4 3840x2160 DASH video 23320k , avc1.640033, 30fps, video only, 282.78MiB 315 webm 3840x2160 DASH video 29805k , vp9, 60fps, video only, 457.80MiB 330 webm 256x144 144p60 156k , vp9.2, 60fps, video only, 2.38MiB 331 webm 426x240 240p60 256k , vp9.2, 60fps, video only, 3.87MiB 332 webm 640x360 360p60 485k , vp9.2, 60fps, video only, 7.35MiB 333 webm 854x480 480p60 909k , vp9.2, 60fps, video only, 13.83MiB 334 webm 1280x720 720p60 1991k , vp9.2, 60fps, video only, 28.18MiB 335 webm 1920x1080 1080p60 3201k , vp9.2, 60fps, video only, 49.70MiB 336 webm 2560x1440 1440p60 11166k , vp9.2, 60fps, video only, 170.21MiB 337 webm 3840x2160 2160p60 21696k , vp9.2, 60fps, video only, 339.06MiB 17 3gp 176x144 small , mp4v.20.3, mp4a.40.2@ 24k 36 3gp 320x180 small , mp4v.20.3, mp4a.40.2 43 webm 640x360 medium , vp8.0, vorbis@128k 18 mp4 640x360 medium , avc1.42001E, mp4a.40.2@ 96k 22 mp4 1280x720 hd720 , avc1.64001F, mp4a.40.2@192k (best) ```
request
low
Critical
195,461,813
go
net/http/httptrace: add retry hook
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? `go version go1.7.4 darwin/amd64` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/benburkert" GORACE="" GOROOT="/usr/local/Cellar/go/1.7.4/libexec" GOTOOLDIR="/usr/local/Cellar/go/1.7.4/libexec/pkg/tool/darwin_amd64" CC="clang" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/qs/qkt9twmx4qg379d6f8kxl1vm0000gn/T/go-build714318584=/tmp/go-build -gno-record-gcc-switches -fno-common" CXX="clang++" CGO_ENABLED="1" ``` ### What did you do? https://play.golang.org/p/odjH-4qcwa ### What did you expect to see? The `WroteRequest` hook is called only once for the second request, as it is with the first request, and the program exits normally. ### What did you see instead? The `WroteRequest` hook is called twice because the transport attempts to write the request to a dead connection then retries with a new connection. Both attempts call the hook. This causes the program to panic because of the send on the already closed channel during the second call. ``` panic: send on closed channel goroutine 12 [running]: panic(0x3167c0, 0x1070a648) /usr/local/go/src/runtime/panic.go:500 +0x720 main.request.func1(0x0, 0x0) /tmp/sandbox194689056/main.go:41 +0x40 net/http.(*Request).write.func1(0x10736780, 0x10716f18) /usr/local/go/src/net/http/request.go:452 +0x80 net/http.(*Request).write(0x10740880, 0x440890, 0x10733100, 0x0, 0x10733120, 0x0, 0x0, 0x0) /usr/local/go/src/net/http/request.go:573 +0x10fb net/http.(*persistConn).writeLoop(0x10746870, 0x0) /usr/local/go/src/net/http/transport.go:1644 +0x200 created by net/http.(*Transport).dialConn /usr/local/go/src/net/http/transport.go:1058 +0x13a0 ```
Documentation,help wanted,NeedsInvestigation,FeatureRequest
low
Critical
195,622,499
go
x/build: make OpenBSD use a memory filesystem for its workdir
The OpenBSD builders are some of the slowest. See if it's faster with a memory filesystem for its workdir. See https://github.com/golang/go/issues/16951#issuecomment-266288016 for details. Basically just: ``` $ mount -t mfs -o rw,nodev,nosuid,-s=1G /dev/sd0b /tmp ``` Make the buildlet do that on start, like it already tweaks other system stuff. /cc @mdempsky @4a6f656c
Performance,OS-OpenBSD,Builders
low
Major
195,659,574
go
x/net/trace: support lazy logging in EventLog
Trace supports `LazyLog`/`LazyPrintf` which delays rendering of the event message until (and more importantly **if**) it is being displayed. This would be useful for `EventLog` as well, where large messages can cause noticeable slowdown. I can work on the change if there is agreement on the new API. We can: - add `LazyPrintf/LazyErrorf` primitives, or - leave the current `Printf/Errorf` interface as is but document that the string is lazily generated.
NeedsInvestigation
low
Critical
195,716,702
TypeScript
Exact Types
This is a proposal to enable a syntax for exact types. A similar feature can be seen in Flow (https://flowtype.org/docs/objects.html#exact-object-types), but I would like to propose it as a feature used for type literals and not interfaces. The specific syntax I'd propose using is the pipe (which almost mirrors the Flow implementation, but it should surround the type statement), as it's familiar as the mathematical absolute syntax. ```ts interface User { username: string email: string } const user1: User = { username: 'x', email: 'y', foo: 'z' } //=> Currently errors when `foo` is unknown. const user2: Exact<User> = { username: 'x', email: 'y', foo: 'z' } //=> Still errors with `foo` unknown. // Primary use-case is when you're creating a new type from expressions and you'd like the // language to support you in ensuring no new properties are accidentally being added. // Especially useful when the assigned together types may come from other parts of the application // and the result may be stored somewhere where extra fields are not useful. const user3: User = Object.assign({ username: 'x' }, { email: 'y', foo: 'z' }) //=> Does not currently error. const user4: Exact<User> = Object.assign({ username: 'x' }, { email: 'y', foo: 'z' }) //=> Will error as `foo` is unknown. ``` This syntax change would be a new feature and affect new definition files being written if used as a parameter or exposed type. This syntax could be combined with other more complex types. ```ts type Foo = Exact<X> | Exact<Y> type Bar = Exact<{ username: string }> function insertIntoDb (user: Exact<User>) {} ``` Apologies in advance if this is a duplicate, I could not seem to find the right keywords to find any duplicates of this feature. Edit: This post was updated to use the preferred syntax proposal mentioned at https://github.com/Microsoft/TypeScript/issues/12936#issuecomment-267272371, which encompasses using a simpler syntax with a generic type to enable usage in expressions.
Suggestion,Awaiting More Feedback
high
Critical
195,729,773
opencv
Why cv::resize with CV_8S and CV_32S type was disabled?
Using cv::resize function with cv::Mat in `CV_8S` and `CV_32S` type will cause an error: `opencv/modules/imgproc/src/imgwarp.cpp:3368: error: (-215) func != 0 in function resize` After review of the source code I found: ``` static ResizeFunc linear_tab[] = { resizeGeneric_< HResizeLinear<uchar, int, short, INTER_RESIZE_COEF_SCALE, HResizeLinearVec_8u32s>, VResizeLinear<uchar, int, short, FixedPtCast<int, uchar, INTER_RESIZE_COEF_BITS*2>, VResizeLinearVec_32s8u> >, 0, resizeGeneric_< HResizeLinear<ushort, float, float, 1, HResizeLinearVec_16u32f>, VResizeLinear<ushort, float, float, Cast<float, ushort>, VResizeLinearVec_32f16u> >, resizeGeneric_< HResizeLinear<short, float, float, 1, HResizeLinearVec_16s32f>, VResizeLinear<short, float, float, Cast<float, short>, VResizeLinearVec_32f16s> >, 0, resizeGeneric_< HResizeLinear<float, float, float, 1, HResizeLinearVec_32f>, VResizeLinear<float, float, float, Cast<float, float>, VResizeLinearVec_32f> >, resizeGeneric_< HResizeLinear<double, double, float, 1, HResizeNoVec>, VResizeLinear<double, double, float, Cast<double, double>, VResizeNoVec> >, 0 }; ``` This array corresponds to the type of Mat: ``` #define CV_8U 0 #define CV_8S 1 #define CV_16U 2 #define CV_16S 3 #define CV_32S 4 #define CV_32F 5 #define CV_64F 6 #define CV_USRTYPE1 7 ``` The array value associated with `CV_8S` and `CV_32S` is 0, which led to error. `cv::resize` is an important function, but the bug seems to exist for a long time, which have any special reasons?
RFC
low
Critical
195,756,226
vscode
Add support for capture groups in onEnterRules
From @siegebell in https://github.com/Microsoft/vscode/issues/3088#issuecomment-267236002 --- Before: ``` // comment // indented| ``` After: ``` // comment // indented // | ``` For this case, `onEnterRules` could be extended to support matching groups like find/replace currently does... ```typescript languages.setLanguageConfiguration(modeID, { onEnterRules: [ { // insert comment on new line while preserving the indent beforeText: /^\s*(\/\/\s*)\S.*$/, action: { indentAction: IndentAction.None, appendText: '$1' } } ] }); ```
feature-request,editor-input,editor-autoindent
low
Major
195,763,040
kubernetes
Pod will be created again and again when we have not enough cpu.
## Pod will be created again and again when we have not enough cpu and will not be delete. #### version ``` [root@iZbp14tmy66i2l0ln0vwreZ ~]# kubectl version Client Version: version.Info{Major:"1", Minor:"5", GitVersion:"v1.5.1", GitCommit:"82450d03cb057bab0950214ef122b67c83fb11df", GitTreeState:"clean", BuildDate:"2016-12-14T00:57:05Z", GoVersion:"go1.7.4", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"5", GitVersion:"v1.5.1", GitCommit:"82450d03cb057bab0950214ef122b67c83fb11df", GitTreeState:"clean", BuildDate:"2016-12-14T00:52:01Z", GoVersion:"go1.7.4", Compiler:"gc", Platform:"linux/amd64"} ``` ``` [root@iZbp14tmy66i2l0ln0vwreZ ~]# kubeadm version kubeadm version: version.Info{Major:"1", Minor:"6+", GitVersion:"v1.6.0-alpha.0.2074+a092d8e0f95f52", GitCommit:"a092d8e0f95f5200f7ae2cba45c75ab42da36537", GitTreeState:"clean", BuildDate:"2016-12-13T17:03:18Z", GoVersion:"go1.7.4", Compiler:"gc", Platform:"linux/amd64"} ``` ``` [root@iZbp14tmy66i2l0ln0vwreZ ~]# docker version Client: Version: 1.12.3 API version: 1.24 Go version: go1.6.3 Git commit: 6b644ec Built: OS/Arch: linux/amd64 Server: Version: 1.12.3 API version: 1.24 Go version: go1.6.3 Git commit: 6b644ec Built: OS/Arch: linux/amd64 [root@iZbp14tmy66i2l0ln0vwreZ ~]# docker info Containers: 16 Running: 14 Paused: 0 Stopped: 2 Images: 16 Server Version: 1.12.3 Storage Driver: devicemapper Pool Name: docker-253:1-405252-pool Pool Blocksize: 65.54 kB Base Device Size: 10.74 GB Backing Filesystem: xfs Data file: /dev/loop0 Metadata file: /dev/loop1 Data Space Used: 2.742 GB Data Space Total: 107.4 GB Data Space Available: 29.22 GB Metadata Space Used: 3.6 MB Metadata Space Total: 2.147 GB Metadata Space Available: 2.144 GB Thin Pool Minimum Free Space: 10.74 GB Udev Sync Supported: true Deferred Removal Enabled: false Deferred Deletion Enabled: false Deferred Deleted Device Count: 0 Data loop file: /var/lib/docker/devicemapper/devicemapper/data WARNING: Usage of loopback devices is strongly discouraged for production use. Use `--storage-opt dm.thinpooldev` to specify a custom block storage device. Metadata loop file: /var/lib/docker/devicemapper/devicemapper/metadata Library Version: 1.02.107-RHEL7 (2016-06-09) Logging Driver: json-file Cgroup Driver: cgroupfs Plugins: Volume: local Network: bridge overlay host null Swarm: inactive Runtimes: runc Default Runtime: runc Security Options: seccomp Kernel Version: 3.10.0-327.22.2.el7.x86_64 Operating System: CentOS Linux 7 (Core) OSType: linux Architecture: x86_64 CPUs: 1 Total Memory: 3.703 GiB Name: iZbp14tmy66i2l0ln0vwreZ ID: G3CE:GXII:N7FQ:CA27:AIZT:5MRI:GD2M:T4WU:MVAQ:E4VP:SFMX:5R6E Docker Root Dir: /var/lib/docker Debug Mode (client): false Debug Mode (server): false Registry: https://index.docker.io/v1/ WARNING: bridge-nf-call-ip6tables is disabled Insecure Registries: 127.0.0.0/8 ``` #### see output ``` [root@iZbp14tmy66i2l0ln0vwreZ ~]# kubectl --namespace=kube-system get po NAME READY STATUS RESTARTS AGE dummy-2340867639-qmggs 1/1 Running 0 55s etcd-izbp14tmy66i2l0ln0vwrez 1/1 Running 0 1m kube-apiserver-izbp14tmy66i2l0ln0vwrez 1/1 Running 0 1m kube-controller-manager-izbp14tmy66i2l0ln0vwrez 1/1 Running 0 1m kube-discovery-2798764060-4r96g 1/1 Running 0 52s kube-dns-3611717927-038mq 0/4 OutOfcpu 0 21s kube-dns-3611717927-14vn6 0/4 OutOfcpu 0 3s kube-dns-3611717927-18xhh 0/4 OutOfcpu 0 27s kube-dns-3611717927-1th2f 0/4 OutOfcpu 0 2s kube-dns-3611717927-21mvg 0/4 OutOfcpu 0 28s kube-dns-3611717927-2c1ln 0/4 OutOfcpu 0 23s kube-dns-3611717927-2m25g 0/4 OutOfcpu 0 1s kube-dns-3611717927-302st 0/4 OutOfcpu 0 27s kube-dns-3611717927-34fc2 0/4 OutOfcpu 0 5s kube-dns-3611717927-3kl3k 0/4 OutOfcpu 0 40s kube-dns-3611717927-3lvzk 0/4 OutOfcpu 0 7s kube-dns-3611717927-4cpjq 0/4 OutOfcpu 0 19s kube-dns-3611717927-501ms 0/4 OutOfcpu 0 15s kube-dns-3611717927-59t74 0/4 OutOfcpu 0 17s kube-dns-3611717927-5jcgc 0/4 OutOfcpu 0 50s kube-dns-3611717927-5sl2p 0/4 OutOfcpu 0 5s kube-dns-3611717927-66l75 0/4 OutOfcpu 0 29s kube-dns-3611717927-697wm 0/4 OutOfcpu 0 32s kube-dns-3611717927-6xxmd 0/4 OutOfcpu 0 18s kube-dns-3611717927-7pw27 0/4 OutOfcpu 0 25s kube-dns-3611717927-7xhvx 0/4 OutOfcpu 0 41s kube-dns-3611717927-8nvc4 0/4 OutOfcpu 0 36s kube-dns-3611717927-8p2t3 0/4 OutOfcpu 0 26s kube-dns-3611717927-8wxwv 0/4 OutOfcpu 0 50s kube-dns-3611717927-978x6 0/4 OutOfcpu 0 11s kube-dns-3611717927-9f71g 0/4 OutOfcpu 0 34s kube-dns-3611717927-9mr86 0/4 OutOfcpu 0 21s kube-dns-3611717927-9mthz 0/4 OutOfcpu 0 24s kube-dns-3611717927-bjwrz 0/4 OutOfcpu 0 11s kube-dns-3611717927-bw062 0/4 OutOfcpu 0 28s kube-dns-3611717927-c7038 0/4 OutOfcpu 0 47s kube-dns-3611717927-cgwdk 0/4 OutOfcpu 0 44s kube-dns-3611717927-dkdn9 0/4 OutOfcpu 0 33s kube-dns-3611717927-dtg6n 0/4 OutOfcpu 0 43s kube-dns-3611717927-dz7dd 0/4 Pending 0 0s kube-dns-3611717927-f33bg 0/4 OutOfcpu 0 7s kube-dns-3611717927-f753b 0/4 OutOfcpu 0 44s kube-dns-3611717927-ff2cs 0/4 OutOfcpu 0 31s kube-dns-3611717927-fvbn9 0/4 OutOfcpu 0 19s kube-dns-3611717927-j9323 0/4 OutOfcpu 0 31s kube-dns-3611717927-j991n 0/4 OutOfcpu 0 29s kube-dns-3611717927-jgzbp 0/4 OutOfcpu 0 13s kube-dns-3611717927-l2g0t 0/4 OutOfcpu 0 34s kube-dns-3611717927-l4t6t 0/4 OutOfcpu 0 10s kube-dns-3611717927-lf63x 0/4 OutOfcpu 0 8s kube-dns-3611717927-lhj3n 0/4 OutOfcpu 0 6s kube-dns-3611717927-lw0rk 0/4 OutOfcpu 0 25s kube-dns-3611717927-pbk96 0/4 OutOfcpu 0 38s kube-dns-3611717927-pj8d7 0/4 OutOfcpu 0 42s kube-dns-3611717927-pmmmt 0/4 OutOfcpu 0 35s kube-dns-3611717927-pvxvw 0/4 OutOfcpu 0 9s kube-dns-3611717927-pxm54 0/4 OutOfcpu 0 16s kube-dns-3611717927-qhq5p 0/4 OutOfcpu 0 30s kube-dns-3611717927-rwl3l 0/4 OutOfcpu 0 12s kube-dns-3611717927-s1b8g 0/4 OutOfcpu 0 33s kube-dns-3611717927-s7wmp 0/4 OutOfcpu 0 20s kube-dns-3611717927-s9127 0/4 OutOfcpu 0 50s kube-dns-3611717927-sffb4 0/4 OutOfcpu 0 42s kube-dns-3611717927-sfsg5 0/4 OutOfcpu 0 18s kube-dns-3611717927-sqwfw 0/4 OutOfcpu 0 10s kube-dns-3611717927-stk1f 0/4 OutOfcpu 0 14s kube-dns-3611717927-t1fdw 0/4 OutOfcpu 0 45s kube-dns-3611717927-tcg2r 0/4 OutOfcpu 0 37s kube-dns-3611717927-tf7w9 0/4 OutOfcpu 0 39s kube-dns-3611717927-tk2zf 0/4 OutOfcpu 0 22s kube-dns-3611717927-tkxjl 0/4 OutOfcpu 0 39s kube-dns-3611717927-v4c5w 0/4 OutOfcpu 0 17s kube-dns-3611717927-vhft0 0/4 OutOfcpu 0 49s kube-dns-3611717927-wdgrd 0/4 OutOfcpu 0 9s kube-dns-3611717927-x6hqb 0/4 OutOfcpu 0 36s kube-dns-3611717927-xgnm3 0/4 OutOfcpu 0 49s kube-dns-3611717927-xmh0l 0/4 OutOfcpu 0 15s kube-dns-3611717927-xmp5c 0/4 OutOfcpu 0 4s kube-dns-3611717927-xrlvb 0/4 OutOfcpu 0 23s kube-proxy-q8xf9 1/1 Running 0 50s kubernetes-dashboard-3761021483-6xl56 0/1 ContainerCreating 0 49s ```
area/kubelet,area/app-lifecycle,area/usability,area/kubectl,area/reliability,sig/node,area/workload-api/deployment,sig/apps,sig/cli,area/workload-api/replicaset,triage/accepted,area/pod-lifecycle
medium
Critical
195,795,306
TypeScript
Type Inference in for... in combined with typeof
<!-- BUGS: Please use this template. --> **TypeScript Version:** 2.1.4 The following code gives an error in TS 2.1: It's not really nice code, but I think it should work never the less :) ```TypeScript for (var a in this) { if (typeof this[a] === "function" && !ko.isObservable(this[a])) this[a] = this[a].bind(this); } ``` **Expected behavior:** I would expect this[a] to be typed as this[keyof this] & Function: ```TypeScript for (var a in this) { if (typeof this[a] === "function" && !ko.isObservable(this[a])) this[a] =( <this[keyof this] & Function> this[a]).bind(this); } ``` **Actual behavior:** It gives an error, as of TS 2.1, it worked in TS 2.0 (because mapped types did not exist, this[a] was typed as any)
Suggestion,Help Wanted
low
Critical
195,796,063
youtube-dl
Can't connect to proxy (407 ERROR)
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.12*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [√] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.12** ### Before submitting an *issue* make sure you have: - [√] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [√] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [ ] Bug report (encountered problems with youtube-dl) - [ ] Site support request (request for adding support for a new site) - [ ] Feature request (request for a new functionality) - [√] Question - [ ] Other --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue* --- ### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows: Add `-v` flag to **your command line** you run youtube-dl with, copy the **whole** output and insert it here. It should look similar to one below (replace it with **your** log inserted between triple ```): ``` $ youtube-dl -v <your command line> [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'-v', u'http://www.youtube.com/watch?v=BaW_jenozKcj'] [debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251 [debug] youtube-dl version 2016.12.12 [debug] Python version 2.7.11 - Windows-2003Server-5.2.3790-SP2 [debug] exe versions: ffmpeg N-75573-g1d0487f, ffprobe N-75573-g1d0487f, rtmpdump 2.4 [debug] Proxy map: {} ... <end of log> ``` --- ### If the purpose of this *issue* is a *site support request* please provide all kinds of example URLs support for which should be included (replace following example URLs by **yours**): - Single video: https://www.youtube.com/watch?v=BaW_jenozKc - Single video: https://youtu.be/BaW_jenozKc - Playlist: https://www.youtube.com/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc --- I'm in windows. I use a proxy server that requires a user-name and a password. I have set my systems proxy manually in IE. And this was worked very well. But these several days, youtube-dl always tells me that failed to connect the proxy. And I check the proxy in IE, it works well. I really don't know why the problem be happened. If it is the Windows issue? Because Win10 had a upgrade several days ago. Thank you for all you can advise anything. ![yy 20161215202255](https://cloud.githubusercontent.com/assets/22773754/21224399/f8738cc8-c306-11e6-9ab7-d771753aa813.png)
external-bugs
low
Critical
195,880,741
youtube-dl
daserste.ndr.de unsupported
I see ndr is supported via ndr.py, so maybe it is just the hostname that needs to be included (daserste.ndr.de instead of www.ndr.de) ``` $ youtube-dl http://daserste.ndr.de/inas_nacht/videos/Inas-Nacht-mit-Heinz-Strunk,inasnacht4682.html [generic] Inas-Nacht-mit-Heinz-Strunk,inasnacht4682: Requesting header WARNING: Falling back on generic information extractor. [generic] Inas-Nacht-mit-Heinz-Strunk,inasnacht4682: Downloading webpage [generic] Inas-Nacht-mit-Heinz-Strunk,inasnacht4682: Extracting information ERROR: Unsupported URL: http://daserste.ndr.de/inas_nacht/videos/Inas-Nacht-mit-Heinz-Strunk,inasnacht4682.html ```
site-support-request
low
Critical
195,940,386
flutter
`flutter analyze` should run `pub get` in directories it decides it is scanning if they contain pubspec.yaml files
If you run `flutter analyze` and it decides to analyze multiple directories containing multiple packages such that it will generate a big joint `.packages`, then we should run `pub get` in each of those packages as necessary (just as we would if we ran `flutter analyze` in that package directly).
tool,P2,team-tool,triaged-tool
low
Minor
195,969,365
go
x/net/http2: make Transport send GOAWAY?
We previously debated whether the Transport should send GOAWAY frames on shutdown, but couldn't think of a useful reason why. The spec does say: > When either endpoint chooses to close the transport-layer TCP connection, the terminating endpoint SHOULD first send a GOAWAY (Section 6.8) frame so that both endpoints can reliably determine whether previously sent frames have been processed and gracefully complete or terminate any necessary remaining tasks. Or code is like: ```go // TODO: do clients send GOAWAY too? maybe? Just Close: cc.tconn.Close() ``` But I'm still not quite sure why a server would care. /cc @mnot @tombergan
help wanted,NeedsFix
low
Major
195,969,544
go
x/net/http2: Transport should handle 421
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ### What operating system and processor architecture are you using (`go env`)? ### What did you do? If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on play.golang.org is best. ### What did you expect to see? ### What did you see instead?
help wanted
low
Critical
195,993,830
go
cmd/go: applying swig's %go_import directive to non-builtin packages is not supported
One of swig's useful language-specific directives for the Go language is `%go_import`. It allows defining typemaps and wrappers (with `%insert(go_wrapper)`), among others, using symbols defined in a user-defined package found under $GOPATH/src. However, the go build system only allows `%go_import` of builtin packages. User-defined packages are not accessible in the temporary workspace which go creates to build a package that uses swig interface files. The following, while not really interfacing with any C/C++ library, demonstrates this problem. It's using go1.7 on darwin/amd64. But this problem is seen on all platforms. The first attempt at making and executing the main package at swig-sandbox/import relies on the go build system's support for swig. It fails. The second attempt is made after invoking swig manually (removing *.swigcxx to prevent the go build system to also try to invoke swig). It succeeds, obviously. ``` bash-3.2$ [ $GOPATH/src/swig-sandbox/import == $PWD ] && echo 'We are at swig-sandbox/import in Go sources directory' We are at swig-sandbox/import in Go sources directory bash-3.2$ ls -R .: main.i main.swigcxx mytime printNextYear.go ./mytime: consts.go bash-3.2$ head *.{i,swigcxx,go} */*.go ==> main.i <== %go_import("fmt", c "swig-sandbox/import/mytime") %insert(go_wrapper) %{ func myprint(a ...interface{}) { fmt.Print("[myprint] ") fmt.Println(a...) } func nextYear() uint { return c.Year + 1 } ==> main.swigcxx <== %include "main.i" ==> printNextYear.go <== ``` ```go package main func main() { myprint("Next year is:", nextYear()) } ``` ``` ==> mytime/consts.go <== ``` ```go package consts const Year uint = 2016 ``` ``` bash-3.2$ go build -o main && ./main # swig-sandbox/import /tmp/go-build726259823/swig-sandbox/import/_obj/main.go:40: can't find import: "swig-sandbox/import/mytime" bash-3.2$ rm main.swigcxx bash-3.2$ swig -go -cgo -intgosize 64 -module main main.i bash-3.2$ go build -o main && ./main [myprint] Next year is: 2017 bash-3.2$ ``` As can be seen, the workaround is to not use *.swigcxx files and instead do a two-step compilation -- explicitly invoke swig and then use go build. But it's desirable to have the go build system to call swig. Note also that `%go_import` of `"fmt"` was fine. It was the `%go_import` of `"swig-sandbox/import/mytime"`, a user-defined package, that was problematic.
NeedsInvestigation
low
Minor
196,003,363
neovim
Feature request: file complete without user to remember where the asterisk should be
The fishshell https://fishshell.com/ has a really nice feature IMO, your can type any part of file and hit `<tab>` to complete. In vim and other shells I know, user have to type exactly the leading part of file name to complete, that could be hard sometimes, for example, a directoy with many files starts with `controller-` or similar. Looks like a easy job.
enhancement
low
Major
196,022,563
youtube-dl
Search by Filter
How to search any videos based on FEATURES filter such as 4K, Creative commons or 3D? i can see youtube-dl has ability to sort by upload date, min view etc but i can't find for features. e.g : ytsearch:Chritsmas videos :creative commons
request
low
Major
196,070,653
three.js
PointsMaterial's sizeAttenuation property should default to false
#### Description of the problem The default [PointsMaterial](https://threejs.org/docs/api/materials/PointsMaterial.html) sets `sizeAttenuation` to `true`. This produces unexpected results as drawing a _point_ should theoretically produce a single pixel location (unless `size` is set larger). This is how _lines_ (another primitive) work - why are points different? Further, this default _really_ breaks when used with an Orthographic Camera. In theory, the `sizeAttenuation` property was added to allow points to feel somewhat more like "good citizens" when paired with a Perspective Camera. When paired with an Orthographic Camera, points become very bad citizens. On a personal note, this lead to a bunch of lost time trying to track down what was going on in a project - at one point the entire drawing surface was covered by attenuated "points" because they happened to be too close to the camera. At the very least, the documentation doesn't outline _how_ the points attenuate in size: at what distance should we expect size to be 1:1? How quickly does size attenuate? This is somewhat a continuation of #7517. #### Three.js version - [ ] Dev - [x] r83 - [ ] ... #### Browser - [x] All of them - [ ] Chrome - [ ] Firefox - [ ] Internet Explorer #### OS - [x] All of them - [ ] Windows - [ ] Linux - [ ] Android - [ ] IOS #### Hardware Requirements (graphics card, VR Device, ...) Nothing specific.
Suggestion
medium
Major
196,122,620
go
runtime: refactor assembly for C calls in signal handlers
On [change 34501](https://go-review.googlesource.com/#/c/34501/), @minux notes: > It seems the complexity of runtime.sigtramp has got out of control. (sigtramp used to be only called by kernel, now with signal forwarding, it can also be called by foreign C code) > > Perhaps we need to separate the concern of saving callee saved register to another function, possbily reusing the existing runtime/cgo crosscall function? @ianlancetaylor replies: > Signal forwarding applied as soon as we started thinking about combining Go and C code together in the same program. We're just continuing to grapple with it. > > Unifying C ABI register saving sounds like a good idea if we can figure out how to do it.
compiler/runtime
low
Minor
196,162,405
javascript
Braces with single-line if blocks
In point [16.1](https://github.com/airbnb/javascript/tree/master/#functions) you state the two block possibilities when it comes to in-line if blocks. These are: ``` if (test) return false; if (test) { return false; } ``` Is there any preference to use one or the other? Personally, I use the first one only at the top of a function, when I have to verify trivial preconditions. (i.e. `if (!name) return 'Name is required';`.
question
low
Minor
196,168,611
go
path/filepath: fix HasPrefix
The [`filepath.HasPrefix`](https://golang.org/pkg/path/filepath/#HasPrefix) function has been in a deprecated-like status for the past 4 years (since 2012). The reasons why it was deprecated is described in [CL/5712045](http://golang.org/cl/5712045). The issue with respecting path boundaries is probably the most significant. Given that it's had a note steering people away for 4 years, there should be nearly no users of the function. Inside Google, there are 3 uses of it and all of them would have wanted the correct implementation. We should actually fix this function and bring it out of deprecated status. The challenge with properly implementing it is getting the case-sensitivity correct. This is a dependent on the underlying filesystem and not the GOOS.
NeedsInvestigation
medium
Critical
196,193,969
rust
method resolution problem related to `Box<dyn Trait>`
To reproduce: ```rust use std::ops::{Deref, DerefMut}; use std::borrow::BorrowMut; pub enum Managed<'a, T: 'a + ?Sized> { Borrowed(&'a mut T), Owned(Box<BorrowMut<T>>) } impl<'a, T: 'a + ?Sized> Deref for Managed<'a, T> { type Target = T; fn deref(&self) -> &T { match self { &Managed::Borrowed(ref value) => value, &Managed::Owned(ref value) => value.borrow() } } } impl<'a, T: 'a + ?Sized> DerefMut for Managed<'a, T> { fn deref_mut(&mut self) -> &mut T { match self { &mut Managed::Borrowed(ref mut value) => value, &mut Managed::Owned(ref mut value) => value.borrow_mut() } } } ``` If you comment the impl DerefMut, everything compiles. If you uncomment it: ``` error[E0277]: the trait bound `Box<std::borrow::BorrowMut<T> + 'static>: std::borrow::Borrow<T>` is not satisfied --> <anon>:24:57 | 24 | &mut Managed::Owned(ref mut value) => value.borrow_mut() | ^^^^^^^^^^ trait `Box<std::borrow::BorrowMut<T> + 'static>: std::borrow::Borrow<T>` not satisfied | = help: the following implementations were found: = help: <Box<T> as std::borrow::Borrow<T>> ``` which seems clearly nonsensical. Changing `value.borrow_mut()` to `(**value).borrow_mut()` fixes it.
A-type-system,A-associated-items,T-compiler,C-bug,T-types,A-trait-objects
low
Critical
196,196,284
youtube-dl
Disney XD -- Unable to downloaded protected videos even with login cookies.
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.15*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [ x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.15** ### Before submitting an *issue* make sure you have: - x[ ] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x ] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [ ] Bug report (encountered problems with youtube-dl) - [x ] Site support request (request for adding support for a new site) - [x ] Feature request (request for a new functionality) - [ ] Question - [ ] Other --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue* --- ### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows: ``` keybounceMBP:Rebels michael$ youtube-dl -v --cookie ~/Dish-cookies.txt 'http://watchdisneyxd.go.com/star-wars- rebels/video/vdka3428924/03/03-the-antilles-extraction#playlist=PL553400298' [debug] System config: [] [debug] User config: [u'-o', u'%(title)s.%(ext)s', u'-f', u'\nbest[ext=mp4][height>431][height<=480]/\nbest[ext=mp4][height>431][height<=576]/\nbestvideo[ext=mp4][height=480]+bestaudio[ext=m4a]/\nbest[ext=mp4][height>340][height<=431]/\nbestvideo[ext=mp4][height>360][height<=576]+bestaudio/\nbest[height>340][height<=576]/\nbestvideo[height>360][height<=576]+bestaudio/\nbestvideo[height=360]+bestaudio/\nbest[ext=mp4][height>=280][height<=360]/\nbest[height<=576]/\nworst', u'--write-sub', u'--write-auto-sub', u'--sub-lang', u'en,enUS', u'--sub-format', u'srt/ass/best', u'--embed-subs', u'--recode-video', u'mp4', u'--mark-watched'] [debug] Command-line args: [u'-v', u'--cookie', u'/Users/michael/Dish-cookies.txt', u'http://watchdisneyxd.go.com/star-wars-rebels/video/vdka3428924/03/03-the-antilles-extraction#playlist=PL553400298'] [debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8 [debug] youtube-dl version 2016.12.15 [debug] Python version 2.7.5 - Darwin-13.4.0-x86_64-i386-64bit [debug] exe versions: ffmpeg 3.2, ffprobe 3.2, rtmpdump 2.4 [debug] Proxy map: {} [Go] 3428924: Downloading JSON metadata [Go] 3428924: Downloading JSON metadata ERROR: Go said: 1007:Unable to retrieve required files for playback. Please try again in a few minutes. Traceback (most recent call last): File "/Users/michael/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 694, in extract_info ie_result = ie.extract(url) File "/Users/michael/bin/youtube-dl/youtube_dl/extractor/common.py", line 357, in extract return self._real_extract(url) File "/Users/michael/bin/youtube-dl/youtube_dl/extractor/go.py", line 74, in _real_extract raise ExtractorError('%s said: %s' % (self.IE_NAME, error_message), expected=True) ExtractorError: Go said: 1007:Unable to retrieve required files for playback. Please try again in a few minutes. keybounceMBP:Rebels michael$ ``` The first two episodes -- not protected -- downloaded just fine. The cookie file used was generated by logging into the site through dish. So, this is a login-related issue. I am providing the login cookies. Still not working. Help please. (Search oddity: A search for 'disneyxd' returns no hits??? Clearly my searching was a failure.)
tv-provider-account-needed
low
Critical
196,239,690
opencv
[traincascade] fail faster for missing output directory
##### System information (version) - OpenCV => 3.1 - Operating System / Platform => Linux Mint 18.1 x64 - Compiler => gcc ##### Detailed description If a non-existent directory is supplied to the `traincascade` program it will eventually crash when trying to save the first training stage. Training a stage can take hours and it kind of sucks to have it crash because you forgot to create a directory. I think it would be worth checking the directory before starting to train the classifier. I am opening the issue mainly to get guidance on the preferred way to handle this issue since there are a lot of things I am not familiar with here like cross platform issues and dependencies. [This](http://stackoverflow.com/questions/18100097/portable-way-to-check-if-directory-exists-windows-linux-c) stack overflow seems to indicate that `sys/stat.h` might work and there is also `boost::filesystem`. Alternatively the training program could be modified to try and save the parameters immediately which would help to fail fast. ##### Steps to reproduce Start the `traincascade` program and supply a non-existent directory to `-data`. Wait until the first stage is ready to save and observe the crash.
feature,category: apps
low
Critical
196,240,844
go
image/png: no support for setting and retrieving the PPI/DPI
Please answer these questions before submitting your issue. Thanks! What version of Go are you using (go version)? go1.7.4 darwin/amd64 What operating system and processor architecture are you using (go env)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/raphaelgeronimi/Local/Others/Go workspace" GORACE="" GOROOT="/opt/local/lib/go" GOTOOLDIR="/opt/local/lib/go/pkg/tool/darwin_amd64" CC="/usr/bin/clang" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/zw/0zvr11l11975vn4gk7s4hrx00000gn/T/go-build732769753=/tmp/go-build -gno-record-gcc-switches -fno-common" CXX="clang++" CGO_ENABLED="1" What did you do? I need to mass-produce PNG chart images in high resolution - i.e., PPI at 2x-4x multiple of the default 72 value What did you expect to see? A new encoding method and/or an Options field to customize the PPI of the image being encoded. Similarly, extending the image.Config struct to be able to retrieve the PPI of a decoded image. What did you see instead? No method found. I wrote a patch with the missing code. However the public API design needs to be discussed first as a "clean" API - i.e., adding an Options field to the Encode function to perfectly mirror the design of image/jpeg - is unfeasible as it would break the Go 1 compatibility
help wanted,NeedsFix,FeatureRequest
low
Critical
196,289,736
opencv
VideoCapture hangs immediately after starting
- OpenCV 3.1 - Mac OSX Sierra 10.12.1 - xcode 8.1 hello, I've installed also opencv_contrib, everything looks good, but it seems my first program hangs immediately after the first frame was displayed if I try to capture video from the webcam. First I've tried the code in Reading and Writing Images and Video example and it hangs. ``` #include "opencv2/opencv.hpp" using namespace cv; int main(int, char**) { VideoCapture cap(0); // open the default camera if(!cap.isOpened()) // check if we succeeded return -1; Mat edges; namedWindow("edges",1); for(;;) { Mat frame; cap >> frame; // get a new frame from camera cvtColor(frame, edges, COLOR_BGR2GRAY); GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5); Canny(edges, edges, 0, 30, 3); imshow("edges", edges); if(waitKey(30) >= 0) break; } return 0; } ``` so I've found this next example and it works fine. ``` #include "opencv2/opencv.hpp" using namespace cv; int main(int, char**) { int c; IplImage* color_img; CvCapture* cv_cap = cvCaptureFromCAM(0); cvNamedWindow("Video",0); // create window for(;;) { color_img = cvQueryFrame(cv_cap); // get frame if(color_img != 0) cvShowImage("Video", color_img); // show frame c = cvWaitKey(10); // wait 10 ms or for key stroke if(c == 27) break; // if ESC, break and quit } /* clean up */ cvReleaseCapture( &cv_cap ); cvDestroyWindow("Video"); // the camera will be deinitialized automatically in VideoCapture destructor return 0; } ``` so why VideoCapture hangs? Is it some my mistake? I don't have any error messages everything is building successfully. Can anyone help me? Thanks in advance!
bug,category: videoio,platform: ios/osx
low
Critical
196,307,222
rust
Repeated #[link] attributes for the same library cause it to be passed as many times to the linker.
> [If I specify #[link(name="pythonXY")] on 30 extern C blocks, and then compile with rustc -l dylib=pythonXY:python27, then python27.lib is passed to the linker 30 times.](https://github.com/rust-lang/rust/issues/37403#issuecomment-267763227) In extreme cases this may cause trouble on Windows, where the maximum length of the command line is 32000 bytes. Also, may slow down linking.
A-linkage,C-enhancement,T-compiler
low
Major
196,367,903
youtube-dl
[groovemp3] Site support request
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.18*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.18** ### Before submitting an *issue* make sure you have: - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [ ] Bug report (encountered problems with youtube-dl) - [x] Site support request (request for adding support for a new site) - [ ] Feature request (request for a new functionality) - [ ] Question - [ ] Other --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue* --- ### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows: Add `-v` flag to **your command line** you run youtube-dl with, copy the **whole** output and insert it here. It should look similar to one below (replace it with **your** log inserted between triple ```): ``` da@xps15z:~$ youtube-dl -v http://groovemp3.com/track/120593577 [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'-v', u'http://groovemp3.com/track/120593577'] [debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8 [debug] youtube-dl version 2016.12.18 [debug] Python version 2.7.12 - Linux-4.4.0-53-generic-x86_64-with-Ubuntu-16.04-xenial [debug] exe versions: avconv 2.8.10-0ubuntu0.16.04.1, avprobe 2.8.10-0ubuntu0.16.04.1, ffmpeg 2.8.10-0ubuntu0.16.04.1, ffprobe 2.8.10-0ubuntu0.16.04.1 [debug] Proxy map: {} [generic] 120593577: Requesting header WARNING: Falling back on generic information extractor. [generic] 120593577: Downloading webpage [generic] 120593577: Extracting information ERROR: Unsupported URL: http://groovemp3.com/track/120593577 Traceback (most recent call last): File "/usr/local/bin/youtube-dl/youtube_dl/extractor/generic.py", line 1626, in _real_extract doc = compat_etree_fromstring(webpage.encode('utf-8')) File "/usr/local/bin/youtube-dl/youtube_dl/compat.py", line 2526, in compat_etree_fromstring doc = _XML(text, parser=etree.XMLParser(target=_TreeBuilder(element_factory=_element_factory))) File "/usr/local/bin/youtube-dl/youtube_dl/compat.py", line 2515, in _XML parser.feed(text) File "/usr/lib/python2.7/xml/etree/ElementTree.py", line 1653, in feed self._raiseerror(v) File "/usr/lib/python2.7/xml/etree/ElementTree.py", line 1517, in _raiseerror raise err ParseError: mismatched tag: line 44, column 6 Traceback (most recent call last): File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 694, in extract_info ie_result = ie.extract(url) File "/usr/local/bin/youtube-dl/youtube_dl/extractor/common.py", line 357, in extract return self._real_extract(url) File "/usr/local/bin/youtube-dl/youtube_dl/extractor/generic.py", line 2433, in _real_extract raise UnsupportedError(url) UnsupportedError: Unsupported URL: http://groovemp3.com/track/120593577 da@xps15z:~$ ``` --- ### If the purpose of this *issue* is a *site support request* please provide all kinds of example URLs support for which should be included (replace following example URLs by **yours**): - Single video: http://groovemp3.com/track/120593577 --- ### Description of your *issue*, suggested solution and other information Would you add http://groovemp3.com to supported sites? Thanks.
site-support-request
low
Critical
196,416,147
angular
NgModel defers writeValue call to the next tick. Conflicts with OnInit's contract of child components.
<!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING --> **I'm submitting a ...** (check one with "x") ``` [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ``` **Current behavior** <!-- Describe how the bug manifests. --> [NgModel](https://github.com/angular/angular/blob/master/modules/@angular/forms/src/directives/ng_model.ts) defers calling writeValue of the ControlValueAccessor with the supplied value to the next tick. ```typescript private _updateValue(value: any): void { resolvedPromise.then( () => { this.control.setValue(value, {emitViewToModelChange: false}); }); } ``` While [OnInit's documentation](https://angular.io/docs/ts/latest/api/core/index/OnInit-class.html) states > Lifecycle hook that is called after data-bound properties of a directive are initialized. As a result of the two things described above, it is not obvious, how to from a component implementing `ControlValueAccessor` supply values to inner components that expect their data-bound properties to be initialized in `onInit`. **Expected behavior** <!-- Describe what the behavior would be without the bug. --> - Add a warning to [OnInit's documentation](https://angular.io/docs/ts/latest/api/core/index/OnInit-class.html) or NgModel's documentation? - Or change `ngModel`'s behavior? **Minimal reproduction of the problem with instructions** <!-- If the current behavior is a bug or you can illustrate your feature request better with an example, please provide the *STEPS TO REPRODUCE* and if possible a *MINIMAL DEMO* of the problem via https://plnkr.co or similar (you can use this template as a starting point: http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5). --> [The minimal plunker to reproduce](http://plnkr.co/edit/gcu2lhPUj5gQYIbkpM5Q?p=preview) **What is the motivation / use case for changing the behavior?** <!-- Describe the motivation or the concrete use case --> I am trying to place a color picker on a form. To do this I created a wrapper component that implements `ControlValueAccessor` which uses [angular2-color-picker](https://github.com/Alberplz/angular2-color-picker) underneath. The wrapper's `_value` is set in `writeValue` and the wrapper is bound using `ngModel`. The wrapper, in turn, has the following in its markup: ```html <input class="form-control" [colorPicker]="_value" (colorPickerChange)="onColorPickerChange($event)" ... /> ``` The problem is `angular2-color-picker` tries to access its data-bound inputs in `onInit` which triggers a bug down the road. `color-picker.directive.ts` ```typescript export class ColorPickerDirective implements OnInit, OnChanges { @Input('colorPicker') colorPicker: string; @Output('colorPickerChange') colorPickerChange = new EventEmitter<string>(true); // ... ngOnInit() { let hsva = this.service.stringToHsva(this.colorPicker); // ... this.colorPickerChange.emit(this.service.outputFormat(hsva, this.cpOutputFormat, this.cpAlphaChannel === 'hex8')); } ``` **Please tell us about your environment:** <!-- Operating system, IDE, package manager, HTTP server, ... --> - Windows 10. - WebStorm and VSCode. - npm and yarn. **Angular version:** 2.3.0 <!-- Check whether this is still an issue in the most recent Angular version --> **Browser:** all **Language:** TypeScript
type: bug/fix,freq1: low,area: core,core: change detection,P3
low
Critical
196,464,338
youtube-dl
Support vk audio search
It would be very good, if you add support to get list mp3 tracks from VK, link example: https://m.vk.com/audio?act=search&q=daydreamer
request,account-needed
low
Minor
196,574,760
rust
Tracking issue for the `msp430-interrupt` calling convention/ABI
Added in #38465 This calling convention is used to define interrup handlers on MSP430 microcontrollers. Usage looks like this: ``` rust #[no_mangle] #[link_section = "__interrupt_vector_10"] pub static TIM0_VECTOR: unsafe extern "msp430-interrupt" fn() = tim0; unsafe extern "msp430-interrupt" fn tim0() { P1OUT.write(0x00); } ``` which generates the following assembly: ``` asm Disassembly of section __interrupt_vector_10: 0000fff2 <TIM0_VECTOR>: fff2: 10 c0 interrupt service routine at 0xc010 Disassembly of section .text: 0000c010 <_ZN3msp4tim017h3193b957fd6a4fd4E>: c010: c2 43 21 00 mov.b #0, &0x0021 ;r3 As==00 c014: 00 13 reti ... ``` cc @alexcrichton @pftbest
T-lang,B-unstable,C-tracking-issue,WG-embedded,S-tracking-needs-summary,O-msp430,A-hardware-interrupts
low
Major
196,579,501
go
x/crypto/acme: Rejected TOS results in inability to register
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.6 ### What operating system and processor architecture are you using (`go env`)? amd64 ### What did you do? Call acme.Register with a prompt that returns false, then again with a prompt that succeeds. ### What did you expect to see? Success ### What did you see instead? Register returns a conflict without calling UpdateReg.
NeedsInvestigation
low
Major
196,589,432
You-Dont-Know-JS
You Don't Know JS: Types & Grammar Chapter 2: Values
The text: 'Addition and subtraction cannot result in a negative zero' is not absolute. An edge case is with -0 + -0 = -0. Ditto for the subtraction case. The ES5 spec contains this rule: https://es5.github.io/#x11.6.3
for second edition
medium
Minor
196,597,785
youtube-dl
Extracting audio does not work for a specific channel
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.18*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.18** ### Before submitting an *issue* make sure you have: - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [x] Bug report (encountered problems with youtube-dl) - [ ] Site support request (request for adding support for a new site) - [ ] Feature request (request for a new functionality) - [ ] Question - [ ] Other --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue* --- ### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows: Add `-v` flag to **your command line** you run youtube-dl with, copy the **whole** output and insert it here. It should look similar to one below (replace it with **your** log inserted between triple ```): ``` YouTube URL:https://www.youtube.com/watch?v=ODLmWNw26F8 [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-v', '--extract-audio', '--audio-format', 'mp3', '- -audio-quality', '320k', 'https://www.youtube.com/watch?v=ODLmWNw26F8'] [debug] Encodings: locale cp949, fs mbcs, out cp949, pref cp949 [debug] youtube-dl version 2016.12.18 [debug] Python version 3.4.4 - Windows-8.1-6.3.9600 [debug] exe versions: ffmpeg N-82880-g02aa070, ffprobe N-82880-g02aa070 [debug] Proxy map: {} [youtube] ODLmWNw26F8: Downloading webpage [youtube] ODLmWNw26F8: Downloading video info webpage [youtube] ODLmWNw26F8: Extracting video information [youtube] {22} signature length 41.40, html5 player en_US-vflxP8f0T [youtube] ODLmWNw26F8: Downloading player https://s.ytimg.com/yts/jsbin/player-e n_US-vflxP8f0T/base.js ``` --- I've extracted audio countlessly, but this one [channel](https://www.youtube.com/user/epicmusicvn/videos), I cannot extract. I am left with the final line of downloading jsplayer. There is no network activity going on while running the .exe, so it seems to be stuck. Few examples of the videos of what is working and what is not. Working: [1](https://www.youtube.com/watch?v=3Ap-XSOlmcs) Working: [2](https://www.youtube.com/watch?v=CLH---HX1r8) Not working: [1](https://www.youtube.com/watch?v=ODLmWNw26F8) Not working: [2](https://www.youtube.com/watch?v=9SZY2447rgA) As you can see, videos on "Epic Music VN"channel does not work and the videos on "Epic Music VN X" works. This is another video which also downloads a player during extraction and it works just to eliminate a possibility that something is wrong on my end. [https://www.youtube.com/watch?v=Zxmv5U_Wy6A](https://www.youtube.com/watch?v=Zxmv5U_Wy6A) ### Description of your *issue*, suggested solution and other information Explanation of your *issue* in arbitrary form goes here. Please make sure the [description is worded well enough to be understood](https://github.com/rg3/youtube-dl#is-the-description-of-the-issue-itself-sufficient). Provide as much context and examples as possible. If work on your *issue* requires account credentials please provide them or explain how one can obtain them.
cant-reproduce
low
Critical
196,719,520
You-Dont-Know-JS
"types & grammar": fix inaccuracy in ch5 about completion values
Fix discussion of `var x` statement having `undefined` completion value. RE: https://twitter.com/ydkjs/status/811247502762606592 thanks @allenwb for helping me identify a years-old mistake! :)
for second edition
medium
Minor
196,734,921
go
cmd/go: provide a way to resolve an import path to a vcs, url, etc.
'go get' contains non-trivial logic to figure out how to obtain a package based on its import path, including consulting a list of well-known hosting providers and checking for html meta tags. There is no way to get this information other than actually doing the 'go get', or maintaining a non-trivial fork of a subset of cmd/go. I'd like a way to get this information from cmd/go. Ideally it would be a library, a la package go/build, but a command line invocation would work as well, perhaps something accepting a format flag: ```bash $ go get -resolve '{{.ImportPath}} {{.URL}} {{.IsCustom}} {{.VCS}} {{.Root}} and probably some vcs commands...' custom.xyz/pkg ``` or perhaps emitting JSON, with one entry per import path. I asked for this originally at https://github.com/golang/go/issues/18119#issuecomment-267094257. I noted there that @rogpeppe also wants this; see https://go-review.googlesource.com/8725. Another partial copy of this bit of cmd/go can be found at https://github.com/sdboyer/gps (e.g. https://github.com/sdboyer/gps/blob/master/discovery.go).
NeedsInvestigation,FeatureRequest,GoCommand
low
Major
196,812,082
youtube-dl
[Request] Output format TS (MPEG Transport Stream)
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.20** - [x] I've at least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] I've [searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### The purpose of my *issue* is: - [x] Feature request (request for a new functionality) --- I've tried... ``` youtube-dl.exe -vf 18 --external-downloader ffmpeg --external-downloader-args "-bsf:v h264_mp 4toannexb" -o "%(title)s.ts" https://www.youtube.com/watch?v=QgQ-D6bvc1A [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-vf', '18', '--external-downloader', 'ffmpeg', '--external-downl oader-args', '-bsf:v h264_mp4toannexb', '-o', '%(title)s.ts', 'https://www.youtube.com/watch? v=QgQ-D6bvc1A'] [debug] Encodings: locale cp1252, fs mbcs, out cp437, pref cp1252 [debug] youtube-dl version 2016.12.20 [debug] Python version 3.4.4 - Windows-XP-5.1.2600-SP3 [debug] exe versions: ffmpeg N-82759-g1f5630a-Sherpya [debug] Proxy map: {} [youtube] QgQ-D6bvc1A: Downloading webpage [youtube] QgQ-D6bvc1A: Downloading video info webpage [youtube] QgQ-D6bvc1A: Extracting video information [youtube] QgQ-D6bvc1A: Downloading MPD manifest [debug] Invoking downloader on 'https://r4---sn-mn4vg5aa-5hns.googlevideo.com/videoplayback?i p=2001%3A980%3A2408%3A1%3Ad66%3Aade4%3A3e76%3Adcf5&pl=35&mt=1482271374&mv=m&ei=36pZWJOJOIXN1g LdpbGYBg&ms=au&mm=31&mn=sn-mn4vg5aa-5hns&id=o-ALn9mukS3ADDrcWw4-QzPhHBOBg4H6I7S96YrC-PNfMG&up n=YvoAHAvLx0s&expire=1482293056&itag=18&ratebypass=yes&requiressl=yes&source=youtube&dur=89.6 98&lmt=1482229941216632&gir=yes&key=yt6&signature=CCAD2A6AE4DCA692C41A879FBEF270C33481A0AD.A9 D7304204915767196256A4948F12C8DD8F613D&mime=video%2Fmp4&sparams=clen%2Cdur%2Cei%2Cgir%2Cid%2C initcwndbps%2Cip%2Cipbits%2Citag%2Clmt%2Cmime%2Cmm%2Cmn%2Cms%2Cmv%2Cpl%2Cratebypass%2Crequire ssl%2Csource%2Cupn%2Cexpire&clen=5668603&ipbits=0&beids=%5B9452307%5D&initcwndbps=2331250' [download] Destination: Amsterdam - Gewelddadige beroving toerist.ts [debug] ffmpeg command line: ffmpeg -y -bsf:v h264_mp4toannexb -headers 'Accept-Language: en- us,en;q=0.5 Accept-Encoding: gzip, deflate Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20150101 Firefox/47.0 (Chrome) Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 ' -i 'https://r4---sn-mn4vg5aa-5hns.googlevideo.com/......' -c copy -f mp4 'file:Amsterdam - Gewelddadige beroving toerist.ts.part' ffmpeg version N-82759-g1f5630a-Sherpya Copyright (c) 2000-2016 the FFmpeg developers built with gcc 6.2.1 (GCC) 20161118 Option bsf:v (A comma-separated list of bitstream filters) cannot be applied to input file ht tps://r4---sn-mn4vg5aa-5hns.googlevideo.com/...... -- you are trying to apply an input option to an output file or vice versa. Move this option before the file it belongs to. Error parsing options for input file https://r4---sn-mn4vg5aa-5hns.googlevideo.com/....... Error opening input files: Invalid argument ERROR: ffmpeg exited with code 1 File "__main__.py", line 19, in <module> File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\__init__.py", line 444, in main File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\__init__.py", line 434, in _real_main File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 1791, in download File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 705, in extract_info File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 751, in process_ie_result File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 1435, in process_video_result File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 1699, in process_info File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 1641, in dl File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\downloader\common.py", line 353, in download File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\downloader\external.py", line 43, in real_download File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\downloader\common.py", line 162, in report_error File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 568, in report_error File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmph8curlv3\build\youtube_d l\YoutubeDL.py", line 530, in trouble ``` but this errors out because `-bsf:v h264_mp4toannexb` is put in front of the input file, when in fact it should be inserted after `' -i 'https://r4---sn-mn4vg5aa-5hns.googlevideo.com/......' -c copy`. To be clear: to convert MP4 to TS the bitstream filter `-bsf:v h264_mp4toannexb` is needed! I've also tried without `--external-downloader-args "-bsf:v h264_mp4toannexb"`. Youtube-dl then puts out a TS-file, but only because I forced it to with `-o "%(title)s.ts"`. In the end the video is still a MP4-file, because of the `-f mp4` in the ffmpeg command line, which seems to be hardcoded in the source. `--recode-video ts` certainly wouldn't be an option, because this doesn't involve a recode/conversion, but just a special remux. `--merge-output-format ts` could be an option, but there's no merge required for `-f 18` in this case, because it's already a MP4-file. So I was actually looking for something like `--output-format ts` which then inserts `-f mpegts` instead of `-f mp4`. FFMpeg then automatically inserts `-bsf:v h264_mp4toannexb`. Better yet: FFMpeg is so smart that as long as you make sure the output file ends with the ts-extension, then `' -i 'https://r4---sn-mn4vg5aa-5hns.googlevideo.com/......' -c copy 'file:Amsterdam - Gewelddadige beroving toerist.ts'` is enough. In the background FFMpeg automatically inserts `-bsf:v h264_mp4toannexb -f mpegts`. (I'm not sure whether `--no-part` should be enabled for this or not) Why the request for TS as output format in the first place? Because officially the only way to concatenate H.264 video's is when they're raw (*.h264), or in a MPEG Transport Stream container.
request
low
Critical
196,834,071
TypeScript
add codefix for extracting an interface from an object literal
given an anonimous object literal, allow extracting interface by looking at the effective types of the values of the properties
Suggestion,Awaiting More Feedback,Domain: Refactorings
low
Major
196,868,547
TypeScript
Flow analysis doesn't work with es6 collections 'has' method
**TypeScript Version:** 2.1.1 **Code** ```ts const x = new Map<string, string>(); x.set("key", "value"); if (x.has("key")) { const y : string = x.get("key"); // error: y is string | undefined, not string } ``` **Expected behavior:** y is narrowed down to string **Actual behavior:** y is still string | undefined even after checking if the map has that key
Suggestion,Awaiting More Feedback
high
Critical
196,872,950
rust
question mark and `try!` obscure type inference errors
```rust use std::num::ParseIntError; fn run() -> Result<(), ParseIntError> { let v = vec![1,2,3]; let x = "1".parse()?; println!("{:?}", v[x]);     Ok(()) } fn main() { let _ = run(); } ``` has the confusing error message ``` error[E0277]: the trait bound `(): std::str::FromStr` is not satisfied --> <anon>:6:17 | 6 | let x = "1".parse()?; | ^^^^^ the trait `std::str::FromStr` is not implemented for `()` error[E0277]: the trait bound `std::vec::Vec<i32>: std::ops::Index<()>` is not satisfied --> <anon>:8:22 | 8 | println!("{:?}", v[x]); | ^^^^ the trait `std::ops::Index<()>` is not implemented for `std::vec::Vec<i32>` | = note: the type `std::vec::Vec<i32>` cannot be indexed by `()` ``` replacing the `?` with `.unwrap()` gives a nicer explanation of the problem (`try!` gives the same error message as `?`) ``` error[E0282]: unable to infer enough type information about `_` --> <anon>:6:9 | 6 | let x = "1".parse().unwrap(); | ^ cannot infer type for `_` | = note: type annotations or generic parameter binding required ```
C-enhancement,A-diagnostics,T-compiler,A-inference,D-confusing
low
Critical
196,877,184
TypeScript
Abstract class type argument inference
It would be good if TypeScript can infer the type of an extended class of an generic abstract class: ```ts abstract class A<T> { abstract a: T; get(): T { return '' as any; } } class B extends A { a: 'helloworld'; } const b = new B(): b.get(); // string ``` In a similar fashion, it does inference elsewhere.
Suggestion,Committed,Domain: JavaScript
low
Major
197,001,336
rust
Specialization does not find the default impl
```rust #![feature(specialization)] struct JsonSerializer; struct CborSerializer; fn main() { 0i32.serialize(&mut CborSerializer); } trait Serialize<S: Serializer> { fn serialize(&self, _: &mut S); } trait Serializer {} impl Serializer for JsonSerializer {} impl Serializer for CborSerializer {} impl<S: Serializer> Serialize<S> for i32 { default fn serialize(&self, _: &mut S) { println!("default"); } } impl Serialize<JsonSerializer> for i32 { fn serialize(&self, _: &mut JsonSerializer) { println!("specialized"); } } ``` ## Expected: Compiles and prints out "default". This is the behavior if you comment out the `impl Serialize<JsonSerializer> for i32`. ## Actual: ``` rustc 1.15.0-nightly (71c06a56a 2016-12-18) error[E0308]: mismatched types --> <anon>:7:20 | 7 | 0i32.serialize(&mut CborSerializer); | ^^^^^^^^^^^^^^^^^^^ expected struct `JsonSerializer`, found struct `CborSerializer` | = note: expected type `&mut JsonSerializer` = note: found type `&mut CborSerializer` ```
A-specialization,C-bug,F-specialization
low
Critical
197,058,527
rust
test::black_box for big size T?
I'm not sure if this is a bug or not, but I noticed that FB Folly has two versions of `doNotOptimizeAway` https://github.com/facebook/folly/blob/1c098e2758d1bd55c48ffa26dab389dbbe96a666/folly/Benchmark.h#L308 ```C++ asm volatile("" ::"r"(datum)); asm volatile("" ::"m"(datum) : "memory"); ``` First one for size <= long, second one for larger sizes. Where as our `test::black_box` only has the first version. Is the second one needed?
T-libs-api,C-feature-accepted
low
Critical
197,074,386
three.js
Revert FileLoader-based ImageLoader
The initial idea was to gain support for progress events in `ImageLoader` but the side effects have been so far: 1. Security issues. #9826 2. data: urls no longer working. https://github.com/mrdoob/three.js/commit/0576c7c80c472beb67c855031975aa7708175370 3. Some people (A-Frame) relied on image.src being a file path for their tests. 4. CrossOrigin not working. #10168 5. SVG no longer loading. #10363 So, for the time being, I think it'll be better to revert and, instead, try to convince W3C people to provide load progress events for `Image`.
Loaders
medium
Critical
197,146,465
opencv
SVD performance issue
##### System information (version) - OpenCV => 3.1 - Operating System / Platform => Ubuntu 16.10 64 Bit - Compiler => gcc 6.2 ##### Detailed description On some particular dataset, the method `cv::SVD::compute()` can take hours where the equivalent eigen method takes only seconds. The enclosed program + data can reproduce the problem. Note that the performance does not seem to be related to the data volume as I can't reproduce the issue on a (500 000 x 6) matrix initialized with random values. ##### Steps to reproduce Example to run OpenCV and Eigen SVD decompositions on same data. ```.cpp #include <iostream> #include "eigen3/Eigen/Core" #include "eigen3/Eigen/SVD" #include <opencv2/opencv.hpp> #include <opencv2/core/eigen.hpp> cv::Mat load(const std::string & p_filePath) { cv::Mat mat; cv::FileStorage fs; if (!fs.open(p_filePath, cv::FileStorage::READ)) { std::cout << "Can't open matrix file" << std::endl; return cv::Mat(); } fs["matrix"] >> mat; fs.release(); return mat; } int main (void) { cv::Mat src = load("svd_src.xml"); // input (rows: 6 ; cols: 515 808 ; type: CV_64FC1) cv::Mat u; // output // Eigen implementation Eigen::MatrixXd m; cv::cv2eigen(src, m); std::cout << "[start] Eigen SVD decomposition" << std::endl; Eigen::JacobiSVD<Eigen::MatrixXd> svd(m, Eigen::ComputeThinU); std::cout << "[end] Eigen SVD decomposition" << std::endl; cv::eigen2cv(svd.matrixU(), u); // OpenCV implementation cv::Mat w, vt; std::cout << "[start] OpenCV SVD decomposition" << std::endl; cv::SVD::compute(src, w, u, vt); std::cout << "[end] OpenCV SVD decomposition" << std::endl; return 0; } ``` [svd.zip](https://github.com/opencv/opencv/files/668549/svd.zip)
bug,category: core
low
Major
197,151,553
TypeScript
Decorated private propoerty flagged as unused with `noUnusedLocals:true`
noUnusedLocals:true import { Component } from '@angular/core'; @Component({ selector: 'my-component', template: ` {{text}} `, }) export class MyComponent { @Input() private text: string;//'text' is declared but never used }
Suggestion,Awaiting More Feedback
medium
Major
197,196,513
rust
Allow access to location information from proc_macro TokenStreams
I would like to build a template engine that leverages custom derive to attach a template rendering function to a struct at compile time. I was planning on attaching an attribute to the struct to specify the path to the template file, which could then be read and transpiled into Rust. However, it seems it is currently not possible to get at the path to the source file where the `TokenStream` originated. As such, it seems I would have to rely on absolute paths to template files or on the current working directory. Even assuming cargo compiles (including workspaces), this does not seem reliable. The `Item`s that are part of the `TokenStream` contain a `Span`, but I don't think the `CodeMap` they index into is currently available to a proc_macro. Would that be a viable implementation strategy?
T-libs-api,C-feature-request,A-proc-macros
low
Major
197,204,562
youtube-dl
[FEATURE REQUEST] - Item exclusion from playlist download and tweaks
If I want to download all the playlists of a given channel but one, I have to put all their links in the command, it would be way more convenient to just put the playlist section of that channel and then add the link of the one I want to ignore with an exclusion command. I think downloading playlists should be more _"tweakable"_ since various scenarios can present.
request,bug
low
Major
197,212,340
rust
Randomize the ordering of struct fields when compiling in debug mode
Now that it looks like https://github.com/rust-lang/rust/issues/28951 will be addressed via https://github.com/rust-lang/rust/issues/37429 , we may have a further obligation to ensure to do what we can to ensure that this doesn't bite people. One way that we could help out would be to randomize the order of struct fields by default when compiling in debug mode. This would only apply to structs that are not tagged with a `#repr`, and would effectively act as the `#[repr(random)]` proposed by @petrochenkov at https://github.com/rust-lang/rust/pull/37429#issuecomment-260080723 (actually adding explicit `#[repr(random)]` would probably require an RFC, and so is not a prereq for this issue).
T-compiler,C-feature-request,A-reproducibility
low
Critical
197,284,341
TypeScript
Support for type destructuring
**TypeScript Version:** 2.1.4 **Code** ```ts import { MyNamespace } from 'my-package'; // importing Class objects: const { NavLink, NavGroup } = MyNamespace; // VALID // if we want the types as well: type { NavLink, NavGroup } = MyNamespace; // NOT VALID // So we have to go manual: type NavLink = MyNamespace.NavLink; // VALID type NavGroup = MyNamespace.NavLink; // VALID ``` **Expected behavior:** Being able to use destructuring for types same as we use for objects. **Actual behavior:** Can only use destructuring for objects.
Suggestion,In Discussion
high
Critical
197,326,897
go
net/http/cgi: support Python etc non-executable scripts on Windows
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.7.4 ### What operating system and processor architecture are you using (`go env`)? set GOARCH=amd64 set GOBIN= set GOEXE=.exe set GOHOSTARCH=amd64 set GOHOSTOS=windows set GOOS=windows set GOPATH= set GORACE= set GOROOT=D:\Go set GOTOOLDIR=D:\Go\pkg\tool\windows_amd64 set CC=gcc set GOGCCFLAGS=-m64 -mthreads -fmessage-length=0 set CXX=g++ set CGO_ENABLED=1 ### What did you do? If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on play.golang.org is best. [cgidemo.zip](https://github.com/golang/go/files/670407/cgidemo.zip) Change to unziped directory, and execute `go run cgi.go`, then visit http://localhost:8000/cgi-bin/test.py ### What did you expect to see? Hello on my browser ### What did you see instead? The page hangs up
help wanted,OS-Windows,NeedsInvestigation
medium
Critical
197,369,688
opencv
An error occurred while calling the setVocabulary()
**System information (version)** - OpenCV => 3.1.0 - Operating System / Platform => Windows 10 64 Bit - Compiler => python 3.5 **Detailed description** The var that i pass to the function is a numpy.array var and I am sure it is a correct type.An error occurred while calling the setVocabulary() as follow. ``` OpenCV Error: Assertion failed (The data should normally be NULL!) in NumpyAllocator::allocate, file ..\..\..\modules\python\src2\cv2.cpp, line 163 Traceback (most recent call last): File "E:/Documents/Documents/python/Traffic/main.py", line 15, in <module> c = sd.detect(img) File "E:\Documents\Documents\python\Traffic\src\SlideDetect.py", line 93, in detect svm, extractor = self.detector.create_detector() File "E:\Documents\Documents\python\Traffic\src\Detector.py", line 126, in create_detector extract_bow.setVocabulary(vocabulary) cv2.error: ..\..\..\modules\python\src2\cv2.cpp:163: error: (-215) The data should normally be NULL! in function NumpyAllocator::allocate ``` **part of code** ``` @staticmethod def _get_flann_matcher(): flann_params = dict(algorithm=1, trees=5) flann = cv2.FlannBasedMatcher(flann_params, {}) return flann @staticmethod def _get_extract_detect(): sift = cv2.xfeatures2d.SIFT_create() return sift @staticmethod def _extract_sift(image, extractor, detector): im = cv2.imread(image, 0) features = extractor.compute(im, detector.detect(im))[1] return features def create_detector(self): detect = self._get_extract_detect() extract = self._get_extract_detect() matcher = self._get_flann_matcher() car_list, neg_list = self._get_train_data_address() bow_kmeans_trainer = cv2.BOWKMeansTrainer(12) extract_bow = cv2.BOWImgDescriptorExtractor(extract, matcher) for i in range(self.sample): features = self._extract_sift(car_list[i], extract, detect) bow_kmeans_trainer.add(features) vocabulary = bow_kmeans_trainer.cluster() extract_bow.setVocabulary(vocabulary) ```
bug,category: python bindings,category: t-api
low
Critical
197,407,002
youtube-dl
Site support request: www.slavishow.bg
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.22*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.22** ### Before submitting an *issue* make sure you have: - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [ ] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [ ] Bug report (encountered problems with youtube-dl) - [x] Site support request (request for adding support for a new site) - [ ] Feature request (request for a new functionality) - [ ] Question - [ ] Other --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue* --- ### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows: Add `-v` flag to **your command line** you run youtube-dl with, copy the **whole** output and insert it here. It should look similar to one below (replace it with **your** log inserted between triple ```): ``` youtube-dl http://www.slavishow.com/%D0%BD%D0%B0%D0%B7%D0%B0%D0%B4 -%D0%BD%D0%B0%D0%B7%D0%B0%D0%B4-%D0%BC%D0%BE%D0%BC%D0%B5-%D0%BA%D0%B0%D0%BB%D0%B 8%D0%BD%D0%BE-%D0%BC%D0%B8%D1%82%D0%B8%D0%BD%D0%B3-%D0%BA%D0%BE%D0%BD%D1%86%D0%B 5/ -v [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['http://www.slavishow.com/%D0%BD%D0%B0%D0%B7%D0%B0%D 0%B4-%D0%BD%D0%B0%D0%B7%D0%B0%D0%B4-%D0%BC%D0%BE%D0%BC%D0%B5-%D0%BA%D0%B0%D0%BB% D0%B8%D0%BD%D0%BE-%D0%BC%D0%B8%D1%82%D0%B8%D0%BD%D0%B3-%D0%BA%D0%BE%D0%BD%D1%86% D0%B5/', '-v'] [debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251 [debug] youtube-dl version 2016.11.22 [debug] Python version 3.4.4 - Windows-7-6.1.7601-SP1 [debug] exe versions: ffmpeg 3.2, ffprobe 3.2 [debug] Proxy map: {} [generic] назад-назад-моме-калино-митинг-конце: Requesting header WARNING: Falling back on generic information extractor. [generic] назад-назад-моме-калино-митинг-конце: Downloading webpage [generic] назад-назад-моме-калино-митинг-конце: Extracting information ERROR: Unsupported URL: http://www.slavishow.com/%D0%BD%D0%B0%D0%B7%D0%B0%D0%B4- %D0%BD%D0%B0%D0%B7%D0%B0%D0%B4-%D0%BC%D0%BE%D0%BC%D0%B5-%D0%BA%D0%B0%D0%BB%D0%B8 %D0%BD%D0%BE-%D0%BC%D0%B8%D1%82%D0%B8%D0%BD%D0%B3-%D0%BA%D0%BE%D0%BD%D1%86%D0%B5 / Traceback (most recent call last): File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmp0yt5fyka\bu ild\youtube_dl\YoutubeDL.py", line 694, in extract_info File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmp0yt5fyka\bu ild\youtube_dl\extractor\common.py", line 357, in extract File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\rg3\tmp0yt5fyka\bu ild\youtube_dl\extractor\generic.py", line 2443, in _real_extract youtube_dl.utils.UnsupportedError: Unsupported URL: http://www.slavishow.com/%D0 %BD%D0%B0%D0%B7%D0%B0%D0%B4-%D0%BD%D0%B0%D0%B7%D0%B0%D0%B4-%D0%BC%D0%BE%D0%BC%D0 %B5-%D0%BA%D0%B0%D0%BB%D0%B8%D0%BD%D0%BE-%D0%BC%D0%B8%D1%82%D0%B8%D0%BD%D0%B3-%D 0%BA%D0%BE%D0%BD%D1%86%D0%B5/ ``` --- ### If the purpose of this *issue* is a *site support request* please provide all kinds of example URLs support for which should be included (replace following example URLs by **yours**): - Single video: http://www.slavishow.com/%D0%BD%D0%B0%D0%B7%D0%B0%D0%B4-%D0%BD%D0%B0%D0%B7%D0%B0%D0%B4-%D0%BC%D0%BE%D0%BC%D0%B5-%D0%BA%D0%B0%D0%BB%D0%B8%D0%BD%D0%BE-%D0%BC%D0%B8%D1%82%D0%B8%D0%BD%D0%B3-%D0%BA%D0%BE%D0%BD%D1%86%D0%B5/ There is no video id system in the site. --- ### Description of your *issue*, suggested solution and other information Explanation of your *issue* in arbitrary form goes here. Please make sure the [description is worded well enough to be understood](https://github.com/rg3/youtube-dl#is-the-description-of-the-issue-itself-sufficient). Provide as much context and examples as possible. If work on your *issue* requires account credentials please provide them or explain how one can obtain them.
site-support-request
low
Critical
197,445,985
TypeScript
Support for ECMAScript 'do'-expressions
Sorry if this has been discussed but it is hard to search for such a generic combination of words. Is there any plan to implement support for https://github.com/tc39/proposal-do-expressions ~~http://wiki.ecmascript.org/doku.php?id=strawman:do_expressions~~ It would be awesome to be able to avoid the extra code required when wrapping an if statement in a function to get a dynamic return value. Thanks!
Suggestion,ES Next,Waiting for TC39
high
Critical
197,467,829
youtube-dl
Make sleep interval log display more readable
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.22*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.22** ### Before submitting an *issue* make sure you have: - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones ### What is the purpose of your *issue*? - [ ] Bug report (encountered problems with youtube-dl) - [ ] Site support request (request for adding support for a new site) - [ ] Feature request (request for a new functionality) - [ ] Question - [x] Other --- ### Make sleep interval log more readable As of now, the log is like - ``` [download] Sleeping 14.393324791937204 seconds... ``` It would become more readable if its something like ``` [download] Sleeping 14.39 seconds... ``` I have fixed it [here](https://github.com/singhpratyush/youtube-dl/commit/d338d71123761f2ad266667c59b1057bd2d12d8e). If valid, shall I create a PR?
request
low
Critical
197,514,195
TypeScript
Compiler API: no Symbol for Node
**TypeScript Version:** 2.1.1 **Code** I'm trying to implement function detecting is identifier internal (can be renamed) or external but sometimes TS Compiler API returns me no symbols for identifiers: ```ts private isIdentExternal(node: ts.Node): boolean { // node here is only ts.Node with kind=65 (Identifier), and already checked not to be reserved word let symbol = this.program.getTypeChecker().getSymbolAtLocation(node); if (!symbol) { // why? } for (const decl of symbol.declarations) if (decl.getSourceFile().fileName.endsWith(".d.ts")) return true; return false; } ``` There are two known cases when I get this problem. Case 1: no symbol for internal abstract function: ```ts abstract class Cls { private abstract func();// no symbol is here // Tough I can get symbols from cls.func() code in other place, the problem is for declaration only } ``` Case 2: no symbol for external properties: ```ts let el: HTMLElement = document.createElement("div"); el.className = "x"; // no symbol for "className", tough I have symbol for "createElement" (problem is only for properties) ``` **Expected behavior:** Every identifier (function/variable/method/property/class definition) has symbol. **Actual behavior:** Sometimes symbol is missing (TypeChecker does not return it).
Bug
low
Major
197,525,153
youtube-dl
Comcast_SSO failure with aetv
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x]) - Use *Preview* tab to see how your issue will actually look like --- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.22*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [X] I've **verified** and **I assure** that I'm running youtube-dl **2016.12.22** ### Before submitting an *issue* make sure you have: - [X] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [X] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones (bugs 11257 & 10803 seem related but not identical) ### What is the purpose of your *issue*? - [X] Bug report (encountered problems with youtube-dl) - [ ] Site support request (request for adding support for a new site) - [ ] Feature request (request for a new functionality) - [ ] Question - [ ] Other --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your *issue* --- ### If the purpose of this *issue* is a *bug report*, *site support request* or you are not completely sure provide the full verbose output as follows: Add `-v` flag to **your command line** you run youtube-dl with, copy the **whole** output and insert it here. It should look similar to one below (replace it with **your** log inserted between triple ```): ``` $ youtube-dl --ap-mso Comcast_SSO --ap-username <omitted> --ap-password <omitted> --verbose http://www.aetv.com/shows/going-si-ral/season-1/episode-6 [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'--ap-mso', u'Comcast_SSO', u'--ap-username', u'PRIVATE', u'--ap-password', u'PRIVATE', u'--verbose', u'http://www.aetv.com/shows/going-si-ral/season-1/episode-6'] [debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8 [debug] youtube-dl version 2016.12.22 [debug] Python version 2.7.6 - Linux-3.13.0-106-generic-i686-with-Ubuntu-14.04-trusty [debug] exe versions: none [debug] Proxy map: {} [aenetworks] going-si-ral/season-1/episode-6: Downloading webpage [aenetworks] 838677059721: Downloading JSON metadata [aenetworks] 838677059721: Downloading Provider Redirect Page [aenetworks] 838677059721: Logging in [aenetworks] 838677059721: Retrieving Session ERROR: Unable to download webpage: HTTP Error 401: Unauthorized (caused by HTTPError()); please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; type youtube-dl -U to update. Be sure to call youtube-dl with the --verbose flag and include its complete output. File "/usr/local/bin/youtube-dl/youtube_dl/extractor/common.py", line 405, in _request_webpage return self._downloader.urlopen(url_or_request) File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 2001, in urlopen return self._opener.open(req, timeout=self._socket_timeout) File "/usr/lib/python2.7/urllib2.py", line 410, in open response = meth(req, response) File "/usr/lib/python2.7/urllib2.py", line 523, in http_response 'http', request, response, code, msg, hdrs) File "/usr/lib/python2.7/urllib2.py", line 448, in error return self._call_chain(*args) File "/usr/lib/python2.7/urllib2.py", line 382, in _call_chain result = func(*args) File "/usr/lib/python2.7/urllib2.py", line 531, in http_error_default raise HTTPError(req.get_full_url(), code, msg, hdrs, fp) ``` --- --- ### Description of your *issue*, suggested solution and other information Unable to download aetv.com videos using Comcast SSO. I tried several videos (including the one with --verbose info attached)
tv-provider-account-needed
low
Critical
197,534,595
TypeScript
Are there jsdoc supported in salsa to polyfill ?
Suppose I was implement ```js Array.prototype.last = function() { return this[this.length - 1]; }; ``` And wish it present in the intellisense. How should I do? If it not exist, should we have this feature?
Suggestion,Awaiting More Feedback,Domain: JavaScript
low
Major
197,594,155
rust
memset not being optimized out when initializing array contents
Apologies as there's most likely already a tracking issue for this, but I wasn't able to find it. When initializing an array's contents, it seems that the initial memset is not optimized out: https://godbolt.org/g/pbgnlq ``` let mut arr = [0; 1000]; for i in 0..arr.len() { arr[i] = i; } println!("{}", arr[5]) ``` Clang has the same issue actually, except there memset would have to be called explicitly.
A-LLVM,I-slow,C-enhancement,T-compiler,A-mir-opt,C-optimization
low
Major
197,618,451
go
x/crypto/acme/autocert: Persistent cache results in stuck configuration if TOS is not always accepted
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.6 ### What operating system and processor architecture are you using (`go env`)? amd64 ### What did you do? Create a Manager that will not accept the TOS, but that does have a persistent Cache. Then re-use the cache with a Manager that does accept the TOS. ### What did you expect to see? First Manager fails to register, second Manager succeeds. ### What did you see instead? Seconds Manager also fails because acme.UpdateReg is never called. See #18379 for the acme side of this.
NeedsInvestigation
low
Major
197,623,007
rust
Error about "does not live long enough" could be more helpful
When we receive a "`(var)` does not live long enough" error message, the compiler doesn't always tell you which line is actually causing the problem. For example (extracted from a larger program): ``` use std::collections::HashMap; use std::env; use std::fs::File; use std::io; use std::io::{BufRead, BufReader, BufWriter, Read, Seek, SeekFrom, Write}; fn main() { let args: Vec<String> = env::args().collect(); match args.len() { 3 => { let in_name = &args[1]; let out_name = &args[2]; assemble(in_name, out_name).unwrap(); } _ => { println!("Usage: hack-asm input_file output_file"); } } } fn assemble(in_name: &str, out_name: &str) -> io::Result<()> { let in_file = try!(File::open(in_name)); let out_file = try!(File::create(out_name)); let mut reader = BufReader::new(in_file); let mut writer = BufWriter::new(out_file); // First, build up all labels let mut label_map = HashMap::new(); let mut instruction_address = 0; for line in reader.by_ref().lines() { let line = line.unwrap(); let mut line = line.trim(); // Strip any comments if let Some(idx_comment) = line.find("//") { line = &line[0..idx_comment].trim(); } if line.is_empty() { // Not an instruction, skip. } else if line.starts_with('(') && line.ends_with(')') { let label = &line[1..line.len() - 1]; if label.is_empty() { panic!("Empty label"); } else if let Some(label) = label_map.insert(label, instruction_address) { panic!("Label {:?} was already defined.", label); } } else { // Assume it's an instruction. If it's not, validation will fail further below anyways. instruction_address += 1; } } Ok(()) } ``` Compiling this will give the following error: ``` error: `line` does not live long enough --> main.rs:57:5 | 36 | let mut line = line.trim(); | ---- borrow occurs here ... 57 | } | ^ `line` dropped here while still borrowed ... 60 | } | - borrowed value needs to live until here error: aborting due to previous error ``` Neither of the shown lines are that close to where the problem actually is, on line 50: `} else if let Some(label) = label_map.insert(label, instruction_address) {` Changing `label` to `label.to_string()` fixes the error and allows the borrow check to pass. It would definitely be an improvement (particularly for beginners to the language) if the compiler could tell you which line is holding onto the value, preventing the borrow check from passing.
C-enhancement,A-diagnostics,T-compiler
low
Critical
197,648,484
angular
Calling enable()/disable() on nested reactive forms yields unexpected results
<!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING --> **I'm submitting a ...** (check one with "x") ``` [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ``` Consider a reactive form with nested subforms. Some controls in the form, upon changing value, should cause a corresponding subform to become revealed and enabled/disabled. This can be achieved by subscribing to `valueChanges` on a source control, and then calling `enable()` or `disable()` on a target subform. However, when there is more than one level of nested subforms, the overall status of the form is unexpected. For example, take the following plunkr: [https://plnkr.co/edit/ozj0hidhA2rlgfepmlI5?p=preview](https://plnkr.co/edit/ozj0hidhA2rlgfepmlI5?p=preview) This example demonstrates a form with the following structure: - root form - existing customer form - username/password login form - card number/PIN form - new customer form When the user toggles the radio buttons, the corresponding subforms become enabled/disabled as you would expect. For instance, when the user confirms they are an existing customer, the "new customer form" is disabled. Then, if the user chooses to log in with a username/password, the "card number/PIN form" is disabled. **Current behavior** <!-- Describe how the bug manifests. --> The problem arises after re-enabling a valid, nested form. In the plunkr, perform the following steps: 1. Select "Yes" to "Are you an existing customer?" 2. Select "Credentials" for login type 3. Fill in username/password to satisfy the `required` validators. The form is now `VALID` 4. Now return to the first radio group and select "No" to "Are you an existing customer?". This enables the "new customer form" and disables the "existing customer" form. 5. Now return again to the first radio group and select "Yes" to "Are you an existing customer?". The form is now unexpectedly marked as `INVALID` because, for some reason, the "card number/PIN form" is immediately re-enabled (and therefore invalid, because it has required fields) after being properly disabled. **Expected behavior** <!-- Describe what the behavior would be without the bug. --> In step 5 above, the form should be `VALID` and the "card number/PIN form" should be disabled. **Minimal reproduction of the problem with instructions** <!-- If the current behavior is a bug or you can illustrate your feature request better with an example, please provide the *STEPS TO REPRODUCE* and if possible a *MINIMAL DEMO* of the problem via https://plnkr.co or similar (you can use this template as a starting point: http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5). --> See above for repro steps **What is the motivation / use case for changing the behavior?** <!-- Describe the motivation or the concrete use case --> Nested forms with conditional validation are a very common use case, so implementing them should be easy and predictable. If there is a better way to achieve this compared to the plunkr, please share. **Please tell us about your environment:** plunkr * **Angular version:** 2.4.1 <!-- Check whether this is still an issue in the most recent Angular version --> * **Browser:** Chrome 55 <!-- All browsers where this could be reproduced --> * **Language:** [TypeScript 2.0.2] * **Node (for AoT issues):** `node --version` = n/a
type: bug/fix,freq1: low,area: forms,state: confirmed,forms: disabling controls,P3
low
Critical