similar to: Samba - Windows 2000 Client Speed

Displaying 20 results from an estimated 500 matches similar to: "Samba - Windows 2000 Client Speed"

2003 Aug 02
5
PDC Controller Error
I am trying to set up a PDC controller on a samba server, but continue to get the following error: The user could not be added because the following error occured: The trust relationship between the workstation and the primary domain failed. An extract from the log shows only the following: [2003/08/01 22:58:42, 0] smbd/service.c:make_connection(381) make_connection: bkruger logged in as
2006 Mar 04
4
AjaxScaffold 2.2.0 released with graceful JS degredation
Just wanted to let anyone know that might have checked out the generator before and couldn''t use it b/c you''re project required graceful degredation. Well its in there now. Thanks everyone and enjoy. Demo: http://ajaxscaffold.height1percent.com Release Notes: http://www.height1percent.com/articles/2006/03/04/ajaxscaffold-2-2-0-released-with-graceful-js-degredation -- Richard
2004 Aug 06
6
PDA as source client
Has anybody used anything other than a PC as a source for icecast2? Are PDAs powerfull enough? I know vorbis encoding takes a signifigant amount of CPU power, but I've been able to do it on 4 year old PCs. Does a 206MHz Intel StrongARM 32-bit RISC processor have as much power as a 200 Mhz Pentium? I'm thinking Compaq iPaq, running Familiar Linux and IceS, would make a nice portable
2000 Aug 05
1
dsa keys & ssh-agent
Ok... I just kludged dsa key support into the ssh-agent that comes with openssh-2.1.1p4. Its ugly and conforms to no standard (I could find no signifigant mention of it in the IETF drafts) but it does seem to work. If anybodys interested in it, I'll clean up the code and post. For now I'm going to sleep. Oh yeah.. thanks Damien Miller for pointing out that SSL add_all_algorithms bit,
2002 Sep 13
2
querying the ext3 journal
I'm not sure if this question makes sense, but here goes. We have the need to periodically check for newly created/modified files in a rather elaborate and well populated directory structure. I don't believe that simply walking the directory and checking stat's is the answer, given that I need a process that will impose minimal performance degredation on the system. Would it be
1999 Jan 25
3
ICMP Error
I just installed pre 9 of kernel 2.2.0. I am now getting echoed to the screen of whatever virtual terminal I am in the following message: 172.16.81.99 sent an invalid ICMP error to a broadcast This is repeated for a number of IP addresses. Obviously, the problem is two fold. Firstly I need to find out what the problem is with the servers. However, I find it somewhat annoying to having this
2009 Aug 28
1
Help with glmer {lme4) function: how to return F or t statistics instead of z statistics.
Hi, I'm new to R and GLMMs, and I've been unable to find the answers to my questions by trawling through the R help archives. I'm hoping someone here can help me. I'm running an analysis on Seedling survival (count data=Poisson distribution) on restoration sites, and my main interest is in determining whether the Nutrients (N) and water absorbing polymer Gel (G) additions to the
2006 Feb 09
2
Performance profiling & routes
Hi all, With a rails app running under lighttpd, we''ve recently stopped using lighttpd''s URL rewriting in favour of letting Rails'' routes do their job. However, under proper testing, we now see the application slowing down after a period of time (a couple of days); pages take increasingly longer to load over time. This is fixed by a lighttpd restart. Could this
2016 Nov 28
5
RFC: Constructing StringRefs at compile time
OK - good to know. (not sure we're talking about pessimizing it - just not adding a new/possible optimization, to be clear) Just out of curiosity - are there particular reasons you prefer or need to ship an MSVC built version, rather than a bootstrapped Clang? On Mon, Nov 28, 2016 at 9:24 AM Robinson, Paul <paul.robinson at sony.com> wrote: > So I wouldn't personally worry too
2016 Nov 25
2
RFC: Constructing StringRefs at compile time
On Fri, Nov 25, 2016 at 6:10 AM Mueller-Roemer, Johannes Sebastian via llvm-dev <llvm-dev at lists.llvm.org> wrote: > What about going for > > template<unsigned N> > constexpr StringRef(const char (&Str)[N]) > > and avoiding strlen entirely for string literals? > You'd at least want an assert in there (that N - 1 == strlen(Str)) in case a StringRef is
2017 Jun 22
3
MODISTools Help
I am using MODIS Tools and am having a lot of difficulty troubleshooting my code. I am a PhD student studying African buffalo in Kruger National Park, South Africa. The study I am currently working on involves a herd of 200 African buffalo caught every six months for 4 years. I am trying to use EVI and NDVI to assess seasonal variation thus I would like mean EVI and NDVI for each observation
2016 Nov 28
3
RFC: Constructing StringRefs at compile time
On Mon, Nov 28, 2016 at 11:01 AM Mehdi Amini <mehdi.amini at apple.com> wrote: > On Nov 28, 2016, at 9:47 AM, David Blaikie via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > > OK - good to know. (not sure we're talking about pessimizing it - just not > adding a new/possible optimization, to be clear) > > > This does not seem that clear to me. The
2003 May 20
2
mdct_backward with fused muladd?
Can anybody point me at any resources that would explain how to optimize mdct_backward for a cpu with a fused multiply-accumute unit? >From what I understand from responses to my older postings, Tremor's mdct_backward could be rewritten to take advantage of a muladd. My target machine can do either two-wide 32x32 + Accum(64) -> Accum(64) integer muladd or eight-wide 16x16 + Accum(32)
2009 Jul 23
1
[LLVMdev] Two Regalloc Enhancements
On Thursday 23 July 2009 18:07, Evan Cheng wrote: > Ok. As with any heuristics change, some tests will benefit, some will > suffer. I am ok with both sets of changes assuming there are ways to > control them. Yep, we have flags. > Post-ra scheduling has been working for a while. The reason it's not > turned on for x86 is it's not helping much (1 or 2%) while the compile
2011 May 20
1
scheduling differences between CentOS 4 and CentOS 5?
We have several latency-sensitive "pipeline"-style programs that have a measurable performance degredation when run on CentOS 5.x versus CentOS 4.x. By "pipeline" program, I mean one that has multiple threads. The mutiple threads work on shared data. Between each thread, there is a queue. So thread A gets data, pushes into Qab, thread B pulls from Qab, does some processing,
2008 Nov 19
1
more efficient small subsets from moderate vectors?
This creates a named vector of length nx, then repeatedly draws a single sample from it. lkup <- function(nx, m=10000L) { tbl <- seq_len(nx) names(tbl) <- as.character(tbl) v <- sample(names(tbl), m, replace=TRUE) system.time(for(k in v) tbl[k], gcFirst=TRUE) } There is an abrupt performance degredation at nx=1000 > lkup(1000) user system elapsed 0.180
2016 Nov 28
3
RFC: Constructing StringRefs at compile time
The fact that the templatized constructor falls down because of the possibility of initializing StringRef with a stack-allocated char array kills that idea in my mind. I feel like the only two reasonable solutions are 1) allow UDL for this case, document that this is an exception and that UDLs are still not permitted anywhere else, and require (by policy, since I don't know of a way to have
2004 Jan 01
3
steam and wine
I have sucessfully gotten steam and wine to work however I cannot use microphone for voice communication , I an using alsa .Is there a way to turn on fullduplex sound like you do in winex by going into config and changing fullduplex=Y or does wine not support such a feature?
2002 Mar 15
4
PATCH: sftp-server logging.
This is another take on logging for sftp-server. Given the number of private email requests I've received for this patch, I assume there is signifigant enough interest to request it be reviewed for inclusion into the release. The patch is against 3.1p1, and is completely disabled by default. To enable logging, one must use compile time directives (-DSFTP_LOGGING). This was done due to prior
2017 Jun 22
1
MODISTools Help
1. You should always cc the list unless there is a clear reason not to. 2. You still have failed to follow the posting guide: You say you have difficulty troubleshooting your code, but you have shown us no code. You got an error message that seems explicit, but with neither code nor data, I do not know whether anyone can make sense of it. In any case, I certainly cannot. Cheers, Bert Bert