Displaying 12 results from an estimated 12 matches for "log_s".
Did you mean:
log's
2010 Sep 24
1
Fitting GLMM models with glmer
...hese examples came from a paper by Nelson et al. (Use of the
Probability Integral Transformation to Fit Nonlinear Mixed-Models
with Nonnormal Random Effects - 2006). Firstly the authors fit a
Poisson model with canonical link and a single normal random effect
bi ~ N(0;Sigma^2).The SAS routine was:
log_s =log(SURVT)
cens=1
proc nlmixed data=liver;
parms logsig2 = 0 b0 = -2.8 btrt = -0.54 bhrt =0.18;
xb= log_s + b0 + btrt * treat + bhrt * heart+ bi;
lambda=exp(xb);
model cens ~ poisson(lambda);
random bi ~ normal(0,exp(logsig2)) subject=INST;
run;
I obtained the same results for parameters estimate...
2012 Feb 20
1
slope in curves - how to compare?
Hello,
Is there any formula or way to compare slopes of different functions?
If we fit 2 functions in our data, and we have 2 slope parameters, how can we compare these slopes? Plotting y=5x and y=exp(5x) in which slope is equal to 5 in both of them.. doesn't seem that it makes sense to compare them. Maybe what I ask is basic statistics.. but you may be aware of some formula that could
2020 Mar 26
0
[PATCH nbdkit 3/9] server: Add log_verror function.
...nternal.h
+++ b/server/internal.h
@@ -297,6 +297,9 @@ extern void add_debug_flag (const char *arg);
extern void apply_debug_flags (void *dl, const char *name);
extern void free_debug_flags (void);
+/* log.c */
+extern void log_verror (const char *fs, va_list args);
+
/* log-*.c */
extern void log_stderr_verror (const char *fs, va_list args)
__attribute__((__format__ (printf, 1, 0)));
diff --git a/server/log.c b/server/log.c
index 73493563..37de3dd2 100644
--- a/server/log.c
+++ b/server/log.c
@@ -40,11 +40,11 @@
#include "internal.h"
-/* Call the right nbdkit_verror function...
2019 Nov 25
0
Lmtp logging, does not log
Looks like dovecot is not sending stuff to syslog anymore I am getting
some message in /tmp/dovecot.log. However the lmtp log files are not
even created.
bash-5.0# doveconf | grep log_
auth_policy_log_only = no
debug_log_path =
deliver_log_format = msgid=%m: %$
doveadm_http_rawlog_dir =
imapc_rawlog_dir =
info_log_path =
lmtp_proxy_rawlog_dir = /tmp/lmtp-proxy.log
lmtp_rawlog_dir =
1997 Jan 02
2
Re: libc bugs (was Re: Distributions...)
Marek Michalkiewicz <marekm@I17LINUXB.ISTS.PWR.WROC.PL> wrote:
: It seems that most of the RedHat 5.3.12 security patches are in the
: standard 5.4.17, except for the patch below. Also, there are more
: (different) fixes in 5.4.18 (check h_length against sizeof(sin_addr)
: in inet/rcmd.c and inet/rexec.c).
: + {
: +
1999 Dec 06
0
Help with account mapping and guest
For public shares including the IPC$ share for browsing, a guest account was
sufficient for access when user had no account on Unix box. With 2.06
however on my Solaris 2.7 box I can not seem to make the box browsable or
public shares work for non account visitors. I have tried the guest = *
entry in the map file, but than account that were already mapped get
remapped to guest and local account
2018 Nov 08
0
Crashes on File Access - Post Solaris Patching
I recently patched my Solaris server and suddenly my Samba service is not working correctly.
When Anyone accesses a samba share the samba daemon panics and shuts down. Solaris than restarts the system, unless there are multiple panics simultaneously than the service is placed in maintenance mode.
The SAMBA server is a stand alone supporting a dozen end users for a large file store behind the
2018 Feb 19
2
Migration from 3.6.25-0ubuntu0.12.04.10 to 4.x with passdb backend = ldapsam
...s) client authenticating, when samba
tries to start a new smbd instance (as i understand). I saw client
authentication success, which interrupts in following places:
In case with 4.3.11+dfsg-0ubuntu0.16.04.12 from ubuntu xenial there is
error in `/usr/lib/x86_64-linux-gnu/samba/libsmbregistry.so.0(log_stack_trace+0x1a)
[0x7f2bc30a17aa]`
In case with 4.7.5-1 from .../stable/samba-4.7.5.tar.gz there is error in
`/usr/local/samba/lib/libsmbconf.so.0(log_stack_trace+0x1f)
[0x7f111922a64b]`
What should be my further actions?
As described in logs: "Please read the Trouble-Shooting section of the...
2018 Feb 26
0
Fwd: Client fails to mount with Samba running as daemon. Fine in foreground.
Hi all,
Experiencing a really weird issue on my Samba instance (4.7.5). It is not
allowing users to browse any shares when running as a systemctl daemon, but
it is working fine when running as a foreground service.
Contents of systemctl service unit:
# cat /usr/lib/systemd/system/smb.service
[Unit]
Description=Samba SMB Daemon
After=syslog.target network.target nmb.service winbind.service
2018 Feb 20
2
Migration from 3.6.25-0ubuntu0.12.04.10 to 4.x with passdb backend = ldapsam
...===========================
INTERNAL ERROR: Signal 11 in pid 9974 (4.7.5)
Please read the Trouble-Shooting section of the Samba HOWTO
===============================================================
PANIC (pid 9974): internal error
BACKTRACE: 49 stack frames:
#0 /usr/local/samba/lib/libsmbconf.so.0(log_stack_trace+0x1f)
[0x7f0dc796a64b]
#1 /usr/local/samba/lib/libsmbconf.so.0(smb_panic_s3+0x6d) [0x7f0dc796a49c]
#2 /usr/local/samba/lib/libsamba-util.so.0(smb_panic+0x28) [0x7f0dc9e1139f]
#3 /usr/local/samba/lib/libsamba-util.so.0(+0x2107d) [0x7f0dc9e1107d]
#4 /usr/local/samba/lib/libsamba-util.so...
2012 Apr 02
23
[PATCH 00 of 18] [v2] tools: fix bugs and build errors triggered by -O2 -Wall -Werror
Changes:
tools/blktap: remove unneeded pointer dereferencing in convert_dev_name_to_num
tools/blktap: constify string arrays in convert_dev_name_to_num
tools/blktap: fix params and physical-device parsing
tools/blktap: remove unneeded pointer dereferencing from img2qcow.c
tools/blktap: remove unneeded pointer dereferencing from qcow2raw.c
tools/blktap2: fix build errors caused by Werror in
2020 Mar 26
15
[PATCH nbdkit 0/9] Create libnbdkit.so
This creates libnbdkit.so as discussed in the following thread:
https://www.redhat.com/archives/libguestfs/2020-March/thread.html#00203
test-delay-shutdown.sh fails for unclear reasons.
This series starts by reverting "tests: Don't strand hung nbdkit
processes" which is because several other tests fail randomly unless I
revert this patch. I didn't investigate this yet so it