similar to: What's a sensible log level?

Displaying 20 results from an estimated 2000 matches similar to: "What's a sensible log level?"

2013 Nov 09
2
My samba can't see its own groups! (4.0.9 as solo AD DC)
My samba thinks its own groups don't exist. Background: I had a samba3 server operating as a NAS with some desktops joined to the domain. I'm migrating it to samba 4.0.9 as an AD domain. Users can log in and browse their home share -- but the other shares aren't working. They're per-project shares set up to allow that project's group access, and to forcibly make all files
2013 Oct 11
1
nss_windbind.so can't see groups that wbinfo -g can (4.0.9 as AD DC)
[I'm afraid $customer made me anonymize their rootdn, user and group names, so the ones below are made up. Hopefully I haven't introduced any errors in the process.] I'm running Debian 7 with samba 4.0.9dfsg1-1 built from git://git.debian.org/pkg-samba/samba. I'm using samba as an AD DC, with accounts migrated from a samba3/slapd stack using samba-tool domain classicupgrade.
2013 Nov 15
0
samba Digest, Vol 131, Issue 16
samba-request at lists.samba.org wrote: > Subject: > Re: [Samba] empty password > From: > trentbuck at gmail.com (Trent W. Buck) > Date: > 11/15/2013 02:29 AM > > To: > samba at lists.samba.org > > > Rob Janssen<rob at ision.nl> writes: > >>> >>WARNING: The "null passwords" option is deprecated >> >I cannot find the
2013 Oct 29
3
enumerating group members with nss_winbind (4.0.9 as AD DC)
When I do "getent group", I want to see the group's members enumerated. With nss_ldap they are; with nss_winbind they aren't: root at gumbo:~# getent group mgmt PI\mgmt:*:1040: There *are* members there (partially redacted): root at gumbo:~# ldbsearch -Htdb:///var/lib/samba/private/sam.ldb cn=mgmt member # record 1 dn: CN=mgmt,CN=Users,REDACTED member:
2007 Nov 03
3
ANN: python-markdown2 -- another Python implementation of Markdown
Hello all, I'm announcing python-markdown2 -- another Python implementation of Markdown. (MIT license.) http://code.google.com/p/python-markdown2/ It should be a drop-in replacement for [markdown.py](http://www.freewisdom.org/projects/python-markdown/). It fixes some issues that I ran into with markdown.py [^1]. I believe that it is faster than markdown.py [^2] and on par or a little
2013 Nov 04
1
is sssd *faster* than samba4's builtin winbind?
Using samba 4.0.9 as an AD DC (no other domain servers). Since my UIDs and GIDs have changed, I was doing cleanup: find /srv/svn/ -xdev '(' -nouser -o -nogroup ')' -ls I noticed this was very slow -- iostat reported only about 2tps and 50kB/s to my disks. So I timed it with nsswitch.conf users & groups set to "files" vs. "files winbind": # with
2015 Apr 19
2
[LLVMdev] function pointer alias analysis
Hi I see when LLVM builds the CallGraph SCCs. a function calling through a function pointer is conservatively assumed to call internal and external functions. Therefore, it has an edges pointing to the externalnode2, ie. the externalnode representing outgoing calls from this module. does LLVM have any function pointer analysis capabilities in the mainline ? Thanks, -Trent
2015 Jan 29
2
[LLVMdev] always-inline heuristic
I see that we do not inline a function marked as "always-inline" if it contains indirect branches ? what are the reasons behind this criterion ? Thanks Trent -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150129/92bf577a/attachment.html>
2006 Jun 22
3
Partition results based on field
Hello all I''m using Ferret for a site wide search where I have several kinds of (similar) objects in a central index (using a "type" field containing the class name). This works great, and I can search all objects with one query. What I''d like to do now is to limit the results so that there will be a maximum of 10 (or 5 or whatever) results for each type.. I
2004 Aug 12
4
Help with generating data from a 'not quite' Normal distriburtion
I would be very grateful for any help from members of this list for what might be a simple problem... We are trying to simulate the behaviour of a clinical measurement in a series of computer experiments. This is simple enough to do in R if we assume the measurements to be Gaussian, but their empirical distribution has a much higher peak at the mean and the distribution has much longer tails.
2015 Apr 09
2
[LLVMdev] TBAA metadata
Hi I do not really understand why frontend generated TBAA metadata is needed for the TBAA pass to work. It seems to me that we can always go up the IR chain and find the base type from which the pointer is derived from. Take the following example. I know %0 = load i32, i32* %a, align 4, !tbaa !1 and store i32 %i.02, i32* %b, align 4, !tbaa !6 do not alias as their metadata !1 = !{!2, !3, i64
2007 Nov 01
2
FLAC downloads available for new album produced by Trent Reznor
Sorry, I'm sure it's terribly offtopic, but thought it was extremely interesting that the new album[1] by Saul Williams, produced by Trent Reznor, is available for download for 5 bucks. It's nice to see FLAC getting some respect! ;) [1] http://en.wikipedia.org/wiki/The_Inevitable_Rise_and_Liberation_of_NiggyTardust! -- avuton -- Anyone who quotes me in their sig is an idiot. --
2014 Dec 03
0
User's DPAPI/backupkey protected data lost when changing domain password
For anybody interested in tracking when this is resolved for mainline samba4 there is now a bugzilla record here: https://bugzilla.samba.org/show_bug.cgi?id=10980 On 2 December 2014 at 11:52, Kirin van der Veer < kirin.vanderveer at planetinnovation.com.au> wrote: > Is there a corresponding bug number for the Samba bugzilla so that I can > track when this is fixed for vanilla samba?
2012 Dec 03
2
Different results from random.Forest with test option and using predict function
Hello R Gurus, I am perplexed by the different results I obtained when I ran code like this: set.seed(100) test1<-randomForest(BinaryY~., data=Xvars, trees=51, mtry=5, seed=200) predict(test1, newdata=cbind(NewBinaryY, NewXs), type="response") and this code: set.seed(100) test2<-randomForest(BinaryY~., data=Xvars, trees=51, mtry=5, seed=200, xtest=NewXs, ytest=NewBinarY) The
2015 Jan 17
3
[LLVMdev] loop multiversioning
Does LLVM have loop multiversioning ? it seems it does not with clang++ -O3 -mllvm -debug-pass=Arguments program.c -c bash-4.1$ clang++ -O3 -mllvm -debug-pass=Arguments fast_algorithms.c -c clang-3.6: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated Pass Arguments: -datalayout -notti -basictti -x86tti -targetlibinfo -no-aa -tbaa -scoped-noalias
2015 Apr 10
2
[LLVMdev] LLVM Alias Analysis
Hi Xin, Thank you for your reply! I have tried the 3 alias analyses you have mentioned on LLVM 3.5: 1) $ opt -globalsmodref-aa -aa-eval < xxx.bc > /dev/null (May-alias response 100%) 2) $ opt -tbaa -aa-eval < xxx.bc > /dev/null (May-alias response 100%) 3) $ opt -cfl-aa -aa-eval < xxx.bc> /dev/null (Unknown command line argument '-cfl-aa') It seems that they are not
2008 Oct 31
2
gPXE failing to compile
I'm compiling syslinux 3.72 as part of a buildroot project and found that the compile fails due to gPXE using printf in a way that throws warnings, while specifying "-Wall -Werror" in the makefile. I'm not sure if this problem is related to the environment I'm compiling in or if it is actually a bug, however the attached patch resolves it for me. -- Regards Nick
2007 Mar 22
1
Finding the size of a vorbis stream
Hello, I am trying to make an OGG Vorbis player for my cell phone. I have ported J-Ogg to J2ME, and it is decoding files in non-realtime. The problem is that I need to convert the OGG into a WAVE stream, which needs the size of the data in the header which has to be read before the OGG is fully decoded. So my question is, is there any way to find the size of the resulting PCM data before decoding
2004 Sep 01
1
Stream File Type?
>Brett Trent wrote: > >>I'm a newbie. >> >>I've just installed Icecast2 and am streaming to it successfully via >>Nicecast (great app BTW). >> >>My problem is that the stream from Icecast2 comes through as an .m3u >>which does not correctly open on any of the Mac or Windows machines >>that I've tried. When broadcasting directly
2004 Aug 10
1
Help with Normal Range Estimation for repated measures
I would be grateful if members of the list could point me in the direction of any code (preferably in R) that will allow me to estimate 95th percentiles from a set of repeated measurements. For example, we are interested in a clinical measurement where we have 3 measures for 14 subjects and 2 measurements on 24 subjects and single measurement on 36 subjects. We want to combine these to form a