similar to: WinXP sometimes is slow opening files / browsing directories

Displaying 20 results from an estimated 1000 matches similar to: "WinXP sometimes is slow opening files / browsing directories"

1997 Aug 04
0
Recursive dir errors...
Can anyone tell me what the error is with recursion here? It is keeping my smbclient from giving AMANDA a sice for the share. Without recursion, and stepping through the directories manually, I can do the dir and get no errors. smb: \> ls received 8 entries (eos=1 resume=0) . D 0 Thu Aug 15 09:19:58 1996 .. D
2004 Aug 21
2
BUG - ssh issue and variation - Plus implementation problem for linux
Please have a look at: http://www.experts- exchange.com/Networking/Linux_Networking/Q_21101467 .html and my responses to it. It is reasonably easy to get around the problem on Cygwin, and the windows version with putty doesn't appear to be a problem...but how is one supposed to deal with it in the linux. Perhaps a need to alter the sanity checks for the scp inpur args? Best regards
2000 Mar 20
0
smbfs patch - listing large direcories from an OS/2 server
Hi! Here's a patch that allows Linux smbfs to list large directories (i.e. > 100 items) when talking to an OS/2 server. There is a misunderstanding about the flags sent in the FINDFIRST request which causes the OS/2 server to indicate an EOS (end of search) in the FINDFIRST response, even when there are more items to be listed. The result is that smbfs will display only the first ~120
2005 Nov 28
2
Robust fitting
Good evening,I am Marta Colombo, student of "Politecnico di Milano". I'm studying Local Regression Techniques such as loess, smoothing splines and kernel smoothers. Choosing "symmetric" for the argument "family" in loess function it is possible to produce a robust estimate , in function smooth.spline and ksmooth I didn't find this possibility. Well, is there a
2006 Jan 19
2
function kde2d
Good evening, I am Marta Colombo, student at Milan's Politecnico. Thank you very much for your kindness, this mailing list is really useful. I am using the function kde2d for two-dimensional kernel density estimation and I'd like to know something more about this kind of density estimator. In particular I'd like to know: what bandwidth is used ? Thank you in advance for your attention
2005 Aug 18
1
display of a loess fitted surface
Good morning, I am Marta Colombo,student at Politecnico,Milan. I am studying local regression models and I am using loess function. My problem is that when I have a loess object I don't know how to display the fitted surface; in fact, while in S when you have a loess object you can see it writing plot(object), in R this dosen't work. Also I'd like to know if there is something like the
2008 Jul 08
1
fisher.test
Hi! I am Marta Colombo, student in Mathematical Engineering at "Politecnico di Milano". For my master degree thesis I have to analyze some categorical data. My dataset is composed by 327 individuals and 16 variables. I am using Fisher exact test to test independence on IxJ contingency tables, but I have a problem with one variable. R gives me this error message: FEXACT error 7.
2000 Jun 27
0
[Patch] smbfs in Linux 2.2.16 breaks reading from OS/2 Serve
On Tue, 27 Jun 2000 klaus-georg.adams@rwg.de wrote: > > Hi Andrew, > your patch from 2.2.15 to 2.2.16, backing out the older protocol levels breaks > reading from an OS/2 LAN Server. > The appended patch fixes things for me (against 2.2.16). This backs out a lot of desired changes. For example I think that 'rm -rf' on large directories will no longer work if you apply
2004 Oct 29
1
Interfacing R_project from program languages
Hello, I need an information: is it possible to call the statistical R_project funtions from a C or Fortran application? In the r_exts.pdf manual I found that is possible to interface R-project with compiled C/Fortran routines, but I didn't found anything about the opposite situation. Thanks in advance Giovanni Colombo CESI spa - Funzione Informatica e Automazione Via Rubattino 54 - 20134
2023 Feb 16
1
Missing Files/Missing Folders from an NFS Share
On Thu, Feb 16, 2023 at 08:46:26PM +0100, Conor Armstrong wrote: > I'm trying to get to the?bottom of where the normal directory functions > differ in results for block storage compared to NFS.? > I created a short c script to look at the offsets generated for the > directory when block storage backed in comparison to NFS backed.? > block storage backed are always
2006 Jan 19
0
(no subject)
Good evening, I am Marta Colombo, student at Milan's Politecnico. Thank you very much for your kindness, this mailing list is really useful. I am using the function kde2d for two-dimensional kernel density estimation and I'd like to know something more about this kind of density estimator. In particular I'd like to know: what bandwidth is used ? Thank you in advance for your attention
2005 Aug 03
0
R-squared
Good evening, I am Marta Colombo, student of the "Politecnico" in Milan and I'm looking for some help.I'd like to know how I can see R-Squared using loess because in the output there are only: number of observations equivalent number of parameters residual standard error and even looking at the summary I wasn't able to find it. Thank you very much for the attention, Marta
2000 Jan 14
0
I: Samba & cadds5
I've been suggested to get some logs and give a brief description of the problem I'm encountering with Cadds5 / Samba 2.0.6 and offer them to you , via http or ftp , to try to find a solution I 've collected the logs , can I send them with a description of the problem Thanks Stefano Colombo ( scolombo@cdmtc.it ) System / Network Engineer CDM Tecnoconsulting SPA v. M.L.King 38/2
2010 Jun 29
2
Xserver
Hi all, I am trying to execute Xserver on Dom0 but an error occurres. I have a fresh Debian Lenny install. I''ve installed Xen via aptitude, restarted the system with Xen kernel, and then installed xfce4 with all dependencies. When i try startx i get this errors: (WW) RADEON; No matching Device section for instalnce (BusID PCI:4:0:1) found Fatal server error: xf86MapVidMem:
2000 Jun 28
1
[Patch] Shorter patch for smbfs 2.2.16
Am 27.06.2000 19:58:44 schrieb urban: > On Tue, 27 Jun 2000 klaus-georg.adams@rwg.de wrote: > > > > > Hi Andrew, > > your patch from 2.2.15 to 2.2.16, backing out the older protocol levels breaks > > reading from an OS/2 LAN Server. > > The appended patch fixes things for me (against 2.2.16). > > This backs out a lot of desired changes. For example I think
2008 May 06
2
To preserve the class "Matrix"
Hi, Suppose a=matrix(1:9,3,3) > a [,1] [,2] [,3] [1,] 1 4 7 [2,] 2 5 8 [3,] 3 6 9 Now, > class(a[1:2,]) [1] "matrix" > class(a[1:3,]) [1] "matrix" > class(a[,1:2]) [1] "matrix" > class(a[,1:3]) [1] "matrix" But, > class(a[1,]) [1] "integer" > class(a[,1]) [1]
2002 Sep 28
1
A problem reading configuration file
Hi! For some time, there is a regression in wine, which disables my Dynatext reader from working. It tries to open it's configuration file but unsuccessfully. The file IS there and former wine versions allowed the program to read it. I was recommended to do a regression tests to find a particular patch but it's too time-expensive for me these days, so I did a full trace and found an
2008 Mar 28
2
Want to Contribute to CentOS wiki
Dear All, Please provide me access to create wiki pages for my howtos Regards, Chinthaka -- Chinthaka Deshapriya (RHCE) Director/CTO Centre of Open Source Excellence Fossmart Private Limited. 163/1, Dutugemunu Street, Kohuwala, Colombo Sri Lanka http://www.fossmart.net Tel: +94-114-962-600 Fax: +94-112-823-429 Mob: +94-716-903-433 -------------- next part -------------- An HTML attachment
2012 May 08
1
Quota
Hi, On our servers we have configured an enviroment with LDAP + Samba + Quotas. Working properly for windows hosts in wich are configured shared homes. The same works on Linux hosts with only one exception, the homes are shared with NFS. Now because of security issues we have decided to use samba on both enviroments. And so came the problem: The users of the shares were informed of their quota
2008 May 13
2
Remove an object by the reference
Hi R, A simple question, but don't know the answer... x="a" a=5 I need to remove the object "a" by using only x. something like rm(somefunction(x))...Is this possible? Shubha Karanth | Amba Research Ph +91 80 3980 8031 | Mob +91 94 4886 4510 Bangalore * Colombo * London * New York * San José * Singapore * www.ambaresearch.com This e-mail may contain