search for: _eval

Displaying 7 results from an estimated 7 matches for "_eval".

Did you mean: eval
2017 Sep 07
1
Redis db permission issue while running GitLab in Kubernetes with Gluster
...`call' 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /home/git/gitlab/vendor/bundle/ruby/2.3.0/gems/peek-redis-1.2.0/lib/peek/views/redis.rb:9:in `call' 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /home/git/gitlab/vendor/bundle/ruby/2.3.0/gems/redis-3.3.3/lib/redis.rb:2399:in `block in _eval' 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /home/git/gitlab/vendor/bundle/ruby/2.3.0/gems/redis-3.3.3/lib/redis.rb:58:in `block in synchronize' 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /usr/lib/ruby/2.3.0/monitor.rb:214:in `mon_synchronize' 2017-09-07T11:53:03.100Z 547 TID-1f...
2007 Jun 08
0
Changes to 'refs/tags/0.4.2'
...ging g_print handle tokens without children add initial support for auto-extraction of contents make the color functions return a SwfdecColor implement StringAdd and GetURL, so Steve dances again add support for colors and the SetBackground tag implement swfdec_js_eval_set use swfdec_js_eval_set for SetVariable That line must've been accidentally removed somewhere rework case sensitivity once again - this time making it global and set only on startup use automatic hscrollbars, too makee debugging work again set property on...
2017 Sep 08
1
Redis db permission issue while running GitLab in Kubernetes with Gluster
...t; 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /home/git/gitlab/vendor/bundle/ruby/2.3.0/gems/peek-redis-1.2.0/lib/peek/views/redis.rb:9:in `call' >> 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /home/git/gitlab/vendor/bundle/ruby/2.3.0/gems/redis-3.3.3/lib/redis.rb:2399:in `block in _eval' >> 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /home/git/gitlab/vendor/bundle/ruby/2.3.0/gems/redis-3.3.3/lib/redis.rb:58:in `block in synchronize' >> 2017-09-07T11:53:03.100Z 547 TID-1fdf1k ERROR: /usr/lib/ruby/2.3.0/monitor.rb:214:in `mon_synchronize' >> 2017-09-...
2007 Jan 26
0
Branch 'interpreter' - 9 commits - libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_debugger.c libswfdec/swfdec_debugger.h libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_event.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c
...t_token.c | 1 18 files changed, 225 insertions(+), 124 deletions(-) New commits: diff-tree 6f0034ba32dd13577f1f2fb050734a7c55b4fdec (from db8da8e1714ce0839759c2fd0e65fbd6debf51fa) Author: Benjamin Otte <otte@gnome.org> Date: Fri Jan 26 21:32:40 2007 +0100 use NULL in _eval of SetVariable and GetVariable to walk the scope chain diff --git a/libswfdec/swfdec_script.c b/libswfdec/swfdec_script.c index a3bb563..7848e14 100644 --- a/libswfdec/swfdec_script.c +++ b/libswfdec/swfdec_script.c @@ -316,7 +316,7 @@ swfdec_action_get_variable (JSContext *c s = swfdec_js_to_s...
2007 Apr 27
0
Changes to 'refs/tags/0.4.3'
...ging g_print handle tokens without children add initial support for auto-extraction of contents make the color functions return a SwfdecColor implement StringAdd and GetURL, so Steve dances again add support for colors and the SetBackground tag implement swfdec_js_eval_set use swfdec_js_eval_set for SetVariable That line must've been accidentally removed somewhere rework case sensitivity once again - this time making it global and set only on startup use automatic hscrollbars, too makee debugging work again set property on...
2007 Apr 27
0
Changes to 'refs/tags/0.4.4'
...ging g_print handle tokens without children add initial support for auto-extraction of contents make the color functions return a SwfdecColor implement StringAdd and GetURL, so Steve dances again add support for colors and the SetBackground tag implement swfdec_js_eval_set use swfdec_js_eval_set for SetVariable That line must've been accidentally removed somewhere rework case sensitivity once again - this time making it global and set only on startup use automatic hscrollbars, too makee debugging work again set property on...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...> Date: Wed Jan 31 16:26:51 2007 +0100 make eval (obj, "") return obj and not undefined diff --git a/libswfdec/swfdec_js.c b/libswfdec/swfdec_js.c index 829c1ad..4c14100 100644 --- a/libswfdec/swfdec_js.c +++ b/libswfdec/swfdec_js.c @@ -343,7 +343,7 @@ static gboolean swfdec_js_eval_internal (JSContext *cx, JSObject *obj, const char *str, jsval *val, gboolean set) { - jsval cur = JSVAL_NULL; + jsval cur; char *work = NULL; SWFDEC_LOG ("eval called with \"%s\" on %p", str, obj); @@ -358,8 +358,8 @@ swfdec_js_eval_internal (JSContext *cx,...