similar to: Perfornmance Problem with large files

Displaying 20 results from an estimated 1000 matches similar to: "Perfornmance Problem with large files"

2007 Sep 04
1
(fwd) Bug#440721: FTBFS on sparc while linking usr/klibc/libc.so
new klibc sparc build failure against gcc 4.2 ----- Forwarded message from Kilian Krause <kilian at debian.org> ----- Subject: Bug#440721: FTBFS on sparc while linking usr/klibc/libc.so From: Kilian Krause <kilian at debian.org> To: Debian Bug Tracking System <submit at bugs.debian.org> Date: Mon, 03 Sep 2007 23:35:23 +0200 Package: klibc Version: 1.5.6-2 Severity: serious
2006 Jan 12
1
Problem with NLSYSTEMFIT()
Hello, I want to solve a nonlinear 3SLS problem with "nlsystemfit()". The equations are of the form y_it = f_i(x,t,theta) The functions f_i(.) have to be formulated as R-functions. When invoking "nlsystemfit()" I get the error Error in deriv.formula(eqns[[i]], names(parmnames)) : Function 'f1' is not in the derivatives table
2017 Jan 12
2
[PATCH v2 1/2] drm/nouveau: Don't enabling polling twice on runtime resume
As it turns out, on cards that actually have CRTCs on them we're already calling drm_kms_helper_poll_enable(drm_dev) from nouveau_display_resume() before we call it in nouveau_pmops_runtime_resume(). This leads us to accidentally trying to enable polling twice, which results in a potential deadlock between the RPM locks and drm_dev->mode_config.mutex if we end up trying to enable polling
2005 Dec 26
1
Parameter Constraints in nls.lm()
Hello, Is there a possibility of setting parameter constraints in nls.lm() ? The documentation does not say anything on that explicitly. In order to achieve the same effect, the criterion function could be penalized outside the valid domain. Is that a correct procedure? Kind regards, Kilian [[alternative HTML version deleted]]
2007 Nov 21
3
R as server application
Is there a way to use R as a client server application? Whitch means: 1. install R on a server (running as a service) 2. from client send R-scripts through IDE/Editor (TINN-R) to "R-server" 3. receive R-output on client All the Best Kilian Schwab
2006 Oct 27
1
Error using "White-corrected" Anova (white.adjust="hc3")
Hello. I try to compute a "White-corrected" ANOVA. Therefore I use the command "Anova" implemented in the car()-package): Anova(modelname, white.adjust="hc3") and receive the error message: "Fehler in SS[i] <- SS.term(names[i]) : nichts zu ersetzen" (German) "Error in SS[i] <- SS.term(names[i]) : nothing to replace" (probably being the
2005 Nov 03
1
How to calculate errors in histogram values
Hi there, I'm new to R but I thought this is the most likely place I could get advice or hints w.r.t the following problem: I have a series of measurements xi with associated uncertainties dxi. I would like to construct the probability density histogram of this data where each density estimate has an associated error that is derived from the dxi. In other words, for large dxi the
2006 Jan 23
1
varphi symbol for ylab expression
Hi all, it is possible to invoke certain graphical functions (e.g. curve) with an expression argument, e.g. "ylab=expression(phi)". There are some greek letters with a second script. For instance, in latex two symbols do exist: phi and varphi. Is the second symbol also available in an expression()? If yes, how? Kind regards, Kilian
2006 Jan 30
1
--files-from and --delete mutually exclusive?
Hi rsync developers, I'm trying to get some fancy mirroring done with selecting files from a larger archive through the --files-from option. The only problem that I do see is that rsync will not eat the --delete option whatever I try. Thus, all the old files remain in the mirror archive instead of being deleted. To be more clearly, I want the rsync --files-from option to behave like
2004 Aug 04
4
Asterisk Integration
Can some one give me a tip on how do I integrate two asterisks Thanks Felippe Kilian Martins NPD-UFSC ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program.
2010 Aug 17
3
Total Harmonic Distortion THD
Hi Has anybody done THD or THD-N measurements with the CELT Codec (bext would be on various bit rates) If someone could share results for Mono at 64kBit and Stereo at 128 and 196kBit it would be great. thank you very much Jochen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20100817/b1da17cc/attachment-0002.htm
2013 Apr 10
5
[Bug 9783] New: please don't use client-server model for local copies
https://bugzilla.samba.org/show_bug.cgi?id=9783 Summary: please don't use client-server model for local copies Product: rsync Version: 3.0.9 Platform: All URL: http://lwn.net/Articles/400489/ OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: core
2010 Aug 20
1
right settings for highest quality
Hi I am trying to evaluate the quality of the CELT codec by using the 0.8.0 testcelt tool to encode and decode the input. I want to test different bitrates and selected the below parameters for 64, 96, 128, 196, 256kB: ./celt-0.8.0/libcelt/testcelt.exe 44100 2 256 46 $1.sw $1-64kb.sw ./celt-0.8.0/libcelt/testcelt.exe 44100 2 192 46 $1.sw $1-96kb.sw ./celt-0.8.0/libcelt/testcelt.exe 44100 2 128
2010 Aug 18
2
C Prog
Hi, does anyone have small programms in C, one to encode and one to decode with celt, that I could use for a fpga chip softcore? greets yon -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20100819/7cd96a41/attachment-0002.htm
2008 Feb 14
9
how do you mount mountconf (i.e. 1.6) lustre on your servers?
As any of you using version 1.6 of Lustre knows, Lustre servers can now be started simply my mounting the devices it is using. Even an /etc/fstab entry can be used if you can have the mount delayed until the network is started. Given this change, you have also notices that we have eliminated the initscript for Lustre that used to exist for releases prior to 1.6. I''d like to take a
2012 Feb 01
1
randomForest: proximity for new objects using an existing rf
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt. Name: nicht verf?gbar URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120201/cc22025d/attachment.pl>
2017 Jan 12
0
[PATCH 2/2] drm/nouveau: Handle fbcon suspend/resume in seperate worker
Resuming from RPM can happen while already holding dev->mode_config.mutex. This means we can't actually handle fbcon in any RPM resume workers, since restoring fbcon requires grabbing dev->mode_config.mutex again. So move the fbcon suspend/resume code into it's own worker, and rely on that instead to avoid deadlocking. This fixes more deadlocks for runtime suspending the GPU on the
2004 Jun 15
5
building asterisk
I am trying to build asterisk and having an odd problem compiling it. I got the source this morning from CVS with "make update". I then did a "make", but I'm getting errors in app/app_voicemail.c... On line 155 begins a section which almost looks like patch material. The first line is: <<<<<<< app_voicemail.c and then there is some C code
1999 Dec 08
1
nobody uid printing
Hi, Background info: running samba 2.0.5a on Solaris 2.6 Security = share This is the printer share definition, note no guest or public definition. [printers] comment = All Printers browseable = no # Set public = yes to allow user 'guest account' to print path = /var/spool/samba printable = yes createmode = 0700 Basically the situation is this: I used to have the
2006 Apr 03
1
No UID associated with this user name
Hi sorry if this is the wrong place to post but I'm not sure where to go to and I'm a bit desperate. We just brought our Sunfire 6800 server and Storedge 9960 RAID array Solaris 8 back up after some maintenance and everything came back up 'clean' but I cannot get our SAMBA software to recognise any users or directories when logging in remotely from an apple or windows box.