search for: weiser

Displaying 20 results from an estimated 32 matches for "weiser".

Did you mean: reiser
2008 Apr 17
1
I need something about the source explain.
...many for me to read and understand 'cause I was a freshman. Is there a book/paper about the samba implementation or explain for source? Thanks. _________________________________________________________________ ÓÃÊÖ»úMSNÁÄÌìдÓʼþ¿´¿Õ¼ä£¬ÎÞÏÞ¹µÍ¨£¬·ÖÏí¾«²Ê£¡ http://mobile.msn.com.cn/From johann.weiser at siemens.com Wed Apr 16 19:01:03 2008 From: johann.weiser at siemens.com (Weiser, Johann) Date: Thu Apr 17 23:01:39 2008 Subject: [Samba] smbd in hybrid mode Message-ID: <3439526D17C4C443B21918104228383503224EB1@nets13ha.ww300.siemens.net> There is this really fancy sentence in the smb.co...
2008 Apr 18
1
smbd in hybrid mode
Quoting Weiser, Johann (johann.weiser@siemens.com): > There is this really fancy sentence in the smb.conf man page: "It is > possible to use smbd in a hybrid mode where it is offers both user and > share level security under different NetBIOS aliases." > > There are a number of questio...
2001 Jan 18
1
Announcement: PRNGD 0.9.0 available
...m/tech/crypto/ Porting: ======== - PRNGD has been developed on HP-UX 10.20 and (SuSE-)Linux. Support for other platforms has been provided by: Solaris 2.6: Louis LeBlanc <leblanc at mirror-image.com> Solaris 7: Phil Howard <phil-openssh-unix-dev at ipal.net> NeXTstep 3: Michael Weiser <michael at weiser.saale-net.de> IRIX 6.5: Michael Weiser <michael at weiser.saale-net.de> Tru64: James Bourne <jbourne at MtRoyal.AB.CA> Unixware 7: George Walsh <gjmwalsh at netscape.net> (not finished, yet, fails with "bind(): invalid argument"...) - To...
2009 Jan 06
2
smbcontrol smbd ping also answered by nmbd and winbindd
...o-du:~ # for i in `smbcontrol -t 1 smbd ping | grep PONG | awk '{ print $4}'` ; do pstree -p | grep $i ; done |-smbd(4587)-+-smbd(4591) | |-smbd(5681) [...] | `-smbd(6431) Is this known behaviour? What can be done about it? Thanks, -- Michael Weiser science + computing ag Senior Systems Engineer Geschaeftsstelle Duesseldorf Martinstrasse 47-55, Haus A phone: +49 211 302 708 32 D-40223 Duesseldorf fax: +49 211 302 708 50 www.science-computing.de -- Vorstand/Board of Management: Dr. B...
2012 Jun 28
2
Aggregate weights for a unique set of rows
Hi, all together. I have - a maybe trivial - problem with aggregating a list of weights. Here is the problem: - At first I have set of nodes (X/Y-coordinates) and associated weights, where the set of nodes is typically not unique - I want to get a set of unique nodes and the sum of associated weights I am grateful for any help See for example: # weights: w <- c(1, 1, 1, 1, 1) #
2009 Feb 19
2
[LLVMdev] Parametric polymorphism
...> The only logical solution is to build a HLVM on top of LLVM and share that > between these high-level language implementations. This is an excellent point. You have convinced me. :-) BTW, what garbage collector are you using for your HLVM? You complain about mono's use of the Boehm-Weiser collector on your blog; but you also said that you assumed an uncooperative environment. I'm not a GC expert, so why are the current GC intrinsics insufficient? -DeLesley
2007 Jan 22
2
nologin not working with openssh >= 4.3 and authentication != password
Hi developers, today I tried to disable logins to an ssh server by putting a nologin file into /etc. This only worked for logins that use the password authentication mechanism. publickey-based authentications still succeeded and the users were allowed into the system. This seems straightforward to me since openssh 4.3 disabled the evaluation of /etc/nologin in favour of pam_nologin but
2012 Mar 15
1
Equation as a character string
I'm trying to figure out if it's possible to use a character string as an equation, e.g: eqn1string <- "x^2 + x + 5" Then I want to tell R: 1) that eqn1string is actually an equation (even though it was stored as a character string), and 2) to apply the equation to a specified value of x (e.g. given x <- 6, what is the result of the equation). Thanks in advance for any
2014 Oct 02
1
Require SMB3 encrypted transport on share level or globally
Hi, is there an option in samba 4.1.x to have an smbd require SMB3 encrypted transport on share level? I can't seem to find anything like it. Thanks, -- Michael Weiser science + computing ag Senior Systems Engineer Geschaeftsstelle Duesseldorf Faehrstrasse 1 phone: +49 211 302 708 32 D-40221 Duesseldorf fax: +49 211 302 708 50 www.science-computing.de -- Vorstandsvorsitzender/Chairman of the board of m...
2013 Mar 17
2
[LLVMdev] How to slice the source code?
Hi all, I'm doing the program slicing [1] in LLVM. Now I implemented the Weiser's algorithm [2] in a simple way by writing a plugin to analyze the IR. My final goal is to slice the source code, thus I recorded all the lines of source code to be sliced. The last step is to delete the lines which are not in the program slice. However, I met a problem when deleting the source...
2013 Jul 01
1
Male and female signs as subscript in plot
Hello, I'd like to add labels to my plot that include a male or female symbol as subscript. I'm working in Windows Vista and R 3.0.0. I am able to add the male symbol to the plot as regular text (NOT as subscript), e.g. with: mtext("Male\u2642") This displays the word "Male" followed by the male symbol on the plot. But "\u2642" does not work when I try to
2005 Jul 07
3
separate SSL certificates for pop3s and imaps
Hi, I'm migrating a uw-imap installation to dovecot. With uw-imap I had different SSL certificates and keys for ipop3d and imapd. How can I configure dovecot to do the same with its pop3s and imaps services? Thanks in advance, -- _________________________creating IT solutions Michael Weiser science + computing ag bei Eisenbahn und Haefen Postfach 11 02 63 Hagellocher Weg 71-75 47142 Duisburg 72070 Tuebingen, Germany phone +49 203 52 26341 www.science-computing.de
2015 Feb 18
3
[LLVMdev] Writing LLVM front-end
Thanks, Reid. When you say the frontend needs to know about how LLVM implements it, do you mean, the Function* type in LLVM, and in which order you add to the arguments array when building this type? Thank you for the video link, just reading the abstract I see this is the way to go. However, as I finished typing the sentence, I wonder if this means clang and/or llvm may be a runtime dependency.
2012 Feb 14
1
[LLVMdev] Static slicer and other useful stuff
.... * inter-procedural static slicer -- extension to the former, it considers function calls and transfers parameters between functions. The same as the previous, it computes fix-point. All this has been tested on the Linux Kernel and works for our purposes of kernel bug-finding. [1] as defined by Weiser. Should I elaborate or is it widely known? Are you interested in details of any of those? thanks, -- js
2013 Mar 26
0
[LLVMdev] How to slice the source code?
...statements, etc. Some of these are purely based on the source code, other use the Clang frontend. Hope this helps, Jonas On Sun, Mar 17, 2013 at 7:25 PM, Mingliang LIU <liuml07 at gmail.com> wrote: > Hi all, > > I'm doing the program slicing [1] in LLVM. Now I implemented the Weiser's > algorithm [2] in a simple way by writing a plugin to analyze the IR. My > final goal is to slice the source code, thus I recorded all the lines of > source code to be sliced. The last step is to delete the lines which are > not in the program slice. However, I met a problem when...
2009 Jan 17
0
[LLVMdev] Criticism of garbage collection support in LLVM
It's nice that he claims it's way too high overhead without any, you know, data. Then again, he also thinks writing a good native code generator isn't that difficult, so .... On Sat, Jan 17, 2009 at 1:18 PM, Mikhail Glushenkov <foldr at codedgers.com> wrote: > This may be of interest: > > http://lhc-compiler.blogspot.com/2009/01/case-against-cllvm.html > > People
2009 Feb 19
0
[LLVMdev] Parametric polymorphism
On Wednesday 18 February 2009 23:36:27 DeLesley Hutchins wrote: > > Why do you say that people who compile, e.g., functional languages > > would benefit from type variables in LLVM? > > I like the level the LLVM is at, and would prefer to deal with > > instantiating parametric polymorphism at a higher level. > > I'm surprised you're happy with a
2009 Feb 19
0
[LLVMdev] Parametric polymorphism
...uild a HLVM on top of LLVM and share > > that between these high-level language implementations. > > This is an excellent point. You have convinced me. :-) > > BTW, what garbage collector are you using for your HLVM? > > You > complain about mono's use of the Boehm-Weiser collector on your > blog; but you also said that you assumed an uncooperative > environment. I am creating a new (very simple) one by keeping any live local reference variables on a shadow stack. That assumes an uncooperative environment but it is still precise. That will suffice for now....
2003 Sep 22
1
openssh on NeXTstep
Hi all, I've been running OpenSSH portable on NeXTstep 3.3 since version 2.5.something with no/little problems. 3.7.1p1 still compiles fine but sshd hangs at startup. I've tried to debug it but when stepping through sshd using gdb it segfaults in mysignal in bsd-misc.c instead of hanging. Before I dig any deeper into this I'd like to know if there's anybody else running
2005 Aug 17
2
Choppy Ringing
Hello All, We recently changed our asterisk system to begin using G.729a as the primary codec. We have a Cisco 1700-series router which connects to the PSTN via FXO ports, along with Cisco 7940 SIP phones. Everything is working great, except... When an inbound caller calls into our system, they hear an IVR. When the caller dials an ext (SIP phone), the ringing progress tone is