text1
stringlengths
2
269k
text2
stringlengths
2
242k
label
int64
0
1
I tried to recreate this example to add off diagonal lines to a pairplot: https://stackoverflow.com/a/48122198/4464887 The code is: import seaborn as sns import numpy as np import matplotlib.pyplot as plt def plot_unity(xdata, ydata, **kwargs): mn = min(xdata.min(), ydata.min()) mx = max(xdata.max(), ydata.max()) points = np.linspace(mn, mx, 100) plt.gca().plot(points, points, color='k', marker=None, linestyle='--', linewidth=1.0) ds = sns.load_dataset('iris') grid = sns.pairplot(ds) grid.map_offdiag(plot_unity) plt.savefig('test.png') But the image produced doesn't show the off-diagonal lines present in the linked answer: ![image](https://user- images.githubusercontent.com/6620652/97183604-e2f1de80-1795-11eb-96fe-5c7cc47c8296.png) Package versions are the latest releases: Matplotlib 3.3.2 seaborn 0.11.0 Python 3.6.5 I am running on Windows and get the same output from the REPL, iPython and Jupyter Lab. Thanks for a great library!
Hi, I discovered that the map_* methods of PairGrid seem to be broken in version 0.11.0 for user defined functions. See reproducible example below with a corrfunc defined to plot the pearson correlation value on the lower plots. The function doesn't seem to get evaluated in version 0.11.0. When I pip install seaborn==0.10.1, I get the desired result. Plots from both cases also attached. from scipy import stats import pandas as pd import seaborn as sns import matplotlib.pyplot as plt sns.set(style="white") mean = np.zeros(3) cov = np.random.uniform(.2, .4, (3, 3)) cov += cov.T cov[np.diag_indices(3)] = 1 data = np.random.multivariate_normal(mean, cov, 100) df = pd.DataFrame(data, columns=["X", "Y", "Z"]) def corrfunc(x, y,**kws): r, _ = stats.pearsonr(x, y) ax = plt.gca() ax.annotate("r = {:.2f}".format(r), xy=(.1, .9), xycoords=ax.transAxes) g = sns.PairGrid(df, palette=["red"]) g.map_upper(plt.scatter, s=10) g.map_diag(sns.distplot, kde=False) g.map_lower(sns.kdeplot, cmap="Blues_d") g.map_lower(corrfunc) plt.show() ![seaborn-0-11-0](https://user- images.githubusercontent.com/3239171/94969718-380d3e00-04d1-11eb-821b-9aad80ec696e.png) ![seaborn-0-10-1](https://user- images.githubusercontent.com/3239171/94969722-3a6f9800-04d1-11eb-8ef1-861d9beb1f26.png)
1
## Feature request 👋 I'm a developer who's been working on adding source map support to Node.js stack traces. I've noticed that webpack's source maps use special pseudo paths, which look something like this: **webpack:///./index.js** When these source maps are loaded in Node.js, it's difficult to know what path `./index.js` should be resolved relative to. The specification indictes: > the sources are resolved relative to the SourceMap (like resolving script > src in a html document). Which to me would suggest `dist/index.js`, vs., the sources's actual location `dist/../index.js`. **What is the expected behavior?** It would be nice to be able to read a variable like `sourceRoot`, to determine the root path of the JavaScript file prior to transpilation. **What is motivation or use case for adding/changing the behavior?** Folks use webpack to create bundles of Node.js applications that are run outside of the browser, it would be nice for these people to have accurate stack traces. **How should this be implemented in your opinion?** When specifying `--target node`, it would be useful if source paths either did not use the `webpack://` pseudo path, or if the `sourceRoot` variable was populated ( _populating`sourceRoot` would potentially break other implementations reading the sourceMap_). **Are you willing to work on this yourself?** yes Refs: nodejs/node#35325
## Feature request **What is the expected behavior?** Expected compiled code Use Directly native es6 module **What is motivation or use case for adding/changing the behavior?** Because the browser environment supports **How should this be implemented in your opinion?** add a option **Are you willing to work on this yourself?** yes
0
#### Challenge Name Clone an Element Using jQuery https://www.freecodecamp.com/challenges/clone-an-element-using-jquery #### Issue Description #### Browser Information * Browser Name, Version: 360 Safe Browser * Operating System: Windows 7 * Mobile, Desktop, or Tablet: #### Your Code <script> $(document).ready(function() { $("#target1").css("color", "red"); $("#target1").prop("disabled", true); $("#target4").remove(); $("#target2").appendTo("#right-well"); $("#target5").clone().appendTo("#left-well"); }); </script> <!-- Only change code above this line. --> <div class="container-fluid"> <h3 class="text-primary text-center">jQuery Playground</h3> <div class="row"> <div class="col-xs-6"> <h4>#left-well</h4> <div class="well" id="left-well"> <button class="btn btn-default target" id="target1">#target1</button> <button class="btn btn-default target" id="target2">#target2</button> <button class="btn btn-default target" id="target3">#target3</button> </div> </div> <div class="col-xs-6"> <h4>#right-well</h4> <div class="well" id="right-well"> <button class="btn btn-default target" id="target4">#target4</button> <button class="btn btn-default target" id="target5">#target5</button> <button class="btn btn-default target" id="target6">#target6</button> </div> </div> </div> </div> #### Screenshot ![image](https://cloud.githubusercontent.com/assets/12369807/18089169/241193ee-6ef1-11e6-859b-80acee52ef18.png)
Challenge Waypoint: Clone an Element Using jQuery has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. ## Issue I believe I've found bug in the phone simulation in **Waypoint: Clone an Element Using jQuery** : I entered the code to clone `target5` and append it to `left-well`, and now I see three **target5** buttons in the phone simulator. FCC says my code is correct and advances me to the next challenge. The following challenges also show three target5 buttons: * Waypoint: Target the Parent of an Element Using jQuery * Waypoint: Target the Children of an Element Using jQuery @qualitymanifest confirms this issue on his **Linux** box. ![image](https://cloud.githubusercontent.com/assets/5673126/11647398/76751658-9d35-11e5-8fcf-112ab89c6920.png) ## My code: <script> $(document).ready(function() { $("#target1").css("color", "red"); $("#target1").prop("disabled", true); $("#target4").remove(); $("#target2").appendTo("#right-well"); $("#target5").clone().appendTo("#left-well"); }); </script> <!-- Only change code above this line. --> <div class="container-fluid"> <h3 class="text-primary text-center">jQuery Playground</h3> <div class="row"> <div class="col-xs-6"> <h4>#left-well</h4> <div class="well" id="left-well"> <button class="btn btn-default target" id="target1">#target1</button> <button class="btn btn-default target" id="target2">#target2</button> <button class="btn btn-default target" id="target3">#target3</button> </div> </div> <div class="col-xs-6"> <h4>#right-well</h4> <div class="well" id="right-well"> <button class="btn btn-default target" id="target4">#target4</button> <button class="btn btn-default target" id="target5">#target5</button> <button class="btn btn-default target" id="target6">#target6</button> </div> </div> </div> </div>
1
I have two similar pieces of code that I would expect to behave in a similar fashion. The first piece of code compiles and functions properly: trait HasId { fn id() -> i32; } trait Foo {} impl HasId for Foo { fn id() -> i32 { 1 } } trait Bar {} impl HasId for Bar { fn id() -> i32 { 2 } } fn print_id<T: HasId + ?Sized>() { println!("{}", <T as HasId>::id()); } fn main() { print_id::<Foo>(); print_id::<Bar>(); } The second piece of code replaces the static methods with an associated constant: #![feature(associated_consts)] trait HasId { const ID: i32; } trait Foo {} impl HasId for Foo { const ID: i32 = 1; } trait Bar {} impl HasId for Bar { const ID: i32 = 2; } fn print_id<T: HasId + ?Sized>() { println!("{}", <T as HasId>::ID); } fn main() { print_id::<Foo>(); print_id::<Bar>(); } This code fails to compile with the following ICE: <anon>:4:5: 4:19 error: internal compiler error: Encountered error `Unimplemented` when trying to select an implementation for constant trait item reference. <anon>:4 const ID: i32; ^~~~~~~~~~~~~~ note: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports note: run with `RUST_BACKTRACE=1` for a backtrace thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:170 What's interesting is that the following code does compile: #![feature(associated_consts)] trait HasId { const ID: i32; } trait Foo {} impl HasId for Foo { const ID: i32 = 1; } trait Bar {} impl HasId for Bar { const ID: i32 = 2; } fn main() { println!("{}", <Foo as HasId>::ID); println!("{}", <Bar as HasId>::ID); } So it would appear as if this behavior is related to the use of a generic in the UFCS resolution for the associated constant.
The compiler fails to compile this: #![feature(associated_consts)] pub trait Foo { const MIN: i32; fn get_min() -> i32 { Self::MIN } } fn main() {} The error message: main.rs:4:5: 4:20 error: internal compiler error: Encountered error `Unimplemented` when trying to select an implementation for constant trait item reference. main.rs:4 const MIN: i32; ^~~~~~~~~~~~~~~ thread 'rustc' panicked at 'Box<Any>', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:170 ## Meta `rustc --version --verbose`: rustc 1.1.0-nightly (`c4b23ae` 2015-04-29) (built 2015-04-28) binary: rustc commit-hash: `c4b23ae` commit-date: 2015-04-29 build-date: 2015-04-28 host: x86_64-apple-darwin release: 1.1.0-nightly Stack backtrace: 1: 0x10ae5424f - sys::backtrace::write::h0714aaf7fe41e02dzVr 2: 0x10ae5c8c0 - panicking::on_panic::hb86b9b356f51f92dEVv 3: 0x10ae18c35 - rt::unwind::begin_unwind_inner::h58f79e41dbedf2efnDv 4: 0x10a60998e - rt::unwind::begin_unwind::h17476740655312162035 5: 0x10a60991a - diagnostic::SpanHandler::span_bug::h6ece18e7aebef0b3cFB 6: 0x108027cfa - middle::const_eval::resolve_trait_associated_const::hfcf715732ac1e584QMi 7: 0x107fdba61 - middle::const_eval::lookup_const_by_id::hc5a8309a206ad882OOg 8: 0x107fd58b2 - middle::check_const::check_expr::h4c113c7ea3d8c1ffB2d 9: 0x107fcd77c - middle::check_const::CheckCrateVisitor<'a, 'tcx>.Visitor<'v>::visit_expr::hdb217d3565a2586cGTd 10: 0x107fd3e7e - middle::check_const::CheckCrateVisitor<'a, 'tcx>.Visitor<'v>::visit_fn::h37b9b5487c182e36DRd 11: 0x107fd454e - visit::walk_trait_item::h8343690369834256746 12: 0x107fd349f - visit::walk_item::h4252660852014709521 13: 0x107fd2e1c - middle::check_const::CheckCrateVisitor<'a, 'tcx>.Visitor<'v>::visit_item::h3645f3202d46494bKMd 14: 0x107fdbeea - middle::check_const::check_crate::ha1c34da7b8765db0Hle 15: 0x107584171 - driver::phase_3_run_analysis_passes::h2554ff95bce00587tGa 16: 0x10756618c - driver::compile_input::h7c6cf9b085c57594Qba 17: 0x107625ac3 - run_compiler::h55b523753cbd518765b 18: 0x10762322a - boxed::F.FnBox<A>::call_box::h11476165885616507686 19: 0x107622767 - rt::unwind::try::try_fn::h13518150216340287792 20: 0x10aedec58 - rust_try_inner 21: 0x10aedec45 - rust_try 22: 0x107622a4e - boxed::F.FnBox<A>::call_box::h735039165869315632 23: 0x10ae5b2bd - sys::thread::Thread::new::thread_start::hf4c42a114072ab47mYu 24: 0x7fff8cfab267 - _pthread_body 25: 0x7fff8cfab1e4 - _pthread_start
1
when finding a Yaml date, the parser currently returns it as a unix timestamp. A flag to return it as a DateTime would be great. If we handle them as DateTime, the dumper should accept DateTime objects and dump them as Yaml dates though
Hi, I'm not sure if this issue is a duplicate, because i couldn't find any other that specifically points to this. I am rendering two controllers into the view like this: {{ render(controller('WebBundle:Task:navTask')) }} {{ render(controller('WebBundle:Notification:navNotification')) }} Everything works out fine, but for each render i get 1 or 2 errors in the console: GET http://example.dev/_wdt/98002d 404 (Not Found) Here's content of controller action: public function navTaskAction() { return $this->render('WebBundle:Task:navTask.html.twig', [ 'navTasks' => 2 ]); } And view: <div class="tasks"> {{ navTasks }} </div> When I remove those, errors are gone. It didn't bother me at first, but when i wanted to add 3rd render, it started to throw 404 alert for profiler, because it exceeds 5 calls. Probably the problem exists because token is not passed to the subrequests, which then throws 404 error. Just a guess. Is there a way to fix this, or am I doing something wrong?
0
Check this : http://twitter.github.com/bootstrap/javascript.html#tooltips The data-placement doesn't work ... tooltips always opens on top
congrats on releasing 2.3.0! I was checking out some of the docs and saw that tooltips data-placement is not working correctly. I think its because of the one pull request that makes options set in javascript override the options that were set in the html but I'm not sure..
1
A couple weeks ago we discussed being able to 'chain' task spawn options, which would be much more fun to write than the current builder interface. I envision: fn unlinked() -> builder { ... } fn notify_chan() -> builder { ... } fn spawn() { ... } impl for builder { fn unlinked() -> builder { { link: false with builder } } fn notify_chan(chan) -> builder ... fn spawn() ... } With the functions at the top level returning a default set. Then you'll never need to type "builder" - all of these will be valid: do task::spawn { ... } do task::unlinked().notify_chan(c).spawn { ... } do task::notify_chan(c).unlinked().spawn { ... } let t = task::unlinked(); do t.spawn { ... } do t.notify_chan(c).spawn { ... } One problem is noncopyability of certain things that might get put in builder - like wrappers and notify ports (or future stuff...? not entirely clear on that). Move mode on self can solve that; until then, we could perhaps make it a runtime error by doing the standard option dance. (When move mode on self appears, we can make it a build error without changing the interface.) type builder = ~mut option<{...record...}> impl for builder { fn set_noncopyable_thing() -> builder { let mut result = none; result <-> *self; } } An attempt to use a builder with `none` in it would fail at runtime.
I didn't find any duplicate issue, but this problem has probably been there for a long time. * The code `panic!("{}", 7)` compiles and prints `thread <main> panicked at "7", ...` * The code `panic!("{} {}", 7)` doesn't compile as an argument is missing * The code `panic!("{}")` **does compile** and prints `thread <main> panicked at "{}", ...` The last one doesn't detect potential mistakes, and is inconsistent with `println!("{}")` which doesn't compile.
0
##### ISSUE TYPE Documentation Report ##### COMPONENT NAME core ##### ANSIBLE VERSION ansible 2.0.1.0 config file = /root/.ansible.cfg configured module search path = Default w/o overrides ##### CONFIGURATION ##### OS / ENVIRONMENT Running ansible on CentOS Linux release 7.2.1511 (Core) Managing a system on CentOS release 5.5 (Final) ##### SUMMARY wait_for will not accept both port and path. The documentation should note that restriction ##### STEPS TO REPRODUCE Construct a playbook similar to the following. seths_46 is one of my test VM systems. When duplicating this bug, use one of your test systems instead. --- - hosts: seths_46 gather_facts: false strategy: free tasks: - wait_for: host={{ inventory_hostname }} path="/adp/etc/rc2.d/s099upwrapup" port=22 delay=1 timeout=1800 ##### EXPECTED RESULTS I wanted Ansible to wait for the port to be open and then for the filename in the path to exist. If Ansible cannot do that, then the documentation should say so. ##### ACTUAL RESULTS TASK [wait_for] **************************************************************** fatal: [<ip address deleted>]: FAILED! => {"changed": false, "failed": true, "msg": "port and path parameter can not both be passed to wait_for"}
##### ISSUE TYPE * Bug Report ##### ANSIBLE VERSION ansible 1.9.5 configured module search path = None ansible 2.0.1.0 config file = /dev/null configured module search path = Default w/o overrides # from git: d78ba34cf000cc7d5ff57e8f99b679d03d064540 ansible 2.1.0 config file = /dev/null configured module search path = Default w/o overrides ##### CONFIGURATION export ANSIBLE_CONFIG=/dev/null ##### OS / ENVIRONMENT OSX 10.11.4 python 2.7.11 (homebrew) ##### SUMMARY While migrating some playbooks to Ansible 2.0 i found some inconsistencies between different ansible versions, and most importantly in the same version depending of the syntax chosen. Attached you while find a complete example with variations over the same theme, running the same role multiple times. ##### STEPS TO REPRODUCE # the example code is attached cd example ansible-playbook -i inventory test1.yml ansible-playbook -i inventory test2.yml ansible-playbook -i inventory test3.yml example.zip ##### EXPECTED RESULTS All three playbooks should return the same result. ##### ACTUAL RESULTS Each ansible version tested return different results for playbooks that should be equivalent.
0
Is it possible to keep a reference on a scene's object ? When we do : this.scene.add(meshObject); When I make it, my object is add in the scene and it is "lost" in the property "children" which is an array. I must search the object in the scene's property "children" to modify the object that I display. I would like keep a link on this object and when I modify my object through this link I would modify directly the contents of the scene. Like a say precedently I remarked that objects which are displayed are in scene's children property. isn't it possible to have a tree on this property to classify object. By example I have several objects, some of them are cubes other are circles, and I would like classify them in the scene. Like you can see on the following picture : http://img526.imageshack.us/img526/893/treero.jpg In this way I could apply a modification on all cubes easily without run all array's member. If I try to set it, the scene will be able to display objects or not ?
Names of nodes are user-specified, and not guaranteed to be unique within a glTF file. But because THREE.PropertyBinding relies on track names to target animation, having two nodes with the same name will cause animation to affect the wrong part of a model. We should de-duplicate node names on import, to ensure that every node ends up with a unique name. Filing to follow up on https://discourse.threejs.org/t/gltf-animation-bug-or- wrong-usage/4536/2.
0
I have come across a reproducible segfault in Julia v0.5.0. I'm afraid it's not very minimal, but it's easy to reproduce. To reproduce: * Install branch `fsm_matrix_segfault` of the package jeff-regier/Celeste.jl (commit 21974) * Check out branch `segfault` from the repo rgiordan/CelesteDev.jl * Run the Celeste tests with the command `test/runtests misc` (this will download the data files needed for the test case) * Run the script `rasterized_psf/psf_free_image.jl` from the CelesteDev.jl directory Please let me know if I can provide any more information. The backtrace is below: julia> PSFConvolution.convolve_fsm_images!(fsm_vec[b]); signal (11): Segmentation fault while loading no file, in expression starting on line 0 ml_matches_visitor at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2172 jl_typemap_intersection_node_visitor at /home/rgiordan/Documents/git_repos/julia5/src/typemap.c:496 ml_matches at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2279 [inlined] jl_matching_methods at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2300 methods_including_ambiguous at ./reflection.jl:283 unknown function (ip: 0x7f24d5fbfcc6) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 showerror at ./replutil.jl:277 #showerror#899 at ./replutil.jl:200 unknown function (ip: 0x7f24d5fbc849) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #5 at ./REPL.jl:119 jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 with_output_color at ./util.jl:299 display_error at ./REPL.jl:112 unknown function (ip: 0x7f24d5fbb2fd) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 print_response at ./REPL.jl:147 unknown function (ip: 0x7f24d5fbb14d) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 print_response at ./REPL.jl:139 unknown function (ip: 0x7f24d5fbaf1d) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #22 at ./REPL.jl:652 unknown function (ip: 0x7f24e5336201) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #38 at ./REPL.jl:867 #13 at ./LineEdit.jl:736 jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 prompt! at ./LineEdit.jl:1605 run_interface at ./LineEdit.jl:1574 unknown function (ip: 0x7f26fea486df) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 run_frontend at ./REPL.jl:903 run_repl at ./REPL.jl:188 unknown function (ip: 0x7f24e532f522) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 _start at ./client.jl:360 unknown function (ip: 0x7f26fea63a78) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 unknown function (ip: 0x40184c) unknown function (ip: 0x4012e6) __libc_start_main at /build/glibc-GKVZIf/glibc-2.23/csu/../csu/libc-start.c:291 unknown function (ip: 0x401338) Allocations: 30470709 (Pool: 30468304; Big: 2405); GC: 45 Segmentation fault (core dumped)
julia> function foo{T}() nothing end WARNING: static parameter T does not occur in signature for foo at REPL[1]:2. The method will not be callable. foo (generic function with 1 method) julia> foo() signal (11): Segmentation fault: 11 while loading no file, in expression starting on line 0 jl_svecref at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia.h:690 [inlined] ml_matches_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2172 jl_typemap_intersection_node_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:510 [inlined] jl_typemap_intersection_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:570 ml_matches at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2279 [inlined] jl_matching_methods at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2300 methods_including_ambiguous at ./reflection.jl:283 unknown function (ip: 0x11968fc56) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 showerror at ./replutil.jl:277 #showerror#899 at ./replutil.jl:200 unknown function (ip: 0x11968c679) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 #5 at ./REPL.jl:119 jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 with_output_color at ./util.jl:299 display_error at ./REPL.jl:112 unknown function (ip: 0x11968ae6d) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 print_response at ./REPL.jl:147 unknown function (ip: 0x11968ac5d) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 print_response at ./REPL.jl:139 unknown function (ip: 0x11968a9ad) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 #22 at ./REPL.jl:652 unknown function (ip: 0x119679a91) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 run_interface at ./LineEdit.jl:1579 jlcall_run_interface_20650 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 run_frontend at ./REPL.jl:903 run_repl at ./REPL.jl:188 unknown function (ip: 0x1196765e2) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 _start at ./client.jl:360 jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) Allocations: 3028631 (Pool: 3027665; Big: 966); GC: 2 [Process completed] julia> versioninfo() Julia Version 0.5.0 Commit 3c9d753 (2016-09-19 18:14 UTC) Platform Info: System: Darwin (x86_64-apple-darwin13.4.0) CPU: Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell) LAPACK: libopenblas64_ LIBM: libopenlibm LLVM: libLLVM-3.7.1 (ORCJIT, broadwell)
1
Challenge http://freecodecamp.com/challenges/waypoint-bring-your-javascript- slot-machine-to-life has an issue. Please describe how to reproduce it, and include links to screenshots if possible. 1. In the space provided for code, type `$($)` 2. This causes an infinite loop. ![image](https://cloud.githubusercontent.com/assets/5121391/9425943/16780828-48f3-11e5-978e-49c241e6ab7a.png)
![](https://camo.githubusercontent.com/fc7759ac37f54b01e6bcd37518139b421b252d3b8995a10b8df171990b85a061/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f416c79705769637a304a354d326150576b796f6d67704f49376f2d44506c75304d7441422f696d6167652e706e67)
1
* I have searched the issues of this repository and believe that this is not a duplicate. Is there any way to configure TablePagination shows all rows on a single page? I mean something like this: <TablePagination rowsPerPageOptions: [5, 10, 15, 'All'] // or [5, 10, 15, 0] /> I've already tried to use '0' as a page size, but the 'next' and 'prev' buttons work incorrectly in this case.
When testing a component that includes a , I can successfully simulate a click and verify that the component's state is set to open. However, when I then try to find the defined action buttons, I am unable to do so. // Code class CustomDialog extends Component { .... this.state = { open: false, }; handleOpen = () => { this.setState({ open: true }); }; handleDelete =() => { .... }; handleClose = () => { .... }; render() { const actions = [ <FlatButton label="Cancel" onClick={this.handleClose} />, <FlatButton label="Delete" onClick={this.handleDelete} />, ]; return ( <span> <FlatButton label="Delete" onClick={this.handleOpen} /> <Dialog actions={actions} open={this.state.open} onRequestClose={this.handleClose} > Delete? This operation cannot be reversed. </Dialog> </span> ); } } // Tests expect(mountedComponent).toHaveState('open', false); <--PASS mountedComponent .find('FlatButton') .simulate('click'); expect(mountedComponent).toHaveState('open', true); <--PASS expect(mountedComponent .find('FlatButton') .find('[label="Cancel"]')).toBePresent(); <<< FAIL I haven't done a sandbox because Dialog works fine for me in the browser, it's only when testing that the issues arise. I have searched the issues of this repository and believe that this is not a duplicate. Tech | Version ---|--- Material-UI | 0.19.4 React | 16.0.0 enzyme | 3.1.0 And finally, here is my `mountedComponent.debug()` output: <AreaDeleteDialog className="delete" id="Hollywood" handleAreaDelete={[Function]}> <span> <FlatButton label="Delete" onClick={[Function]} disabled={false} fullWidth={false} labelStyle={{...}} labelPosition="after" onKeyboardFocus={[Function]} onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} primary={false} secondary={false}> <EnhancedButton onClick={[Function]} onKeyboardFocus={[Function]} onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} disabled={false} focusRippleColor="#999999" focusRippleOpacity={0.3} style={{...}} touchRippleColor="#999999" touchRippleOpacity={0.3} containerElement="button" onBlur={[Function]} onFocus={[Function]} onKeyDown={[Function]} onKeyUp={[Function]} tabIndex={0} type="button"> <button onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} style={{...}} disabled={false} onBlur={[Function]} onFocus={[Function]} onKeyUp={[Function]} onKeyDown={[Function]} onClick={[Function]} tabIndex={0} type="button"> <TouchRipple centerRipple={[undefined]} color="#999999" opacity={0.3} abortOnScroll={true}> <div onMouseUp={[Function]} onMouseDown={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} onTouchEnd={[Function]}> <FlatButtonLabel label="Delete" style={{...}}> <span style={{...}}> Delete </span> </FlatButtonLabel> </div> </TouchRipple> </button> </EnhancedButton> </FlatButton> <Dialog actions={{...}} open={true} onRequestClose={[Function]} autoDetectWindowHeight={true} autoScrollBodyContent={false} modal={false} repositionOnUpdate={true}> <RenderToLayer render={[Function]} open={true} useLayerForClickAway={false} /> </Dialog> </span> </AreaDeleteDialog>'
0
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Problem Description The current ipcRenderer API appears to be similar to the NodeJS EventEmitter API. However, the ipcRenderer docs list neither an `addListener()` method nor a `off()` method. The NodeJS EventEmitter API supports both `addListener()` and `removeListener()`, as well as respective `on()` and `off()` methods which act as aliases. Furthermore, the methods `addListener()` and `off()` appear to be callable on ipcRenderer despite being undocumented, and no not throw any errors, leading to additional confusion. ### Proposed Solution If the `addListener()` and/or `off()` methods are already implemented on ipcRenderer, The ipcRenderer documentation should be updated to reflect this. If they are not implemented, they should either be implemented, or alternatively, some warning should be given to developer that they are either not implemented or are deprecated (e.g. via a message in the console). Finally, although it could be argued that the presence of aliased functions in the NodeJS EventEmitter class causes confusion for developers, I would argue that having one function for adding listeners in one style (`on`) and one function for removing listeners in another style (`removeListener`) in Electron without clear documentation makes for a far less desirable developer experience. ### Alternatives Considered If there is really no desire to implement additional/aliased functions (assuming they do not already exist but are undocumented) in the ipcRenderer API, the API should at least be made consistent by implementing either `on` and `off` OR `addListener` and `removeListener` and not both, and deprecating the function to be removed from the different style with accompanying notices made available to developers. ### Additional Information I came across this issue/request while trying to debug a weird issue with React and Electron ipcRenderer events. The confusion between styles for adding/removing event listeners has exacerbated time spent debugging this other problem. For more info, see: https://stackoverflow.com/questions/60158863/spooky-action-at-a-distance- electron-react-useeffect-unable-to-unsubscribe
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 8.0.3 * **Operating System:** * Win 7 * **Last Known Working Electron version:** * unknown ### Expected Behavior Relative windows should not been closed when main window is closed. ### Actual Behavior Relative windows will be closed when main window is closed. ### To Reproduce 1. Load a page in main window. 2. Click a link or use js window.open to open a new window. 3. Close the main window. The new popup window will be closed immediately.
0
##### System information (version) * OpenCV => 3.1 * Operating System / Platform => Linux Mint https://www.virustotal.com/de/file/24bda432eaace9e992322dcc3d30144cefa5314c2424d4aa02e5fe3fa9dd17bd/analysis/1535208210/ Why u is there a trojan downloader ?! I do not appreciate it! ##### Detailed description Avast: JS:Downloader-DZB [Trj] AVG : JS:Downloader-DZB [Trj] cyren : ZIP/Trojan.JDGB-6 Qihoo360 : Script/Trojan.Downloader.3f1 ##### Steps to reproduce
##### System information (version) * OpenCV => 3.2 * Operating System / Platform => Windows * Compiler => - ##### Detailed description Avast detects JS: Downloader-DZB [Trj] virus in OpenCV 3 (.exe file). ##### Steps to reproduce I downloaded the OpenCV for Windows file (version 3.2) from http://opencv.org/downloads.html -> https://sourceforge.net/projects/opencvlibrary/files/opencv- win/3.2.0/opencv-3.2.0-vc14.exe/download File: open-cv-3.2.0-vc14.exe. I ran Avast Antivirus on the downloaded file and received a virus report: JS: Downloader-DZB [Trj] Specifically found in: open- cv-3.2.0-vc14.exe>opencv\sources\modules\ts\src\ts_gtest.cpp
1
# Bug report ## Describe the bug I have a monorepo usecase, where I want to share code between the next app and other modules that are located outside of the app folder. It will end up with this error: { Error: (client) ../foo.ts 1:0 Module parse failed: The keyword 'interface' is reserved (1:0) You may need an appropriate loader to handle this file type. > interface Foo { | prop: string; | } @ ./pages/index.tsx 4:0-28 8:5-8 @ multi ./pages/index.tsx ## To Reproduce I have set up a simple repo here, based on the next-typescript example: https://github.com/Swatinem/next-monorepo/tree/master ## Expected behavior Whatever I import should be transpiled like everything else, period. ## System information * OS: linux * Version of Next.js: next@7.0.2 ## Additional context Related issue (possibly a duplicate?): vercel/next-plugins#234 Also related maybe: * #706 * #3018
Now some of us ships NPM packages (specially components) written in ES2015 without transpiling them. That's a pretty good thing specially if they are gonna used in a project like Next.js or CRA (which does transpiling). They offer benefits like: * No need to transpile before shipping to NPM * Get the benefit of Webpack 2's tree-shaking But we can't do this now we exclude everything inside node_modules from babel transpiling. So, here's the proposed solution. We have an entry in `next.config.js` to include modules which needs to go through babel. See: module.exports = { transpileModules: [ "my-component", "redux/src" ] }
1
I tried to implement React Helmet for our project and noticed a bug when running in production mode. React Helmet doesn't initialize on the very first request after starting the application. But it initializes correctly on each subsequent request (SSR & CSR). I cloned the minimal with-react-helmet example and I can confirm that the issue appears there, too. ![image](https://user- images.githubusercontent.com/5004390/34601739-91db88f4-f1fd-11e7-99d5-4a2c6d6ee5a5.png) * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior React Helmet should initialize correctly on the first request that was made. ## Current Behavior As described above, React Helmet doesn't initialize correctly on the very first request. ## Steps to Reproduce (for bugs) 1. Clone with-react-helmet 2. npm install 3. npm run build 4. npm start 5. Check the DOM/page source
* I have searched the issues of this repository and believe that this is not a duplicate. I need to support some older browsers, so I would like to always include some polyfills (Intl, Object.assign and Promise) in the app bundle and just execute them if need (I've tried to do it conditionally, but it fails in a lot of situations), but I can't figure out the way to do it. Has anybody did this o has an idea on how can I do it?
0
For per-1.0 version, linear progress component has a consistent API with circle progress component, where the range of the progress can be set with 'max' and 'min' props. These APIs have been removed in 1.0, but it wasn't explicitly stated, and it was only implied in the examples that the value props linear progress now takes should be between 0 and 100. This causes a little confusing and unnecessary digging for those who migrated from pre 1.0 or new users who try to use both progress components. * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Linear Progress and Circle Progress to have a consistent API implementation (with or without 'max/min' props') ## Current Behavior Linear Progress only takes value prop, while Circle Progress accepts max/min. ## Steps to Reproduce (for bugs) Use a simple component like this one below. ` <LinearProgress mode='determinate' max={totalSeconds} min={0} value={totalSeconds - timePassed} />` If I start with a total seconds > 100, I would not see the linear progress bar moving until the last two minutes. ## Context I am trying to give user different views that use different progress bars. ## Your Environment Tech | Version ---|--- Material-UI | 1.0.0-beta.18 React | 16 browser | etc |
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior LinearProgress and CircularProgress should accept min, max and value props. When mode is 'determinate', the progress is calculated based on value between a scale of min to max. If min and max are not supplied, they default to 0 and 100 respectively (original behavior). `inlineStyles.primary.transform = 'scaleX(' + ((value - min) / (max - min)) + ')';` ## Current Behavior LinearProgress and CircularProgress accepts value prop. When mode is 'determinate', the progress is calculated based on value between a scale of 0 to 100. `inlineStyles.primary.transform = 'scaleX(' + value / 100 + ')';` ## Context This would simplify components that utilize LinearProgress and CircularProgress as parent components would no longer be responsible for scaling values between 0 and 100. I find it's pretty rare to have data already suitable for the progress components because it's not normally between 0 and 100. ## Your Environment Tech | Version ---|--- Material-UI | 1.0.0-beta.18 React | 16.0.0
1
Yesterday, there was a file, `server.ts` that existed. Today, it doesn't exist. https://deno.land/std@v1.0.0-rc2/http/server.ts Navigating to this URL makes it seem like there is a file `server.ts` https://deno.land/std@v1.0.0-rc2/http/ It looks like all files are returning 404s. What is wrong?
![screenshot](https://user- images.githubusercontent.com/11488886/81811610-1bd32980-954f-11ea-80b5-f6c226619b6f.png) ## Steps to reproduce 1. Delete `~/.cache/deno` 2. Clone https://github.com/KSXGitHub/deno-args 3. Run `deno cache --unstable **/*.ts` ## Expected behavior It runs without error ## Actual behavior 404 Not Found.
1
# Bug report **What is the current behavior?** Assume we have two projects with only index.js files in them, which are having same content: ![image](https://user- images.githubusercontent.com/938036/122017048-4c2c6d80-cdca-11eb-909a-6f0acbb36152.png) and this webpack config: module.exports = { mode: 'production', cache: { type: 'filesystem' }, infrastructureLogging: { level: 'info', debug: /webpack\.cache.*/, }, entry: `./${process.env.SRC_DIR}/index.js`, plugins: [ new MiniCssExtractPlugin({ filename:'styles.[chunkhash].css' }) ], output: { pathinfo: false, }, module: { rules: [{ test: /\.(js|jsx)$/, loader: 'babel-loader', options: { "plugins": [ "syntax-dynamic-import", "@babel/plugin-proposal-class-properties" ], "presets": [ [ "@babel/preset-env", { "modules": false } ], "@babel/preset-react" ] } }] }, optimization: { minimizer: [new TerserPlugin({ })], } } After cache warmup with `webpack5-1` repo we build first `webpack5-1` and then - `webpack5-2` warmup time: webpack 5 - 1 (warmup) : 5.05401289999485 seconds Full compilation time with cache is then following: webpack 5 - 1: 0.8312232999801635 seconds webpack 5 - 2: 1.4813145999908448 seconds After that, if we not delete `.cache` folder and again build `webpack5-1` and then - `webpack5-2` then builds aree took almost the same time webpack 5 - 1: 0.8569822000265122 seconds webpack 5 - 2: 0.9038357999920845 seconds **If the current behavior is a bug, please provide the steps to reproduce.** Reproducing steps in readme section of repo https://github.com/SkReD/webpack5-performance-issue/tree/cache-share-problem **What is the expected behavior?** Expect compilation time to be almost the same for both `webpack5-1` and `webpack5-2` with cache from the first one. **Other relevant information:** webpack version: 5.38.1 Node.js version: 14.17.0 Operating System: windows 10 x64 Additional tools:
## Feature request **What is the expected behavior?** right now cache writes absolute paths **What is motivation or use case for adding/changing the behavior?** if all paths will be relative to cache folder it will allow to share cache **How should this be implemented in your opinion?** Did not investigate this, yet **Are you willing to work on this yourself?** Yes
1
### Bug report **Bug summary** Using tex (`rcParams["text.usetex"] = True`) results in an error because of a font name not being valid in current master. Works fine with matplotlib 2.2.3. **Code for reproduction** import matplotlib.pyplot as plt plt.rcParams["text.usetex"] = True plt.plot([1,2,3]) plt.show() **Actual outcome** File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 736, in __init__ with open(filename, 'rb') as file: OSError: [Errno 22] Invalid argument: 'D:/Programme/Office/MiKTeX/fonts/tfm/public/cm/cmr10.tfm\r' I would suspect the `\r` simply does not belong at the end of the string. Complete Traceback Traceback (most recent call last): File "d:\***\matplotlib\lib\matplotlib\backends\backend_qt5.py", line 519, in _draw_idle self.draw() File "d:\***\matplotlib\lib\matplotlib\backends\backend_agg.py", line 399, in draw self.figure.draw(self.renderer) File "d:\***\matplotlib\lib\matplotlib\artist.py", line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File "d:\***\matplotlib\lib\matplotlib\figure.py", line 1649, in draw renderer, self, artists, self.suppressComposite) File "d:\***\matplotlib\lib\matplotlib\image.py", line 137, in _draw_list_compositing_images a.draw(renderer) File "d:\***\matplotlib\lib\matplotlib\artist.py", line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File "d:\***\matplotlib\lib\matplotlib\axes\_base.py", line 2623, in draw mimage._draw_list_compositing_images(renderer, self, artists) File "d:\***\matplotlib\lib\matplotlib\image.py", line 137, in _draw_list_compositing_images a.draw(renderer) File "d:\***\matplotlib\lib\matplotlib\artist.py", line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File "d:\***\matplotlib\lib\matplotlib\axis.py", line 1186, in draw renderer) File "d:\***\matplotlib\lib\matplotlib\axis.py", line 1124, in _get_tick_bboxes extent = tick.label1.get_window_extent(renderer) File "d:\***\matplotlib\lib\matplotlib\text.py", line 902, in get_window_extent bbox, info, descent = self._get_layout(self._renderer) File "d:\***\matplotlib\lib\matplotlib\text.py", line 312, in _get_layout ismath=ismath) File "d:\***\matplotlib\lib\matplotlib\backends\backend_agg.py", line 206, in get_text_width_height_descent s, fontsize, renderer=self) File "d:\***\matplotlib\lib\matplotlib\texmanager.py", line 466, in get_text_width_height_descent page = next(iter(dvi)) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 244, in __iter__ while self._read(): File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 302, in _read self._dtable[byte](self, byte) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 162, in wrapper return method(self, *[f(self, byte-min) for f in get_args]) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 442, in _fnt_def self._fnt_def_real(k, c, s, d, a, l) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 447, in _fnt_def_real tfm = _tfmfile(fontname) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 1035, in _fontfile return cls(filename) if filename else None File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 736, in __init__ with open(filename, 'rb') as file: OSError: [Errno 22] Invalid argument: 'D:/Programme/Office/MiKTeX/fonts/tfm/public/cm/cmr10.tfm\r' * * * **Expected outcome** No Error. **Matplotlib version** * Operating system: Windows 8.1 * Matplotlib version: master * Matplotlib backend (`print(matplotlib.get_backend())`): Qt5Agg * Python version: 3.6
### Bug report I like to test my code against the bleeding edge version of matplotlib (by installing it in a conda virtual environment) on my work machine (Windows PC). Since I do not have admin rights to install the necessary tools to build from source, I download the wheels from appveyor and use pip install. The following code snippet (representing a part of my working code) started giving an error after I installed "matplotlib-3.0.0rc1+424.g19420b97.dirty- cp36-cp36m-win_amd64.whl" (which corresponds to Merge pull request #12253 from anntzer/kpathsea-encoding FIX: Handle utf-8 output by kpathsea on Windows). The wheel which was built for the commit before that, matplotlib-3.0.0rc1+420.gb2c89917.dirty-cp36-cp36m-win_amd64.whl works fine (I reinstalled it and the code snippet works). I am not sure if this is the right way to test the bleeding edge code (when you do not have admin rights to install the tools necessary to build from source). If the procedure I am following is not correct, please feel free to close the issue. **Code for reproduction** import matplotlib.pyplot as plt import numpy as np from matplotlib import rc rc('text', usetex=True) rc('text.latex', preamble=r'\usepackage{fourier}, \usepackage[T1]{fontenc}') fig, ax = plt.subplots() ax.plot(np.arange(10)) fig.savefig('test.pdf') **Actual outcome** OSError: [Errno 22] Invalid argument: 'C:/Program Files/MiKTeX 2.9/fonts/tfm/jknappen/ec/ecss1000.tfm \r' **Expected outcome** **Matplotlib version** * Operating system: Windows 10 * Matplotlib version: 3.0.0rc1+424.g19420b97.dirty * Matplotlib backend (`print(matplotlib.get_backend())`): Qt5Agg * Python version: * Jupyter version (if applicable): * Other libraries:
1
# Bug report **What is the current behavior?** Running webpack throws an exception that `acorn` cannot be found: [webpack-cli] Error: Cannot find module 'acorn' Require stack: - [root]\node_modules\acorn-import-assertions\lib\index.js - [root]\node_modules\webpack\lib\javascript\JavascriptParser.js - [root]\node_modules\webpack\lib\javascript\JavascriptModulesPlugin.js - [root]\node_modules\webpack\lib\WebpackOptionsApply.js - [root]\node_modules\webpack\lib\webpack.js - [root]\node_modules\webpack\lib\index.js - [root]\node_modules\webpack-cli\lib\webpack-cli.js - [root]\node_modules\webpack-cli\lib\bootstrap.js - [root]\node_modules\webpack-cli\bin\cli.js - [root]\node_modules\webpack\bin\webpack.js at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15) at Function.Module._load (node:internal/modules/cjs/loader:778:27) at Module.require (node:internal/modules/cjs/loader:1005:19) at require (node:internal/modules/cjs/helpers:102:18) at Object.<anonymous> ([root]\node_modules\acorn-import-assertions\lib\index.js:8:38) at Module._compile (node:internal/modules/cjs/loader:1101:14) at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10) at Module.load (node:internal/modules/cjs/loader:981:32) at Function.Module._load (node:internal/modules/cjs/loader:822:12) at Module.require (node:internal/modules/cjs/loader:1005:19) { code: 'MODULE_NOT_FOUND', requireStack: [ '[root]\\node_modules\\acorn-import-assertions\\lib\\index.js', '[root]\\node_modules\\webpack\\lib\\javascript\\JavascriptParser.js', '[root]\\node_modules\\webpack\\lib\\javascript\\JavascriptModulesPlugin.js', '[root]\\node_modules\\webpack\\lib\\WebpackOptionsApply.js', '[root]\\node_modules\\webpack\\lib\\webpack.js', '[root]\\node_modules\\webpack\\lib\\index.js', '[root]\\node_modules\\webpack-cli\\lib\\webpack-cli.js', '[root]\\node_modules\\webpack-cli\\lib\\bootstrap.js', '[root]\\node_modules\\webpack-cli\\bin\\cli.js', '[root]\\node_modules\\webpack\\bin\\webpack.js' ] } NOTE: `node_modules/webpack/node_modules/acorn` exists, but this is invisible to `node_modules/acorn-import-assertions` since it's at the wrong level (I think). **If the current behavior is a bug, please provide the steps to reproduce.** I need some time to create a repro, let me know if it's needed. It seems to happen though when another dependency in the same project has a version-incompatible dependency on `acorn` (e.g. 7 instead of 8) leading to `acorn` being duplicated and pushed deeper inside the tree. **What is the expected behavior?** **Other relevant information:** webpack version: 5.65.0 Node.js version: 16.13.1 Operating System: Windows 11 Additional tools: npm 8.3.0
_Update: On further investigation, it seems that there's a very significant mismatch between webpack Wasm semantics and the early draft proposed standard, in terms of when Wasm instantiation happens. I'm happy to have the help of the webpack team here, with your experience this space and success building a working system. Let's keep discussing this to figure out what semantics should be standardized._ ## Feature request The WebAssembly CG is working on standardizing the integration of WebAssembly modules and ES Modules. The proposal's semantics are very similar to what webpack's experimental WebAssembly support. However, there may be some minor differences. This issue is intended to be an umbrella bug to track the general effort to add tests against the new proposal and semantic changes to match it. **What is the expected behavior?** That webpack's WebAssembly module support would match the new specification. **What is motivation or use case for adding/changing the behavior?** * All documentation about wasm and ESM (the spec itself, MDN, other developer resources) could match up with webpack's implementation * Bring compatibility among bundlers, to make things easier for programmers * Make native modules and webpack behave the same, in case the same code may be used both with webpack and as a native module **How should this be implemented in your opinion?** Let's start with tests. Long-term, it'd be best if tests are part of web- platform-tests and imported into webpack; that's a bit of an unsolved problem for now, though, so the initial plan is to develop tests directly against webpack in a PR. Test plan: * Convert the remaining .wasm tests to .wat for easier development * Exports of globals from Wasm are imported as WebAssembly.Global objects, not Numbers (this looks likely to be an existing spec violation) * Imports of Numbers become only immutable, not mutable, Global objects, and undergo rounding based on the declared type * A WebAssembly.Table, Memory or Global instance, or exported Wasm function, exported JS -> Wasm -> JS, comes out with the same identity * A cycle Wasm <-> JS, with Wasm on top, leads to a TDZ error for Memory, Global or Table, but hoisted functions work, and Wasm things are all initialized by the time the JS top-level statement runs * A cycle JS <-> Wasm, with JS on top, lets Wasm's start function access Memory, Global, Table and functions, but using Wasm exports too early leads to TDZ * Variables imported JS -> Wasm are snapshotted (whether you overwrite a bare Number or function, or an entire Memory, Global or Table object which isn't replaced when the variable containing it is overwritten) * Memory, Table and mutable Global can be mutated by JS code that's called out from Wasm code, and the mutations are observed from Wasm * LinkError results if there is a type mismatch when importing into WebAssembly (whether it's from JS or Wasm) * Circular Wasm modules result in an error before any start function executes * All Wasm modules in the module graph are validated before any start function runs or JS modules are evaluated; failing validation throws a CompileError * The same Wasm module can be imported multiple times (both from JS and Wasm) and only one copy of it is made (1 start function evaluation, 1 memory/table/global identity, etc) * The name (number) of exported functions, and the enumeration order of exports overall, matches the JS API specification * Wasm modules can be imported from an ordinary import inside an inline a JS module and a dynamic import from either a script or a JS module * Some parts of the semantics will probably be different in webpack and with native ESM; these tests might only be landed in wpt and not in webpack: * The return value of import() for a Wasm module is a module namespace exotic object, similar to that of native modules (WebPack will need to take shortcuts here) * The same resource can be used both as a Wasm module as well as through instantiateStreaming, and there's no observable caching/sharing between these * The choice between interpreting as JS and Wasm is based on the mimetype and nothing else; many URL types work (blob, data, served from SW), CSP is checked appropriately, the modern CORS settings are used for the fetch, etc. **Are you willing to work on this yourself?** I plan to start implementing the test plan described above. (I wouldn't mind help here, cc @Ms2ger @xtuc) I am not sure when I would have time to implement the changes in webpack; definitely not before the end of this year.
0
**Migrated issue, originally created by Anonymous** inserting multiple rows using single list of row values doesn't work, ex. conn.execute("insert into users (user_id, user_name) values (?, ?)", [(10,"donkey")]((9,"barney"),)) or conn.execute("insert into users (user_id, user_name) values (%s, %s)", [[4,"ed"]([4,"ed"), [5,"horse"](5,"horse")]) Attached patch fixes this.
I have a specific model configuration where queries using limit() on a relationship are not returning the expected number of rows. In this example, staff is defined as a relationship on the School model as such: `staff = db.relationship( 'User', secondary='grant', primaryjoin='School.id==Grant.school_staff_target_id', secondaryjoin='Grant.user_id==User.id', lazy='dynamic', backref='schools_staff' )` Getting all rows with this query returns two rows, as expected: `staff = School.query.filter_by(id='5d2ab3bb1f28426f8148e47543b1cbee').one()\ .staff.filter_by(deleted=False).all()` This query, using `limit(2)`, only returns one row: `staff = School.query.filter_by(id='5d2ab3bb1f28426f8148e47543b1cbee').one()\ .staff.filter_by(deleted=False).limit(2).all()` Whereas this query, using `limit(3)`, returns both rows (expected): `staff = School.query.filter_by(id='5d2ab3bb1f28426f8148e47543b1cbee').one()\ .staff.filter_by(deleted=False).limit(3).all()`
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version:2.7.6 * Operating System version: Mac 10.15 * Java version: 11 registry:nacos 1.2.0 ### Steps to reproduce this issue 1. 在停应用时,出现以下错误 Pls. provide [GitHub address] to reproduce this issue. ### Expected Result What do you expected from the above steps? ### Actual Result What actually happens? If there is an exception, please attach the exception trace: 2020-04-17 17:53:01.735 INFO 41463 DubboShutdownHook o.a.d.r.n.NacosRegistry : [DUBBO] Destroy unsubscribe url consumer://169.254.202.113/org.apache.dubbo.rpc.service.GenericService?application=dubbo-admin-gateway&category=providers,configurators,routers&check=false&connections=0&dubbo=2.0.2&generic=true&interface=com.bw.api.UiPageTableService&pid=41463&qos.enable=false&qos.port=22222&release=2.7.6&retries=0&side=consumer&sticky=false&timeout=32000&timestamp=1587116295070&version=1.0.0, dubbo version: 2.7.6, current host: 169.254.202.113 Exception in thread "DubboShutdownHook" java.lang.RuntimeException: java.util.ConcurrentModificationException at org.apache.dubbo.common.function.ThrowableAction.execute(ThrowableAction.java:48) at org.apache.dubbo.common.lang.ShutdownHookCallbacks.lambda$callback$0(ShutdownHookCallbacks.java:70) at java.base/java.lang.Iterable.forEach(Iterable.java:75) at org.apache.dubbo.common.lang.ShutdownHookCallbacks.callback(ShutdownHookCallbacks.java:70) at org.apache.dubbo.config.DubboShutdownHook.callback(DubboShutdownHook.java:85) at org.apache.dubbo.config.DubboShutdownHook.run(DubboShutdownHook.java:73) Caused by: java.util.ConcurrentModificationException at java.base/java.util.HashMap$HashIterator.nextNode(HashMap.java:1493) at java.base/java.util.HashMap$ValueIterator.next(HashMap.java:1521) at java.base/java.util.Collections$UnmodifiableCollection$1.next(Collections.java:1047) at org.apache.dubbo.registry.support.AbstractRegistryFactory.destroyAll(AbstractRegistryFactory.java:85) at org.apache.dubbo.config.DubboShutdownHook.destroyAll(DubboShutdownHook.java:128) at org.apache.dubbo.config.bootstrap.DubboBootstrap.destroy(DubboBootstrap.java:1039) at org.apache.dubbo.config.bootstrap.DubboBootstrap$1.callback(DubboBootstrap.java:191) at org.apache.dubbo.common.function.ThrowableAction.execute(ThrowableAction.java:46) ... 5 more ^C2020-04-17 17:53:02.036 INFO 41463 SpringContextShutdownHook c.a.c.n.r.NacosServiceRegistry : De-registering from Nacos Server now... 2020-04-17 17:53:02.041 INFO 41463 SpringContextShutdownHook c.a.c.n.r.NacosServiceRegistry : De-registration finished.
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.0 ### Steps to reproduce this issue 1. Interface without package. ![image](https://user- images.githubusercontent.com/1424920/53320488-ca6e5880-3910-11e9-9493-e074ff1f91a7.png) 2. Export service. serviceConfig.setInterface(HelloService.class.getName()); serviceConfig.setRef(new HelloServiceImpl()); ### Expected Result Export service. ### Actual Result Catch NPE when export service. java.lang.NullPointerException at com.alibaba.dubbo.common.Version.getVersion(Version.java:127) at com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:440) at com.alibaba.dubbo.config.ServiceConfig.doExportUrls(ServiceConfig.java:358) at com.alibaba.dubbo.config.ServiceConfig.doExport(ServiceConfig.java:317)
0
To completely fix #1587 TypeScript should also support: function repro(message: Object | Object[]) { if (message instanceof Array) { message = message.filter; // error } } Currently it results in `Property 'entries' does not exist on type 'Object | Object[]'`. It seems `message` on the RHS switches from `Array` back to `Object | Object[]` prematurely. Workaround: function workaround(message: Object | Object[]) { var theMessage = message; if (theMessage instanceof Array) { message = theMessage.filter; } }
**TS 1.4** Type guard fails to narrow the union type when returning early. function foo(x: number | string) { if (typeof x === 'string') { return; } // x should now be a number if (2 % x !== 0) { // do something } } Unfortunately, I get the following compiler error: > The right-hand side of an arithmetic operation must be of type 'any', > 'number' or an enum type. Clearly, the compiler should know at this point that it can't possibly be dealing with a `string`, as that scenario has already been returned.
1
### Vue.js version 2.0.3 ### Reproduction Link https://jsbin.com/lurayuxofo/edit?html,js,console,output ### Steps to reproduce 1. Include inline SVG with some styles within a Vue instance 2. Init vue instance ### What is Expected? 1. SVG to be styled according to the style element ### What is actually happening? 1. Vue is giving a warning "[Vue warn]: Templates should only be responsible for mapping the state to the UI. Avoid placing tags with side-effects in your templates, such as <style>. " and also stripping the style element so the SVG is appearing with no style.
### What problem does this feature solve? From compiling template error message: `Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.` But `Cannot use `` as component root element because it may contain multiple nodes.` So I can't use `<template>` as component root element even if it contains only one node. ### What does the proposed API look like? **Allow the following code as component root.** <template v-if="conditionA"> <div v-if="conditionC"></div> <div v-else-if="conditionD"></div> <div v-else></div> </template> <template v-else> <div></div> </template> **Do not allow the following code as component root.** <template> <div v-if="conditionA"></div> <div v-if="conditionB"></div> </template>
0
## Expected Result Displays the proxy IP address ## Actual Result Traceback (most recent call last): File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/urllib3/connectionpool.py", line 696, in urlopen self._prepare_proxy(conn) File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/urllib3/connectionpool.py", line 964, in _prepare_proxy conn.connect() File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/urllib3/connection.py", line 371, in connect self._tunnel() File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/http/client.py", line 902, in _tunnel raise OSError("Tunnel connection failed: %d %s" % (code, OSError: Tunnel connection failed: 407 Proxy Authentication Required During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/requests/adapters.py", line 440, in send resp = conn.urlopen( File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/urllib3/connectionpool.py", line 755, in urlopen retries = retries.increment( File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/urllib3/util/retry.py", line 574, in increment raise MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='ifconfig.me', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication Required'))) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/cheney/code/python/tools/test.py", line 17, in res = requests.get("https://ifconfig.me", proxies=proxies) File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/requests/api.py", line 75, in get return request('get', url, params=params, **kwargs) File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/requests/api.py", line 61, in request return session.request(method=method, url=url, **kwargs) File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/requests/sessions.py", line 529, in request resp = self.send(prep, **send_kwargs) File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/requests/sessions.py", line 645, in send r = adapter.send(request, **kwargs) File "/Users/cheney/code/python/tools/venv/lib/python3.8/site- packages/requests/adapters.py", line 513, in send raise ProxyError(e, request=request) requests.exceptions.ProxyError: HTTPSConnectionPool(host='ifconfig.me', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication Required'))) ## Reproduction Steps When using a proxy that requires basic authentication to access an HTTPS (not HTTP) address, the system gives an error. The code is as follows: import requests proxy_string = 'http://{}:{}@{}:{}'.format(username, password, proxyHost, proxyPort) proxies = {"http": proxy_string, "https": proxy_string} res = requests.get("https://ifconfig.me", proxies=proxies) print(res.text) It should be noted that the same code can run normally in Windows system, but there are problems with MacOS ## System Information $ python -m requests.help { "chardet": { "version": null }, "charset_normalizer": { "version": "2.0.10" }, "cryptography": { "version": "" }, "idna": { "version": "3.3" }, "implementation": { "name": "CPython", "version": "3.8.2" }, "platform": { "release": "21.1.0", "system": "Darwin" }, "pyOpenSSL": { "openssl_version": "", "version": null }, "requests": { "version": "2.27.0" }, "system_ssl": { "version": "20000000" }, "urllib3": { "version": "1.26.7" }, "using_charset_normalizer": true, "using_pyopenssl": false }
When using proxies in python 3.8.12, I get an error 407. Using any other version of python works fine. I am assuming it could be to do with this https://docs.python.org/3/whatsnew/3.8.html#notable-changes-in-python-3-8-12. I should get a status of 200. I get a status code of 407. import requests r = requests.get('https://example.org/', proxies=proxies) # You will need a proxy to test with, I am using a paid service. print(r.status_code) ## System Information { "chardet": { "version": null }, "charset_normalizer": { "version": "2.0.9" }, "cryptography": { "version": "" }, "idna": { "version": "3.3" }, "implementation": { "name": "CPython", "version": "3.8.12" }, "platform": { "release": "5.13.0-7620-generic", "system": "Linux" }, "pyOpenSSL": { "openssl_version": "", "version": null }, "requests": { "version": "2.27.0" }, "system_ssl": { "version": "101010cf" }, "urllib3": { "version": "1.26.7" }, "using_charset_normalizer": true, "using_pyopenssl": false }
1
**Migrated issue, originally created by Elliot Cameron (@3noch)** I'm using PostgreSQL and trying to build an array aggregate of tuples by selecting a column like this: sa.func.array_agg(sa.func.row(User.id, User.name)) This parses as an ugly list of characters. Putting the "row" on the outside works. sa.func.row(sa.func.array_agg(User.id), sa.func.array_agg(User.name)) Maybe I'm missing something.
**Migrated issue, originally created by Michael Bayer (@zzzeek)** that is, all the functions in http://www.postgresql.org/docs/9.4/static/functions-json.html need to be possible without building subclasses of functions.
1
This doesn't work: a = pd.DataFrame(data=np.random.rand(3)) time = pd.date_range('2000-01-01', tz='UTC', periods=3, freq='10ms', name='time') a['time'] = time b = pd.DataFrame(data=np.random.rand(3)) c = pd.concat([a, b]) It produces a type error: /usr/lib/python3.6/site-packages/pandas/core/indexes/api.py:87: RuntimeWarning: '<' not supported between instances of 'str' and 'int', sort order is undefined for incomparable objects result = result.union(other) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-22-f0e01a86e895> in <module>() ----> 1 c = pd.concat([a, b]) /usr/lib/python3.6/site-packages/pandas/core/reshape/concat.py in concat(objs, axis, join, join_axes, ignore_index, keys, levels, names, verify_integrity, copy) 211 verify_integrity=verify_integrity, 212 copy=copy) --> 213 return op.get_result() 214 215 /usr/lib/python3.6/site-packages/pandas/core/reshape/concat.py in get_result(self) 406 new_data = concatenate_block_managers( 407 mgrs_indexers, self.new_axes, concat_axis=self.axis, --> 408 copy=self.copy) 409 if not self.copy: 410 new_data._consolidate_inplace() /usr/lib/python3.6/site-packages/pandas/core/internals.py in concatenate_block_managers(mgrs_indexers, axes, concat_axis, copy) 5196 else: 5197 b = make_block( -> 5198 concatenate_join_units(join_units, concat_axis, copy=copy), 5199 placement=placement) 5200 blocks.append(b) /usr/lib/python3.6/site-packages/pandas/core/internals.py in concatenate_join_units(join_units, concat_axis, copy) 5325 to_concat = [ju.get_reindexed_values(empty_dtype=empty_dtype, 5326 upcasted_na=upcasted_na) -> 5327 for ju in join_units] 5328 5329 if len(to_concat) == 1: /usr/lib/python3.6/site-packages/pandas/core/internals.py in <listcomp>(.0) 5325 to_concat = [ju.get_reindexed_values(empty_dtype=empty_dtype, 5326 upcasted_na=upcasted_na) -> 5327 for ju in join_units] 5328 5329 if len(to_concat) == 1: /usr/lib/python3.6/site-packages/pandas/core/internals.py in get_reindexed_values(self, empty_dtype, upcasted_na) 5596 pass 5597 else: -> 5598 missing_arr = np.empty(self.shape, dtype=empty_dtype) 5599 missing_arr.fill(fill_value) 5600 return missing_arr TypeError: data type not understood > /usr/lib/python3.6/site-packages/pandas/core/internals.py(5598)get_reindexed_values() 5596 pass 5597 else: -> 5598 missing_arr = np.empty(self.shape, dtype=empty_dtype) 5599 missing_arr.fill(fill_value) 5600 return missing_arr #### Problem description When concatenating dataframes, of which one contains a column with `datetime64[ns, UTC]`, the process fails. This currently breaks my workflow, and I'd like to stick with timezone aware times... It works with plain `datetime64[ns]`.: a['time'] = pd.date_range('2000-01-01', tz=None, periods=3, freq='10ms', name='time' pd.concat([a, b]) and produces the expected output: /usr/lib/python3.6/site-packages/pandas/core/indexes/api.py:87: RuntimeWarning: '<' not supported between instances of 'str' and 'int', sort order is undefined for incomparable objects result = result.union(other) Out[35]: 0 time 0 0.071325 2000-01-01 00:00:00.000 1 0.485844 2000-01-01 00:00:00.010 2 0.247131 2000-01-01 00:00:00.020 0 0.595540 NaT 1 0.609389 NaT 2 0.850834 NaT #### Expected Output Similar to the result with plain numpy `datetime64`, `pd.concat()` should simply fill in the missing time values with `NaT`. Thanks and regards #### Output of `pd.show_versions()` INSTALLED VERSIONS \------------------ commit: None python: 3.6.3.final.0 python-bits: 64 OS: Linux OS-release: 4.13.12-1-ARCH machine: x86_64 processor: byteorder: little LC_ALL: None LANG: de_DE.utf8 LOCALE: de_DE.UTF-8 pandas: 0.21.0 pytest: 3.3.0 pip: 9.0.1 setuptools: 38.2.3 Cython: 0.27.3 numpy: 1.13.3 scipy: 1.0.0 pyarrow: None xarray: 0.10.0 IPython: 6.2.1 sphinx: 1.6.5 patsy: None dateutil: 2.6.1 pytz: 2017.3 blosc: None bottleneck: 1.2.1 tables: 3.4.2 numexpr: 2.6.4 feather: None matplotlib: 2.1.0 openpyxl: None xlrd: None xlwt: None xlsxwriter: None lxml: None bs4: None html5lib: 0.999999999 sqlalchemy: 1.1.15 pymysql: None psycopg2: None jinja2: 2.10 s3fs: 0.0.9 fastparquet: None pandas_gbq: None pandas_datareader: 0.5.0
Concatenating DFs that have columns with all NaTs and TZ-aware ones breaks as of 0.17.1: In [1]: import pandas as pd In [2]: df1 = pd.DataFrame([[pd.NaT], [pd.NaT]]) In [3]: df1 Out[2]: 0 0 NaT 1 NaT In [4]: df2 = pd.DataFrame([[pd.Timestamp('2015/01/01', tz='UTC')], [pd.Timestamp('2016/01/01', tz='UTC')]]) In [5]: df2 Out[4]: 0 0 2015-01-01 00:00:00+00:00 1 2016-01-01 00:00:00+00:00 In [6]: pd.concat([df1, df2]) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-6-f61a1ab4009e> in <module>() ----> 1 pd.concat([df1, df2]) /.../env/local/lib/python2.7/site-packages/pandas/tools/merge.py in concat(objs, axis, join, join_axes, ignore_index, keys, levels, names, verify_integrity, copy) 811 verify_integrity=verify_integrity, 812 copy=copy) --> 813 return op.get_result() 814 815 /.../env/local/lib/python2.7/site-packages/pandas/tools/merge.py in get_result(self) 993 994 new_data = concatenate_block_managers( --> 995 mgrs_indexers, self.new_axes, concat_axis=self.axis, copy=self.copy) 996 if not self.copy: 997 new_data._consolidate_inplace() /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in concatenate_block_managers(mgrs_indexers, axes, concat_axis, copy) 4454 copy=copy), 4455 placement=placement) -> 4456 for placement, join_units in concat_plan] 4457 4458 return BlockManager(blocks, axes) /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in concatenate_join_units(join_units, concat_axis, copy) 4551 to_concat = [ju.get_reindexed_values(empty_dtype=empty_dtype, 4552 upcasted_na=upcasted_na) -> 4553 for ju in join_units] 4554 4555 if len(to_concat) == 1: /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in get_reindexed_values(self, empty_dtype, upcasted_na) 4799 4800 if self.is_null and not getattr(self.block,'is_categorical',None): -> 4801 missing_arr = np.empty(self.shape, dtype=empty_dtype) 4802 if np.prod(self.shape): 4803 # NumPy 1.6 workaround: this statement gets strange if all TypeError: data type not understood Possibly related to #11693, #11705 and the #11456 family. However, this doesn't appear to be caused by the TZ-aware vs. non-TZ aware problems referenced there. Versions: In [4]: pd.show_versions() INSTALLED VERSIONS ------------------ commit: None python: 2.7.6.final.0 python-bits: 64 OS: Linux OS-release: 3.13.0-77-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_US.UTF-8 pandas: 0.17.1 nose: 1.3.6 pip: 6.0.8 setuptools: 12.0.5 Cython: 0.22 numpy: 1.9.2 scipy: 0.15.1 statsmodels: 0.6.1.post1 IPython: 3.1.0 sphinx: 1.3.1 patsy: 0.2.1 dateutil: 2.4.2 pytz: 2015.4 blosc: 1.2.8 bottleneck: 1.0.0 tables: 3.2.0 numexpr: 2.4.3 matplotlib: None openpyxl: None xlrd: 0.9.3 xlwt: 0.7.5 xlsxwriter: None lxml: None bs4: None html5lib: None httplib2: None apiclient: None sqlalchemy: None pymysql: None psycopg2: None Jinja2: None
1
All transitions (hide/show modals, navbar, tooltip, tabs…) are ended by emulateTransitionEnd and the maximum duration of each transition is hard-coded that way (350ms, 150ms). That makes it impossible to customize css-transitions to take longer. Please enable us to set our own transition durations.
`emulateTransitionEnd` should call constants on a plugin's constructor.
1
Example `.gitignore`: /components/ !/components/foo/ !/components/bar/ Ideally, only `components/foo` and `components/bar` would be visible in tree view when "Exclude VCS Ignored Paths" is enabled
Let's say I add the following rules to my `.gitignore` to ignore everything in the root except the `wp-content` directory: /* !.gitignore !wp-content/ So far this works correctly (only `.gitignore` and `wp-content/` are shown in the tree view). Now I add the following rules to ignore everything in the `wp- content` directory, except the `plugins` and `themes` directories wp-content/* !wp-content/plugins/ !wp-content/themes/ Before Atom 0.116.0, the plugins and themes directories were shown correctly in the tree view, but now the `wp-content` directory disappears completely. My machine's git (v2.0.0) parses the .gitignore correctly and sees changes in `plugins` and `themes`. I see that 0.116.0 moved to libgit2 0.21.0. If this is what's causing this behavior I'll open an issue with them.
1
Hi all, I tried to install scikit-learn on my Mac with Lion 10.7.2 (Python 2.7, numpy 1.6.1). At first I tried easy_install and got scikit-0.9 but cannot import due to some 'Don't forget to 'make' first' error and then I searched online, finding that this issue should be fixed in the newer version in github. So I checked out the code and build from source using the following two commands: python setup.py build sudo python setup.py install Now I've got scikit-0.10 in /Library/Python/2.7/site-packages. However, when I tried to run the tests, similar error shows up: Traceback (most recent call last): File "", line 1, in File "sklearn/ **init**.py", line 30, in """ % e) ImportError: No module named _check_build * * * It seems that the scikit-learn has not been built correctly. If you have installed the scikit-learn from source, please do not forget to build the package before using it: run `python setup.py install` or `make` in the source directory. If you have used an installer, please check that it is suited for your Python version, your operating system and your platform. I didn't see errors in my build and build is finished with 'running scons'. I don't know where I am doing wrong. If you need to know more, please let me know. Any help would be very appreciated. Thanks!
Hi all, I tried to install scikit-learn on my Mac with Lion 10.7.2 (Python 2.7, numpy 1.6.1). At first I tried easy_install and got scikit-0.9 but cannot import due to some 'Don't forget to 'make' first' error and then I searched online, finding that this issue should be fixed in the newer version in github. So I checked out the code and build from source using the following two commands: python setup.py build sudo python setup.py install Now I've got scikit-0.10 in /Library/Python/2.7/site-packages. However, when I tried to run the tests, similar error shows up: Traceback (most recent call last): File "", line 1, in File "sklearn/ **init**.py", line 30, in """ % e) ImportError: No module named _check_build * * * It seems that the scikit-learn has not been built correctly. If you have installed the scikit-learn from source, please do not forget to build the package before using it: run `python setup.py install` or `make` in the source directory. If you have used an installer, please check that it is suited for your Python version, your operating system and your platform. I didn't see errors in my build and build is finished with 'running scons'. I don't know where I am doing wrong. If you need to know more, please let me know. Any help would be very appreciated. Thanks!
1
Hi, community: This issue is to add more unit tests for the MetaDataRefresher class. Welcome to claim them. The specific subtasks are as follows: * Add unit test for AlterIndexStatementSchemaRefresher#refresh * Add unit test for AlterTableStatementSchemaRefresher#refresh * Add unit test for CreateIndexStatementSchemaRefresher#refresh * Add unit test for CreateTableStatementSchemaRefresher#refresh * Add unit test for CreateViewStatementSchemaRefresher#refresh * Add unit test for DropIndexStatementSchemaRefresher#refresh * Add unit test for DropTableStatementSchemaRefresher#refresh * Add unit test for DropViewStatementSchemaRefresher#refresh * Add unit test for RenameTableStatementSchemaRefresher#refresh Through this issue, you can understand the process of participating in Apache ShardingSphere, and be familiar with sharding meta data.
## Bug Report ### Which version of ShardingSphere did you use? 5.1.1 ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-Proxy ### Expected behavior The following INSERT statement can run normally when calling MySQL directly, but an exception is thrown after using Sharding-Proxy. @Insert(value = {"<script>insert into ${tableName} (shapeid, userid, groupid, create_userid, name, type, name_alias, " + "stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values" + "<foreach item='item' index='index' collection='propertyExList' separator=','>" + "(#{item.builder.serverPID}, #{item.userID}, #{item.groupID}, #{item.userID}, " + "#{item.builder.fieldName}, #{item.builder.type}, #{item.builder.fieldName2}, " + "#{item.builder.stringValue}, #{item.builder.doubleValue}, #{item.builder.intValue}, " + "#{item.blobValue}, #{item.builder.version}, #{item.dataSize}, " + "#{item.builder.createTime}, #{item.builder.modifyTime}, #{item.builder.deleted})" + "</foreach></script>"}) @Options(useGeneratedKeys=true, keyProperty="propertyExList.builder.serverID", keyColumn="id") boolean insertBatchProperty(@Param("tableName") String tableName, @Param("propertyExList") List<PropertyEx> propertyExList); ### Actual behavior ### Error updating database. Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' ### The error may exist in xxx/cn/syncserver/dao/UploadShapeDao.java (best guess) ### The error may involve xxx.cn.syncserver.dao.UploadShapeDao.insertBatchProperty-Inline ### The error occurred while setting parameters ### SQL: insert into shape_property_simple (shapeid, userid, groupid, create_userid, name, type, name_alias, stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ### Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' ### Reason analyze (If you can) I found that the following insert statement can be executed. The only difference between it and the previous statements with errors is that it does not contain ` (?,?,...)`. [INFO ] 2022-05-23 15:20:37.162 [ShardingSphere-Command-0] ShardingSphere-SQL - Actual SQL: syncdb1 ::: insert into shape_simple (layerid, userid, create_userid, groupid, type, data, minlevel, maxlevel, version, datasize, legend, createtime, modifytime, deleted, create_version) values (0, 10232, 10232, -1, 1, x'0a1b09c240214c1bc45c4011ee44a401170b4440190000000000000000', 0, 0, 15, 120.0, '', '2022-05-23 15:18:54', '2022-05-23 15:18:54', 0, 15)
0
* I have searched the issues of this repository and believe that this is not a duplicate. Normal inputs have 32px in height. `disableUnderline` removes the 2 px at the bottom, resulting in a component of 30px height. This has a few issues: * A `disableUnderline` component doesn't align well alongside a row of underlined components * 30px breaks vertical rhythm, as it's not a multiple of the theme unit. I'm willing to submit a PR to add the missing 2px if this change is ok. ## Expected Behavior ![screen shot 2017-09-22 at 17 12 25](https://user- images.githubusercontent.com/428060/30748543-4b0783d8-9fb9-11e7-9adf-91643d64dc16.png) ## Current Behavior ![screen shot 2017-09-22 at 17 12 36](https://user- images.githubusercontent.com/428060/30748555-571a1104-9fb9-11e7-82e6-ee82a63484fd.png) ## Steps to Reproduce (for bugs) Just use `disableUnderline` components alongside normal underlined components. https://codesandbox.io/s/l9xryo62x7 ## Context I'm trying to use a `<Select disableUnderline>` alongside a list of underlined components and they don't align. ## Your Environment Tech | Version ---|--- Material-UI | v1-beta11 React | 15 browser | Chrome latest etc |
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Use a label tag to check a Checkbox using a htmlFor prop. ## Current Behavior Id isn't rendered in Checkbox, so when I click in a label the checkbox don't get marked. ## Steps to Reproduce (for bugs) https://codesandbox.io/s/v1m6jxwmo7 ## Your Environment Tech | Version ---|--- Material-UI | 1.0.0-beta.29 React | 16 browser | Chrome 16
0
_From@prencher on December 3, 2015 20:0_ When formatting the following snippet: ReactDOM.render( <Router history={createHistory() }> <Route path='/' component={App}> <IndexRoute component={SplashView} /> <Route path='home' component={HomeView} /> <Route path='chat' component={ChatView} /> <Route path='/chat/:contact' component={ChatView} /> </Route> </Router>, document.getElementById('app') ); The closing tags are not properly unindented, and outputs the following: ReactDOM.render( <Router history={createHistory() }> <Route path='/' component={App}> <IndexRoute component={SplashView} /> <Route path='home' component={HomeView} /> <Route path='chat' component={ChatView} /> <Route path='/chat/:contact' component={ChatView} /> </Route> </Router>, document.getElementById('app') ); _Copied from original issue:microsoft/vscode#985_
Right now formatting is supported or not right. As you see below it just removes all indentation from JSX, i would prefer that we leave jsx code out of formatting if can't be supported right now, this makes formatting completely useless in TSX files. If i understand this correctly then typescript has formatting capability and which is being used by atom-typescript in the sample below. Original Code ![image](https://cloud.githubusercontent.com/assets/249478/8654236/22de6136-2957-11e5-9fb9-5b7c6f7c4f4c.png) Formatted Code ![image](https://cloud.githubusercontent.com/assets/249478/8654255/3a4026c0-2957-11e5-8129-ee7b64856fc3.png)
1
## I submitted a 4-node task with 1GPU for each node. But it exit with exception. Some of the log information is as follows: NCCL WARN Connect to 10.38.10.112<21724> failed : Connection refused The strange thing is that none of the 4 nodes's ip is 10.38.10.112<21724>. I don't know why it will try to connect the ip and the port . Besides, I have set the NCCL_SOCKET_IFNAME to "^lo,docker", I used ifconfig to check network config of all the nodes. And I am sure that configs are 'eth0, eth1, and lo". One of the node info is given as below: self.dist_backend: nccl self.dist_init_method: file:///home/storage15/huangying/tools/espnet/egs2/voxforge/asr1/vox.init self.dist_world_size: 4 self.dist_rank: 1 auto allocate gpu device: 0 devices ids is 0 tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO Call to connect returned Connection refused, retrying tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO Call to connect returned Connection refused, retrying tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO Call to connect returned Connection refused, retrying tj1-asr-train-v100-13:941227:943077 [0] include/socket.h:390 NCCL WARN Connect to 10.38.10.112<21724> failed : Connection refused tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO bootstrap.cc:100 -> 2 tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO bootstrap.cc:326 -> 2 tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO init.cc:695 -> 2 tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO init.cc:951 -> 2 tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO misc/group.cc:69 -> 2 [Async thread] /home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/site- packages/librosa/util/decorators.py:9: NumbaDeprecationWarning: An import was requested from a module that has moved location. Import of 'jit' requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0. from numba.decorators import jit as optional_jit /home/storage15/huangying/tools/anaconda3/envs/py36/bin/python3 /home/storage15/huangying/tools/espnet/espnet2/bin/asr_train.py --use_preprocessor true --bpemodel none --token_type char --token_list data/token_list/char/tokens.txt --non_linguistic_symbols none --train_data_path_and_name_and_type dump/fbank_pitch/tr_en/feats.scp,speech,kaldi_ark --train_data_path_and_name_and_type dump/fbank_pitch/tr_en/text,text,text --valid_data_path_and_name_and_type dump/fbank_pitch/dt_en/feats.scp,speech,kaldi_ark --valid_data_path_and_name_and_type dump/fbank_pitch/dt_en/text,text,text --train_shape_file exp/asr_stats/train/speech_shape --train_shape_file exp/asr_stats/train/text_shape.char --valid_shape_file exp/asr_stats/valid/speech_shape --valid_shape_file exp/asr_stats/valid/text_shape.char --resume true --fold_length 800 --fold_length 150 --output_dir exp/asr_train_asr_transformer_fbank_pitch_char_normalize_confnorm_varsFalse --ngpu 1 --dist_init_method file:///home/storage15/huangying/tools/espnet/egs2/voxforge/asr1/vox.init --multiprocessing_distributed false --dist_launcher queue.pl --dist_world_size 4 --config conf/train_asr_transformer.yaml --input_size=83 --normalize=global_mvn --normalize_conf stats_file=exp/asr_stats/train/feats_stats.npz --normalize_conf norm_vars=False Traceback (most recent call last): File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/runpy.py", line 193, in _run_module_as_main " **main** ", mod_spec) File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/home/storage15/huangying/tools/espnet/espnet2/bin/asr_train.py", line 23, in main() File "/home/storage15/huangying/tools/espnet/espnet2/bin/asr_train.py", line 19, in main ASRTask.main(cmd=cmd) File "/home/storage15/huangying/tools/espnet/espnet2/tasks/abs_task.py", line 842, in main cls.main_worker(args) File "/home/storage15/huangying/tools/espnet/espnet2/tasks/abs_task.py", line 1174, in main_worker distributed_option=distributed_option, File "/home/storage15/huangying/tools/espnet/espnet2/train/trainer.py", line 163, in run else None File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/site- packages/torch/nn/parallel/distributed.py", line 303, in **init** self.broadcast_bucket_size) File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/site- packages/torch/nn/parallel/distributed.py", line 485, in _distributed_broadcast_coalesced dist._broadcast_coalesced(self.process_group, tensors, buffer_size) RuntimeError: NCCL error in: /pytorch/torch/lib/c10d/ProcessGroupNCCL.cpp:410, unhandled system error, NCCL version 2.4.8 Setting NCCL_SOCKET_IFNAME Finished NCCL_SOCKET_IFNAME ^lo,docker self.dist_backend: nccl self.dist_init_method: file:///home/storage15/huangying/tools/espnet/egs2/voxforge/asr1/vox.init self.dist_world_size: 4 self.dist_rank: 1 auto allocate gpu device: 0 devices ids is 0 # Accounting: time=107 threads=1 # Finished at Mon May 18 14:45:28 CST 2020 with status 1 cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar
## 🐛 Bug for j in range(seqlen): Traceback (most recent call last): File "onnx_full_export.py", line 74, in <module> main() File "onnx_full_export.py", line 70, in main beam_search.save_to_db(args.output_file) File "/home/raden/translate/pytorch_translate/ensemble_export.py", line 1170, in save_to_db self.onnx_export(tmp_file) File "/home/raden/translate/pytorch_translate/ensemble_export.py", line 1130, in onnx_export export_type=ExportTypes.ZIP_ARCHIVE, File "/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/__init__.py", line 19, in _export result = utils._export(*args, **kwargs) File "/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/utils.py", line 363, in _export _retain_param_name, do_constant_folding) File "/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/utils.py", line 256, in _model_to_graph method.graph, tuple(args) + tuple(params), example_outputs, False, propagate) RuntimeError: retval->inputs().size() == inputs.size() ASSERT FAILED at /pytorch/torch/csrc/jit/script/init.cpp:744, please report a bug to PyTorch. (_propagate_and_assign_input_and_output_shapes at /pytorch/torch/csrc/jit/script/init.cpp:744) frame #0: std::function<std::string ()>::operator()() const + 0x11 (0x7f6b9c93b441 in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libc10.so) frame #1: c10::Error::Error(c10::SourceLocation, std::string const&) + 0x2a (0x7f6b9c93ad7a in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libc10.so) frame #2: <unknown function> + 0x452376 (0x7f6bdbf5c376 in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) frame #3: <unknown function> + 0x4793af (0x7f6bdbf833af in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) frame #4: <unknown function> + 0x130fac (0x7f6bdbc3afac in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) <omitting python frames> frame #31: __libc_start_main + 0xf0 (0x7f6beb660830 in /lib/x86_64-linux-gnu/libc.so.6) ## To Reproduce Steps to reproduce the behavior: Run onnx_full_export.py from https://github.com/pytorch/translate ## Expected behavior ## Environment Pytorch 1.1 stable ## Additional context
0
Challenge Bonfire: Drop it has an issue. User Agent is: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: function drop(arr, func) { // Drop them elements. arr = arr.filter(func); return arr;} drop([1, 2, 3], function(n) {return n < 3; }); The last test case has a function showing n>2, however, the result set has a 2 in it.
Link: http://www.freecodecamp.com/challenges/bonfire-drop-it Here is the 5th test case: drop([1, 2, 3, 9, 2], function(n) {return n > 2}) should return [3, 9, 2]. From the description alone you can see what is wrong. It should return [3, 9], it cannot include "2" in the result array if the function is n > 2. If code you write is correct and actually returns [3, 9], you will still not pass the test. If code you write has hardcoded the wrong answer returned quoted in the test case, then the test will pass. So it is expecting the wrong answer. ![image](https://cloud.githubusercontent.com/assets/9951362/11050934/6684f32c-86ff-11e5-9735-60e98da02f56.png)
1
If you have a dataframe with a multiindex, and use groupby and then shift, using the frequency argument, the shifting fails, resulting in an empty result. For example: import numpy as np import pandas as pd dates1 = pd.date_range('2015-10-01', '2015-10-03') df1 = pd.DataFrame(dict(grp='A', blah=[1,2,3]), index=dates1) .set_index('grp', append=True) dates2 = pd.date_range('2015-10-02', '2015-10-04') df2 = pd.DataFrame(dict(grp='B', blah=[10,np.nan,30]), index=dates2) .set_index('grp', append=True) df = pd.concat([df1, df2]) In [ ]: df Out[ ]: blah grp 2015-10-01 A 1 2015-10-02 A 2 2015-10-03 A 3 2015-10-02 B 10 2015-10-03 B NaN 2015-10-04 B 30 # This works: In [ ]: df.groupby(level='grp').shift(1) Out[ ]: blah grp 2015-10-01 A NaN 2015-10-02 A 1 2015-10-03 A 2 2015-10-02 B NaN 2015-10-03 B 10 2015-10-04 B NaN # This fails: In [ ]: df.groupby(level='grp').shift(1, freq='D') Out[ ]: Empty DataFrame Columns: [] Index: [] I'm not sure why, however using 'grp' as a column, it works fine: In [ ]: df.reset_index('grp').groupby('grp').shift(1, freq='D') Out[ ]: blah grp A 2015-10-02 1 2015-10-03 2 2015-10-04 3 B 2015-10-03 10 2015-10-04 NaN 2015-10-05 30
#10063 doesn't appear to have been completely fixed. While the exact example I gave now works (the resample), what if instead of a resample I had wanted to do a tshift? I would have wanted to be able to do `df.groupby(level='symbol').tshift(1, 'D')`, which still returns an empty DataFrame. Here, there's no aggregating in the time dimension so the TimeGrouper syntax that was the proposed solution wouldn't make sense. I also don't understand why the `df.groupby([pd.Grouper(level='symbol'), pd.Grouper(level='dt', freq='M')]).mean()` syntax is necessary instead of simply being able to do `df.groupby(level='symbol').resample('M', how='mean')`? The latter seems like much better design. df = DataFrame({'A' : 1 },index=pd.MultiIndex.from_product([list('ab'),date_range('20130101',periods=80)],names=['one','two'])) df.groupby([pd.Grouper(level='one'),pd.Grouper(level='two',freq='M')]).tshift(-1,'M')
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * "electron": "^4.2.12", * **Operating System:** Windows 10 home Chinese * * **Last Known Working Electron version:** 6.0.0 + * ### Expected Behavior Reduce the window to the minimum and click to maximize. In the Restore window, the size of the window is the same as the original size, and the window cannot be reduced ### Actual Behavior Reduce the window to the minimum, and click to maximize it. In the Restore window, the window size is larger than the original size, and the window can be reduced ### To Reproduce Reduce the vscode editor to the smallest window, click to maximize and restore the window. The size of the window is larger than the original size, and the window can be reduced ### Screenshots ### Additional Information In the borderless windows of windows computers, the minimum window width is 800. Drag it to the place where the minimum window cannot be dragged, that is, the window width is 800. Click our customized maximize button. Does the maximize button change the restore button? Click the restore button. It is found that the window has not been restored. The window width may be 814 instead of 800. You can still drag it to the left. Wechat pin can do it, vscode can't.
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for an issue that matches the one I want to file, without success. ### Issue Details * **Electron Version:** * 7.1.2 - 9.0.0-beta.3 (and presumably later versions until this bug is fixed) * **Operating System:** * Windows 10 pro (1909) * **Last Known Working Electron version:** * 7.1.1 ### Preconditions * Window is frameless * Window has minimum size * Window size is minimum size ### Expected behavior * Window is maximized * Window is unmaximized * Window has the same size as before the maximization ### Actual Behavior * Window is maximized * Window is unmaximized * Window is slightly higher and wider than before the maximization ### To Reproduce git clone -b frameless-minsize-maximize-unmaximize-bug https://github.com/christian-judt/electron-quick-start.git cd electron-quick-start npm install npm start ### Additional Information * This seems to be a reappearing problem. (for the last occurence see #13533) * A similar problem with "minimize-restore" instead of "maximize-unmaximize" has appeared in Electron Version 7.1.10. (see #22393) ### Other maybe related issues * [Windows] Frameless window size increase on a maximize, unmaximize sequence #2498 * Windows: Restore (after minimize) to wrong window size #7951 * maximize, minimize, restore incorrect size #15702 * Electron 6 - restore after minimize has wrong window size #19816
1
For https://doc.rust-lang.org/nightly/std/collections/struct.HashMap.html : Anchor | Lines ---|--- method.extend | 740, 741 assoc_type.IntoIter | 731, 734, 737 assoc_type.Item | 730, 733, 736 method.into_iter | 732, 735, 738 examples | 85, 218, 229, 243, 273, 296, 315, 330, 354, 382, 410, 439, 476, 509, 528, 549, 585, 608, 631, 654, 678, 708
When two items in the same documentation page have the same name, rustdoc generates duplicate HTML `id` attributes for them. This makes the HTML invalid, but more importantly, it makes it impossible to link to anything but the one that shows up first in the source. For example, `Vec`'s page contains multiple impls of `IntoIterator`, and therefore multiple HTML elements that have an `id` attribute of `assoc_type.Item`, `assoc_type.IntoIter`, and `method.into_iter`. This is not limited to impls of the same trait, as different traits (and inherent impls) could define methods or associated types with the same name.
1
#### Code Sample, a copy-pastable example if possible import pandas as pd import numpy as np s = pd.Series([1, 2, 3, np.nan, 5], index=pd.date_range('2017-01-01', '2017-01-05')) print(s.rolling('3d', min_periods=1).apply(lambda x: 42)) #### Problem description Output of the above code sample: 2017-01-01 42.0 2017-01-02 42.0 2017-01-03 42.0 2017-01-04 NaN 2017-01-05 42.0 It seems that the user function did not get applied to the window corresponding to the original NaN row, resulting in NaN as the result for that row. Why is that? The more reasonable output would be all 42 because by the `min_periods` constraint, all of the windows are valid. Compare this to the equivalent fixed window version: s = pd.Series([1, 2, 3, np.nan, 5]) print(s.rolling(3, min_periods=1).apply(lambda x: 42)) which gives the following output: 0 42.0 1 42.0 2 42.0 3 42.0 4 42.0 Is this inconsistency between fixed and variable size window a desired behavior? #### Expected Output 2017-01-01 42.0 2017-01-02 42.0 2017-01-03 42.0 2017-01-04 42.0 2017-01-05 42.0 #### Output of `pd.show_versions()` ## INSTALLED VERSIONS commit: None python: 2.7.13.final.0 python-bits: 64 OS: Linux OS-release: 4.11.9-1-ARCH machine: x86_64 processor: byteorder: little LC_ALL: None LANG: en_US.UTF-8 LOCALE: None.None pandas: 0.21.0.dev+316.gf2b0bdc9b pytest: None pip: 9.0.1 setuptools: 36.2.5 Cython: 0.26 numpy: 1.13.1 scipy: None pyarrow: None xarray: None IPython: 5.4.1 sphinx: None patsy: None dateutil: 2.6.1 pytz: 2017.2 blosc: None bottleneck: None tables: None numexpr: None feather: None matplotlib: None openpyxl: None xlrd: None xlwt: None xlsxwriter: None lxml: None bs4: None html5lib: None sqlalchemy: None pymysql: None psycopg2: None jinja2: None s3fs: None pandas_gbq: None pandas_datareader: None
#### Code Sample, a copy-pastable example if possible import pandas as pd df = pd.DataFrame({'A': [0, 1, 2, 3, 4]}, index=[pd.Timestamp('20130101 09:00:00'), pd.Timestamp('20130101 09:00:01'), pd.Timestamp('20130101 09:00:02'), pd.Timestamp('20130101 09:00:03'), pd.Timestamp('20130101 09:00:04')]) rolled = df.rolling('3s', 3) print rolled.sum() print rolled.apply(sum) outputs A 2013-01-01 09:00:00 NaN 2013-01-01 09:00:01 NaN 2013-01-01 09:00:02 3.0 2013-01-01 09:00:03 6.0 2013-01-01 09:00:04 9.0 A 2013-01-01 09:00:00 NaN 2013-01-01 09:00:01 NaN 2013-01-01 09:00:02 NaN 2013-01-01 09:00:03 NaN 2013-01-01 09:00:04 NaN #### Problem description rolled.apply.sum() should give the same output as rolled.apply(sum) but instead only returns nan. #### Expected Output same as rolled.sum() #### Output of `pd.show_versions()` INSTALLED VERSIONS \------------------ commit: None python: 2.7.12.final.0 python-bits: 64 OS: Linux OS-release: 4.4.0-59-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_US.UTF-8 LOCALE: None.None pandas: 0.19.2 nose: None pip: 9.0.1 setuptools: 20.7.0 Cython: None numpy: 1.12.0 scipy: 0.18.1 statsmodels: 0.6.1 xarray: None IPython: 5.1.0 sphinx: None patsy: 0.4.1 dateutil: 2.6.0 pytz: 2016.10 blosc: None bottleneck: None tables: None numexpr: None matplotlib: 1.5.3 openpyxl: None xlrd: None xlwt: None xlsxwriter: None lxml: None bs4: None html5lib: None httplib2: None apiclient: None sqlalchemy: None pymysql: None psycopg2: None jinja2: None boto: 2.38.0 pandas_datareader: None
1
as per a FIXME (formerly an XXX)
The builders are running rustdoc on Linux, so `#[cfg(windows)]` is false. Maybe the platform rustdoc in running on should not be relevant for generating documentation. Could rustdoc be run with both `--cfg unix` and `--cfg windows`?
0
# Environment Windows build number: Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.4.2382.0 Any other software? Powershell 6.2.1 or Powershell 5.1 R 3.6.1 # Steps to reproduce Open a R session then type any expression and evaluate it. Then the up arrow should retrieve older commands in the history. # Expected behavior The up arrow should retrieve older commands in the history. # Actual behavior The up arrow does nothing, even if the R history is in an expected state as showed by the `history()` function. This bug occurs only in "Windows based" terminal, such as powershell and cmd, executed by Windows Terminal. This bug does not exist if R is run inside the _old_ terminal. This bug does not exist either if R is running inside a ssh session inside powershell. Windows Terminal -> Powershell -> R -> Bug Windows Terminal -> CMD-> R -> Bug Windows Terminal -> WSL Ubuntu 18.04 -> R -> Bug Old terminal -> Powershell -> R -> No bug Old terminal -> CMD -> R -> No bug Windows Terminal -> Powershell -> SSH into a linux host -> R -> No bug
# Environment Windows build number:[Version 10.0.18362.295] Windows Terminal version (if applicable): 0.4.2382.0 PowerToys: 0.11.0 # Steps to reproduce Hold down the SHIFT key and drag the Windows Terminal window. # Expected behavior The FancyZone function in PowerToys should react and resize&put the window to where I want it to be, just like other windows like explorer.exe and firefox.exe. # Actual behavior The FancyZone does not react. It just seems to be that I am dragging the window without holding down SHIFT key.
0
by **kwalsh@holycross.edu** : What does 'go version' print? go version go1.3 linux/amd64 What steps reproduce the problem? If possible, include a link to a program on play.golang.org. Example: http://play.golang.org/p/RoYiOHlHCQ Try any of these examples with var x, y int 1. n, err = fmt.Sscanf("7 8", "%d %d", &x, &y) 2. n, err = fmt.Sscanf("7\n8", "%d %d", &x, &y) 3. n, err = fmt.Sscanf("7 8", "%d%d", &x, &y) 4. n, err = fmt.Sscanf("7\n8", "%d%d", &x, &y) 5. n, err = fmt.Sscanf("7\n\n8", "%d\n\n%d", &x, &y) What happened? The results are, respectively: 1. n=2 2. n=2 3. n=2 4. n=1 5. n=1 What should have happened instead? If I am to believe the documentation for fmt, something like: 1. n=2 2. n=1 3. n=1 4. n=1 5. n=2 Please provide any additional information below. See also issue #8236 for a related error. Case (1) is as expected. All the other examples give surprising results, either contradicting other examples or directly contradicting the docs. The docs says "Scanf, Fscanf and Sscanf require newlines in the input to match newlines in the format". Case (2) contradicts that, since apparently newlines in the input can instead match a variety of kinds of space in the format. The docs says "When scanning with a format, all non-empty runs of space characters (except newline) are equivalent to a single space in both the format and the input. With that proviso, text in the format string must match the input text;" Case (3) contradicts that, since apparently certain spaces in the input don't have to match anything in the format. Case (4) is similar to case (3), but gives different results (arguably following the docs this time). Case (5) is just crazy talk, since the format matches the input perfectly. Some of the problem seems to stem from fmt/scan.go:1075 func (s *ss) advance(format string) (i int) which seems to treaty *any* sequence of spaces (including newlines) in the format string as being equivalent to a single space, directly contradicting the docs for Sscanf and friends. It also mishandles the case of "\r\n" in the input because, around line 1096 it directly checks for '\n' without bothering to check for '\r' too. And all of that code completely ignores ss.nlIsSpace, but then after the first input space it invokes skipSpace which has yet different behavior. Compounding those problems, in fmt/scan.go:651 func (s *ss) scanInt(verb rune, bitSize int) int64 and many similar functions, skipSpace() is called, though the docs mention nothing about skipping leading spaces. I think this one is just a documentation bug: classic C scanf ignores leading spaces for most verbs, and apparently fmt/scan does too but does not document that behavior and actually repeatedly implies the opposite.
by **amirtaghavi2020** : The code : package main import ( "fmt" ) var( i int first [2]int second [2]int result [2]int ) func main(){ fmt.Println("Enter first array:\r\n") for i=0;i<2;i++{ _,err:=fmt.Scanf("%d",&first[i]) if err!=nil{ fmt.Println(err) } } fmt.Println("First[0]=",first[0],"First[1]=",first[1]) fmt.Println("Enter second array:") for i=0;i<2;i++{ _,err:=fmt.Scanf("%d",&second[i]) if err!=nil{ fmt.Println(err) } } fmt.Println("Second[0]=",second[0],"Second[1]=",second[1]) //this is problem for i=0;i<2;i++{ result[i] = first[i] + second[i] } } when run it it asked Enter first array: next i type 10SPACE20NEWLINE next it asked Enter second array: then i type 20SPACE30NEWLINE Enter first array: 10 20 First[0]=10 First[1]=20 Enter second array: 30 40 Second[0]=0 Second[1]=30 // this is problem - i type 30 but second[0] give 0 value but on linux , the same code result is correct; my operating system is windows my go version is : go1.3 windows/amd64
1
I am trying to use Atom to edit contents in Polish language. The default and preferred keyboard bindings, so called "programmers keyboard", uses AltGr (right Alt) to enter Polish letters: ą, ć, ę, ł, ń, ó, ś, ż, ź. The problem is that the Atom editor (or perhaps MS Windows 7 Home Pro) represents AltGr-o, which is used to enter 'ó' character, as Ctrl-Alt-o... which keybinding is taken by Atom as application:add-project-folder. This makes it hard to use Atom for content in Polish language...
Original issue: atom/atom#1625 * * * Use https://atom.io/packages/keyboard-localization until this issue gets fixed (should be in the Blink upstream).
1
Compiling a program with: material-ui@1.0.0-beta.21 (.20 compiles ok) ts 2.6.1 - strict: true (with strictFunctionTypes set to false it compiles ok) gives build-lint/0 build-lint/0 node_modules/material-ui/Button/Button.d.ts(5,18): error TS2430: Interface 'ButtonProps' incorrectly extends interface 'Pick<ButtonBaseProps & { classes: any; }, "media" | "hidden" | "dir" | "form" | "style" | "title"...'. build-lint/0 Type 'ButtonProps' is not assignable to type 'Pick<ButtonBaseProps & { classes: any; }, "media" | "hidden" | "dir" | "form" | "style" | "title"...'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass<ButtonProps> | StatelessComponent<ButtonProps> | undefined' is not assignable to type 'string | ComponentClass<ButtonBaseProps> | StatelessComponent<ButtonBaseProps> | undefined'. build-lint/0 Type 'ComponentClass<ButtonProps>' is not assignable to type 'string | ComponentClass<ButtonBaseProps> | StatelessComponent<ButtonBaseProps> | undefined'. build-lint/0 Type 'ComponentClass<ButtonProps>' is not assignable to type 'StatelessComponent<ButtonBaseProps>'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap<ButtonProps> | undefined' is not assignable to type 'ValidationMap<ButtonBaseProps> | undefined'. build-lint/0 Type 'ValidationMap<ButtonProps>' is not assignable to type 'ValidationMap<ButtonBaseProps> | undefined'. build-lint/0 Type 'ValidationMap<ButtonProps>' is not assignable to type 'ValidationMap<ButtonBaseProps>'. build-lint/0 Types of property 'centerRipple' are incompatible. build-lint/0 Type '((object: ButtonProps, key: string, componentName: string, ...rest: any[]) => Error | null) | und...' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null) |...'. build-lint/0 Type '(object: ButtonProps, key: string, componentName: string, ...rest: any[]) => Error | null' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null) |...'. build-lint/0 Type '(object: ButtonProps, key: string, componentName: string, ...rest: any[]) => Error | null' is not assignable to type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ButtonBaseProps' is not assignable to type 'ButtonProps'. build-lint/0 Types of property 'color' are incompatible. build-lint/0 Type 'string | undefined' is not assignable to type '"default" | "inherit" | "primary" | "accent" | "contrast" | undefined'. build-lint/0 Type 'string' is not assignable to type '"default" | "inherit" | "primary" | "accent" | "contrast" | undefined'. build-lint/0 build-lint/0 5 export interface ButtonProps extends StandardProps< build-lint/0 ~~~~~~~~~~~ build-lint/0 build-lint/0 build-lint/0 node_modules/material-ui/List/ListItem.d.ts(5,18): error TS2430: Interface 'ListItemProps' incorrectly extends interface 'Pick<ButtonBaseProps & LiHTMLAttributes<HTMLLIElement> & { classes: any; }, "media" | "hidden" | ...'. build-lint/0 Type 'ListItemProps' is not assignable to type 'Pick<ButtonBaseProps & LiHTMLAttributes<HTMLLIElement> & { classes: any; }, "media" | "hidden" | ...'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass<ListItemProps> | StatelessComponent<ListItemProps> | undefined' is not assignable to type 'string | ComponentClass<ButtonBaseProps> | StatelessComponent<ButtonBaseProps> | undefined'. build-lint/0 Type 'ComponentClass<ListItemProps>' is not assignable to type 'string | ComponentClass<ButtonBaseProps> | StatelessComponent<ButtonBaseProps> | undefined'. build-lint/0 Type 'ComponentClass<ListItemProps>' is not assignable to type 'StatelessComponent<ButtonBaseProps>'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap<ListItemProps> | undefined' is not assignable to type 'ValidationMap<ButtonBaseProps> | undefined'. build-lint/0 Type 'ValidationMap<ListItemProps>' is not assignable to type 'ValidationMap<ButtonBaseProps> | undefined'. build-lint/0 Type 'ValidationMap<ListItemProps>' is not assignable to type 'ValidationMap<ButtonBaseProps>'. build-lint/0 Types of property 'centerRipple' are incompatible. build-lint/0 Type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) => Error | null) | u...' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null) |...'. build-lint/0 Type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) => Error | null' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null) |...'. build-lint/0 Type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) => Error | null' is not assignable to type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ButtonBaseProps' is not assignable to type 'ListItemProps'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass<ButtonBaseProps> | StatelessComponent<ButtonBaseProps> | undefined' is not assignable to type 'string | ComponentClass<ListItemProps> | StatelessComponent<ListItemProps> | undefined'. build-lint/0 Type 'ComponentClass<ButtonBaseProps>' is not assignable to type 'string | ComponentClass<ListItemProps> | StatelessComponent<ListItemProps> | undefined'. build-lint/0 Type 'ComponentClass<ButtonBaseProps>' is not assignable to type 'StatelessComponent<ListItemProps>'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap<ButtonBaseProps> | undefined' is not assignable to type 'ValidationMap<ListItemProps> | undefined'. build-lint/0 Type 'ValidationMap<ButtonBaseProps>' is not assignable to type 'ValidationMap<ListItemProps> | undefined'. build-lint/0 Type 'ValidationMap<ButtonBaseProps>' is not assignable to type 'ValidationMap<ListItemProps>'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null) |...' is not assignable to type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) => Error | null) | u...'. build-lint/0 Type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null' is not assignable to type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) => Error | null) | u...'. build-lint/0 Type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) => Error | null' is not assignable to type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) => Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ListItemProps' is not assignable to type 'ButtonBaseProps'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass<ListItemProps> | StatelessComponent<ListItemProps> | undefined' is not assignable to type 'string | ComponentClass<ButtonBaseProps> | StatelessComponent<ButtonBaseProps> | undefined'. build-lint/0 Type 'ComponentClass<ListItemProps>' is not assignable to type 'string | ComponentClass<ButtonBaseProps> | StatelessComponent<ButtonBaseProps> | undefined'. build-lint/0 Type 'ComponentClass<ListItemProps>' is not assignable to type 'StatelessComponent<ButtonBaseProps>'. build-lint/0 build-lint/0 5 export interface ListItemProps extends StandardProps< build-lint/0 ~~~~~~~~~~~~~ * I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior It should compile without errors. ## Current Behavior It doesn't compile due to errors. ## Steps to Reproduce (for bugs) 1. Compile anything with the list of dependencies as seen above
* I have searched the issues of this repository and believe that this is not a duplicate. ## Expected Behavior Text should render in a Chip ## Current Behavior Nothing is rendered in Chip ## Steps to Reproduce (for bugs) https://codesandbox.io/s/m3qqp31x78 ## Context Trying to use Chip in project and everything is coming back empty. The content of "other" in Chip.js has the value {children: "Text to display"}, which I don't think is supported. ## Your Environment Tech | Version ---|--- Material-UI | "^1.0.0-beta.27" React | ^16.0.0 browser | Chrome
0
### Description One of the main things we want to know is task durations. The main way I know how to get this is to hover over the `Gannt` chart or use the `Task Duration` chart. It would be nice to have the data that is in the `Gannt` chart or the `Task Duration` chat in a table view. ### Use case/motivation That plots are making the data harder to find than a table alone. ### Related issues _No response_ ### Are you willing to submit a PR? * Yes I am willing to submit a PR! ### Code of Conduct * I agree to follow this project's Code of Conduct
### Describe the issue with documentation In response to the contents of https://airflow.apache.org/docs/apache- airflow/stable/tutorial.html#testing as of 2021-10-13 There are several broken things in the tutorial as given, and a few pieces of missing context. (I can help PR this once I go through the contributor guidelines; just recording them for now). In order: ## Table Definitions In initial setup, there is a name collision in the `employees_temp`: both tables use a constraint named `employees_pk`. The latter (`_temp`) should probably use `employees_temp_pk`. (As a nit-pick, it feels odd to capitalize the table names, requires quoting the names when using `psql`'s `\d`.) ## Python Code ### Imports Firstly, it's missing necessary imports. Perhaps they're obvious if you're experienced with airflow, but for those coming into fresh it's not clear what's missing. It appears to be: from airflow.decorators import dag, task from airflow.hooks.postgres_hook import PostgresHook from datetime import datetime, timedelta import requests ### Connections There's no mention of 'connections' (or the concept) in the documentation leading up to this tutorial. The code as written relies on an airflow `Connection` named `LOCAL` being defined. ### Paths and Duplicated Code The path where the file is downloaded is hard-coded to `/usr/local/airflow/...`. For those following https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html this would likely need to be `/opt/airflow/dags/files`, and require the `files` subdirectory to be created first. Regardless, it would be nice if this path were defined once at the top of the script or as a parameter or other config option rather than copy-pasted. ### Bugs `cur.copy_from` references file handle with variable `f` but the handle's name is `file`. `copy_from` does not handle a CSV header row. We either need to skip the first line, or use `copy_expert` or similar: cur.copy_expert("COPY \"Employees_temp\" FROM stdin WITH CSV HEADER DELIMITER AS ','", file) ### Location It says 'save the file' but doesn't specify whether there's any naming convention or somesuch. I might suggest providing an example name like `etl.py`. ## Data The data this script relies on comes from https://raw.githubusercontent.com/apache/airflow/main/docs/apache- airflow/pipeline_example.csv . It appears this file is a spreadsheet export; the 'Serial Number`column's data is in scientific notation format. This is resulting in some truncation and duplicate keys (e.g.`9.78938E+12` appears 25 times). Secondly, the data at this URL appears to use linefeed (LF,`\n`) for newlines. The postgres 'copy' documentation says this should work fine. The python code itself _before_ attempting the `copy_from` splits the input on newline; effectively _removing_ all newlines from the file. Seems we should remove the 'split' and just write the contents directly, or have it `file.write(row+'\n')` Lastly, there's a blank newline at the end of the written file; this doesn't work for postgres `copy from` ### How to solve the problem Just to re-itemize from the above: * include all necessary imports in the example * move the saved file path to a variable or config with notes to modify it to meet the current system's requirements * include a note on `Connections` and note that one needs to be set up as appropriate (either one named `LOCAL` or the user should create one and modify the code here to use it). This may be a bigger concern for those following the [docker start](https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html * avoid duplicate primary key constraint names in the table definitions * retain newlines when writing CSV file and remove blank lines * correct variable names (`file` instead of `f`) * properly handle CSV header row * use `long` number format rather than scientific notation ### Anything else _No response_ ### Are you willing to submit PR? * Yes I am willing to submit a PR! ### Code of Conduct * I agree to follow this project's Code of Conduct
0
Certain svg attributes are camelcased, such as `viewBox`. However, `[viewBox]` would be recognized by browsers as `[viewbox]` since it is not a standard SVG attribute, and so the important camelcasing information is lost. There should be a convention in Angular 2 for supporting bindings to SVG attributes.
**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 _Note: Related to#13614 and #13853_ Although arguably a duplicate, I filed this separate because it could be easily fixed by changing the signature to unblock unit tests separate from the underlying issue. Also, I believe this shows that the unifying issue is ES6 implementation. **Current behavior** ES6 distributions will result in certain syntax of anonymous functions to not have a prototype. The JIT compiler here uses a signature for useFactory that fails all unit tests here. **Expected behavior** First, to unblock ES6 unit tests. Second, to handle factories without prototypes. **Minimal reproduction of the problem with instructions** Plunk here Shows failure in es6. Change everything to es5 distributions and it works. * **Angular version:** 4.0.0-rc.1 * **Browser:** [Chrome@latest, edge] * **Language:** [ES6]
0
I think it would be helpful UX wise to see an incremental hot-reload build version bottom right of the app when you are hot-reloading. Many times you are hot-reloading non-ui stuff and looking at your device and you dont quite sure if the app hot-reloaded and have to look back at the IDE to see if the hot-reload message is updated in the console
Hello there I wanted to know if you're interested into a barcode scanner plugin for flutter. I'm working on one and as it will use most of the camera plugin will be nice to be able either to merge it a make it an official plugin or have a way to extends the camera plugin from an external plugin instead of duplicate everything ^^ What do you think ?
0
**Problem Description** I faced an issue when upgrading my elasticsearch 2.3.3 to elasticsearch 5.1.1 by upgrading from apt repository. When elasticsearch 5.1.1 was upgraded and I tried to start it, Elasticsearch did not start but in the STDOUT it never gave a failure. Instead, in STDOUT it gave an OK message wwhich signifies that elasticsearch has started succesfully. **Problem Issue Identification** After debugging it, I found the issue causing it by traversing through the /var/log/elasticsearch/elasticsearch.log file. The issue was caused by using elasticsearch-head plugin which was installed in ES-2.3.3 but as it is not supported in ES-5.1.1, elasticsearch failed to start. **Actual Behaviour** As an end-user I think we should not get an OK message if elasticsearch fails to start and it should be mentioned in the Installation of Elasticsearch documentation (https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html). **Note: This issue will occur for every plugins which were earlier supported prior to ES-5.0.x version.** Steps To Reproduce: 1. Install any ES version prior to ES-5.x.x 2. Install Elasticsearch-head in previous ES version (Validate its installation as it will be listed under $ES_HOME/plugins directory) 3. Upgrade ES to ES-5.1.1 4. Add ES as a service 5. Run ES as a service. You will get following STDOUT console on command line:- root@ubuntu:/home/yuvraj# sudo service elasticsearch start Starting Elasticsearch Server [2016-12-11T12:07:50,609][WARN ][o.e.c.l.LogConfigurator ] ignoring unsupported logging configuration file [/etc/elasticsearch/logging.yml], logging is configured via [/etc/elasticsearch/log4j2.properties] [ OK ] Please find required details as mentioned below - **Elasticsearch version** : Elasticsearch-5.1.1 **Plugins installed** : elasticsearch-head **JVM version** : Oracle java version "1.8.0_91" **OS version** : Ubuntu 14.04 **Provide logs (if relevant)** : elasticsearch-error-captured.txt
In the current implementation of zen discovery the cluster state broadcasting by the master does not scale too well as every change in the cluster state results in the cluster state being sent to every single node by the master. This can lead to quite some traffic, in an cluster with 500 nodes and 15000 shards, even when the cluster state by itself has only 1MB, the master node will sent a total of 500MB per cluster state update. So it should be possible to only send a diff of the changes to the nodes instead of the full cluster state. In case the nodes recognize that they missed an update, they could query the master node to resend the full cluster state to them. Another possibility would be a tiered distribution of the state, where the master node does not directly send the updates to every single node, but through other nodes which forward the state to the other nodes in the cluster. A gossipping protocol could here be used. If the clusterstate does not need to be distributed in realtime, one could also throttle the propagation of the state, so that when changes come in rapid succession, the changes can be merged before the state has been sent out to every node. Any ideas?
0
http://flask.pocoo.org/docs/flask-docs.pdf and http://flask.pocoo.org/docs/flask-docs.zip return 404 errors.
Hi, I was following the tutorial on Flask at this. And I tried to return json data so I use `jsonify` I found out that jsonify use `dict()` to convert params into a dict. But this will remove items with duplicate key. In my case, I querried the data using this query `cur = g.db.execute('SELECT title, text from entries order by id desc')` The data was: `[(u'Nope', u'hi, this is anoooother things'), (u'Nope', u'This is another'), (u'Hi', u'This is a sample entry')]` So the jsonify just return: `{ "Hi": "This is a sample entry", "Nope": "This is another" }` The code work correctly, but I don't know if this is intended or not?
0
Date.toLocaleString always returns in the same format, no matter what options are given to it. I'm sure this isn't intentional, but it bugs me a bit, and i couldn't find another issue on the subject
As seen in #1952 / #1636 ICU needs to be added in Deno build. Switching this flag to true maybe: https://github.com/denoland/deno/blob/master/.gn#L50 ? ref: https://v8.dev/docs/i18n
1
Hi, I am trying to install packages for Atom but almost every single time NPM throws an error. Look below. Thank you very much. Installing “autocomplete-clang@0.6.0” failed.Hide output… npm http GET https://registry.npmjs.org/atom-space-pen-views npm http GET https://registry.npmjs.org/underscore-plus npm ERR! not found: git npm ERR! npm ERR! Failed using git. npm ERR! This is most likely not a problem with npm itself. npm ERR! Please check if you have git installed and in your PATH. npm ERR! System Windows_NT 6.2.9200 npm ERR! command "c:\Users\Rafi\AppData\Local\atom\app-0.174.0\resources\app\apm\node_modules\atom- package-manager\bin\node.exe" "c:\Users\Rafi\AppData\Local\atom\app-0.174.0\resources\app\apm\node_modules\atom- package-manager\node_modules\npm\bin\npm-cli.js" "--globalconfig" "c:\Users\Rafi\AppData\Local\atom\app-0.174.0\resources\app\apm\node_modules\atom- package-manager.apmrc" "--userconfig" "c:\Users\Rafi.atom.apmrc" "install" "C:\Users\Rafi\AppData\Local\Temp\d-115015-992-1xp8dy5\package.tgz" "-- target=0.20.0" "--arch=ia32" "--msvs_version=2013" npm ERR! cwd C:\Users\Rafi\AppData\Local\Temp\apm-install- dir-115015-992-16a707u npm ERR! node -v v0.10.35 npm ERR! npm -v 1.4.4 npm ERR! code ENOGIT npm http 304 https://registry.npmjs.org/atom-space-pen-views npm http 304 https://registry.npmjs.org/underscore-plus npm
Many beginners to apm are flummoxed when they get errors because git is not available. See https://discuss.atom.io/t/sync-settings-wont-install/13701 as one example. APM should check and see if git works and install git if it doesn't. Git is a real dependency and should be treated as such.
1
`/_cat/indices` currently allows returning an explicit set of headers in its output, such as health, status, index name, shard counts, etc. I'd love to see this endpoint support an additional header parameter: `?h=creation_date`. This would be useful for enumerating indices by age.
Would be nice to provide an additional option for admins to return index.creation_date (from the index metadata) for the indices that are returned from the _cat/indices api.
1
Please: * Check for duplicate issues. * Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this: The following test case has worked for a while, but has recently started failing. It seems that there isn't a constant handler for `complex64` anymore? The following reproducer demonstrates the issue, but replacing `out_dtype.type(1j)` with `1j` fixes the problem. This works on jax 0.2.26 and jaxlib 0.1.75, but fails on jax 0.2.27 and 0.1.76. import numpy as np import jax import jax.numpy as jnp @jax.jit def phase_delay(lm, uvw, frequency): out_dtype = jnp.result_type(lm, uvw, frequency, np.complex64) one = lm.dtype.type(1.0) neg_two_pi_over_c = lm.dtype.type(-2*np.pi/3e8) l = lm[:, 0, None, None] # noqa m = lm[:, 1, None, None] u = uvw[None, :, 0, None] v = uvw[None, :, 1, None] w = uvw[None, :, 2, None] n = jnp.sqrt(one - l**2 - m**2) - one real_phase = (neg_two_pi_over_c * (l * u + m * v + n * w) * frequency[None, None, :]) # replacing out_dtype.type(1j) with 1j fixes this problem return jnp.exp(out_dtype.type(1j)*real_phase) if __name__ == "__main__": uvw = np.random.random(size=(100, 3)).astype(np.float32) lm = np.random.random(size=(10, 2)).astype(np.float32)*0.001 frequency = np.linspace(.856e9, .856e9*2, 64).astype(np.float32) complex_phase = phase_delay(lm, uvw, frequency) * #9390 $ python test_complex_constant_fail.py WARNING:absl:No GPU/TPU found, falling back to CPU. (Set TF_CPP_MIN_LOG_LEVEL=0 and rerun for more info.) Traceback (most recent call last): File "test_complex_constant_fail.py", line 32, in <module> complex_phase = phase_delay(lm, uvw, frequency) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/traceback_util.py", line 165, in reraise_with_filtered_traceback return fun(*args, **kwargs) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/api.py", line 429, in cache_miss donated_invars=donated_invars, inline=inline) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py", line 1671, in bind return call_bind(self, fun, *args, **params) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py", line 1683, in call_bind outs = top_trace.process_call(primitive, fun, tracers, params) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py", line 596, in process_call return primitive.impl(f, *tracers, **params) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py", line 143, in _xla_call_impl *unsafe_map(arg_spec, args)) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/linear_util.py", line 272, in memoized_fun ans = call(fun, *args) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py", line 170, in _xla_callable_uncached *arg_specs).compile().unsafe_call File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/profiler.py", line 206, in wrapper return func(*args, **kwargs) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py", line 260, in lower_xla_callable donated_invars) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 403, in lower_jaxpr_to_module input_output_aliases=input_output_aliases) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 541, in lower_jaxpr_to_fun *args) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 606, in jaxpr_subcomp in_nodes = map(read, eqn.invars) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/util.py", line 44, in safe_map return list(map(f, *args)) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 583, in read return ir_constants(v.val, canonicalize_types=True) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 171, in ir_constants raise TypeError("No constant handler for type: {}".format(type(val))) jax._src.traceback_util.UnfilteredStackTrace: TypeError: No constant handler for type: <class 'numpy.complex64'> The stack trace below excludes JAX-internal frames. The preceding is the original exception that occurred, unmodified. -------------------- The above exception was the direct cause of the following exception: Traceback (most recent call last): File "test_complex_constant_fail.py", line 32, in <module> complex_phase = phase_delay(lm, uvw, frequency) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 171, in ir_constants raise TypeError("No constant handler for type: {}".format(type(val))) TypeError: No constant handler for type: <class 'numpy.complex64'>
Please: * Check for duplicate issues. * Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this: 1. Install jax v0.3.5 and CUDA-enabled jaxlib v0.3.0. 2. Run the test suite. 3. Observe the `cuSparseTest.test_coo_sorted_indices_gpu_lowerings` test to fail: =================================== FAILURES =================================== ______________ cuSparseTest.test_coo_sorted_indices_gpu_lowerings ______________ [gw0] linux -- Python 3.9.11 /nix/store/bvzpppawf2naqv3qhxqv66jxaq3iaxyj-python3-3.9.11/bin/python3.9 self = <sparse_test.cuSparseTest testMethod=test_coo_sorted_indices_gpu_lowerings> @unittest.skipIf(not GPU_LOWERING_ENABLED, "test requires cusparse/hipsparse") @jtu.skip_on_devices("rocm") # TODO(rocm): see SWDEV-328107 def test_coo_sorted_indices_gpu_lowerings(self): dtype = jnp.float32 mat = jnp.arange(12, dtype=dtype).reshape(4, 3) mat_rows_sorted = sparse.COO.fromdense(mat) self.assertTrue(mat_rows_sorted._rows_sorted) self.assertFalse(mat_rows_sorted._cols_sorted) mat_cols_sorted = sparse.COO.fromdense(mat.T).T self.assertFalse(mat_cols_sorted._rows_sorted) self.assertTrue(mat_cols_sorted._cols_sorted) mat_unsorted = sparse.COO(mat_rows_sorted._bufs, shape=mat_rows_sorted.shape) self.assertFalse(mat_unsorted._rows_sorted) self.assertFalse(mat_unsorted._cols_sorted) self.assertArraysEqual(mat, mat_rows_sorted._sort_rows().todense()) self.assertArraysEqual(mat, mat_cols_sorted._sort_rows().todense()) self.assertArraysEqual(mat, mat_unsorted._sort_rows().todense()) todense = jit(sparse.coo_todense) with self.assertNoWarnings(): dense_rows_sorted = todense(mat_rows_sorted) dense_cols_sorted = todense(mat_cols_sorted) dense_unsorted = todense(mat_unsorted._sort_rows()) with self.assertWarnsRegex(sparse.CuSparseEfficiencyWarning, "coo_todense GPU lowering requires matrices with sorted rows.*"): > dense_unsorted_fallback = todense(mat_unsorted) E AssertionError: CuSparseEfficiencyWarning not triggered tests/sparse_test.py:473: AssertionError =========================== short test summary info ============================ FAILED tests/sparse_test.py::cuSparseTest::test_coo_sorted_indices_gpu_lowerings ========== 1 failed, 14145 passed, 1487 skipped in 165.49s (0:02:45) =========== error: builder for '/nix/store/bk64c49429aj73wkz4dijlf15h0l2v9r-python3.9-jax-0.3.5.drv' failed with exit code 1; last 10 log lines: > dense_cols_sorted = todense(mat_cols_sorted) > dense_unsorted = todense(mat_unsorted._sort_rows()) > with self.assertWarnsRegex(sparse.CuSparseEfficiencyWarning, "coo_todense GPU lowering requires matrices with sorted rows.*"): > > dense_unsorted_fallback = todense(mat_unsorted) > E AssertionError: CuSparseEfficiencyWarning not triggered > > tests/sparse_test.py:473: AssertionError > =========================== short test summary info ============================ > FAILED tests/sparse_test.py::cuSparseTest::test_coo_sorted_indices_gpu_lowerings > ========== 1 failed, 14145 passed, 1487 skipped in 165.49s (0:02:45) =========== * If applicable, include full error messages/tracebacks. Why isn't this test skipped when running on a machine without access to a GPU?
0
_Please make sure that this is a documentation issue. As per ourGitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:doc_template_ **System information** * TensorFlow version: TensorFlow Core 1.13 * Doc Link: https://www.tensorflow.org/api_docs/python/tf/test **Describe the documentation issue** The link pointing to the testing guide is broken. broken link - https://tensorflow.org/api_guides/python/test A snapshot of the broken link, working as of 22nd Feb 2019 **We welcome contributions by users. Will you be able to update submit a PR (use thedoc style guide) to fix the doc Issue?**
This is a feature request. As far as I know, all three of them currently do not have GPU ops. It seems that if we can at least get a GPU implementation of `tf.unique` for integers, then the user can make `tf.where` and `tf.dynamic_partition` manually. For those of us who are trying to build models that want to mess around with indices rather frequently, this would be incredibly helpful.
0
I have a Rails project hosted on a local "server" in my office. The "server" happens to be a laptop, so if/when it goes to sleep, the file share disappears from my development machine. When I remount the share, the tree-view sidebar in Atom shows only the top project folder, but not the sub files/folders. When I click the disclosure button to collapse the tree, and then click it again to expand, the file structure reappears for a split second, then the main Atom window turns blank white and I get this error panel: ![screen shot 2015-06-27 at 10 21 23 pm](https://cloud.githubusercontent.com/assets/747085/8395008/0cab4b74-1d1b-11e5-8c1b-6171f8faed0a.png) Clicking on `Reload`, or `Keep It Open` usually results in the editor being unstable, or crashing completely. The following log is generated in `~/Library/Logs/DiagnosticReports/Atom Helper...` Process: Atom Helper [48309] Path: /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper Identifier: com.github.atom.helper Version: 1.0.0 (1.0.0) Code Type: X86-64 (Native) Parent Process: Atom [47533] Responsible: Atom [47533] User ID: 501 Date/Time: 2015-06-27 22:20:44.207 -0500 OS Version: Mac OS X 10.10.3 (14D136) Report Version: 11 Anonymous UUID: DFB824F2-E26D-0DB0-1AF9-AF40A4FB7491 Sleep/Wake UUID: F38D8DE6-103F-48E6-8BC4-101FD490D457 Time Awake Since Boot: 670000 seconds Time Since Wake: 460000 seconds Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: 0x000000000000000a, 0x00000001117f1340 VM Regions Near 0x1117f1340: mapped file 00000001117ef000-00000001117f1000 [ 8K] r--/r-x SM=ALI Object_id=c8eebe09 --> mapped file 00000001117f1000-00000001117f8000 [ 28K] r--/r-x SM=ALI Object_id=c96f5949 mapped file 00000001117f8000-0000000111820000 [ 160K] r--/r-x SM=ALI Object_id=a9855a39 Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread 0 git.node 0x0000000111359957 pack_entry_find_offset + 126 1 git.node 0x000000011135a426 git_pack_entry_find + 135 2 git.node 0x0000000111354bcf pack_entry_find + 54 3 git.node 0x0000000111354e30 pack_backend__read_internal + 54 4 git.node 0x0000000111354570 pack_backend__read + 34 5 git.node 0x0000000111351d52 git_odb_read + 169 6 git.node 0x0000000111350393 git_object_lookup_prefix + 326 7 git.node 0x000000011131b757 Repository::GetBlob(v8::FunctionCallbackInfo<v8::Value> const&, git_repository*, git_blob*&) + 419 8 git.node 0x000000011131a492 Repository::GetLineDiffs(v8::FunctionCallbackInfo<v8::Value> const&) + 142 9 ??? 0x0000048f4bbb4c02 0 + 5013497400322 10 ??? 0x0000048f4c0ca426 0 + 5013502731302 11 ??? 0x0000048f4ca4e1ec 0 + 5013512708588 12 ??? 0x0000048f4b23a806 0 + 5013487462406 13 ??? 0x0000048f4b66acd9 0 + 5013491854553 14 ??? 0x0000048f4c7f927a 0 + 5013510263418 15 ??? 0x0000048f4b2377c0 0 + 5013487450048 16 ??? 0x0000048f4b232271 0 + 5013487428209 17 libchromiumcontent.dylib 0x0000000104f85c51 v8::Testing::DeoptimizeAll() + 1177505 18 libchromiumcontent.dylib 0x0000000104e5e701 v8::Function::Call(v8::Handle<v8::Value>, int, v8::Handle<v8::Value>*) + 193 19 com.github.AtomFramework 0x0000000103080019 node::MakeCallback(node::Environment*, v8::Handle<v8::Value>, v8::Handle<v8::Function>, int, v8::Handle<v8::Value>*) + 639 20 com.github.AtomFramework 0x0000000103086d79 node::CheckImmediate(uv_check_s*) + 98 21 com.github.AtomFramework 0x00000001031bb719 uv__run_check + 33 22 com.github.AtomFramework 0x00000001031b7895 uv_run + 293 23 com.github.AtomFramework 0x000000010304c7a7 atom::NodeBindings::UvRunOnce() + 87 24 libchromiumcontent.dylib 0x00000001038aa7f8 base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&) + 248 25 libchromiumcontent.dylib 0x00000001038e80f8 base::MessageLoop::RunTask(base::PendingTask const&) + 552 26 libchromiumcontent.dylib 0x00000001038e866c base::MessageLoop::DoWork() + 668 27 libchromiumcontent.dylib 0x0000000103894501 base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2881 28 com.apple.CoreFoundation 0x00007fff915a6a01 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 29 com.apple.CoreFoundation 0x00007fff91598b8d __CFRunLoopDoSources0 + 269 30 com.apple.CoreFoundation 0x00007fff915981bf __CFRunLoopRun + 927 31 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 32 com.apple.Foundation 0x00007fff9053ea59 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 33 libchromiumcontent.dylib 0x0000000103894a14 base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 100 34 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 35 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 36 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 37 libchromiumcontent.dylib 0x0000000106277937 content::RendererBlinkPlatformImpl::MockBatteryStatusChangedForTesting(blink::WebBatteryStatus const&) + 6183 38 libchromiumcontent.dylib 0x0000000103889779 content::ContentMainRunner::Create() + 1849 39 libchromiumcontent.dylib 0x0000000103888d56 content::ContentMain(content::ContentMainParams const&) + 54 40 com.github.AtomFramework 0x0000000102ffe792 AtomMain + 82 41 libdyld.dylib 0x00007fff863f65c9 start + 1 Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff8c611232 kevent64 + 10 1 libdispatch.dylib 0x00007fff8c263a6a _dispatch_mgr_thread + 52 Thread 2:: Chrome_ChildIOThread 0 libsystem_kernel.dylib 0x00007fff8c61121a kevent + 10 1 libchromiumcontent.dylib 0x000000010392fdbd logging::VlogInfo::GetMaxVlogLevel() const + 6109 2 libchromiumcontent.dylib 0x00000001038938d0 base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 432 3 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 4 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 5 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 6 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 7 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 3:: OptimizingCompi 0 libsystem_kernel.dylib 0x00007fff8c60b51a semaphore_wait_trap + 10 1 libchromiumcontent.dylib 0x0000000105280a37 v8::Unlocker::~Unlocker() + 542167 2 libchromiumcontent.dylib 0x000000010514a555 v8::Testing::DeoptimizeAll() + 3031205 3 libchromiumcontent.dylib 0x0000000105282037 v8::Unlocker::~Unlocker() + 547799 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 4:: Compositor 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff91598eb4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff9159837b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 5 libchromiumcontent.dylib 0x000000010389478f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79 6 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 7 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 8 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 9 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 10 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 11 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 12 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 13 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff8c60b51a semaphore_wait_trap + 10 1 com.github.AtomFramework 0x00000001031c0076 uv_sem_wait + 16 2 com.github.AtomFramework 0x000000010304c715 atom::NodeBindings::EmbedThreadRunner(void*) + 35 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 6:: handle-watcher-thread 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x0000000104b31368 mojo::system::Waiter::Wait(unsigned long long, unsigned int*) + 216 2 libchromiumcontent.dylib 0x0000000104b212eb mojo::system::Core::WaitManyInternal(unsigned int const*, unsigned int const*, unsigned int, unsigned long long, unsigned int*, mojo::system::HandleSignalsState*) + 491 3 libchromiumcontent.dylib 0x0000000104b215d6 mojo::system::Core::WaitMany(mojo::system::UserPointer<unsigned int const>, mojo::system::UserPointer<unsigned int const>, unsigned int, unsigned long long, mojo::system::UserPointer<unsigned int>, mojo::system::UserPointer<MojoHandleSignalsState>) + 358 4 libchromiumcontent.dylib 0x0000000104b185f2 MojoWaitMany + 82 5 libchromiumcontent.dylib 0x0000000104b15986 mojo::common::MessagePumpMojo::DoInternalWork(mojo::common::MessagePumpMojo::RunState const&, bool) + 262 6 libchromiumcontent.dylib 0x0000000104b156f3 mojo::common::MessagePumpMojo::DoRunLoop(mojo::common::MessagePumpMojo::RunState*, base::MessagePump::Delegate*) + 51 7 libchromiumcontent.dylib 0x0000000104b1567a mojo::common::MessagePumpMojo::Run(base::MessagePump::Delegate*) + 266 8 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 9 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 10 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 11 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 12 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 13 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 14 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 7:: HTMLParserThread 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff91598eb4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff9159837b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 5 libchromiumcontent.dylib 0x000000010389478f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79 6 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 7 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 8 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 9 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 10 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 11 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 12 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 13 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 8:: CompositorTileWorker1/25091 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010468fd69 cc::TaskGraphRunner::Run() + 73 2 libchromiumcontent.dylib 0x000000010391f913 base::DelegateSimpleThread::Run() + 19 3 libchromiumcontent.dylib 0x000000010391f608 base::SimpleThread::ThreadMain() + 136 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.github.AtomFramework 0x00000001031c556f google_breakpad::ExceptionHandler::WaitForMessage(void*) + 165 3 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff8c61121a kevent + 10 1 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 2 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 3 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 4 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 11: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 12: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 14: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 15:: WorkerPool/6415 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010391517b base::ConditionVariable::TimedWait(base::TimeDelta const&) + 91 2 libchromiumcontent.dylib 0x0000000103923b5c base::PosixDynamicThreadPool::WaitForTask() + 188 3 libchromiumcontent.dylib 0x00000001039240c6 base::PosixDynamicThreadPool::WaitForTask() + 1574 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 16:: WorkerPool/30479 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010391517b base::ConditionVariable::TimedWait(base::TimeDelta const&) + 91 2 libchromiumcontent.dylib 0x0000000103923b5c base::PosixDynamicThreadPool::WaitForTask() + 188 3 libchromiumcontent.dylib 0x00000001039240c6 base::PosixDynamicThreadPool::WaitForTask() + 1574 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00000001117f1000 rbx: 0x00000001117f1008 rcx: 0x0000000000000002 rdx: 0x0000000000000000 rdi: 0x00000001117f1408 rsi: 0x00000000000000ce rbp: 0x00007fff5cc07950 rsp: 0x00007fff5cc07900 r8: 0x0000000000000028 r9: 0x0000000000000000 r10: 0x0000000000000028 r11: 0x00007fe06ac00000 r12: 0x00007fe06ae69fb0 r13: 0x00007fe06fdaf314 r14: 0x00007fff5cc07970 r15: 0x00007fff72d59070 rip: 0x0000000111359957 rfl: 0x0000000000010202 cr2: 0x00000001117f1340 Logical CPU: 2 Error Code: 0x00000004 Trap Number: 14 Binary Images: 0x102ff6000 - 0x102ff6fff +com.github.atom.helper (1.0.0 - 1.0.0) <01640C31-CD77-3CDE-A785-A8A2F391F75E> /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper 0x102ffd000 - 0x10338dfff +com.github.AtomFramework (0) <D4490C5B-0890-3CB3-AB4D-24F22D866D92> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Atom Framework 0x103738000 - 0x10374dff7 +com.github.Squirrel (1.0 - 1) <85C10AB5-0538-3E6C-A73B-9D4E55378A5B> /Applications/Atom.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x10376c000 - 0x1037cfff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Applications/Atom.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x10384a000 - 0x10385efff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Applications/Atom.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x10387a000 - 0x107322fbf +libchromiumcontent.dylib (0) <D7BF0690-764D-3C55-AC00-9F57EA593B7A> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Libraries/libchromiumcontent.dylib 0x107fb7000 - 0x107feefff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4BBCD304-C28F-3C03-AEB8-5E3D5D030602> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x10c5a1000 - 0x10c7b4fff +ffmpegsumo.so (0) <F3883E27-9E50-3415-8006-2F69FE96C369> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Libraries/ffmpegsumo.so 0x10e865000 - 0x10e868ff7 +pathwatcher.node (???) <17CE802B-A0D9-3CB8-B03F-5B7B6F5DEF27> /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/pathwatcher/build/Release/pathwatcher.node 0x10e86f000 - 0x10e870fff +keyboard-layout-observer.node (???) <E704D6F9-ADC9-32EB-8464-C2A809060BC4> /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/atom-keymap/node_modules/keyboard-layout/build/Release/keyboard-layout-observer.node 0x10fb22000 - 0x10fb23fff ATSHI.dylib (375.2) <A3AAB235-5FAB-3204-B1B2-7E9E56C92B37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 0x1101c2000 - 0x110216fff +onig_scanner.node (???) <17D0BC35-EFF9-3933-BBFB-D0ADFDCD7675> /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/oniguruma/build/Release/onig_scanner.node 0x111317000 - 0x1113baff7 +git.node (???) <A2BF3FFC-078C-3732-89CF-9A4EC2CF9386> /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/git-utils/build/Release/git.node 0x111853000 - 0x111854ff7 +scrollbar-style-observer.node (???) <18A1590B-F31F-371D-9F41-DCA7575463AC> /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/scrollbar-style/build/Release/scrollbar-style-observer.node 0x7fff60f33000 - 0x7fff60f69837 dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld 0x7fff81e3b000 - 0x7fff820b9fff com.apple.RawCamera.bundle (6.04 - 791) <B6139D16-972F-3BC4-A61B-2F226F7666DB> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff820ba000 - 0x7fff8210bfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <450293F7-DAE7-3DD0-8F7C-71FC2FD72627> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff8214d000 - 0x7fff82172fff libPng.dylib (1237) <F5652650-87ED-3D53-9E59-A897DFA41DD0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff82173000 - 0x7fff82177fff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib 0x7fff821dc000 - 0x7fff823e9ff3 com.apple.CFNetwork (720.3.13 - 720.3.13) <69E15385-5784-3912-88F6-03B16F1C1A5C> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff824df000 - 0x7fff824e8fff libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib 0x7fff825ce000 - 0x7fff825e4ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib 0x7fff82bd6000 - 0x7fff82c06fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib 0x7fff82c96000 - 0x7fff82c9dfff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff83527000 - 0x7fff8352bfff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib 0x7fff836bc000 - 0x7fff836c0fff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff836c1000 - 0x7fff836c6ffb libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib 0x7fff836c7000 - 0x7fff83713ff7 libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib 0x7fff83714000 - 0x7fff83738ff7 com.apple.Sharing (328.16 - 328.16) <F96C7040-5FAF-3BC6-AE1E-5BF9CBE786C4> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff8379f000 - 0x7fff8379ffff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff8380e000 - 0x7fff8380efff com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff8384e000 - 0x7fff838c2ffb com.apple.securityfoundation (6.0 - 55126) <42589E18-D38C-3E25-B638-6E29740C224C> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff838cf000 - 0x7fff83941fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff8398a000 - 0x7fff8398bff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff8398c000 - 0x7fff8398dff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib 0x7fff83a34000 - 0x7fff83a4bff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff83a4c000 - 0x7fff83a87fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff83a8a000 - 0x7fff83b7cfff libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib 0x7fff83b7d000 - 0x7fff83b8eff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib 0x7fff83bf6000 - 0x7fff83c13fff com.apple.MultitouchSupport.framework (263.9.1 - 263.9.1) <6ABD3AE2-DF6A-3AB2-994B-9C0FB42CE2B7> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff83c14000 - 0x7fff83c1cff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff83c53000 - 0x7fff83d65ff7 libvDSP.dylib (516) <151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff83d66000 - 0x7fff83f6046f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib 0x7fff83f61000 - 0x7fff83f69fff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib 0x7fff83f6a000 - 0x7fff83f6afff com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff83f9e000 - 0x7fff83faffff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib 0x7fff84044000 - 0x7fff841d2fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff84383000 - 0x7fff844c7ff7 com.apple.QTKit (7.7.3 - 2890) <EA6DCA1E-CBAB-328F-B230-1F9B9104E110> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff845b5000 - 0x7fff845e4ff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <B93D4775-149C-3698-B38C-9C50673D455C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff845ee000 - 0x7fff84655ff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff84681000 - 0x7fff84741ff7 com.apple.backup.framework (1.6.4 - 1.6.4) <A67CE7D7-AAE4-3AC0-86B7-EAF403853D09> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff84742000 - 0x7fff84744fff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib 0x7fff84758000 - 0x7fff847e1ff7 com.apple.CoreSymbolication (3.1 - 57020.1) <85707039-0C8A-3409-B0B5-153431CC1841> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff847e2000 - 0x7fff847e8fff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib 0x7fff847e9000 - 0x7fff84814fff com.apple.DictionaryServices (1.2 - 229) <F03DFAC6-6285-3176-9C6D-7CC50F8CD52A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff84815000 - 0x7fff8481bfff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff84a7b000 - 0x7fff84a7dfff com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff84a7e000 - 0x7fff84a8bff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff84a8c000 - 0x7fff84b23fff com.apple.CoreMedia (1.0 - 1562.235) <21EB4AB6-2DBC-326B-B17E-E88BAA9E9200> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff84b24000 - 0x7fff84b37ff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff84b84000 - 0x7fff84c22fff com.apple.Metadata (10.7.0 - 917.35) <8CBD1D32-4F4B-3F9A-AC65-76F2B5376FBF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff84cca000 - 0x7fff84d38ffb com.apple.Heimdal (4.0 - 2.0) <7697A837-98B8-3BDB-A7D2-8ED4C9ABC510> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff84db4000 - 0x7fff84e05ff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <FED294D2-13CB-381D-98D0-BDA909AACA32> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff84e06000 - 0x7fff84e6dffb com.apple.datadetectorscore (6.0 - 396.1.1) <9B0B3198-DDBE-36C0-8BA9-3EC89C725282> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff84e6e000 - 0x7fff84f9efff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff84fc6000 - 0x7fff84fc9fff com.apple.xpc.ServiceManagement (1.0 - 1) <9E025823-660A-30C5-A568-223BD595B6F7> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff84fca000 - 0x7fff84fcdfff com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff84fce000 - 0x7fff85018ff7 com.apple.HIServices (1.22 - 522.1) <E8BD41E4-7747-3CAF-807A-5CA9AD16B525> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff850f7000 - 0x7fff850f7ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib 0x7fff851b4000 - 0x7fff852a4fef libJP2.dylib (1237) <A24C99BF-2360-343F-BCA1-F044E78EA0DE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff852a5000 - 0x7fff852aaff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib 0x7fff852df000 - 0x7fff852e4fff libsystem_stats.dylib (163.20.16) <FBC3F80F-A0FB-3BD6-9A7E-800DE45F092E> /usr/lib/system/libsystem_stats.dylib 0x7fff85530000 - 0x7fff85835ff3 com.apple.HIToolbox (2.1.1 - 758.7) <6711FAA9-904A-3B49-9665-FC8D13B93C42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff85f25000 - 0x7fff85f31ff7 com.apple.OpenDirectory (10.10 - 187) <1E07769D-68DE-3BF2-8E9E-A1E98BF70D1B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff85f45000 - 0x7fff85ff4fe7 libvMisc.dylib (516) <6739E390-46E7-3BFA-9B69-B278562326E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff85ff5000 - 0x7fff863ccfe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff863e7000 - 0x7fff863f2ff7 com.apple.CrashReporterSupport (10.10 - 631) <D87A64FA-64B1-3B23-BB43-ADE173C108C6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff863f3000 - 0x7fff863f6ff7 libdyld.dylib (353.2.1) <9EACCA38-291D-38CC-811F-7E9D1451E2D3> /usr/lib/system/libdyld.dylib 0x7fff86427000 - 0x7fff8646dff7 libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff8646e000 - 0x7fff86476fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib 0x7fff86477000 - 0x7fff86ff8ff7 com.apple.AppKit (6.9 - 1347.57) <B214D528-7D1C-39B2-BE36-821D417A0297> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff8701d000 - 0x7fff87028ff7 libkxld.dylib (2782.20.48) <28EF8328-E3E2-336A-974B-FB1BF119D55A> /usr/lib/system/libkxld.dylib 0x7fff8704d000 - 0x7fff8704dfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <9D749502-A228-3BF1-B52F-A182DEEB2C4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff871d1000 - 0x7fff8720cfff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff872c5000 - 0x7fff872e5fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff87683000 - 0x7fff879b6ff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib 0x7fff879fc000 - 0x7fff87c66ff7 com.apple.security (7.0 - 57031.20.26) <6568520A-587D-3167-BB79-60CE6FEADC64> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff87c67000 - 0x7fff87cf3ff7 libsystem_c.dylib (1044.10.1) <86FBED7A-F2C8-3591-AD6F-486DD57E6B6A> /usr/lib/system/libsystem_c.dylib 0x7fff88653000 - 0x7fff88658ff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib 0x7fff88659000 - 0x7fff88689fff com.apple.GSS (4.0 - 2.0) <A37BAF76-C262-3292-B82D-F004CAC5F333> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff8868a000 - 0x7fff8883aff3 com.apple.QuartzCore (1.10 - 361.18) <ACA61D8F-9535-3141-8FDD-AC3EF6BF0806> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff8883b000 - 0x7fff88888ff3 com.apple.CoreMediaIO (601.0 - 4760) <B2B71300-A863-30F8-8F00-B852CF843264> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff88889000 - 0x7fff88998ff3 com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff889d1000 - 0x7fff88a24ffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib 0x7fff88a25000 - 0x7fff88b86fff com.apple.avfoundation (2.0 - 889.210) <0CFF0D47-7C6B-388E-87BD-404F43A6B1E0> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff88b87000 - 0x7fff88b8bfff com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff88b8c000 - 0x7fff88b99fff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib 0x7fff88c2c000 - 0x7fff88c32ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib 0x7fff88c91000 - 0x7fff88c92ff3 libSystem.B.dylib (1213) <CCEC13A5-D0D9-31C5-B0B0-1C564B4A20A6> /usr/lib/libSystem.B.dylib 0x7fff88c93000 - 0x7fff88c93fff libOpenScriptingUtil.dylib (162.1) <E0605012-0DDB-3150-8FD0-699376FA3CD0> /usr/lib/libOpenScriptingUtil.dylib 0x7fff88cc4000 - 0x7fff88dfefff com.apple.ImageIO.framework (3.3.0 - 1237) <3C06213D-847A-3C7B-843E-6EC37113965D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff88e7d000 - 0x7fff88efeff7 com.apple.CoreUtils (1.1 - 110.1) <C98E1441-3FCB-3BC6-BB51-5380BD39EA88> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff88eff000 - 0x7fff88f19ff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib 0x7fff88f1a000 - 0x7fff88f1aff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib 0x7fff8906e000 - 0x7fff89097ffb libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib 0x7fff89098000 - 0x7fff890a7fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff891b0000 - 0x7fff895bdff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff895be000 - 0x7fff895c2fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff895e2000 - 0x7fff89631ff7 com.apple.opencl (2.4.2 - 2.4.2) <4A9574ED-15CF-3EBB-B4C0-D30F644D6C74> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff89632000 - 0x7fff8975aff7 com.apple.coreui (2.1 - 308.6) <DEA5D3E1-D333-302B-A6CF-7643BFDFAED0> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff8975b000 - 0x7fff897a1ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib 0x7fff8988a000 - 0x7fff89929e27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff8992a000 - 0x7fff8994bfff com.apple.framework.Apple80211 (10.3 - 1030.71.6) <D3862426-2586-3DF7-BA75-9A184FCD74C4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff8994c000 - 0x7fff89a92fef libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib 0x7fff89a93000 - 0x7fff89abffff libsandbox.1.dylib (358.20.5) <C84D0EA1-CE60-3328-A196-D55874BE83D1> /usr/lib/libsandbox.1.dylib 0x7fff89be8000 - 0x7fff89c15fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff89c91000 - 0x7fff89daaffb com.apple.CoreText (352.0 - 454.6) <D45790B0-E1A3-3C7D-8BA2-AB71D2CFA7FB> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff89dab000 - 0x7fff89db4ff3 com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff89db5000 - 0x7fff8a084ff3 com.apple.CoreImage (10.3.4) <C1AE8252-A95D-3BF4-83B8-BE85E979F2CB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff8a085000 - 0x7fff8a3a0fcf com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff8a3a1000 - 0x7fff8a3bcff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib 0x7fff8a563000 - 0x7fff8a579ff7 com.apple.CoreMediaAuthoring (2.2 - 951) <C3E7D4C1-400D-34FA-9FE1-8C68C03CE969> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff8a57a000 - 0x7fff8a57afff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff8a57e000 - 0x7fff8a5b6fff libsystem_network.dylib (412.20.3) <589A5F67-BE2A-3245-A181-0ECC9B53EB00> /usr/lib/system/libsystem_network.dylib 0x7fff8a5b7000 - 0x7fff8a5e7ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff8a65c000 - 0x7fff8a8dbff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff8a8dc000 - 0x7fff8a914fff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff8a9d0000 - 0x7fff8aaf4ff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff8aaf5000 - 0x7fff8acdaff7 libicucore.A.dylib (531.48) <3CD34752-B1F9-31D2-865D-B5B0F0BE3111> /usr/lib/libicucore.A.dylib 0x7fff8acdb000 - 0x7fff8ae0dff7 com.apple.MediaControlSender (2.0 - 215.18) <86E901A7-64C3-3D2C-BBD4-E385405831D3> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 0x7fff8ae0e000 - 0x7fff8ae10fff com.apple.SecCodeWrapper (4.0 - 238.20.2) <C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff8ae4b000 - 0x7fff8ae4dff7 com.apple.securityhi (9.0 - 55006) <5DB5773C-FC07-302C-98FE-4B80D88D481A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff8b794000 - 0x7fff8bbc4fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff8bcee000 - 0x7fff8bd49fe7 libTIFF.dylib (1237) <6C8BBCA3-C233-3941-ACF9-F06C5E6EE2E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff8be7f000 - 0x7fff8be80fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib 0x7fff8be81000 - 0x7fff8be84fff com.apple.IOSurface (97.4 - 97.4) <AE11CFBC-4D46-30F3-BEEC-4C8131079391> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8be85000 - 0x7fff8bf79fff libFontParser.dylib (134.2) <9F57B025-AB9C-31DD-9D54-2D7AB1298885> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8bfb0000 - 0x7fff8bfc9ff7 com.apple.CFOpenDirectory (10.10 - 187) <790ED527-EFD2-3EA6-8C97-A8C04E96EBA7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff8c072000 - 0x7fff8c1d9ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff8c1da000 - 0x7fff8c202fff libsystem_info.dylib (459.20.1) <AEB3FE62-4763-3050-8352-D6F9AF961AE6> /usr/lib/system/libsystem_info.dylib 0x7fff8c203000 - 0x7fff8c205fff libsystem_sandbox.dylib (358.20.5) <4CF77128-6BE0-3958-B646-707FA9CE61B2> /usr/lib/system/libsystem_sandbox.dylib 0x7fff8c213000 - 0x7fff8c254fff libGLU.dylib (11.1.2) <4C54F0D1-2ADC-38A0-92D1-F479E9B99355> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8c25f000 - 0x7fff8c289ff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib 0x7fff8c28a000 - 0x7fff8c2caff7 libGLImage.dylib (11.1.2) <260A4BF3-DC45-369C-A0CD-B667F9D17179> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff8c2f2000 - 0x7fff8c387ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff8c3b5000 - 0x7fff8c3cfff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib 0x7fff8c561000 - 0x7fff8c568ff7 libCGCMS.A.dylib (779.11) <5D33FF8C-AC74-3B7B-A602-4AA470FEAF79> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib 0x7fff8c575000 - 0x7fff8c5f9fff com.apple.PerformanceAnalysis (1.0 - 1) <599AED3E-B689-3C40-8B91-93AD36C97658> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff8c5fa000 - 0x7fff8c617fff libsystem_kernel.dylib (2782.20.48) <EAFD7BD0-0C30-3E7D-9528-F9916BA0167C> /usr/lib/system/libsystem_kernel.dylib 0x7fff8c760000 - 0x7fff8c761fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff8c762000 - 0x7fff8c769ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib 0x7fff8ca02000 - 0x7fff8ca04ff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib 0x7fff8ca05000 - 0x7fff8ca1aff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff8ca35000 - 0x7fff8ca43ff7 com.apple.opengl (11.1.2 - 11.1.2) <864B35BF-1E76-382B-8D5F-38C7282621E6> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff8ca76000 - 0x7fff8cb18fff com.apple.Bluetooth (4.3.4 - 4.3.4f4) <A1120885-F31B-3C13-9B0D-2589F391CC7A> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff8cb2b000 - 0x7fff8cb45ff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x7fff8cb46000 - 0x7fff8cb63ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib 0x7fff8cb64000 - 0x7fff8cb7cff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib 0x7fff8cb7d000 - 0x7fff8cbdcfff com.apple.AE (681.2 - 681.2) <181B3B06-2DC6-3E4D-B44A-2551C5E9CF6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff8cbfa000 - 0x7fff8cc34ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff8cc35000 - 0x7fff8ccb3fff com.apple.CoreServices.OSServices (640.4 - 640.4) <20121A5E-7AB5-3624-8CF0-3562F97C8A95> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff8dcbb000 - 0x7fff8dcbbfff com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8dcc8000 - 0x7fff8dcf3ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib 0x7fff8dcf4000 - 0x7fff8dd43ff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib 0x7fff8e25a000 - 0x7fff8e262ffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib 0x7fff8e263000 - 0x7fff8e28bfff libxpc.dylib (559.20.9) <D35D0DB2-D7BD-3BE4-8378-062BFE545E1D> /usr/lib/system/libxpc.dylib 0x7fff8e2b5000 - 0x7fff8e2b8ff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff8e335000 - 0x7fff8e351ff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib 0x7fff8e45f000 - 0x7fff8e461ffb libCGXType.A.dylib (779.11) <51607E77-F183-3CC2-A78C-238AFBDF6262> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff8e462000 - 0x7fff8e554ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib 0x7fff8e583000 - 0x7fff8e5bcfff com.apple.AirPlaySupport (2.0 - 215.18) <6AF8E973-3643-3FEE-AA8F-541B9F093EEE> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport 0x7fff8e5dc000 - 0x7fff8e5ddffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib 0x7fff8e5de000 - 0x7fff8e64fffb com.apple.ApplicationServices.ATS (360 - 375.2) <2338AF23-528F-359A-847F-8B04E49E2B84> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff8e7b8000 - 0x7fff8e80cfff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib 0x7fff8e80d000 - 0x7fff8e883fe7 libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib 0x7fff8e886000 - 0x7fff8e8b8ff7 libTrueTypeScaler.dylib (134.2) <8F72EF2F-0BC8-3BEC-8E1C-17F2C4480AE2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff8e8b9000 - 0x7fff8e94dfff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff8e99b000 - 0x7fff8e9bffef libJPEG.dylib (1237) <6DB10054-5C64-32FB-83FD-E102A8F73258> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff8e9c0000 - 0x7fff8e9c9ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib 0x7fff8ea1a000 - 0x7fff8ea20ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 0x7fff8eb25000 - 0x7fff8eb3effb com.apple.openscripting (1.4 - 162.1) <E6B42781-A556-355A-8A49-82A8D2B347FF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff8eb3f000 - 0x7fff8eb4fff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib 0x7fff8eb59000 - 0x7fff8ebb3ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff8ebb4000 - 0x7fff8ebbffff libGL.dylib (11.1.2) <BF99CC65-215A-3C7D-87D7-3F7EE6E9B3DD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8ec72000 - 0x7fff8ec73fff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib 0x7fff8ec74000 - 0x7fff8ef5bffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff8ef5f000 - 0x7fff8ef79ff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff8ef7a000 - 0x7fff8efa2fff libRIP.A.dylib (779.11) <88434DA0-B6B8-304A-9DC0-41D3947E8734> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff8efa3000 - 0x7fff8f01bff7 com.apple.SystemConfiguration (1.14 - 1.14) <06A8405D-53BA-30A9-BA8A-222099176091> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff8f01c000 - 0x7fff8f042fff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff8f043000 - 0x7fff8f06efff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib 0x7fff8f06f000 - 0x7fff8f55ffff com.apple.MediaToolbox (1.0 - 1562.235) <9813E9A6-5BD6-3E56-9D20-0023703D5096> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff8f560000 - 0x7fff8f56bfff libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib 0x7fff8f603000 - 0x7fff8f60afff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff8f60b000 - 0x7fff8f60bfff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8f61b000 - 0x7fff8f637fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff8f638000 - 0x7fff8f63afff libsystem_configuration.dylib (699.1.5) <20F3B077-179D-3CB0-A3C1-C8602D53B4DB> /usr/lib/system/libsystem_configuration.dylib 0x7fff8f63b000 - 0x7fff8f63fff7 libGIF.dylib (1237) <8A40FED5-FA90-3E76-A359-CD974C43A962> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff8f65a000 - 0x7fff8f665ff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <A5640275-E2A6-3856-95EF-5F0DC440B10C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff8f6e2000 - 0x7fff8f6f4ff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff8f6f5000 - 0x7fff8f706fff libsystem_coretls.dylib (35.20.2) <6084A531-2523-39F8-B030-811FA1A32FB5> /usr/lib/system/libsystem_coretls.dylib 0x7fff8f707000 - 0x7fff8f709fff libRadiance.dylib (1237) <9B048776-53BB-3947-8ECE-9DDA804C86B2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff8fc89000 - 0x7fff8fc94fff com.apple.AppSandbox (4.0 - 238.20.2) <BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff8fc95000 - 0x7fff8fc9dff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff8fd49000 - 0x7fff8fd4efff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff8fd4f000 - 0x7fff8fd58fff libGFXShared.dylib (11.1.2) <0BAF2EA8-3BC4-3BF4-ABB6-A6E0A1F3F6A5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8fd59000 - 0x7fff900c4fff com.apple.VideoToolbox (1.0 - 1562.235) <0E996B8C-BE1C-3749-ACCA-DACBC89AFABB> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff904a3000 - 0x7fff904adff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff904ae000 - 0x7fff907dffff com.apple.Foundation (6.9 - 1153.20) <F0FF3A5D-C5B7-34A1-9319-DE1EF928E58E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff907e9000 - 0x7fff90803fff com.apple.AppleVPAFramework (1.4.4 - 1.4.4) <5C37DBD3-EB91-3A58-BD2F-E0CD533DE467> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff90b23000 - 0x7fff9135ffe3 com.apple.CoreGraphics (1.600.0 - 779.11) <DC15AADD-387C-348E-84F0-1C8BAAB1B567> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff91360000 - 0x7fff9136dff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib 0x7fff9136e000 - 0x7fff91370fff libCVMSPluginSupport.dylib (11.1.2) <6EFEC4A6-2EAC-3C27-820E-C28BE71B9FCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff91374000 - 0x7fff91374ff7 liblaunch.dylib (559.20.9) <FA89A113-696E-3271-8FE1-A0D7324E8481> /usr/lib/system/liblaunch.dylib 0x7fff91375000 - 0x7fff9137dfff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib 0x7fff9137e000 - 0x7fff913eafff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <5E228544-77A9-3AA5-8355-E8F6626F50E7> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff913eb000 - 0x7fff9145afff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff9145b000 - 0x7fff91460ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff9149e000 - 0x7fff914ebff7 com.apple.print.framework.PrintCore (10.3 - 451.1) <DE992474-0841-38A1-B4F6-46D653E454D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff91526000 - 0x7fff918beff7 com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 79 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: 2256209 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=275.0M resident=170.9M(62%) swapped_out_or_unallocated=104.1M(38%) Writable regions: Total=482.3M written=228.5M(47%) resident=289.3M(60%) swapped_out=24K(0%) unallocated=193.1M(40%) REGION TYPE VIRTUAL =========== ======= ATS (font support) 32.0M ATS (font support) (reserved) 4K reserved VM address space (unallocated) Activity Tracing 2048K CG shared images 144K CoreServices 64K CoreUI image data 28K Dispatch continuations 16.0M Kernel Alloc Once 8K MALLOC 133.3M MALLOC (admin) 32K Mach message 4K Memory Tag 252 30.4M Memory Tag 255 641.7M Memory Tag 255 (reserved) 256K reserved VM address space (unallocated) STACK GUARD 56.1M Stack 52.4M VM_ALLOCATE 70.1M __DATA 20.5M __IMAGE 528K __LINKEDIT 85.4M __TEXT 189.6M __UNICODE 552K mapped file 434.7M shared memory 4K =========== ======= TOTAL 1.7G TOTAL, minus reserved VM space 1.7G
I have selected jquery.min.js (84Kb) in Tree View and Atom is hangs. But jquery.mobile.min.css (1 line 200Kb) does not cause hangs. Version: 0.188.0
0
### Expected results I want create a role only the given dashboard can be shown to him, but I can only limit his access on datasource. In another word, I want to create 2 or more different dashboards based on the same datasource, and a specified user can only see one of them. But I can't do that based on the existing security model. Is there any suggestions?
Make sure these boxes are checked before submitting your issue - thank you! * [ ok] I have checked the superset logs for python stacktraces and included it here as text if any * [ ok] I have reproduced the issue with at least the latest released version of superset * [ ok] I have checked the issue tracker for the same issue and I haven't found one similar Now dashboard permissions are based on database and datasource to control, I would like to control the permissions on the dashboard alone,like that: ![a](https://cloud.githubusercontent.com/assets/19641641/20999713/9099ebac- bd51-11e6-811c-a0c1a71ed213.png) ![b](https://cloud.githubusercontent.com/assets/19641641/20999716/922704f0-bd51-11e6-97a1-7505e523bf34.png) ### Superset version 14.1 ### Expected results succeed ### Actual results succeed ### Steps to reproduce New feature.
1
Hello team I have created a Mac app using electron framework (electron-packager) and embedded it within my another Mac app (non-electron). I have already added sandbox entitlement in my electron mac app. I'm trying to get our non-AppStore version of my main app through Apples notarization. It fails for the notarization process (https://help.apple.com/xcode/mac/current/#/dev88332a81e) because it missed the 'runtime' flag during codesign for the Helper App. Therefore I need to create a Mac app which : 1. is compatible with app store submission 2. can be signed as runtime (seems to be equal to hardened runtime : https://help.apple.com/xcode/mac/current/#/devf87a2ac8f) for non-AppStore submission and notarization. Help would be appreciated. Thanka Pooja
I have a question I want my application support mac os native share extension . how to do it
0
### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : no * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : Mac 10.13.4 * **TensorFlow installed from (source or binary)** : binary (tensorflow-1.8.0-cp36-cp36m-macosx_10_11_x86_64.whl) * **TensorFlow version (use command below)** : 1.8.0 * **Python version** : 3.6.4 * **Bazel version (if compiling from source)** : NA * **GCC/Compiler version (if compiling from source)** : NA * **CUDA/cuDNN version** : NA * **GPU model and memory** : NA * **Exact command to reproduce** : pip3 install tensorflow && python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)" ### Describe the problem I tried to install tensorflow and the module does not load. Same problem for all version up to 1.5.0 which then works fine. (with version 1.5.0) python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)" /Users/marco/coding/crypto/_python_env/_mac/nn/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`. from ._conv import register_converters as _register_converters v1.5.0-0-g37aa430d84 1.5.0 ### Source code / logs I run a verbose import as attached for the latest version (`python3 -v -m tensorflow 2&> verbose_import.txt`). verbose_import.txt
As announced in release notes, TensorFlow release binaries version 1.6 and higher are prebuilt with AVX instruction sets. This means on any CPU that do not have these instruction sets either CPU or GPU version of TF will fail to load with any of the following errors: * `ImportError: DLL load failed:` * A crash with return code 132 Our recommendation is to build TF from sources on these systems. ### System information * **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** : No * **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** : ubuntu/windows/macos * **TensorFlow installed from (source or binary)** : binary * **TensorFlow version (use command below)** : 1.6 and up * **Python version** : 2.7, 3.3, 3.4, 3.5, 3.6 and any newer * **Bazel version (if compiling from source)** : n/a * **GCC/Compiler version (if compiling from source)** : n/a * **CUDA/cuDNN version** : any * **GPU model and memory** : any * **Exact command to reproduce** : python -c "import tensorflow as tf"
1
Hi! I'm getting an initial blink while using ReactCSSTransitionGroup because the added element does not get the -enter class applied when it's attached to the DOM, even if it gets it immediately after. For what I can see, the ReactCSSTransitionGroupChild.componentWillEnter is queued and dispatched after the action that adds the element to the DOM, which causes this behavior. Is this a know issue? Wouldn't it make sense for the element to be added with the -enter class at the moment it's inserted? Thanks!
Hello there, I am playing with React transition I noticed that the **-enter** classe is added only after the element has been inserted into the dom. https://github.com/facebook/react/blob/master/src/addons/transitions/ReactTransitionableChild.js#L147-L150 I thought the active class was applied when the component was mounted into the dom. Here is a small demo: http://jsfiddle.net/437Us/1/ I am using componentWillUpdate to make sure the class is applied directly. If you remove it, and use the same transition mechanism on a more complex layout sometime you will see the page flashing into the screen before the transition starts
1
Would be nice to be able to open recent projects or window configurations instead of having to digging and adding a dir to a window every time I decide to close it and re open it later.
I would like to be able to find files or folders that I have recently opened in previous editing sessions. On Windows this is usually done under the File menu. For example: File > Recent Files > (displays a sub menu of top 10 most recently used files in descending order). File > Recent Files > > (top 10 most recent files) > Recent Folders > > (top 10 most recent folders)
1
ERROR: type should be string, got "\n\nhttps://s3.amazonaws.com/archive.travis-ci.org/jobs/35977365/log.txt\n\n"
Configurable, using labels to route traffic. From discussion: https://groups.google.com/d/msg/google- containers/frOLMyNl5U4/W5_DQUL933IJ > > I suppose, if we had some sort of dynamic router based on label queries, > you could make that work for your needs with a bit of configuration. I'm not > sure if there's really a need for that once DNS naming is set up, though. > > I think you're going to want to incorporate some sort of http/s router or at > least have a suggested means of configuring one. It seems to be one of the > most obvious use cases for Kubernetes. Like I said, I'm not sure this is needed if there's a good load balancer and DNS name resolution, but filing this for tracking the discussion.
0
**Migrated issue, originally created by Michael Bayer (@zzzeek)** right now functions like startswith() and endswith() rely upon an in-python string concatenation of "%" with the given value. this prevents the usage of bind parameters and other non-literal expressions. a better approach would be to move the string concatenation into the database layer, so that instead of producing: where somecol LIKE "%foo" we instead produce: where somecol LIKE '%' + 'foo' but not every database supports "+" as a concatenation operator. so a `ConcatenationClause` would be needed which each dialect can produce as it likes, such as oracle which would produce `CONCAT(x, y)` for example. * * * Attachments: py
**Migrated issue, originally created by Anonymous** Trying out `sqlalchemy` for the first time, I notice that autoloading the schema from my PostgresQL 8.1 database takes forever: loading a single table takes more than a minute! With a little investigation, I found that the query executed is SELECT table_constraints.constraint_name AS table_constraints_constraint_name, table_constraints.constraint_type AS table_constraints_constraint_type, table_constraints.table_name AS table_constraints_table_name, key_column_usage.table_schema AS key_column_usage_table_schema, key_column_usage.table_name AS key_column_usage_table_name, key_column_usage.column_name AS key_column_usage_column_name, key_column_usage.constraint_name AS key_column_usage_constraint_name, constraint_column_usage.table_schema AS constraint_column_usage_table_schema, constraint_column_usage.table_name AS constraint_column_usage_table_name, constraint_column_usage.column_name AS constraint_column_usage_column_name, constraint_column_usage.constraint_name AS constraint_column_usage_constraint_name FROM information_schema.table_constraints, information_schema.key_column_usage, information_schema.constraint_column_usage WHERE ((key_column_usage.constraint_name = constraint_column_usage.constraint_name AND constraint_column_usage.constraint_name = table_constraints.constraint_name) AND table_constraints.table_name = %(table_constraints_table_name)s) AND table_constraints.table_schema = %(table_constraints_table_schema)s Effectively, this query takes lot of time to execute (`PgAdmin3` says 85803 ms, and the server is a dual amd64), and the engine is not even able to "explain" it, giving the error ERROR: record type has not been registered So, I managed to produce an equivalent query using JOINs instead, like the following: SELECT table_constraints.constraint_name AS table_constraints_constraint_name, ... FROM information_schema.table_constraints JOIN information_schema.constraint_column_usage ON constraint_column_usage.constraint_name = table_constraints.constraint_name JOIN information_schema.key_column_usage ON key_column_usage.constraint_name = constraint_column_usage.constraint_name WHERE table_constraints.table_name = %(table_constraints_table_name)s AND table_constraints.table_schema = %(table_constraints_table_schema)s And this is **fast** : 356 ms! * * * Attachments: test_alchemy.dump.bz2 | queries.sql | sqla.diff | constraints_by_table.diff
0
**JAmes Atwill** opened **SPR-8927** and commented Hello, we're working on some tooling to ensure none of our dependencies are GPL. To do this, we have a maven plugin that walks through projects and looks at the <license/> block of the projects to ensure they're whitelisted. Many projects don't have <license/> blocks, but they're super quick to add. Estimate assumes doing all poms in bulk manually and waiting for a CI to push out a new snapshot. * * * **Referenced from:** commits `87a021d` 1 votes, 1 watchers
**Stevo Slavić** opened **SPR-5848** and commented Please include license info in the project maven artifacts pom. Since project is licensed under Apache License 2.0 adding following to the pom should do: <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> All this will improve how dependency to this project artifacts is treated by all sorts of maven plug-ins and tools, like project info dependency report plugin, maven jboss license plugin, etc. This should be applied to all sub-frameworks of spring framework as well. Maybe a spring parent module could be created for reuse, or org.apache:apache could be set as parent. * * * **Affects:** 3.0 M3
1
#### Challenge Name All challenges #### Issue Description I go to a challenge. Try to add code to the last couple of lines. The cursor will not go any farther until I hit return and go back up a few lines. The cursor skips over a whole line when pressing return. #### Browser Information Chrome Version 51.0.2704.103 (64-bit) Mac OS X 10.11.5 Desktop * Browser Name, Version: * Operating System: * Mobile, Desktop, or Tablet: #### Your Code #### Screenshot No screenshot available. Would need a gif
In all the exercises, we the users are forced to press the enter key before writing any code. * * * #### Update: We have locked the conversation temporarily on this thread to collaborators only, this has been resolved in staging, and will be live soon. The fix can be confirmed on the beta website. The workaround currently on production website is: Press the `Enter` key on the challenge editor and then proceed with the challenge. Apologies for the inconvenience meanwhile. Reach us in the chat room if you need any assistance.
1
I am having an issue with some unexpected behaviour with the `scipy.interpolate.interp1d` method for the following kinds: * `kind= ['nearest','linear', 'previous' and 'next']` (i.e. kinds not involving spline interpolation according to the doc) When providing non-strictly monotonic `x` values, unexpected results are returned rather than the method failing: ### Reproducing code example: import numpy as np from scipy.interpolate import interp1d x = np.array([0, 1, 1]) y = np.array([0, 1, 0]) for kind in ['nearest', 'linear', 'previous', 'next']: f = interp1d(x,y,kind=kind) print("{k}: ".format(k=kind), f(x)) ### Output nearest: [0. 1. 1.] linear: [0. 1. 1.] previous: [0. 0. 0.] next: [0. 1. 1.] ### Error message: For `kind='cubic'` it fails in a similar matter as I would expect it to for the others: --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-30-064ad468e798> in <module> ----> 1 f = interp1d(x,y,kind='cubic') 2 f(x) C:\anaconda\envs\atlite\lib\site-packages\scipy\interpolate\interpolate.py in __init__(***failed resolving arguments***) 533 534 self._spline = make_interp_spline(xx, yy, k=order, --> 535 check_finite=False) 536 if rewrite_nan: 537 self._call = self.__class__._call_nan_spline C:\anaconda\envs\atlite\lib\site-packages\scipy\interpolate\_bsplines.py in make_interp_spline(x, y, k, t, bc_type, axis, check_finite) 797 798 if x.ndim != 1 or np.any(x[1:] <= x[:-1]): --> 799 raise ValueError("Expect x to be a 1-D sorted array_like.") 800 if k < 0: 801 raise ValueError("Expect non-negative k.") ValueError: Expect x to be a 1-D sorted array_like. ### Scipy/Numpy/Python version information: [1]: import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 1.2.1 1.15.4 sys.version_info(major=3, minor=6, micro=6, releaselevel='final', serial=0)
Code: see the post https://stackoverflow.com/questions/46983476/ Got error message: ![image](https://user- images.githubusercontent.com/57449793/100565882-7f605100-32ff-11eb-9656-48c0232feb2a.png) The error message `Invalid input data` is uninformative. Is it possible to provide the reason or solution of the error in the error message?
0
If you know how to fix the issue, make a pull request instead. * I tried using the `@types/xxxx` package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there). * Mention the authors (see `Definitions by:` in `index.d.ts`) so they can respond. * Authors: @borisyankov. app.use((req: express.Request, res: express.Response) => { res.status(404).end(); }); error TS2551: Property 'end' does not exist on type 'Response'. Did you mean 'send'?
If you know how to fix the issue, make a pull request instead. * I tried using the `@types/express` package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there). * Mention the authors (see `Definitions by:` in `index.d.ts`) so they can respond. * Authors: @borisyankov, @CMUH, @rockwyc992, @OliverJAsh My builds are throwing the following errors after upgrades to latest version of the @types/express package: `Property 'headers' does not exist on type 'Request<any>'` `Property 'query' does not exist on type 'Request<any>'` `Property 'body' does not exist on type 'Request<any>'` We have changed nothing on our end. I also noticed that my TS environment, when I open up the index.d.ts of @types/express shows the following errors: `express-serve-static-core` has no exported member 'ParamsDictionary' `express-serve-static-core` has no exported member 'Params' `express-serve-static-core` has no exported member 'Params' Some kind of breaking change seems to have been introduced, and I cannot seem to find any guidelines on how to address.
1
Not sure if this is a bug report or a feature request, since I'm not sure what you guys had in mind for this method in the first place. However, the documentation states that it creates a copy of RequestOptions instance, and does not change the values of the instance on which it is called. **Current behavior** As per source, the method returns `headers` from one or the other object (`this` or `options`). That means that `copy` will have access to the same list as `this` or `options`. So, if the `append` method is called on `copy.headers`, the original instance it was copied from will also have the new version of headers, since they are using the same list. **Expected behavior** `copy.headers` is returned as a deep copy, so appending to `copy.headers` doesn't affect `this.headers` or `options.headers`. So, instead of returning `this.headers`, merge should return `new Headers(this.headers)` (same goes for `options`, if present). **Reproduction of the problem** EDIT: plunker here Let's say we have custom BaseRequestOptions object globally available, that appends a custom `base-custom`header, and are provided through DI as Request options. Let's say we also have a CustomHttp service, that needs to append another custom header when its methods are called. export class CustomHttp extends Http { constructor(protected _backend: XHRBackend, protected _defaultOptions: RequestOptions, private _customService: CustomService) { super(_backend, _defaultOptions); } get(url: string, options?: RequestOptionsArgs): Observable<Response> { return customLogicBeforeReq.call(this, super.get, url, options); } // code... } function customLogicBeforeReq(func, url, options?){ let reqOpts = this._defaultOptions.merge(options); reqOpts.headers.append("x-custom", "from custom service"); // code... return func.call(this, url, reqOpts); } After appending to `reqOpts`, `this._defaultOptions` will also have that header appended (or `options`, if available). That means that for each request made with this service (without providing the `options` object), a new `x-custom` header will be appended. So, after 5 requests, `this._defaultOptions` will have an `x-custom` entry which is an array of 5 "from custom service" values. The expected behaviour would be that it only has one `base-custom` header, and none of `x-custom`. * **Angular version:** 2.0.0
When headers or search is present on both the base options and the to be merged options, the to be merged options overwrite, rather than combine with the base options. This makes things like setting a default Content-Type while providing headers for other purposes impossible. https://github.com/angular/angular/blob/master/modules/angular2/src/http/base_request_options.ts#L94-L97 Headers should be able to merge with each other, overwriting on a per header basis. The same problem applies to search params. I suppose it could apply to other things, but method, body and url are all strings at this time.
1
I'm sorry if this is a stupid question but I'm stuck. I need to respond to a click on a line-number inside the `atom-text-editor` and I can't figure out how to do it. The dom shadow gets in my way for everything I try. A simple `$('.line-number')` gets zero matches when the dom shadow is enabled. I can match on the `atom-text-editor` element but nothing inside. I read the package update doc and it just refers to `$(window)` which doesn't help. This is a bit of a duplicate from .https://discuss.atom.io/t/events-from- elements-inside-shadow-dom/14119.
If you open PHP files that start with `<!DOCTYPE html>`, atom selects HTML as language. It should be PHP.
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.1 * Operating System version: Win10 * Java version: 1.8 ### Steps to reproduce this issue 1. maven project dependency include artifactId(dubbo-filter-cache) 2. Start a Provider service ### Expected Result The program start without errors ### Actual Result 适配CacheFactory代码编译失败: Adaptive code is generate by class "org.apache.dubbo.common.extension.AdaptiveClassCodeGenerator", that it make an error method adaptive code. If there is an exception, please attach the exception trace: 2019-04-22 17:54:24.754 [main] ERROR org.apache.dubbo.common.extension.ExtensionLoader - [DUBBO] Failed to inject via method setCacheFactory of interface org.apache.dubbo.rpc.Filter: Failed to create adaptive instance: java.lang.IllegalStateException: Can't create adaptive extension interface org.apache.dubbo.cache.CacheFactory, cause: Failed to compile class, cause: [source error] no such field: invocation, class: org.apache.dubbo.cache.CacheFactory$Adaptive, code: package org.apache.dubbo.cache; import org.apache.dubbo.common.extension.ExtensionLoader; public class CacheFactory$Adaptive implements org.apache.dubbo.cache.CacheFactory { public org.apache.dubbo.cache.Cache getCache(org.apache.dubbo.common.URL arg0, org.apache.dubbo.rpc.Invocation arg1) { if (arg0 == null) throw new IllegalArgumentException("url == null"); org.apache.dubbo.common.URL url = arg0; if (arg1 == null) throw new IllegalArgumentException("invocation == null"); String methodName = arg1.getMethodName(); String extName = url.getMethodParameter(methodName, "cache", "lru"); if(extName == null) throw new IllegalStateException("Failed to get extension (org.apache.dubbo.cache.CacheFactory) name from url (" + url.toString() + ") use keys([cache])"); org.apache.dubbo.cache.CacheFactory extension = (org.apache.dubbo.cache.CacheFactory)ExtensionLoader.getExtensionLoader(org.apache.dubbo.cache.CacheFactory.class).getExtension(extName); return extension.getCache(url, invocation); } } , stack: javassist.CannotCompileException: [source error] no such field: invocation javassist.CannotCompileException: [source error] no such field: invocation at javassist.CtNewMethod.make(CtNewMethod.java:79) at javassist.CtNewMethod.make(CtNewMethod.java:45) at org.apache.dubbo.common.compiler.support.CtClassBuilder.build(CtClassBuilder.java:168) at org.apache.dubbo.common.compiler.support.JavassistCompiler.doCompile(JavassistCompiler.java:82) at org.apache.dubbo.common.compiler.support.AbstractCompiler.compile(AbstractCompiler.java:59) at org.apache.dubbo.common.compiler.support.AdaptiveCompiler.compile(AdaptiveCompiler.java:45) at org.apache.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClass(ExtensionLoader.java:859) at org.apache.dubbo.common.extension.ExtensionLoader.getAdaptiveExtensionClass(ExtensionLoader.java:852) at org.apache.dubbo.common.extension.ExtensionLoader.createAdaptiveExtension(ExtensionLoader.java:841) at org.apache.dubbo.common.extension.ExtensionLoader.getAdaptiveExtension(ExtensionLoader.java:478) at org.apache.dubbo.common.extension.factory.SpiExtensionFactory.getExtension(SpiExtensionFactory.java:33) at org.apache.dubbo.common.extension.factory.AdaptiveExtensionFactory.getExtension(AdaptiveExtensionFactory.java:47) at org.apache.dubbo.common.extension.ExtensionLoader.injectExtension(ExtensionLoader.java:562) at org.apache.dubbo.common.extension.ExtensionLoader.createExtension(ExtensionLoader.java:531) at org.apache.dubbo.common.extension.ExtensionLoader.getExtension(ExtensionLoader.java:347) at org.apache.dubbo.common.extension.ExtensionLoader.getActivateExtension(ExtensionLoader.java:225) at org.apache.dubbo.common.extension.ExtensionLoader.getActivateExtension(ExtensionLoader.java:192) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.buildInvokerChain(ProtocolFilterWrapper.java:49) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.export(ProtocolFilterWrapper.java:108) at org.apache.dubbo.rpc.Protocol$Adaptive.export(Protocol$Adaptive.java) at org.apache.dubbo.registry.integration.RegistryProtocol.lambda$2(RegistryProtocol.java:220) at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) at org.apache.dubbo.registry.integration.RegistryProtocol.doLocalExport(RegistryProtocol.java:218) at org.apache.dubbo.registry.integration.RegistryProtocol.export(RegistryProtocol.java:184) at org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper.export(ProtocolListenerWrapper.java:55) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.export(ProtocolFilterWrapper.java:106) at org.apache.dubbo.rpc.Protocol$Adaptive.export(Protocol$Adaptive.java) at org.apache.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:559) at org.apache.dubbo.config.ServiceConfig.doExportUrls(ServiceConfig.java:417) at org.apache.dubbo.config.ServiceConfig.doExport(ServiceConfig.java:375) at org.apache.dubbo.config.ServiceConfig.export(ServiceConfig.java:337) at org.apache.dubbo.config.spring.ServiceBean.export(ServiceBean.java:319) at org.apache.dubbo.config.spring.ServiceBean.onApplicationEvent(ServiceBean.java:113) at org.apache.dubbo.config.spring.ServiceBean.onApplicationEvent(ServiceBean.java:1) at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:402) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:359) at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:896) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:552) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:144) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:85) at com.ccesun.rhpf.regi.provider.RmiEnvInitServiceTest.testServiceStart(RmiEnvInitServiceTest.java:28) at com.ccesun.rhpf.regi.provider.RmiEnvInitServiceTest.main(RmiEnvInitServiceTest.java:41) Caused by: compile error: no such field: invocation at javassist.compiler.TypeChecker.fieldAccess(TypeChecker.java:845) at javassist.compiler.TypeChecker.atFieldRead(TypeChecker.java:803) at javassist.compiler.TypeChecker.atMember(TypeChecker.java:988) at javassist.compiler.JvstTypeChecker.atMember(JvstTypeChecker.java:66) at javassist.compiler.ast.Member.accept(Member.java:39) at javassist.compiler.JvstTypeChecker.atMethodArgs(JvstTypeChecker.java:221) at javassist.compiler.TypeChecker.atMethodCallCore(TypeChecker.java:735) at javassist.compiler.TypeChecker.atCallExpr(TypeChecker.java:695) at javassist.compiler.JvstTypeChecker.atCallExpr(JvstTypeChecker.java:157) at javassist.compiler.ast.CallExpr.accept(CallExpr.java:46) at javassist.compiler.CodeGen.doTypeCheck(CodeGen.java:242) at javassist.compiler.CodeGen.compileExpr(CodeGen.java:229) at javassist.compiler.CodeGen.atReturnStmnt2(CodeGen.java:615) at javassist.compiler.JvstCodeGen.atReturnStmnt(JvstCodeGen.java:425) at javassist.compiler.CodeGen.atStmnt(CodeGen.java:363) at javassist.compiler.ast.Stmnt.accept(Stmnt.java:50) at javassist.compiler.CodeGen.atStmnt(CodeGen.java:351) at javassist.compiler.ast.Stmnt.accept(Stmnt.java:50) at javassist.compiler.CodeGen.atMethodBody(CodeGen.java:292) at javassist.compiler.CodeGen.atMethodDecl(CodeGen.java:274) at javassist.compiler.ast.MethodDecl.accept(MethodDecl.java:44) at javassist.compiler.Javac.compileMethod(Javac.java:169) at javassist.compiler.Javac.compile(Javac.java:95) at javassist.CtNewMethod.make(CtNewMethod.java:74) ... 44 more
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.5.3 * Operating System version: Linux version 2.6.32-573.22.1.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC) ) #1 SMP Wed Mar 23 03:35:39 UTC 2016 * Java version: java version "1.8.0_162" ### Steps to reproduce this issue 1. call api throw null exception What actually happens? If there is an exception, please attach the exception trace: java.lang.NullPointerExceptionat sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)at java.lang.reflect.Constructor.newInstance(Constructor.java:423)at com.alibaba.com.caucho.hessian.io.JavaDeserializer.instantiate(JavaDeserializer.java:271)at com.alibaba.com.caucho.hessian.io.JavaDeserializer.readObject(JavaDeserializer.java:155)at com.alibaba.com.caucho.hessian.io.SerializerFactory.readObject(SerializerFactory.java:397)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObjectInstance(Hessian2Input.java:2070)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObject(Hessian2Input.java:2005)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObject(Hessian2Input.java:1990)at com.alibaba.dubbo.common.serialize.support.hessian.Hessian2ObjectInput.readObject(Hessian2ObjectInput.java:88)at com.alibaba.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:92)at com.alibaba.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:109)at com.alibaba.dubbo.rpc.protocol.dubbo.DubboCodec.decodeBody(DubboCodec.java:97)at com.alibaba.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:126)at com.alibaba.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:87)at com.alibaba.dubbo.rpc.protocol.dubbo.DubboCountCodec.decode(DubboCountCodec.java:46)at com.alibaba.dubbo.remoting.transport.netty.NettyCodecAdapter$InternalDecoder.messageReceived(NettyCodecAdapter.java:134)at org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:80)at org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:564)at org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:559)at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:274)at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:261)at org.jboss.netty.channel.socket.nio.NioWorker.read(NioWorker.java:349)at org.jboss.netty.channel.socket.nio.NioWorker.processSelectedKeys(NioWorker.java:280)at org.jboss.netty.channel.socket.nio.NioWorker.run(NioWorker.java:200)at org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)at org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:44)at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)at java.lang.Thread.run(Thread.java:748)
0
# Bug report **What is the current behavior?** Webpack build fails with `RuntimeTemplate.moduleId() ... has no id. This should not happen` error. **If the current behavior is a bug, please provide the steps to reproduce.** Checkout master branch https://github.com/kompot/treat-no-module-id-2 it's basically a barebones React app but using treat for styling. yarn install yarn run build ERROR in chunk 1 1.output.bundle.js /Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.jsx RuntimeTemplate.moduleId(): Module /Users/kompot/projects/treat-no-module-id-2/node_modules/treat/webpack-plugin/loader.js??ref--4-0!/Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.treat.js has no id. This should not happen. ERROR in chunk 2 2.output.bundle.js /Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.jsx RuntimeTemplate.moduleId(): Module /Users/kompot/projects/treat-no-module-id-2/node_modules/treat/webpack-plugin/loader.js??ref--4-0!/Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.treat.js has no id. This should not happen. **What is the expected behavior?** Build should succeed. There are 4 "fixes" that make the build pass. https://github.com/kompot/treat-no-module-id-2/pull/1/files https://github.com/kompot/treat-no-module-id-2/pull/2/files https://github.com/kompot/treat-no-module-id-2/pull/3/files https://github.com/kompot/treat-no-module-id-2/pull/4/files The last one is probably the most interesting one — turning off optimization: { concatenateModules: false } Others are changing dependency tree and it somehow affects the build. **Other relevant information:** webpack version: 4.42.1 Node.js version: 12.16.0 Operating System: macOS 10.15.4 I understand that this might be at least partially related to a 3rd party project (see the initial issue in treat repo) but any help in debugging this issue would be greatly appreciated. Looks like it might be the duplicate of #10409 if that so then should the fix be expected for webpack 4? Thanks!
** I want report a some like _bug_ ** Probably incrorrect letter case in filenames make bundlers duplicating modules and work all library is failed. I faced with problem, when webpack and rollup duplicates modules. I am working on Windows. She is not make it differece between low and up case letters in filenames. For she 'File.js' and 'file.js' are one entity. But Unix-like systems recognize they as two diffirent entities. And bundlers (webpack, rollup) also do. Let you are working on Windows, and you make two 'import' operations, in the one you write from 'File.js', in the second you write 'file.js'. Both are reffered to same file. However bunlers make two copy of this module. I made all filenames and statement 'import from' to low case, and problem vanished. It is truth for Webpack. I don't try with rollup yet. Probably could make some sort of option for show warning about possibily making duplicate modules or option for ignore case in filenames, i don't know. Sorry for bothering you, if my issue happen usesless.
0
Consider the following example: trait Foo { fn foo(&self); fn bar(&self) where Self: Bar; } trait Bar { } struct Baz; impl Foo for Baz { fn foo(&self) {} } The example produces the following error: <anon>:11:1: 13:2 error: not all trait items implemented, missing: `bar` [E0046] <anon>:11 impl Foo for Baz { <anon>:12 fn foo(&self) {} <anon>:13 } However, `Baz` doesn’t implement `Bar`, and presumably it shouldn’t be required to implement `bar` when implementing `Foo`. Regards, Ivan
There is a curious case with where clauses where sometimes we can show that a method in an impl could not possibly be called. This is because the impl has more precise information than the trait. Here is an example: trait MyTrait<T> { fn method(&self, t: &T) where T : Eq; } struct Foo; struct Bar; // note that `Bar` does not derive `Eq` impl MyTrait<Bar> for Foo { fn method(&self, t: &T) where Bar : Eq { // <-- `Bar : Eq` cannot be satisfied! } } We should permit the method body to be omitted in such a case. As a workaround, once #20020 is fixed, I imagine it would be possible to write an impl like this: impl MyTrait<Bar> for Foo { fn method(&self, t: &T) { // no where clause at all panic!("Bar : Eq could not be satisfied"); } } However, it is unfortunate to require that of the user. For one thing, perhaps it happens later that an impl of `Eq` is added for `Bar` \-- now we have this method hanging around that will panic. It'd be nice to detect that statically. The plan then would be to permit: impl MyTrait<Bar> for Foo { fn method(&self, t: &T); // <-- no body or where clauses needed } This serves as a declaration that you believe this method could never be called. At trans time, we will generate a body that simply does the equivalent of `panic!("unsatisfiable method`method`invoked")`. I plan to open an amendment to the where clause RFC describing this particular case.
1
Just updated my Visual Studio Code to 0.10.10. It not longer highlights JavaScript keywords like function, let, const, yield, etc. Details: OS: Linux Mint 17.3 64 bit Code: 0.10.10 64 bit
0.10.10 (Feburary build) has a regression is that the following JavaScript keywords are no longer highlighted in the Dark Visual Studio & Light Visual Studio themes: `var` `let` `const` `function` `get` `set` `class` `interface` `module` `namespace` This only affects JavaScript (not TypeScript). The workaround if to switch to the Dark+ Default and Light+ theme. Note that there are other colorizing issues open, not caused by this regression: e.g. 'import' and 'from'. See microsoft/TypeScript-TmLanguage#37
1
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.3 * Operating System version: macOs * Java version: JDK 1.8 ### Steps to reproduce this issue We are going to serialize direct to Hessian OutputStream for protobuf extension, and read directly from InputStream. The change is going to export the Hessian InputStream & OutputStream for direct write. private final Hessian2ObjectOutput delegate; protected ProtobufObjectOutput(OutputStream os) { this.delegate = new Hessian2ObjectOutput(os); } void writeBytesForPBObject(Object obj, Class clazz) throws IOException { try (OutputStream os = delegate.getOutputStream()) { if (obj instanceof MessageLite) { try { ((MessageLite) obj).writeTo(os); } catch (IOException e) { throw new RuntimeException("Google PB序列化失败,序列化对象的类型为" + obj.getClass().getName(), e); } } } }
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.5 * Operating System version: Windows 10 1903 * Java version: 1.8.0_221 ### Steps to reproduce this issue 1. in root folder execute "mvn clean test" ### Expected Result pass unit test ### Actual Result org.opentest4j.AssertionFailedError: expected: but was: at org.apache.dubbo.common.extension.AdaptiveClassCodeGeneratorTest.testGenerate(AdaptiveClassCodeGeneratorTest.java:45) ### Any try the souce of is AdaptiveClassCodeGeneratorTest public class AdaptiveClassCodeGeneratorTest { @Test public void testGenerate() throws IOException { AdaptiveClassCodeGenerator generator = new AdaptiveClassCodeGenerator(HasAdaptiveExt.class, "adaptive"); String value = generator.generate(); URL url = getClass().getResource("/org/apache/dubbo/common/extension/adaptive/HasAdaptiveExt$Adaptive"); try (InputStream inputStream = url.openStream()) { String content = IOUtils.read(new InputStreamReader(inputStream, "UTF-8")); assertTrue(content.contains(value)); } } } When I add the following code to it, the unit pass. value = value.replace("\r",""); value = value.replace("\n",""); content = content.replace("\r",""); content = content.replace("\n","");
0
In `onResponse` callback, we cannot change the value in AppResponse if the value is a primitive type.
The following code doesn't work on 2.7.2. @Activate(group = {"provider"}) public class TraceFilter implements Filter { @Override public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException { Result result = invoker.invoke(invocation); Object o = result.getValue(); if (o instanceof String) { String s = (String) o; s += "filtered: "; result.setValue(s); } return result; } }
1
One of the reasons for keeping dead containers around in kubelet today is to get access to logs from previous instances. Dead container instances can take up disk space via their root filesystem and result in disk pressure on the nodes. To alleviate disk pressure and improve the logging experience in kubernetes, kubelet can retrieve logs from dead containers and GC them right away once kubelet doesn't depend on metadata associated with old containers. Specifically, * Kubelet can retrieve logs from the runtime and store in a per-pod, per-container directory inside of `/var/log/` directory. For the docker runtime, this can be a simple move operation. For rkt, we will have to retrieve the logs remotely. * The directory structure can be `/var/log/<podUID>/<ContainerName>/<InstanceNumber>_stdout.log` * Update `kubectl logs -p` to return logs from the files instead of relying on the runtime for previous logs. * These logs will be kept around on a best-effort basis and will be deleted whenever there is disk pressure. * Kubelet can prefer keeping the first and most recent instances of a container around and aggressively delete other log files. * All these logs will be accessible initially via the `/logs` REST endpoint. In the future, we can consider expanding `kubectl logs` interface to support an instance number or add support for the first attempt specifically.
Monitoring/logging agents running on a node needs to know which pod a given container belongs to. Currently there is a lot of hacks around this: * filepath for logging * labels on docker * reverse lookup from api server Each of them has obvious drawbacks. We need a consistent solution for this problem. cc @dchen1107 @kubernetes/sig-instrumentation @kubernetes/sig-node
0
### Affected Version Current master ### Description Here is the error on start up. Maybe it only happens with coordinator + overlord mode. 1) A binding to org.apache.druid.discovery.NodeRole annotated with interface org.apache.druid.guice.annotations.Self was already configured at org.apache.druid.cli.CliCoordinator$1.configure(CliCoordinator.java:242) (via modules: com.google.inject.util.Modules$Override Module -> com.google.inject.util.Modules$OverrideModule -> org.apache.druid.cli.CliCoordinator$1). at org.apache.druid.cli.CliOverlord$1.configure(CliOverlord.java:251) (via modules: com.google.inject.util.Modules$OverrideModule -> com.google.inject.util.Modules$OverrideModule -> org.apache.druid.cli.CliOverlord$1) 1 error at org.apache.druid.cli.GuiceRunnable.makeInjector(GuiceRunnable.java:72) at org.apache.druid.cli.ServerRunnable.run(ServerRunnable.java:56) at org.apache.druid.cli.Main.main(Main.java:113) Caused by: com.google.inject.CreationException: Unable to create injector, see the following errors: 1) A binding to org.apache.druid.discovery.NodeRole annotated with interface org.apache.druid.guice.annotations.Self was already configured at org.apache.druid.cli.CliCoordinator$1.configure(CliCoordinator.java:242) (via modules: com.google.inject.util.Modules$Override Module -> com.google.inject.util.Modules$OverrideModule -> org.apache.druid.cli.CliCoordinator$1). at org.apache.druid.cli.CliOverlord$1.configure(CliOverlord.java:251) (via modules: com.google.inject.util.Modules$OverrideModule -> com.google.inject.util.Modules$OverrideModule -> org.apache.druid.cli.CliOverlord$1) 1 error at com.google.inject.internal.Errors.throwCreationExceptionIfErrorsExist(Errors.java:470) at com.google.inject.internal.InternalInjectorCreator.initializeStatically(InternalInjectorCreator.java:155) at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:107) at com.google.inject.Guice.createInjector(Guice.java:99) at com.google.inject.Guice.createInjector(Guice.java:73) at com.google.inject.Guice.createInjector(Guice.java:62) at org.apache.druid.initialization.Initialization.makeInjectorWithModules(Initialization.java:431) at org.apache.druid.cli.GuiceRunnable.makeInjector(GuiceRunnable.java:69) ... 2 more
Sometimes we add aggregations to a query just because they are needed in a post-aggregation. On getting the response, we completely disregard the those aggregations and only use post-aggregations. Currently, Is there any way to tell druid broker not to include some aggregations in the response? Basically, I am looking for a feature where we could specify something at per aggregation basis like following... "aggregations": [ { "type": "longSum", "name": "sample_name1", "fieldName": "sample_fieldName1" , "includeInResponse":"false"}, { "type": "doubleSum", "name": "sample_name2", "fieldName": "sample_fieldName2" } ], and the aggregation "sample_name1" is not included in the response.
0
I know we're not talking release quality code, that this is still beta...but I do wonder if `Insiders.app/Contents/Resources/app/extensions/jrieken.vscode- omnisharp/bin/omnisharp' with process id 47120...` should be there. The error is that Omnisharp is not starting "[ERROR:OmniSharp.Dnx.DesignTimeHostManager] Failed to launch DesignTimeHost in a timely fashion." But the main question is if code should include developers' names or be more generically named.
Current, my publisher name (jrieken) is used for this extension. We should use a proper publisher like _microsoft_ or _dotnet_
1
Challenge Waypoint: Increment a Number with Javascript has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: var myVar = 87; // Only change code below this line myVar = myVar++; This code returns `87`, but in test is number `88`, for which works `myVar = ++myVar;`, but that does not pass "Use the ++ operator".
Challenge Waypoint: Decrement a Number with Javascript has an issue. User Agent is: `Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36`. Please describe how to reproduce this issue, and include links to screenshots if possible. My code: var myVar = 11; // Only change code below this line myVar = myVar--; This code returns `11`, but in test is number `10`, for which works `myVar = --myVar;`, but that does not pass "Use the -- operator on myVar".
1
In pandas, unlike SQL, the rows seemed to be joining on null values. Is this a bug? related SO: http://stackoverflow.com/questions/23940181/pandas-merging-with- missing-values/23940686#23940686 Code snippet import pandas as pd import numpy as np df1 = pd.DataFrame( [[1, None], [2, 'y']], columns = ['A', 'B'] ) print df1 df2 = pd.DataFrame( [['y', 'Y'], [None, 'None1'], [None, 'None2']], columns = ['B', 'C'] ) print df2 print df1.merge(df2, on='B', how='outer') Output A B 0 1 None 1 2 y B C 0 y Y 1 None None1 2 None None2 A B C 0 1 None None1 1 1 None None2 2 2 y Y You can see row 0 in df1 unexpectedly joins to both rows in df2. I would expect the correct answer to be A B C 0 1 None None 1 2 y Y 2 None None None1 3 None None None2
import pandas as pd left = pd.DataFrame({"a": [1, 2, pd.NA]}, dtype="Int64") right = pd.DataFrame({"b": [1, 2, pd.NA]}, dtype="Int64") pd.merge(left, right, how="inner", left_on="a", right_on="b") # a b # 0 1 1 # 1 2 2 # 2 <NA> <NA> (Above is from 1.0.1 and master) I think when joining on a nullable column we should not be matching `NA` with `NA` and should only be joining where we have unambiguous equality (as in SQL). Also worth noting that this is the same as what happens when we have `NaN` which also seems incorrect, so could be an opportunity to fix this behavior? pd.merge(left.astype(float), right.astype(float), how="inner", left_on="a", right_on="b") # a b # 0 1.0 1.0 # 1 2.0 2.0 # 2 NaN NaN #### Expected Output a b 0 1 1 1 2 2 cc @jorisvandenbossche
1
This may well be related to #6234 but I am experiencing a crash in the other direction. I am on Arch Linux. When I seek to copy into a markdown file (a pandoc reference of format [xyz2000]) I get a white screen and a notification that the window has crashed.
I'm using Atom ver. 0.189.0 on Ubuntu 14.04.2 LTS. When I copy a piece of text in atom and I try to paste it the right-click menu either won't show up or will show up without giving me option to paste. The paste shortcut doesn't work either and it creates issues even if I try to copy and paste text from other programs (after I have coping something from atom). I have disable all the extra plugins, so it isn't a plugin issue. I didn't had this issue with the previous version (I am using webupd8 ppa). If I do a right click on a place where there isn't a text entry (meaning a place where it doesn't support paste anyway) the right click menu appears fine.
1
After upgrading to styled-components 5.0.1 from 4.1.9, we're getting these errors. TS2589: Type instantiation is excessively deep and possibly infinite. * I tried using the `@types/styled-components` package and had problems. * I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript * I have a question that is inappropriate for StackOverflow. (Please ask any appropriate questions there). * Mention the authors (see `Definitions by:` in `index.d.ts`) so they can respond. * Authors: @Igorbek @Igmat @Lavoaster @Jessidhia @jkillian @eps1lon @flavordaaave @wagerfield @Lazyuki @mgoszcz2 Here's a playground link that **_DOESN'T_** show the error, but this error in an actual project will definitely show. In our case, in many multiple files. Everything was fine before the update. The error shows on `text={text} {...rest} role="separator"` and disappears when removing `{...rest}`. All is well if I don't upgrade this package, even when I _do_ upgrade styled- components itself. It might help to know as well that we're on Typescript 3.8.3. Perhaps a newer typescript is stricter in some magical way, although I seriously doubt they'd introduce such impressively strange breaking changes.
**TypeScript Version:** 3.7.2, 3.8.0-dev.20191102 (worked in 3.6) **Search Terms:** * Type instantiation is excessively deep and possibly infinite.ts(2589) * Mapped types * Generics * Conditional types **Code** Note: **this issue manifests itself only in our codebase**. When you run the same code in TypeScript Playground, it seems to be working fine. The snippet is hardly minimal, but I reduced it as much as I could. I recorded a video where exactly the same code yields an error different than the one in TypeScript Playground. I tried with two versions of TypeScript: `3.7.2` and `3.8.0-dev.20191102`. It worked correctly with `3.6`. Since @sheetalkamat and @DanielRosenwasser have access to our repository, you're welcome to have a look at this PR. Copy-paste the code below anywhere in the project to see the error. The versions of types used: * `@types/history@4.7.3` * `@types/react@16.9.11` * `@types/react-router-dom@5.1.0` * `@types/recompose@0.30.7` **Note** : Interestingly enough, if you change: - declare const Button: React.FunctionComponent<Omit<Props, never>>; + declare const Button: React.FunctionComponent<Props>; it works again despite the fact `Omit<Props, never>` should be the same as just `Props`. Source code import { History } from 'history'; // "4.7.3" import * as React from 'react'; // "16.9.11" import { LinkProps, RouteComponentProps, withRouter } from 'react-router-dom'; // "5.1.0" import { getDisplayName } from 'recompose'; // "0.30.7" declare function isDefined<T>(candidate: T | null | undefined): candidate is T; declare function isString(value?: any): value is string; type ObjectOmit<T extends K, K> = Omit<T, keyof K>; type OnClick = NonNullable<React.ComponentProps<'button'>['onClick']>; type OnClickProp = { /** If there is a custom click handler, we must preserve it. */ onClick?: OnClick; }; type ProvidedProps = OnClickProp; type InputProps = OnClickProp & { /** Note: we want this helper to work with all sorts of modals, not just those backed by query * parameters (e.g. `/photo/:id/info`), which is why this must accept a full location instead of a * `Modal` type. * */ to: Exclude<LinkProps['to'], Function>; }; const buildClickHandler = ({ to, onClick, history, }: InputProps & { history: History; }): OnClick => { const navigate = () => { // https://github.com/Microsoft/TypeScript/issues/14107 isString(to) ? history.push(to) : history.push(to); }; return event => { [onClick, navigate].filter(isDefined).forEach(callback => callback(event)); }; }; /** See the test for an example of usage. */ export const enhance = <ComposedProps extends ProvidedProps>( ComposedComponent: React.ComponentType<ComposedProps>, ) => { type PassThroughComposedProps = ObjectOmit<ComposedProps, ProvidedProps>; type OwnProps = InputProps & RouteComponentProps<never> & PassThroughComposedProps; type Props = OwnProps; const displayName = `CreateModalLink(${getDisplayName(ComposedComponent)})`; const ModalLink: React.FunctionComponent<Props> = ({ to, onClick, history, // We specify these just to omit them from rest props below location, match, staticContext, ...passThroughComposedProps }) => { const clickHandler = buildClickHandler({ to, onClick, history }); const composedProps: ComposedProps = { // Note: this is technically unsafe, since the composed component may have props // with names matching the ones we're omitting. // https://github.com/microsoft/TypeScript/issues/28884#issuecomment-503540848 ...((passThroughComposedProps as unknown) as PassThroughComposedProps), onClick: clickHandler, } as ComposedProps; return <ComposedComponent {...composedProps} />; }; ModalLink.displayName = displayName; return withRouter(ModalLink); }; type Props = React.ComponentPropsWithoutRef<'button'> & Required<Pick<React.ComponentPropsWithoutRef<'button'>, 'type'>>; /** * This one errors. */ declare const Button: React.FunctionComponent<Omit<Props, never>>; /** * This one works. */ // declare const Button: React.FunctionComponent<Props>; const EnhancedButton = enhance(Button); /** * Type instantiation is excessively deep and possibly infinite.ts(2589). */ () => <EnhancedButton></EnhancedButton>; **Expected behavior:** I should get a proper error about missing properties (not the one about type instantiation): Type '{}' is missing the following properties from type 'Readonly<Pick<OwnProps, "form" | "style" | "title" | "onClick" | "to" | "key" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | ... 252 more ... | "onTransitionEndCapture">>': to, type(2739) **Actual behavior:** I'm getting this: Type instantiation is excessively deep and possibly infinite.ts(2589). **Playground Link:** Playground Link **Related Issues:** * #32735 * #34850
1
### Feature request Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("0.25in").setBottom("0.25in").setLeft("0.25in").setRight("0.25in")) works, but Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("1em").setBottom("1em").setLeft("1em").setRight("1em")) causes the error `Failed to parse parameter value: 1em`
### Feature request Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("0.25in").setBottom("0.25in").setLeft("0.25in").setRight("0.25in")) works, but Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("1em").setBottom("1em").setLeft("1em").setRight("1em")) causes the error `Failed to parse parameter value: 1em`
1
The current Java API's `Tensor.create(Object)` is really slow - for a batch of 128 images of size 224x224x3 it's taking around 1.5seconds. To put this into perspective `runner.run()` with that data and an InceptionV3 graph took below 1second so data prep is x1.5 of the runtime here (for a batch of 32 images it's around 0.35-0.45sec). Is this working as intended? When running the Python code (using simple `sess.run(fetches, feed_dict=feed_dict)`) with which the graph meta file was generated (TF 1.0.1) and feeding a Python array I don't see such hiccups, the speed is the same as the Java `runner.run()`. Might it be because of build flags used, maybe I'm missing some optimizations? For now this small part is killing the whole performance, bringing it down from 130obs/sec (`runner.run()` time) to about ~45obs/sec (Tensor.create+run()). A bit of a sidenote, the performance page states: > This will result in poor performance. > sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys}) But currently there's no other way to feed data from the Java API, right? A queue (able to read from a file and from memory, i.e. from a Java structure) would be amazing. ### Jar build command export CC="/usr/bin/gcc" export CXX="/usr/bin/g++" export TF_NEED_CUDA=1 export GCC_HOST_COMPILER_PATH=$CC export BUILDFLAGS="--config=cuda --copt=-m64 --linkopt=-m64 --copt=-march=native" bazel build -c opt \ //tensorflow/java:tensorflow \ //tensorflow/java:libtensorflow_jni \ $BUILDFLAGS --spawn_strategy=standalone --genrule_strategy=standalone ### Environment info **OS:** Ubuntu 16.04 **GPU:** GPU TITAN X (Pascal) 12GB **CPU:** Intel® Xeon® Processor E5-2630 v4 10core **GPU Drivers:** NVidia CUDA Driver Version: 375.39 CUDNN 5.1.5 CUDA 8 **Tensorflow version:** JAR file built from current master (`c25ecb5`) ### Example public void test() { Random r = new Random(); int imageSize = 224 * 224 * 3; int batch = 128; float[][] input = new float[batch][imageSize]; for(int i = 0; i < batch; i++) { for(int j = 0; j < imageSize; j++) { input[i][j] = r.nextFloat(); } } long start = System.nanoTime(); Tensor.create(input); long end = System.nanoTime(); // Around 1.5sec System.out.println("Took: " + (end - start)); }
**System information** * Have I written custom code (as opposed to using a stock example script provided in TensorFlow): **yes** * OS Platform and Distribution (e.g., Linux Ubuntu 16.04): **OS X El Capitan 10.11.6 (15G22010)** * Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: **N/A** * TensorFlow installed from (source or binary): **binary (anaconda)** output from `conda list tensorflow`: tensorflow 1.12.0 mkl_py36h2b2bbaf_0 tensorflow-base 1.12.0 mkl_py36h70e0e9a_0 * TensorFlow version (use command below): **b'unknown' 1.12.0** * Python version: **Python 3.6.6 |Anaconda custom (64-bit)| (default, Jun 28 2018, 11:07:29) ** [GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin** * Bazel version (if compiling from source): **N/A** * GCC/Compiler version (if compiling from source): **N/A** * CUDA/cuDNN version: **N/A** * GPU model and memory: **N/A** **Describe the current behavior** I get the following error message only under **specific circumstances** (see code below): > OMP: Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib > already initialized. > OMP: Hint: This means that multiple copies of the OpenMP runtime have been > linked into the program. That is dangerous, since it candegrade performance > or cause incorrect results. The best thing to do is to ensure that only a > single OpenMP runtime is linked into the process, e.g. by avoiding static > linking of the OpenMP runtime in any library. As an unsafe, unsupported, > undocumented workaround you can set the environment variable > KMP_DUPLICATE_LIB_OK=TRUE to allow the program to continue to execute, but > that may cause crashes or silently produce incorrect results. For more > information, please see http://www.intel.com/software/products/support/. > Abort trap: 6 **Describe the expected behavior** No error message **Code to reproduce the issue** import tensorflow as tf import numpy as np def get_dense(input, widths, activations): assert len(widths) == len(activations) output = input for i, (w, a) in enumerate(zip(widths, activations)): output = tf.layers.dense(output, units=w, activation=a) return output nn = lambda input, depth, width: get_dense( input, [width for _ in range(depth - 1)] + [3 ], [tf.nn.relu for _ in range(depth - 1)] + [None] ) tf.reset_default_graph() # Works fine when N = 8192, # but breaks with N = 8193: N = 8193 n = 100 X = np.random.normal(loc=0.0, scale=1., size=(N, 1)).astype(np.float32) nx = X.shape[1] Y = X**2 XY = np.concatenate([X, Y], axis=1) ds = tf.data.Dataset.from_tensor_slices(XY).batch(n).make_one_shot_iterator().get_next() pred = nn(ds[:,:nx], 2, 10) loss = tf.reduce_mean((pred - ds[:,nx:])**2) op = tf.train.RMSPropOptimizer(0.0005).minimize(loss) with tf.Session() as sess: sess.run(tf.global_variables_initializer()) try: for i in range(20): print(i) _, l1 = sess.run([op, loss]) print(l1) except tf.errors.OutOfRangeError: pass print("Done") **Other info / logs** I would consider this an anaconda problem if only it happened at all times. However, what I find weird, and why I suspect it might be a tensorflow issue, is that it only occurs when input dataset size is large enough. In this example the error pops up when N is 8193 or higher, no error when N is 8192 or lower. This "threshold" value is different in my original project where I first faced the problem - there it happened when dataset array length was 100001 (100k+1) or higher, while working fine with 100000 (100k) long dataset. Apologies if this is irrelevant to tensorflow and indeed an anaconda issue. P.S. Adding KMP_DUPLICATE_LIB_OK=TRUE does silence the error.
0
I am using the Terminal 2.4 in Mac OS X 10.9, Julia Version 0.3.4-pre+47 I don't know how it happened, but I got a `\0` in my REPL, which got stored in my `.julia_history` file. Whenever I try to up-arrow to the line and edit it, the cursor marker doesn't move, but internally the cursor does seem to move because I can insert characters in different positions. I don't know how to type a `\0` character, but you can reproduce the behavior by manually inserting a `0x00` byte into the beginning of some line in `.julia_history`. It's not a big deal, because I don't often inadvertently type that character, but maybe it could be ignored or something.
I'm finding that when I type a ctrl-space, it is being inserted into my repl input, causing the parser to get confused: julia> x = <ctrl-space>1<return> <return> <return> ERROR: syntax: incomplete: premature end of input This is on a day-old julia: julia> versioninfo() Julia Version 0.3.0-prerelease+3217 Commit 5fcfb13* (2014-05-26 13:43 UTC) Platform Info: System: Linux (x86_64-linux-gnu) CPU: Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY) LAPACK: libopenblas LIBM: libopenlibm
1
### Issue Details * **Electron Version:** 5.0.0 * **Operating System:** LTS version of Ubuntu (18.04) (and other various versions) * **Last Known Working Electron version:** : none ### Expected Behavior I just released a Linux version of my app and several users have reported that on launch it fails with the error `GLIBC_2.29' not found`. ### Actual Behavior App should launch ### To Reproduce You can probably package up Electron 5.0.0 and try to run an AppImage on linux and you'll see it. I gave out a linux build at 4.* before and I think it also had the same issue? I feel like this might be a simple issue: the latest electron versions require glibc 2.29 and many linux distros aren't up-to-date with that yet. If so, I would have expected to see many other issues reported, because I've had many users complain about this (see https://www.reddit.com/r/actualbudget/comments/bghvfg/any_plans_for_a_linux_client_in_the_future/). Am I doing something wrong?
* Output of `node_modules/.bin/electron --version`: v4.0.0 * Operating System (Platform and Version): Raspbian 2.6 (latest raspbian at the time of filling the issue). * Output of `node_modules/.bin/electron --version` on last known working Electron version (if applicable): V3.0.10 **Expected Behavior** Electron 4 should work on RPI as Electron 3 does. **Actual behavior** Starting an electron 4 app results in this error: `/lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.27' not found` Latest Rapsbian includes GLIBC 2.23. **To Reproduce** Just build an electron 4.0.0 app for RPI and run it on latest raspbian.
1
Feedback Hub link: https://aka.ms/AA5svj0 # Environment Windows build number: [10.0.18362.239] Windows Terminal version (if applicable): 0.3.2171.0 Any other software? * Powershell 5.1.18362.145 # Steps to reproduce 1. Create a new cmd.exe tab. 2. Use command 'powershell'. 3. Close the tab. # Expected behavior The tab should close with no problems. # Actual behavior Terminal crashes, bringing all other tabs with it.
NOTE: This is different from, but may be related to, #2230 # Environment Windows build number: Microsoft Windows [Version 10.0.18362.175] Windows Terminal version: 0.3.2142.0 # Steps to reproduce 1. Open a new Windows Terminal instance 2. Open a second tab using either the "+" button 3. Close the new tab using CTRL+W, middle clicking the tab, or clicking the tab's "x" Repeat steps 2-3 as fast as possible. # Expected behavior Tabs continue to open and close. # Actual behavior **PowerShell** \- Most of the time, WT stops responding and interacting with it shows the "WindowsTerminal.exe is not responding" modal **CMD / WSL** \- WT stops responding for about 1 second and then exits (also happens for PowerShell sometimes)
1
The following program fails to compile: trait Foo { fn foo(&self, x: &Self); } trait Bar<A: Foo> { fn bar(&self) -> A; } struct Wrap<T>(T); impl<A, B: Bar<A>> Wrap<B> { fn test(&self, x: &A) { (*self).bar().foo(x); } } fn main() {} With the following error: implsearch.rs:8:8: 8:22 error: failed to find an implementation of trait Foo for A implsearch.rs:8 (*self).bar().foo(x); ^~~~~~~~~~~~~~ Given that `B: Bar<A>`, we know `A: Foo` because of the definition of the trait Bar. This can be seen as a generalized case of trait inheritance (trait B inheriting from A lets us know that if `X:B`, then `X:A`, because `X:B` requires `X:A`; similarly, `B:Bar<A>` requires `A:Foo`, so we know `A:Foo`). Indeed, in Haskell there is no distinction between the two forms of inheritance: {-# LANGUAGE MultiParamTypeClasses #-} class Foo b where foo :: b -> b -> () class Foo b => Bar a b where bar :: a -> b test :: Bar a b => a -> b -> () test x y = foo (bar x) y The order of arguments to Bar could be switched and the program above would still be valid.
The following example: trait Foo<T> { fn foo(&self) -> &T; } trait Bar<A> where A: Foo<Self> {} fn foobar<A, B: Bar<A>>(a: &A) -> &B { a.foo() } fails with "error: type `&A` does not implement any method in scope named `foo`". This UFCS variant trait Foo<T> { fn foo(&self) -> &T; } trait Bar<A> where A: Foo<Self> {} fn foobar<A, B: Bar<A>>(a: &A) -> &B { Foo::foo(a) } fails with "error: the trait `Foo<_>` is not implemented for the type `A`".
1
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: master branch * Operating System version: macos * Java version: 1.8 ### Steps to reproduce this issue 1. `./mvnw test -pl dubbo-cluster -Dtest=org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest` ### Expected Result What do you expected from the above steps? UT passed ### Actual Result What actually happens? OOME thrown If there is an exception, please attach the exception trace: Running org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest [29/11/18 12:24:27:027 CST] main INFO logger.LoggerFactory: using logger: org.apache.dubbo.common.logger.log4j.Log4jLoggerAdapter Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-6" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "surefire-forkedjvm-command-thread" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "last-ditch-daemon-shutdown-thread-30sec" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-5" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-1" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-10" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-7" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-9" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-2" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-3" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-8" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-4" Tests run: 3, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 158.071 sec <<< FAILURE! - in org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest Time elapsed: 145.903 sec <<< ERROR! java.lang.OutOfMemoryError: Java heap space Results : Tests in error: RoundRobinLoadBalanceTest.org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest » OutOfMemory ### Root cause analysis Our mocked weightInvoker is recoding details of every single invocation which will consuming a lot of memory. please ref Mockito throws an OutOfMemoryError on a simple test The maximum heap size of our test process specified in pom.xml is **512MB** which is not enough for this test case ( **RoundRobinLoadBalanceTest#testSelectByWeight** ) ### Solutions * Option A, simply increase `-Xmx` in `argline` * Option B, mock weightInvoker$ with MockSettings `stubOnly ` In my view, if the invoking details is not that necessary we can choose Option B. And I will send a PR later.
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: xxx * Operating System version: xxx * Java version: xxx ### Steps to reproduce this issue `org.apache.dubbo.remoting.etcd.jetcd.JEtcdClientWrapper#doClose`: if (globalLeaseId > 0) { revokeLease(this.globalLeaseId); } should be change to : if (globalLeaseId != 0) { revokeLease(this.globalLeaseId); } Pls. provide [GitHub address] to reproduce this issue. ### Expected Result What do you expected from the above steps? ### Actual Result What actually happens? If there is an exception, please attach the exception trace: Just put your stack trace here!
0
# Bug report **What is the current behavior?** When using dynamic imports with expressions together with `ContextReplacementPlugin` in order to limit the possible file matches, some module ids which should deterministic, are actually dependent on the project's location. Meaning two identical projects (code, dependencies, configuration etc..) built on the same machine have different build outputs based on their location on the filesystem. **If the current behavior is a bug, please provide the steps to reproduce.** * use dynamic imports with expessions * ie: **import(`../i18n/${locale}.json`)**) * configure Webpack to use `ContextReplacementPlugin` to limit which JSON files should be bundled * ie: `new webpack.ContextReplacementPlugin(/i18n/, regExpForLocales)` * build the project for production * duplicate the project at another location on the filesystem at a different path root level * ie: `/home/project` vs `/home/work/projects` * build the project for production at the new location * diff both output bundles, observe that both bundles are different, invalidating the project build's reproducibility $ diff -u context-a/dist/main.js folder-b/context-b/dist/main.js --- context-a/dist/main.js 2022-01-10 14:52:49.395750091 +0100 +++ folder-b/context-b/dist/main.js 2022-01-10 14:52:52.143773687 +0100 @@ -4,7 +4,7 @@ t, o, n = { - 595: (e, r, t) => { + 174: (e, r, t) => { var o = { "./a.json": [359, 359], "./b.json": [376, 376] }; function n(e) { if (!t.o(o, e)) @@ -16,7 +16,7 @@ n = r[0]; return t.e(r[1]).then(() => t.t(n, 19)); } - (n.keys = () => Object.keys(o)), (n.id = 595), (e.exports = n); + (n.keys = () => Object.keys(o)), (n.id = 174), (e.exports = n); }, }, i = {}; Minimal reproduction repository **What is the expected behavior?** * both bundles should be identical irrelevant of their location on the filesystem **Other relevant information:** webpack version: _5.65.0_ Node.js version: _14.18.1_ Operating System: _Linux Ubuntu 20.04.3 LTS_ Additional tools: _N/A_
# Bug report **What is the current behavior?** In my project, import jspdf. The origin source var f=[1,1.387039845,1.306562965,1.175875602,1,.785694958,.5411961,.275899379] After bundle, var f=[1,1.387039845,1.306562965,1.175875602,1,.7d0ffc958,.5411961,.275899379] 7 **85694** 958 was changed to 7 **d0ffc** 958 **If the current behavior is a bug, please provide the steps to reproduce.** In RealContentHashPlugin source code const newContent = asset.content.replace(hashRegExp, hash => hashToNewHash.get(hash) ); return new RawSource(newContent); When there is a bundle unfortunately with hash 85694 assets/xxx/css/XXXX.85694.css { immutable: true, contenthash: '85694' } Then hashRegExp has value contains 85694 /---|85694|dcf17|----/g It cause .785694958 to be replaced to .7d0ffc958. Javascript load error **What is the expected behavior?** Don't change original source behavior **Other relevant information:** webpack version: 5.36.1 Node.js version: v14.17.6 Operating System: MacOS 11.4 Additional tools:
0
Since upgrading to React 15.0.1, when rendering `<select>` with optgroups, the value is not set on the DOM correctly. The first option will always get picked. // Renders with "Yes" selected, I expect "Maybe" <select value={3}> <optgroup label="One"> <option value={1}>Yes</option> </optgroup> <optgroup label="Two"> <option value={2}>No</option> </optgroup> <optgroup label="Three"> <option value={3}>Maybe</option> </optgroup> </select> ## Examples React 15.0.1 Fiddle (broken) React 0.14.7 Fiddle (works) React 15.0.1 without optgroup Fiddle (works) ## Environment OS X 10.11.4 Safari Version 9.1 (11601.5.17.1) Chrome Version 49.0.2623.110 (64-bit) Firefox 45.0.1 _Edit: I also noticed that the same behavior occurs when using`defaultValue`._
Using React 15.0.1, controlled select elements with optgroup elements are not displaying (selecting) the value provided on initial render. See the following jsfiddle for a simple test case: https://jsfiddle.net/Artconnoisseur/eg3j7fam/1/ Here is another fiddle where it is working using React 0.14.8: https://jsfiddle.net/Artconnoisseur/hfp8rf1j/1/
1
### Preflight Checklist * I have read the Contributing Guidelines for this project. * I agree to follow the Code of Conduct that this project adheres to. * I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Electron Version 13.1.8 ### What operating system are you using? Windows ### Operating System Version 10.0.19042 Pro N ### What arch are you using? x64 ### Last Known Working Electron version _No response_ ### Expected Behavior When the following code is exectuted: appWindow.on("restore", (event: any) => { console.log("AppWindow.restore"); }); This should output AppWindow.restore in the editor terminal after running the main file. ### Actual Behavior When the following code is exectuted: appWindow.on("restore", (event: any) => { console.log("AppWindow.restore"); }); Failed to do what is expected, but the same code and swapping restore for maximized seems to work, and all the other events ### Testcase Gist URL _No response_ ### Additional Information _No response_
### Preflight Checklist I have read the Contributing Guidelines for this project. I agree to follow the Code of Conduct that this project adheres to. I have searched the issue tracker for a feature request that matches the one I want to file, without success. ### Electron Version 12.0.2 ### What operating system are you using? Windows ### Operating System Version Windows 10; 20H2 ### What arch are you using? x64 ### Last Known Working Electron version _No response_ ### Expected Behavior I expect that the restore event fires when restoring a previously maximized window ### Actual Behavior restore event doesn't fire. It only fires for normal state windows ### Testcase Gist URL _No response_ 1. start app 2. maximize window 3. minimize window 4. restore window 5. see that "restored" isn't logged to the console, but is if you skipped step 2 main.js: const {app, BrowserWindow } = require('electron') function createWindow () { const mainWindow = new BrowserWindow(); mainWindow.on("restore", () => { console.log("restored"); }); } app.whenReady().then(() => { createWindow() app.on('activate', function () { if (BrowserWindow.getAllWindows().length === 0) createWindow() }) }) app.on('window-all-closed', function () { if (process.platform !== 'darwin') app.quit() })
1
I'm new to git. So writting here. In reset.less we have following lines // Prevent max-width from affecting Google Maps #map_canvas img { max-width: none; } we should add same for VE/Bing maps as follows // Prevent max-width from affecting Google Maps .MSVE_Map img { max-width: none; }
First of all thanks for your fantastic work. It does SAVE me a lot of time. When I put Google Maps into Bootstrap layout, img tag in Google Maps breaks because Bootstrap set **img max-width to 100%**. When I comment max-width, it's working find but I'm not sure whether it'll break something else in Bootstrap or not. Bootstrap and Google Maps http://jsfiddle.net/jhnRD/1/ Google Maps without Bootstrap http://jsfiddle.net/aVx8L/ Cheers,
1
## Steps to Reproduce When I load a new video after capturing it with the camera, sometimes it will play the file audio and not video and sometimes will play the video but the previous capture. I think it has something to do with the initialization but not sure. ### Example import 'dart:async'; import 'dart:io'; import 'package:flutter/material.dart'; import 'package:media_picker/media_picker.dart'; import 'package:path_provider/path_provider.dart'; import 'package:video_player/video_player.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( title: 'Image Picker Demo', home: new MyHomePage(title: 'Image Picker Example'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() => new _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { Future<File> _mediaFile; bool isVideo = false; VideoPlayerController _controller; VoidCallback listener; void _onImageButtonPressed(ImageSource source) { setState(() { if (isVideo) { _mediaFile = MediaPicker.pickVideo(source: source).then((onValue){ _controller = VideoPlayerController.file(onValue) ..addListener(listener) ..setVolume(1.0) ..initialize() ..setLooping(true) ..play(); }); } else { _mediaFile = MediaPicker.pickImage(source: source); } }); } @override void deactivate() { _controller.setVolume(0.0); _controller.removeListener(listener); super.deactivate(); } @override void dispose() { _controller.dispose(); super.dispose(); } @override void initState() { super.initState(); _controller = VideoPlayerController.network( 'http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_20mb.mp4', ) ..addListener(listener) ..setVolume(1.0) ..initialize() ..setLooping(true) ..play(); } @override Widget build(BuildContext context) { Widget _previewImage = new FutureBuilder<File>( future: _mediaFile, builder: (BuildContext context, AsyncSnapshot<File> snapshot) { if (snapshot.connectionState == ConnectionState.done && snapshot.data != null) { return new Image.file(snapshot.data); } else if (snapshot.error != null) { return const Text('Error picking image.'); } else { return const Text('You have not yet picked an image.'); } }, ); return new Scaffold( appBar: new AppBar( title: const Text('Media Picker Example'), ), body: new Center( child: isVideo ? new Padding( padding: const EdgeInsets.all(10.0), child: new AspectRatio( aspectRatio: 1280 / 720, child: new VideoPlayer(_controller), ), ) : _previewImage, ), floatingActionButton: new Column( mainAxisAlignment: MainAxisAlignment.end, children: <Widget>[ new FloatingActionButton( onPressed: () { isVideo = false; _onImageButtonPressed(ImageSource.gallery); }, tooltip: 'Pick Image from gallery', child: const Icon(Icons.photo_library), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( onPressed: () { isVideo = false; _onImageButtonPressed(ImageSource.camera); }, tooltip: 'Take a Photo', child: const Icon(Icons.camera_alt), ), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( backgroundColor: Colors.red, onPressed: () { isVideo = true; _onImageButtonPressed(ImageSource.gallery); }, tooltip: 'Pick Video from gallery', child: const Icon(Icons.video_library), ), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( backgroundColor: Colors.red, onPressed: () { isVideo = true; _onImageButtonPressed(ImageSource.camera); }, tooltip: 'Take a Video', child: const Icon(Icons.videocam), ), ), ], ), ); } } ## Logs export REZ_COLLECTOR_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos " export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_DIR_iphoneos11_3=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_NAME=iphoneos11.3 export SDK_NAMES=iphoneos11.3 export SDK_PRODUCT_BUILD_VERSION=15E217 export SDK_VERSION=11.3 export SDK_VERSION_ACTUAL=110300 export SDK_VERSION_MAJOR=110000 export SDK_VERSION_MINOR=300 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/rodydavis/Documents/Github/media_picker/example/ios export SRCROOT=/Users/rodydavis/Documents/Github/media_picker/example/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=YES export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS="iphonesimulator iphoneos" export SUPPORTS_TEXT_BASED_API=NO export SWIFT_COMPILATION_MODE=singlefile export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h export SWIFT_OPTIMIZATION_LEVEL=-Onone export SWIFT_PLATFORM_TARGET_PREFIX=ios export SWIFT_SWIFT3_OBJC_INFERENCE=On export SWIFT_VERSION=4.0 export SYMROOT=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILES_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILE_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_ROOT=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=rodydavis export USER_APPS_DIR=/Users/rodydavis/Applications export USER_LIBRARY_DIR=/Users/rodydavis/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS="arm64 armv7 armv7s" export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=rodydavis export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\"" export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9E145 export XCODE_VERSION_ACTUAL=0930 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0930 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=arm64 export variant=normal /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-56B930161B2121076676E4A0.sh cd /Users/rodydavis/Documents/Github/media_picker/example/ios /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-56B930161B2121076676E4A0.sh mkdir -p /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios/Flutter.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done Flutter.framework/ Flutter.framework/Flutter Flutter.framework/Info.plist Flutter.framework/icudtl.dat sent 77396672 bytes received 92 bytes 51597842.67 bytes/sec total size is 77386919 speedup is 1.00 Stripped /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter of architectures: x86_64 armv7 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done media_picker.framework/ media_picker.framework/Info.plist media_picker.framework/media_picker sent 99613 bytes received 70 bytes 199366.00 bytes/sec total size is 99357 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/media_picker.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/media_picker.framework' rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done path_provider.framework/ path_provider.framework/Info.plist path_provider.framework/path_provider sent 68877 bytes received 70 bytes 137894.00 bytes/sec total size is 68627 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework' rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done video_player.framework/ video_player.framework/Info.plist video_player.framework/video_player sent 97949 bytes received 70 bytes 196038.00 bytes/sec total size is 97701 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/video_player.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/video_player.framework' CodeSign /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" Signing Identity: "iPhone Developer: Rody Davis (NYE93D98B6)" /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework: replacing existing signature PhaseScriptExecution [CP]\ Copy\ Pods\ Resources /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-1A1B3FEFF2333A27233BD9E1.sh cd /Users/rodydavis/Documents/Github/media_picker/example/ios /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-1A1B3FEFF2333A27233BD9E1.sh building file list ... done sent 29 bytes received 20 bytes 98.00 bytes/sec total size is 0 speedup is 0.00 Touch /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" /usr/bin/touch -c /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app ProcessProductPackaging /Users/rodydavis/Library/MobileDevice/Provisioning\ Profiles/ea734a63-3e75-4db0-b5ae-10c115f786b7.mobileprovision /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" builtin-productPackagingUtility /Users/rodydavis/Library/MobileDevice/Provisioning\ Profiles/ea734a63-3e75-4db0-b5ae-10c115f786b7.mobileprovision -o /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision CopySwiftLibs /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk builtin-swiftStdLibTool --copy --verbose --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --scan-executable /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Runner --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/PlugIns --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter/Flutter.framework --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter/App.framework --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Pods_Runner.framework --platform iphoneos --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks --strip-bitcode --resource-destination /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app --resource-library libswiftRemoteMirror.dylib Requested Swift ABI version based on scanned binaries: 6 Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCore.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCore.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreAudio.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreAudio.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreFoundation.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreFoundation.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreGraphics.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreGraphics.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreImage.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreImage.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreMedia.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreMedia.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDarwin.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDarwin.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDispatch.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDispatch.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftFoundation.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftFoundation.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftMetal.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftMetal.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftObjectiveC.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftObjectiveC.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftQuartzCore.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftQuartzCore.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftUIKit.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftUIKit.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftos.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftos.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftRemoteMirror.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/libswiftRemoteMirror.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' ProcessProductPackaging "" /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" Entitlements: { "application-identifier" = "9FK3425VTA.com.appleeducate.mediaPickerExample"; "com.apple.developer.team-identifier" = 9FK3425VTA; "get-task-allow" = 1; "keychain-access-groups" = ( "9FK3425VTA.com.appleeducate.mediaPickerExample" ); } builtin-productPackagingUtility -entitlements -format xml -o /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent CodeSign /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" Signing Identity: "iPhone Developer: Rody Davis (NYE93D98B6)" Provisioning Profile: "iOS Team Provisioning Profile: *" (ea734a63-3e75-4db0-b5ae-10c115f786b7) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --entitlements /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent --timestamp=none /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app Validate /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" export PRODUCT_TYPE=com.apple.product-type.application builtin-validationUtility /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app ** BUILD SUCCEEDED ** [ +33 ms] Xcode build done. [ ] [ios/] /usr/bin/env xcrun xcodebuild build -configuration Debug ONLY_ACTIVE_ARCH=YES VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios -sdk iphoneos -arch arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout -showBuildSettings [+1684 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild build -configuration Debug ONLY_ACTIVE_ARCH=YES VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios -sdk iphoneos -arch arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout -showBuildSettings [ ] Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout SDKROOT = iphoneos11.3 VERBOSE_SCRIPT_LOGGING = YES Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = rodydavis ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios BUILD_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos CACHE_ROOT = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/C/com.apple.DeveloperTools/9.3-9E145/Xcode CCHROOT = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/C/com.apple.DeveloperTools/9.3-9E145/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos CONFIGURATION_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.3 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.3 DERIVED_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DEVELOPMENT_TEAM = 9FK3425VTA DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/rodydavis/Documents/Github/media_picker/example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_FRAMEWORK_DIR = /Users/rodydavis/Android/flutter/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/rodydavis/Android/flutter/flutter FLUTTER_TARGET = /Users/rodydavis/Documents/Github/media_picker/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios" /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 COCOAPODS=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/rodydavis ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = rodydavis INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 17E199 MAC_OS_X_VERSION_ACTUAL = 101304 MAC_OS_X_VERSION_MAJOR = 101300 MAC_OS_X_VERSION_MINOR = 1304 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app MODULE_CACHE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" OTHER_CPLUSPLUSFLAGS = -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" OTHER_LDFLAGS = -framework "Flutter" -framework "media_picker" -framework "path_provider" -framework "video_player" -framework "Flutter" -framework "media_picker" -framework "path_provider" -framework "video_player" OTHER_SWIFT_FLAGS = "-D" "COCOAPODS" "-D" "COCOAPODS" PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 15E217 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos PODS_PODFILE_DIR_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/. PODS_ROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PREVIEW_DART_2 = true PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.appleeducate.mediaPickerExample PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/rodydavis/Documents/Github/media_picker/example/ios PROJECT_FILE_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SCRIPT_OUTPUT_STREAM_FILE = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_DIR_iphoneos11_3 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_NAME = iphoneos11.3 SDK_NAMES = iphoneos11.3 SDK_PRODUCT_BUILD_VERSION = 15E217 SDK_VERSION = 11.3 SDK_VERSION_ACTUAL = 110300 SDK_VERSION_MAJOR = 110000 SDK_VERSION_MINOR = 300 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios SRCROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_COMPILATION_MODE = singlefile SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h SWIFT_OPTIMIZATION_LEVEL = -Onone SWIFT_PLATFORM_TARGET_PREFIX = ios SWIFT_SWIFT3_OBJC_INFERENCE = On SWIFT_VERSION = 4.0 SYMROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = rodydavis USER_APPS_DIR = /Users/rodydavis/Applications USER_LIBRARY_DIR = /Users/rodydavis/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = NO VALID_ARCHS = arm64 armv7 armv7s VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = rodydavis VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9E145 XCODE_VERSION_ACTUAL = 0930 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0930 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +163 ms] Installing and launching... [ ] Debugging is enabled, connecting to observatory [ +3 ms] /usr/bin/env ios-deploy --id a75015aff2fbecb29dcc8e459b14cba86c08f7fe --bundle build/ios/iphoneos/Runner.app --no-wifi --justlaunch --args --enable-dart-profiling --enable-checked-mode [ +21 ms] [....] Waiting for iOS device to be connected [ +13 ms] [....] Using a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s'. [ ] ------ Install phase ------ [ ] [ 0%] Found a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s' connected through USB, beginning install [ +211 ms] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/META-INF/ to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/META-INF/com.apple.ZipMetadata.plist to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/_CodeSignature/ to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/_CodeSignature/CodeResources to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@3x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon60x60@2x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Runner to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x.png to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@3x.png to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/libswiftRemoteMirror.dylib to device [ +88 ms] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Debug.xcconfig to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x.png to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@3x.png to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon60x60@3x.png to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/ to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/ to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/ to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/ to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/platform.dill to device [ +151 ms] [ 13%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/LICENSE to device [ +52 ms] [ 14%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/AssetManifest.json to device [ ] [ 14%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/kernel_blob.bin to device [ +337 ms] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/FontManifest.json to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/ to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/ to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/ to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/fonts/ to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/fonts/MaterialIcons-Regular.ttf to device [ +3 ms] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Assets.car to device [ +2 ms] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppFrameworkInfo.plist to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Generated.xcconfig to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/_CodeSignature/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/_CodeSignature/CodeResources to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/media_picker to device [ +2 ms] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/Info.plist to device [ ] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib to device [ +4 ms] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib to device [ +7 ms] [ 24%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCore.dylib to device [ +535 ms] [ 28%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib to device [ +14 ms] [ 29%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib to device [ +12 ms] [ 29%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftMetal.dylib to device [ +6 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib to device [ +24 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftos.dylib to device [ +5 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/ to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/_CodeSignature/ to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/_CodeSignature/CodeResources to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/video_player to device [ +1 ms] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/Info.plist to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib to device [ +5 ms] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/ to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/ to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources to device [ ] [ 33%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat to device [ +172 ms] [ 35%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter to device [ +625 ms] [ 41%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist to device [ ] [ 41%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/ to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/ to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/App to device [ +35 ms] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/Info.plist to device [ ] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib to device [ +10 ms] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib to device [ +4 ms] [ 44%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib to device [ +8 ms] [ 44%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib to device [ +216 ms] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib to device [ +5 ms] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/ to device [ ] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/ to device [ ] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/CodeResources to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/path_provider to device [ +1 ms] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/Info.plist to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/embedded.mobileprovision to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Info.plist to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/PkgInfo to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png to device [ +283 ms] [ 52%] CreatingStagingDirectory [ ] [ 57%] ExtractingPackage [ ] [ 60%] InspectingPackage [ +21 ms] [ 60%] TakingInstallLock [ +31 ms] [ 65%] PreflightingApplication [ +23 ms] [ 65%] InstallingEmbeddedProfile [ +3 ms] [ 70%] VerifyingApplication [ +93 ms] [ 75%] CreatingContainer [ +5 ms] [ 80%] InstallingApplication [ +8 ms] [ 85%] PostflightingApplication [ +1 ms] [ 90%] SandboxingApplication [ +9 ms] [ 95%] GeneratingApplicationMap [ +68 ms] [100%] Installed package build/ios/iphoneos/Runner.app [ +234 ms] ------ Debug phase ------ [ ] Starting debug of a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s' connected through USB... [ +492 ms] [ 0%] Looking up developer disk image [ +15 ms] [ 95%] Developer disk image mounted successfully [ +227 ms] [100%] Connecting to remote debug server [ ] ------------------------- [ +34 ms] (lldb) command source -s 0 '/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap-lldb-prep-cmds-a75015aff2fbecb29dcc8e459b14cba86c08f7fe' [ ] Executing commands in '/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap-lldb-prep-cmds-a75015aff2fbecb29dcc8e459b14cba86c08f7fe'. [ ] (lldb) platform select remote-ios --sysroot '/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols' [ ] Platform: remote-ios [ ] Connected: no [ ] SDK Path: "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols" [ ] (lldb) target create "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app" [ +161 ms] Traceback (most recent call last): [ ] File "<input>", line 1, in <module> [ ] File "/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py", line 52, in <module> [ ] import weakref [ ] File "/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/weakref.py", line 14, in <module> [ ] from _weakref import ( [ ] ImportError: cannot import name _remove_dead_weakref [+3255 ms] Current executable set to '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app' (arm64). [ ] (lldb) script fruitstrap_device_app="/private/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1/Runner.app" [ ] (lldb) script fruitstrap_connect_url="connect://127.0.0.1:59614" [ ] (lldb) target modules search-paths add /usr "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/usr" /System "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/System" "/private/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos" "/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos" /Developer "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/Developer" [ +60 ms] (lldb) command script import "/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.py" [ +9 ms] (lldb) command script add -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.connect_command connect [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.run_command run [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.autoexit_command autoexit [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.safequit_command safequit [ ] (lldb) connect [ +27 ms] (lldb) run [ +342 ms] success [ ] (lldb) safequit [ +146 ms] Application launched on the device. Waiting for observatory port. Rodys-MBP:media_picker rodydavis$ flutter analyze Analyzing /Users/rodydavis/Documents/Github/media_picker... error • Target of URI doesn't exist: 'package:video_player/video_player.dart' at example/lib/main.dart:11:8 • uri_does_not_exist error • Undefined class 'VideoPlayerController' at example/lib/main.dart:39:3 • undefined_class error • Undefined name 'VideoPlayerController' at example/lib/main.dart:46:26 • undefined_identifier error • Undefined name 'VideoPlayerController' at example/lib/main.dart:75:19 • undefined_identifier error • The constructor returns type 'dynamic' that isn't of expected type 'Widget' at example/lib/main.dart:110:22 • strong_mode_invalid_cast_new_expr error • Undefined class 'VideoPlayer' at example/lib/main.dart:110:26 • undefined_class error • Target of URI doesn't exist: 'package:flutter_test/flutter_test.dart' at example/test/widget_test.dart:8:8 • uri_does_not_exist error • Target of URI doesn't exist: 'package:media_picker_example/main.dart' at example/test/widget_test.dart:10:8 • uri_does_not_exist error • The function 'testWidgets' isn't defined at example/test/widget_test.dart:13:3 • undefined_function error • Undefined class 'WidgetTester' at example/test/widget_test.dart:13:43 • undefined_class error • Undefined class 'MyApp' at example/test/widget_test.dart:15:33 • undefined_class error • The function 'expect' isn't defined at example/test/widget_test.dart:18:5 • undefined_function error • Undefined name 'find' at example/test/widget_test.dart:19:9 • undefined_identifier error • Undefined name 'findsOneWidget' at example/test/widget_test.dart:23:9 • undefined_identifier hint • Unused import: 'package:path_provider/path_provider.dart' at example/lib/main.dart:10:8 • unused_import hint • Unused import: 'package:path_provider/path_provider.dart' at lib/media_picker.dart:10:8 • unused_import 16 issues found. (Ran in 4.8s) Rodys-MBP:media_picker rodydavis$ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel beta, v0.3.2, on Mac OS X 10.13.4 17E199, locale en-US) [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) [✓] iOS toolchain - develop for iOS devices (Xcode 9.3) [✓] Android Studio (version 3.1) [✓] VS Code (version 1.23.0) [✓] Connected devices (4 available) • No issues found!
From http://docs.flutter.io/flutter_driver/flutter_driver-library.html I see: """ This library provides API to test Flutter applications that run on real devices and emulators. The application run in a separate process from the test itself. If you are familiar with Selenium (web), Espresso (Android) or UI Automation (iOS), this is Flutter's version of that. This is Flutter's version of Selenium WebDriver (generic web), Protractor (Angular), Espresso (Android) or Earl Gray (iOS). """ Notice how we mention Selenium, Espresso, etc twice.
0
### Vue.js version 1.0.16 ### Reproduction Link https://jsfiddle.net/4eh989ee/2/ ### Steps to reproduce 1. Focus on the only input available within the `output` window, type a single `k` letter and immediately hit enter. 2. Clear the text in the output. 3. Type a single `k` letter, wait a two (2) seconds or more, and hit enter ### What is Expected? 1. Alert is show with the contents reading `name: ""` 2. N/A 3. Alert is show with the contents reading `name: "k"` ### What is actually happening? The model does not get set when the form is submitted. ### Note This is a duplicate of issue #2028. I commented after it was closed but didn't get any feedback. I don't know if anyone is being notified of the comments following the close of the issue.
### Version 2.5.17 ### Reproduction link https://jsfiddle.net/632dch1e/ ### Steps to reproduce open link to minimal reproduction ### What is expected? Keep the type even if you set the class that extends Array to data. ### What is actually happening? Methods defined in a class that extends Array can not be used. Also, since the class of each object of Array remains as it is, the class structure is broken.
0
##### Issue Type: * **Bug Report** ##### Ansible Version: Ansible version: _1.9.2_ Jinja2 version: _2.8_ Obtained from pip install on OS described hereafter ##### Ansible Configuration: No change. ##### Environment: Ubuntu 14.04.03 LTS, no virtualenv, pip installed ##### Summary: Jinja 2.1 added the possibility to use the variable yielded by a for loop into an included template. From Jinja website (http://jinja.pocoo.org/docs/dev/templates/#include): > Note > In Jinja 2.0, the context that was passed to the included template did not > include variables defined > in the template. As a matter of fact, this did not work: > > > {% for box in boxes %} > {% include "render_box.html" %} > {% endfor %} > > > The included template render_box.html is not able to access box in Jinja > 2.0. As of Jinja 2.1, > render_box.html is able to do so. Although I use Jinja 2.8 (along with Ansible 1.9), this feature is unavailable/broken by the Ansible template module. This report is not a "feature support" request but a "stop breaking a feature" request :) ##### Steps To Reproduce: To reproduce the bug, use the following playbook : --- - hosts: desktop gather_facts: no vars: nom: "Toto!" some_list: - "elmt 1" - "elmt 2" tasks: - name: "test" template: src: /tmp/tmpl dest: /tmp/output /tmp/tmpl contains: hello {{ nom }} {% for elmt in some_list %} {% include 'do_smth_with_elmt' with context %} {% endfor %} /tmp/do_smth_with_elmt: Print {{ elmt }} ##### Expected Results: No error message from Ansible and rendering of the template ##### Actual Results: Output from Ansible is : PLAY [desktop] **************************************************************** TASK: [test] ****************************************************************** fatal: [desktop.local] => {'msg': "AnsibleUndefinedVariable: One or more undefined variables: 'elmt' is undefined", 'failed': True} fatal: [desktop.local] => {'msg': "AnsibleUndefinedVariable: One or more undefined variables: 'elmt' is undefined", 'failed': True} FATAL: all hosts have already failed -- aborting PLAY RECAP ******************************************************************** to retry, use: --limit @/home/user/test.retry desktop.local : ok=0 changed=0 unreachable=1 failed=0 **Comment** : If I had to do some fingerpointing, I would blame the `new_context` system of the `J2Template` class: https://github.com/ansible/ansible/blob/stable-1.9/lib/ansible/utils/template.py#L212-L213 Since I am totally unfamiliar with Ansible source code, I might be wrong, though. At any rate, the following python script runs flawlessly on my machine: import jinja2 loader = jinja2.FileSystemLoader('/tmp') e = jinja2.Environment(loader=loader) t = e.get_template('tmpl') print t.render(nom='Toto!', some_list=['elmt1', 'elmt2']) Thank you.
Currently async operations in playbooks and /usr/bin/ansible are duplicating a lot of code. Using async through the API is also very ugly. I've been thinking about this and would propose a method runAsync() on Runner that returns an object with a poll() method and does all the bookkeeping involved. Timing would be external? Async is also not fully integrated in the callback system, this can also be fixed, along with cleaning up the files in ~/.ansible_async. Any feedback? I could probably do this by the weekend.
0
Ubuntu 14.04 64bit Firefox and Chromium Built from source, master branch. **Edit: There appear to be no issues when building from the 0.10RC github release source.** The GRAPHS tab displays all correctly, all the summary titles are displayed correctly, it even lets me download CSV/JSON in EVENTS but it doesn't actually display the visuals. In HISTOGRAMS all I see are dots instead of the visuals, in EVENTS I see the "cost_function" and when I click on it I see it repeated but no accompanying visual. All the visuals appear to have empty space allocated to them, nothing appears collapsed. Screenshots: http://i.imgur.com/i3B3Rdk.png http://i.imgur.com/NBhxoNR.png Screenshot with the option to download CSV/JSON (they do contain valid data): http://i.imgur.com/NaTMaTb.png Terminal output: 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET / HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/webcomponentsjs/webcomponents-lite.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /lib/css/global.css HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/lodash/lodash.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/d3/d3.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/plottable/plottable.css HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/plottable/plottable.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/graphlib/dist/graphlib.core.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/dagre/dist/dagre.core.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/polymer/polymer.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-ajax/iron-ajax.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-collapse/iron-collapse.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-list/iron-list.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-button/paper-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-checkbox/paper-checkbox.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dialog/paper-dialog.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dropdown-menu/paper-dropdown-menu.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-header-panel/paper-header-panel.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-icon-button/paper-icon-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-item/paper-item.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu/paper-menu.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-progress/paper-progress.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-radio-button/paper-radio-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-radio-group/paper-radio-group.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-slider/paper-slider.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/paper-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-toggle-button/paper-toggle-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-toolbar/paper-toolbar.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-tabs/paper-tabs.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /dist/tf-tensorboard.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/polymer/polymer-mini.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-ajax/iron-request.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-resizable-behavior/iron-resizable-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-material/paper-material.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-ripple/paper-ripple.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-button-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-flex-layout/iron-flex-layout.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/default-theme.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-checked-element-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/neon-animation-runner-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dialog-behavior/paper-dialog-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dialog-behavior/paper-dialog-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-behaviors/iron-button-state.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-behaviors/iron-control-state.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-form-element-behavior/iron-form-element-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-icon/iron-icon.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu-button/paper-menu-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-validatable-behavior/iron-validatable-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dropdown-menu/paper-dropdown-menu-icons.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dropdown-menu/paper-dropdown-menu-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-inky-focus-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-input/iron-input.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-char-counter.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-container.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-error.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-item/paper-item-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-menu-behavior/iron-menu-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-item/paper-item-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu/paper-menu-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/color.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-range-behavior/iron-range-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-selector/iron-selectable.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-flex-layout/classes/iron-flex-layout.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/shadow.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/typography.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-menu-behavior/iron-menubar-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-tabs/paper-tabs-icons.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-tabs/paper-tab.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/polymer/polymer-micro.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/promise-polyfill/promise-polyfill-lite.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-material/paper-material-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-ripple-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-checked-element-behavior/iron-checked-element-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-meta/iron-meta.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/neon-animatable-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/promise-polyfill/Promise.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-overlay-behavior/iron-overlay-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-iconset-svg/iron-iconset-svg.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-dropdown/iron-dropdown.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/animations/fade-in-animation.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/animations/fade-out-animation.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu-button/paper-menu-button-animations.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-a11y-announcer/iron-a11y-announcer.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-addon-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-selector/iron-multi-selectable.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-selector/iron-selection.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-flex-layout/classes/iron-shadow-flex-layout.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/font-roboto/roboto.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-fit-behavior/iron-fit-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/animations/opaque-animation.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-overlay-behavior/iron-overlay-manager.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-dropdown/iron-dropdown-scroll-manager.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/neon-animation-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/web-animations.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-overlay-behavior/iron-overlay-backdrop.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/web-animations-js/web-animations-next-lite.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:15] "GET /data/runs HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:15] "GET /data/runs HTTP/1.1" 200 -
After a clean install of TensorFlow v0.10 (from `master`) my TensorBoard is suddenly broken. The scalar event plots do not show upon clicking (see screenshow below). While the logs in the terminal do not show any errors, the Chrome Developer console shows the following error upon opening a figure: tf-tensorboard.html:1517 Uncaught Error: tf-chart-scaffold's content doesn't implement the required interfaceinsertBefore @ VM2478 polymer-mini.html:560 I am running Chrome Version 52.0.2743.116 (64-bit) on Linux Mint 17. ![TensorBoard](https://camo.githubusercontent.com/bedbaf7fd1ce31a10c862fe38488e3863d919e0c0446d7b8f3825d41bd5245bd/687474703a2f2f692e696d6775722e636f6d2f476e5234364e4c2e706e67)
1
Hello, I'm working on the typescript definitions for createjs, you can see it here: https://bitbucket.org/drk4/createjs_ts_definitions I think its a good idea to have the definitions on a single place so, if you're interested you can add it. It still needs testing, so maybe have a message saying that I suppose. Cheers
I recently created bluebird definitions using `any` as data type. But ideally it should use generics, like `Q`, `es6-promises` etc. I'm not 100% clear what the correct pattern is. It looks like #1550 has the same basic Promise signature, maybe copy it from there once it settled.
0
by **kq1quick** : The language specification currently states: Tokens Tokens form the vocabulary of the Go language. There are four classes: identifiers, keywords, operators and delimiters, and literals. White space, formed from spaces (U+0020), horizontal tabs (U +0009), carriage returns (U+000D), and newlines (U+000A), is ignored except as it separates tokens that would otherwise combine into a single token. While breaking the input into tokens, the next token is the longest sequence of characters that form a valid token. The second sentence is wrong: it states that there are "four" classes and then proceeds to enumerate 5. The third sentence is no longer true with the Dec 22 release. At a minimum, the assertion above that carriage returns are whitespace must be removed because they now no longer server to separate tokens and are ignored otherwise: they significantly affect the parse. See issues 453 and 454 and http://groups.google.com/group/golang-nuts/t/9eb0c7c1f20db921 (particularly my post). More explicitly, it should discuss the fact that newlines are sometimes just whitespace and sometimes parse elements and that there are special rules throughout the latter portions of the language specification detailing when they are not just whitespace. To this end, newlines may form the 6th class of tokens.
Go documentation is very good, but it doesn't clearly label which go version features are available in. For instance I was caught out by http://golang.org/pkg/time/#Timer.Reset being a go 1.1 feature which meant my code would no longer compile with go 1.0. Other examples are * http://golang.org/pkg/net/http/#Transport.CancelRequest * ResponseHeaderTimeout in http://golang.org/pkg/net/http/#Transport
0
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.7.3 * Operating System version: xxx * Java version: 1.8 * Springboot: 2.1.8 * nacos: 1.1.3 ### Steps to reproduce this issue 1. 在@reference配置指定方法的超时时间2000,其他地方的超时配置全去掉 2. 测试 3. dubbo使用了超时时间1000,即@reference的配置不生效 Pls. provide [GitHub address] to reproduce this issue. ### Expected Result 1. 关于超时时间的优先级,我的理解是@reference>@service>consumer的yml配置>provider的yml配置 2. 在provider和consumer的bootstrap.yml里使用dubbo.consumer.timeout和dubbo.provider.timeout配置各自的全局超时时间 3. 在@reference和@service注解上配置指定方法或指定类的超时时间 4. 期望通过以上方式合理的控制超时时间 ### Actual Result 1. springboot+dubbo+nacos项目能够正常运行 2. 只在consumer的yml里使用dubbo.consumer.timeout配置超时时间,生效,符合预期 3. 注释掉2的配置,系统使用了dubbo的默认超时时间1000,符合预期 4. 只在 consumer使用@reference(version = "${this.version}", timeout = 6000) 不符合预期 ,期望使用6000,测试结果显示使用了默认的1000 5. 只在consumer使用@reference(version = "${this.version}" ,methods = { @method(name = "xxxMethod", timeout = 5000) }) 不符合预期 期望使用配置的,测试结果显示使用了默认的1000 6. 只在provider配置@service(version = "${this.version}", methods = { @method(name = "xxxMethod", timeout = 21000) }) 不符合预期 期望使用配置的,测试结果显示使用了默认的1000 7. 只在@service(version = "${this.version}", timeout = 4000)配置超时时间, 符合预期 8. 在provider的yml里配置dubbo.provider.timeout=5000,并在@service(version = "${this.version}", timeout = 4000), 不符合预期,测试结果是5000,期望是service上的能覆盖全局的 总结: 1. 请问是我优先级理解错误,还是@reference和@service注解配置不生效 2. 如何实现在一个地方可以配置整体的超时时间,又可以在特定的接口或者方法上配置特殊的超时时间 注: 1.用的是org.apache.dubbo.config.annotation.Reference和org.apache.dubbo.config.annotation.Service 2\. consumer是一个springboot项目 , provider是另一个springboot项目,服务的注册发现,提供给别的项目使用,都没有问题.
* I have searched the issues of this repository and believe that this is not a duplicate. * I have checked the FAQ of this repository and believe that this is not a duplicate. ### Environment * Dubbo version: 2.6.2 * Operating System version: CentOS x64 * Java version: 1.8 ### Steps to reproduce this issue 1. 使用dubbo 2.6.2,搭建dubbo服务(技术栈:dubbo,spring boot 2.0.4.RELEASE,zookeeper) 2. 暴露dubbo任意dubbo服务,此服务的逻辑中调用别的服务 3. 运行一段时间后,发现控制台界面出现以下警告: `WARN com.alibaba.dubbo.registry.integration.RegistryDirectory:200 notify [DUBBO] Unsupported category providers,configurators,routers in notified url: empty://。。。` 从日志中查看到,警告为RegistryDirectory类第 200行打印出的警告,如下图: ![01](https://user- images.githubusercontent.com/43158596/58146768-246d8880-7c8a-11e9-8946-2e7fb61ebab6.jpg) 通过断点,进一步追综代码运行堆栈,发现,问题可能在于 CuratorWatcherImpl (CuratorZookeeperClient类的一个内部类),process方法中,path为null引起,如下图: ![02](https://user- images.githubusercontent.com/43158596/58146992-1f5d0900-7c8b-11e9-9e84-6fbaea8f1566.jpg) 因为当以上170行代码的 path为null 的时候,会被赋予一个空字符串"",这导致 171行代码调用childChanged时,传了空串参数进去。(请注意上图中第172处的 // if path is null, curator using watcher will throw NullPointerException. 之类的注释,可能有助于解决这个问题) 因为为path赋值了空串参数,导致 ZookeeperRegistry类中的 179行代码进调用 notify 的时候,传了空字符串参数进去,如下图: ![03](https://user- images.githubusercontent.com/43158596/58147289-6992ba00-7c8c-11e9-9005-c2a63c50db43.jpg) (说明:以上代码块为 ZookeeperRegistry 中的 doSubscribe 方法,用于消费者订阅 ,该方法内部开启了一个监听节点变化的 listener),因为进传递进来的 parentPath 参数为空串,导致 179行代码在调用 toUrlsWithEmpty 方法的时候,得到的 url 中的 category 的值依旧为providers,configurators,routers ,重而导致上诉警告。 ![09](https://user- images.githubusercontent.com/43158596/58147670-3b15de80-7c8e-11e9-8602-b4b8184b914b.jpg) 通过以上分析,问题原因,很可能就是 RegistryDirectory类第 170行处path为null引起,通过那段代码块的注释,我猜测,可能 是为了解决 空指针异常而产生的新的警告,相关issue如下: #870 #928
0