Displaying 16 results from an estimated 16 matches for "schaub".
2009 Oct 14
4
Dovecot deliver with AD LDAP userdb
...rrectly to mail addressed to
the value in the "mail" attribute. The problem seems to be in the
otherMailbox attribute, it cannot lookup the users sAMAccountName
based off of the otherMailbox field. Here is what it looks like in the
logs for mail sent to my "mail" attribute (mark.schaub at sau24.org):
Oct 14 12:36:19 auth(default): Info: master in: USER 1
mark.schaub at sau24.org service=deliver
Oct 14 12:36:19 auth(default): Info: ldap(mark.schaub at sau24.org): user
search: base=dc=sau24, dc=org scope=subtree
filter=(&(objectclass=user)(|(sAMAccountName=mark.schaub)(ma...
2011 Mar 19
0
[LLVMdev] [Patch] Fix bug in llvm::SmallVectorIml<>::insert
Johannes Schaub (litb) wrote:
> This fixes a bug in SmallVectorImpl<>::insert, which were not behaving
> correctly on inserting an empty range into an empty vector:
>
> #include <llvm/ADT/SmallVector.h>
> #include <cassert>
>
> int main() {
> llvm::SmallVector<int,...
2006 Mar 14
1
security=share, who needs it ?
...are setting behavior with
setting
-----smb.conf--------
[global]
security = user # thats the default of current releases
map to guest = bad user
username map = /etc/samba/smbusers
----smbusers-----
foo = *
What reasons prevent removing 'security=share' ?
--
Carsten Schaub <carsten-schaub@arcor.de>
2011 Mar 19
2
[LLVMdev] [Patch] Fix bug in llvm::SmallVectorIml<>::insert
This fixes a bug in SmallVectorImpl<>::insert, which were not behaving
correctly on inserting an empty range into an empty vector:
#include <llvm/ADT/SmallVector.h>
#include <cassert>
int main() {
llvm::SmallVector<int, 1> v, w;
llvm::SmallVector<int, 1>::iterator it =
v.insert(v.end(), w.begin(), w.end());
assert(it == v.end());
}
The insert function(s)
2006 Oct 16
1
rsync: mkstemp ... No such file or directory mangled dirname
...directory (2)
rsync: mkstemp "//data/gl/Kundeo/XXXXXX/b-Projekte/C A D/999999_Final Schemata_Final Legenden_Final Listen_020725/Schemata/Batch6/.Batch6_Final.zip.WMg8RG" failed: No such file or directory (2)
rsync error: some files could not be transferred (code 23) at main.c(702)
Markus Schaub
Hauptstrasse 43
CH 6260 Reiden
2012 May 23
1
how a latent state matrix is updated using package R2WinBUGS
I'm trying to understand how a latent state matrix is updated by the MCMC
iterations in a WinBUGS model, using the package R2WinBUGS and an example
from Kery and Schaub's (2012) book, "Bayesian Population Analysis Using
WinBUGS". The example I'm using is 7.3.1. from a chapter on the
Cormack-Jolly-Seber model. Some excerpted code is included at the end of
this message; the full code is available at
http://www.vogelwarte.ch/downloads...
2009 Oct 16
2
Dovecot deliver with AD LDAP userdb [SOLVED]
> Then there's something different what Dovecot and ldapsearch does. They
> have the same dn, dnpass, neither uses tls, same base, deref, scope?
>
I figured it out, there certainly is something different! The
AuthDatabase/LDAP documentation on the Dovecot Wiki says "When
connecting to AD, use port 3268". Port 3268 is used for Global Catalog
searching. By default the Active
2013 Feb 26
0
Multistate occupancy models using Jags
Hi everyone,
I am trying to run the example of multistate occupancy model from the book
Bayesian Population Analysis using WinBUGS (Marc Kéry and Michael Schaub):
This example is available on
http://www.vogelwarte.ch/code-for-running-bpa-using-jags.html
When I try to run the first line of this section of the model :
# Initial values
zst <- apply(y, 1, max, na.rm = TRUE)...
2011 Mar 24
0
[LLVMdev] Is LLVM appropriate for implementing a shell interpreter?
Mu Qiao wrote:
> Hi devs,
>
> We are implementing a library that interprets shell scripts so that
> other programs could efficiently talk to bash. We'd like to hear your
> advice on whether LLVM is appropriate for us. Here are our considerations:
>
> In most cases our library will interpret each script just once. Our
> current approach is using a manual
2011 Mar 24
2
[LLVMdev] Is LLVM appropriate for implementing a shell interpreter?
Hi devs,
We are implementing a library that interprets shell scripts so that
other programs could efficiently talk to bash. We'd like to hear your
advice on whether LLVM is appropriate for us. Here are our considerations:
In most cases our library will interpret each script just once. Our
current approach is using a manual implementation based on ANTLR and
C++, so actually we are executing
2011 Mar 19
0
[LLVMdev] [Patch] Fix for PR9499 (confusing behavior of FastFoldingSetNode).
I've made a patch which provides one possible fix for the unintuitive
behavior of FastFoldingSetNode. I'm not sure whether that's a good way to
solve this. It's based largely on the documentation found in the
FastFoldingSet.h file, which says Profile functions should use "Add" instead
of simply setting their parameter.
Patch is attached on this mail and on the PR.
2011 Apr 06
0
[LLVMdev] Prevent merging of names to types
Hello all,
in my runtime lowlevel IR module I have several type definitions, some of
which may turn out to be structurally equivalent. They look like follows
%enumeration_ty = type {
; count of enumerators
i32,
; enumerators
[0 x %enumerator_ty]
}
%lookupresult_ty = type {
; kind of lookup result
i32,
i8*
}
Now when I link this module to the code generation module
2011 Apr 20
0
[LLVMdev] Is this a bug in clang?
Ahmed Charles wrote:
> Technically, it could've sent the mail before you even thought about
> writing it. Undefined is undefined, there are no requirements. From:
> Dustin Laurence
> Sent: Wednesday, April 20, 2011 6:50 AM
> To: llvmdev at cs.uiuc.edu
> Subject: Re: [LLVMdev] Is this a bug in clang?
> On 04/19/2011 10:50 PM, John Regehr wrote:
>
>> The compiler
2011 Jul 25
0
[LLVMdev] Memory leaks in the JIT and how will MC-objects be deallocated in the MCJIT?
We are currently using the JIT (non-MC) to implement a REPL-like shell that
needs to run in a long-lived process. During development, we noticed
substantial memory-growth with increased lifetime of the JIT.
In trying to eliminate that continuous memory growth, we did a few things,
including making LLVMContext collect and free unused constants (detected by
Value::uses_empty()). This dropped
2002 Feb 22
1
I would like to contribute some automation scripts.
I have some scripts and tools that i have packages up with some documentation
that i would like to contribute to the project. They are based on the
ntuser_import-1.0.1.tar.gz package in the contributed directory on your FTP
server.
Basicly its a workaround for syncing unix user id's with an NT domain
controller with a samba domain member server that is running on an OS that does
not support
2011 Apr 06
2
[LLVMdev] Target independency using "opaque"? How to do it else?
Hello all,
I'm writing a backend for our scriptlanguage compiler and I'm currently
writing an IR module for the runtime library that contains some support
routines called by generated code.
The IR module contains calls to "malloc", which depend on the size of
"size_t". Since I don't know the target when writing the IR module for the
runtime library, I