search for: foget

Displaying 9 results from an estimated 9 matches for "foget".

Did you mean: forget
2007 Oct 11
1
[PATCH] Fix compiler warnings that prevent compilation
...context->memory += bytes; context->memory_since_gc += bytes; - SWFDEC_LOG ("+%4u bytes, total %7u (%7u since GC)", bytes, + SWFDEC_LOG ("+%4zu bytes, total %7zu (%7zu since GC)", bytes, context->memory, context->memory_since_gc); /* FIXME: Don't foget to abort on OOM */ return TRUE; @@ -219,7 +219,7 @@ swfdec_as_context_unuse_mem (SwfdecAsContext *context, gsize bytes) g_return_if_fail (context->memory >= bytes); context->memory -= bytes; - SWFDEC_LOG ("-%4u bytes, total %7u (%7u since GC)", bytes, + SWFDEC_LOG (&...
2008 Aug 12
0
TheBat! help...
...at! installation. It seems that the install works for most users (see: http://appdb.winehq.org/objectManager.php?sClass=version&iId=2704&iTestingId=3730) - except the icons of course. I've got another problem: the account do not seem to be saved. No, more specifically, TheBat! seems to foget that I created an account. The account settings and the program settings are still there. What happens? 1) create an account with the "new account wizard" that pops up on the first start 2) configure account and program 3) restart TheBat! 4) new account wizard pops up again 5) when...
2005 Oct 12
1
Winbind is DISCONNECTED after restart
I'm experiencing a strange problem on one RHEL4 system with Samba 3.0.20a. After restarting the Samba and Winbind services, the domain connection doesn't work any longer: # wbinfo --sequence HA02 : 1 BUILTIN : 1 CRT : DISCONNECTED Before restarting, I got: # wbinfo --sequence CRT : 254 The strange thing is that if I remove /etc/samba/secrets.tdb before (re)starting Samba, this
2012 Mar 30
1
cannot use xensocket on xen4.0.1
Hi, I want to use shared memory to communicate with two DomUs, and so I download a revised version of xensocket. The original version uses out-dated API and cannot run on current version of Xen. However, even with this new one, the simple test of send and recieve still doesn''t work. Here is my VMID; [root@localhost ~]# xm list Name ID
2006 May 20
0
How can you buy R? [Broadcast]
...like to know. Best Wishes, Spencer Graves Marc Schwartz (via MN) wrote: > On Fri, 2006-05-19 at 17:59 -0300, Rogerio Porto wrote: >> While reading the various answers, I've remembered that >> the juridic part can't be that so simple. If I'm not fogeting >> something, there are some packages in R that has a more >> restrictive licence than GPL. >> >> HTH, >> >> Rogerio. > > Any CRAN packages (or other R packages not on CRAN) that have > "non-commercial" use restrictions, likely woul...
2007 Jun 29
0
Branch 'as' - 3 commits - doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h
...de to stop the script engine with an out of + * memory error. * * Returns: %TRUE if the memory could be allocated. %FALSE on OOM. **/ @@ -105,6 +164,7 @@ swfdec_as_context_use_mem (SwfdecAsConte context->memory += bytes; context->memory_since_gc += bytes; + /* FIXME: Don't foget to abort on OOM */ return TRUE; } @@ -184,6 +244,13 @@ swfdec_as_context_collect (SwfdecAsConte SWFDEC_INFO (">> done collecting garbage"); } +/** + * swfdec_as_object_mark: + * @object: a #SwfdecAsObject + * + * Mark @object as being in use. Calling this function is onl...
2006 May 18
9
How can you buy R?
Hi all, This may seem like a dumb question, but I work for an entity that is soon converting to XP across the board, and I will lose the ability to install software on my own. The entity has a policy of only using software that has been purchased and "properly licensed" (whatever that means). This means I will soon lose the ability to use R at work - something I can't do without
2007 Oct 11
0
2 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
...)", bytes, - context->memory, context->memory_since_gc); + SWFDEC_LOG ("+%4"G_GSIZE_FORMAT" bytes, total %7"G_GSIZE_FORMAT" (%7"G_GSIZE_FORMAT" since GC)", + bytes, context->memory, context->memory_since_gc); /* FIXME: Don't foget to abort on OOM */ return TRUE; } @@ -219,8 +219,8 @@ swfdec_as_context_unuse_mem (SwfdecAsCon g_return_if_fail (context->memory >= bytes); context->memory -= bytes; - SWFDEC_LOG ("-%4u bytes, total %7u (%7u since GC)", bytes, - context->memory, context->m...
2007 Jul 02
0
Branch 'as' - 24 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_array.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c
...fdecAsConte g_return_val_if_fail (SWFDEC_IS_AS_CONTEXT (context), FALSE); g_return_val_if_fail (bytes > 0, FALSE); + if (context->state == SWFDEC_AS_CONTEXT_ABORTED) + return FALSE; + context->memory += bytes; context->memory_since_gc += bytes; /* FIXME: Don't foget to abort on OOM */ @@ -356,6 +359,8 @@ swfdec_as_context_gc (SwfdecAsContext *c g_return_if_fail (context->frame == NULL); g_return_if_fail (context->state != SWFDEC_AS_CONTEXT_NEW); + if (context->state == SWFDEC_AS_CONTEXT_ABORTED) + return; SWFDEC_INFO ("invoking the...