Displaying 6 results from an estimated 6 matches for "argumen".
Did you mean:
argument
2005 Aug 15
2
stepAIC invalid scope argument
...df )
Running any of the following commands
stepAIC( mid, scope=list(upper = ~x1 + x2 + x3 , lower = ~1) )
stepAIC( mid, scope=list(upper = hi , lower = lo) )
addterm( mid, ~ x1 + x2 + x3 )
addterm( lo, hi )
gives the same error message :
Error in eval(expr, envir, enclos) : invalid second argument
Here is a traceback of the first failed command :
14: eval(predvars, data, env)
13: model.frame.default(formula = y ~ x2 + x3 + x1, data = df, drop.unused.levels = TRUE)
12: model.frame(formula = y ~ x2 + x3 + x1, data = df, drop.unused.levels = TRUE)
11: eval(expr, envir, enclos)
10: eval(m...
2010 Oct 10
9
Dovecot 2.0.5 and BSDI 4.3 again
...dumps d
isabled)
Oct 10 16:30:45 doctor dovecot: log: Error: l->fd: 20
Oct 10 16:30:45 doctor dovecot: log: Error: &conn.remote_ip: 134511880
Oct 10 16:30:45 doctor dovecot: log: Error: &conn.remote_port: 134511900
Oct 10 16:30:45 doctor dovecot: log: Error: net_accept() failed: Invalid argumen
t
Oct 10 16:30:45 doctor dovecot: master: Error: service(imap-login): command star
tup failed, throttling
Oct 10 16:30:46 doctor dovecot: master: Error: service(pop3-login): command star
tup failed, throttling
Oct 10 16:31:46 doctor dovecot: master: Error: service(pop3-login): command star
tup fail...
2005 Dec 09
2
segfault following a detach
Hello, first off, thanks for all of the previous help; hopefully someone
will have some insight on this question. I am attempting to track down a
segmentation fault which occurs only after a detach(2) is called in the
code (I have replaced the detach(2) with detach(package:DSA) and that
fails as well (furthermore, I have removed the detach calls and it does
not segfault)). It has proved
2007 Feb 09
20
Hello Everyone
I have a bit of a problem with installation. I installed wxX11 in my
linux box. I compiled the demos and all the demos, save dbbrowse,
work. I think I have a functional wx. Now I''m trying to install wxRuby
from source, since I have a 64 bit machine. I only have permission to
my home directory so my installation is :
/usr/people/stevenq/Applications/wxX11/
2007 Feb 19
0
22 commits - libswfdec/js libswfdec/swfdec_debugger.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_script.c
...terval SwfdecJSInterval;
+struct _SwfdecJSInterval {
+ SwfdecTimeout timeout;
+ SwfdecPlayer * player; /* needed so it can be readded */
+ unsigned int id; /* id this interval is identified with */
+ unsigned int msecs; /* interval in milliseconds */
+ unsigned int n_args; /* number of arguments to call function with */
+ jsval vals[0]; /* values: 0 is function, 1 is object, 2-n are arguments */
+};
+
+void
+swfdec_js_interval_free (SwfdecJSInterval *interval)
+{
+ JSContext *cx = interval->player->jscx;
+ guint i;
+
+ swfdec_player_remove_timeout (interval->player, &i...
2013 Oct 15
0
[LLVMdev] [llvm-commits] r192750 - Enable MI Sched for x86.
...===============================================================
>> --- llvm/trunk/lib/Target/X86/X86Subtarget.h (original)
>> +++ llvm/trunk/lib/Target/X86/X86Subtarget.h Tue Oct 15 18:33:07 2013
>> @@ -383,11 +383,14 @@ public:
>> /// memset with zero passed as the second argument. Otherwise it
>> /// returns null.
>> const char *getBZeroEntry() const;
>> -
>> +
>> /// This function returns true if the target has sincos() routine in its
>> /// compiler runtime or math libraries.
>> bool hasSinCos() const;
>>
>>...