search for: fid

Displaying 20 results from an estimated 264 matches for "fid".

Did you mean: fd
2006 Sep 22
0
Poor performance getting lots of small files with WinXP/Win2k vs OS2
...60 seconds to complete. Doing a Ethereal capture, the network usage is very different. OS2 : No. Time Source Destination Protocol Info 15 0.588766 10.16.43.123 10.240.47.86 SMB Open AndX Request, Path: \10000\0511_3008.IN; Read AndX, FID: 0x0000, 4096 bytes at offset 0 16 0.589008 10.240.47.86 10.16.43.123 SMB Open AndX Response, FID: 0x2a81; Read AndX, FID: 0x0000, 74 bytes 17 0.589251 10.16.43.123 10.240.47.86 SMB Close Request, FID: 0x2a81 18 0.589494 10.240.47.86...
2006 Sep 21
1
Fw: Poor performance getting lots of small files with WinXP/Win2k vs OS2
...60 seconds to complete. Doing a Ethereal capture, the network usage is very different. OS2 : No. Time Source Destination Protocol Info 15 0.588766 10.16.43.123 10.240.47.86 SMB Open AndX Request, Path: \10000\0511_3008.IN; Read AndX, FID: 0x0000, 4096 bytes at offset 0 16 0.589008 10.240.47.86 10.16.43.123 SMB Open AndX Response, FID: 0x2a81; Read AndX, FID: 0x0000, 74 bytes 17 0.589251 10.16.43.123 10.240.47.86 SMB Close Request, FID: 0x2a81 18 0.589494 10.240.47.86...
2008 Aug 12
1
Powernow Failure with Xen Kernel
...Xen setup. My xen server works fine with Powernow on the standard Kernel but with the Xen kernel it fails. Does anyone know why? Details below. With Standard Kernel powernow-k8: Found 2 Quad-Core AMD Opteron(tm) Processor 8350 processors (8 cpu cores) (version 2.20.00) powernow-k8: 0 : fid 0x0 gid 0x0 (2000 MHz) powernow-k8: 1 : fid 0x0 gid 0x0 (1700 MHz) powernow-k8: 2 : fid 0x0 gid 0x0 (1400 MHz) powernow-k8: 3 : fid 0x0 gid 0x0 (1200 MHz) powernow-k8: 4 : fid 0x0 gid 0x0 (1000 MHz) powernow-k8: 0 : fid 0x0 gid 0x0 (2000 MHz) powernow-k8: 1 : fid 0x0 gid 0x0...
2005 May 17
6
RPC error logging in to PDC on Win-64
I've upgraded one of my client boxes to Windows 64 bit edition but now it cannot login to the Samba PDC, instead it gives a RPC error after entering the password. The Win32 boxes can still login fine. I can get accounts without admin rights to login but those with the rights are given a message stating "The system cannot log you on due to the following error: A remote procedure call
2011 Jan 28
3
any similiar R fuction for matlab function 'fprintf'?
Dear All, Currently, I am translating Matlab code to R. I met difficulties to translate such Matlab codes into R: fprintf(fid,(' SPLITTING RESULTS ')); fprintf(fid,(' \n')); fprintf(fid,' Data base to analyze is a matrix %4i x %2i ',[n m]); fprintf(fid,' \n'); fprintf(fid,' h is %2i',h); fprintf(fid,' \n'); fprintf(fid,' group=0 outlier.\n'); fprintf(fid,' group=...
2008 Jul 11
3
data summerization etc...
...the kind you would do with a pivot table in excel or by using SQL queires. I have a moderately sized data set of ~70,000 records and I am trying to compute some group averages and sum values within groups. the code example below shows how I am trying to go about doing this pti <-rnorm(70000,10) fid <- rnorm(70000,100) finc <- rnorm(70000,1000) ### compute the sums of pti within fid groups sum_pinc <-aggregate(cbind(fid,pti),list(fid),FUN=sum) #### compute mean finc within fid groups tot_finc <- aggregate(cbind(fid,finc),list(fid),FUN=mean) when I try to do it this way I get an...
2004 Jun 01
2
Importing binary data
...s anybody has some pointers for me for improving the import or handling such large data sets? Thanks in advance! Uli read.DET.data <- function ( f ) { counter <- 1 spk.v <- c() imp.v <- c() score.v <- c() th.v <- c() ses.v <- c() rec.v <- c() type.v <- c() fid <- file( f ,"rb") tempi <- readBin(fid , integer(), size=1, signed=FALSE) while ( length(tempi) != 0) { spk.v[ counter ] <- tempi imp.v[ counter ] <- readBin(fid, integer(), size=1, signed=FALSE) score.v[ counter ] <- readBin(fid, numeric(), size=4) type.v[ count...
2013 Apr 19
5
how to subtotal by rows
Dear R-users, I have a dataset as like below, and I want to subtotal the values of rice,wheat and maize by year for each fid. fid      year     rice     wheat      maize ------------------------------------------------ 1        1995      5        NA           NA 1        1995      NA        3           NA 1        1995      NA       NA           2 1        1996      4        NA           NA 1        1996      NA        ...
2007 Nov 02
0
[cpfreq][PATCH][2/2] Linux support for the architectural pstate driver
...,7 +46,7 @@ #define PFX "powernow-k8: " #define BFX PFX "BIOS error: " -#define VERSION "version 2.00.00" +#define VERSION "version 2.20.00" #include "powernow-k8.h" /* serialize freq changes */ @@ -66,36 +66,15 @@ static u32 find_freq_from_fid(u32 fid) return 800 + (fid * 100); } - /* Return a frequency in KHz, given an input fid */ static u32 find_khz_freq_from_fid(u32 fid) { return 1000 * find_freq_from_fid(fid); } -/* Return a frequency in MHz, given an input fid and did */ -static u32 find_freq_from_fiddid(u32 fid, u32 d...
2008 Jul 11
1
data summarization etc...
...the kind you would do with a pivot table in excel or by using SQL queires. I have a moderately sized data set of ~70,000 records and I am trying to compute some group averages and sum values within groups. the code example below shows how I am trying to go about doing this pti <-rnorm(70000,10) fid <- rnorm(70000,100) finc <- rnorm(70000,1000) ### compute the sums of pti within fid groups sum_pinc <-aggregate(cbind(fid,pti),list(fid),FUN=sum) #### compute mean finc within fid groups tot_finc <- aggregate(cbind(fid,finc),list(fid),FUN=mean) when I try to do it this way I get an...
2011 Feb 21
1
File writing strangeness
...ans2 Request, QUERY_PATH_INFO, Query File Basic Info, Path: \Mp5data\Mp5Backups\Backup 2004-2011 1036 0.000600 192.168.0.YYY 192.168.0.XX SMB Trans2 Response, QUERY_PATH_INFO 1037 0.001046 192.168.0.XX 192.168.0.YYY SMB NT Create AndX Request, FID: 0x1dc7, Path: \Mp5data\Mp5Backups\Backup 2004-2011 1038 0.001180 192.168.0.YYY 192.168.0.XX SMB NT Create AndX Response, FID: 0x1dc7 1039 0.001407 192.168.0.XX 192.168.0.YYY SMB Trans2 Request, QUERY_FILE_INFO, FID: 0x1dc7, Query File Interna...
2011 Mar 04
2
Fixing the HDF5 package: the on.exit mystery
...age did not. I include below both the R and C code, stripped of everything except what is needed to show the bug. What is supposed to happen is (*) the user calls R function hdf5load() (*) hdf5load() calls C function do_hdf5load() (*) do_hdf5load() opens the HDF5 file recording its HDF5 file id (fid) (*) do_hdf5load() calls C function setup_onexit, passing fid to it (*) setup_onexit sets up the on.exit call to be R function hdf5cleanup with fid as its argument (*) C function do_hdf5load() walks the HDF5 file's tree structure of groups of groups of [...] of datasets, mapping them to an R...
2012 Dec 13
2
How to select a subset data to do a barplot in ggplot2
Hi,everybody I have a dataframe like this FID IID STATUS 1 4621 live 1 4628 dead 2 4631 live 2 4632 live 2 4633 live 2 4634 live 6 4675 live 6 4679 dead 10 4716 dead 10 4719 live 10 4721 dead 11 4726 live 11 4728 nosperm 11 4730 nosperm 12 4732 live 17...
2009 Sep 06
2
smbd uses 10 to 15% CPU w/Vista client
...8.40.2 DCERPC Request: call_id: 6 opnum: 53 ctx_id: 0 10 0.019619 192.168.40.2 192.168.40.46 TCP microsoft-ds > 58439 [ACK] Seq=4220 Ack=2429 Win=41629 Len=0 11 0.024679 192.168.40.2 192.168.40.46 SMB Pipe TransactNmPipe Response, FID: 0x724e 12 0.024708 192.168.40.2 192.168.40.46 NBSS NBSS Continuation Message 13 0.029030 192.168.40.46 192.168.40.2 TCP 58439 > microsoft-ds [ACK] Seq=2429 Ack=6376 Win=4380 Len=0 14 0.030023 192.168.40.46 192.168.40.2...
2003 Sep 05
1
Problem with Win95 + DFS clients (fwd)
...lt. The problem is that Win95 does not return the proper file_fsp( smb_vwv0) when doing an IOCTL request.This causes the file_fsp call in reply_ioctl (smbd/reply.c) to fail cause a segmentation fault. I do not understand how samba work, but here is my working patch for this. I just copied the fid from the last open_And_X call and write it into inbuf if the file_fsp is different. Attached here is the diff. The patch is only on /smbd/reply.c Thank you. Iskantharajah T -------------- next part -------------- --- ./reply.c Mon Apr 7 09:54:00 2003 +++ reply.c.new Fri Sep 5 19:38:51 20...
2013 Apr 26
4
Help with merge function
...Scotia Annapolis 0 0 1 Nova Scotia Antigonish 0 0 0 Nova Scotia Gly NA NA NA Dataframe x2 - has 20000 rows and 193 variables, contains one important field which is "FID" that is a link to a shapefile (this is not in x1) and shares common columns with x1, like this: FID State_prov Shape_name bob2009 bob 2010 coy 2009 0 Nova Scotia Annapolis 0 0 10 1 Nova Scotia Antigonish 0 0 1 2...
2009 Apr 27
4
Poor performance when accessing Linux from Windows XP because of too many QUERY_FILE_INFO requests
...y is created before testing.) The client will send a lot of QUERY_FILE_INFO requests. According to data captured by Wireshark, I find the following phenomenon: The client repeats exactly the same queries many times before giving up. The whole network log repeats exactly the same sequence, only the FID is different every time. In my test FID changes from 0x3002 to 0x306a. If I use a Linux client, this does not happen. This problem makes the access to my samba server be very slow. Could anyone help me to find the reason and give a solution? The following data is only a part of community data. No...
2008 May 16
0
Access Denied, Roaming Profile -- no apparent reason...
...b. attempts and fails to read the 'statse' cookie having restarted smbd and nmbd immediately before each of the above. Apart from the names and sizes of the cookies, the process is identical up to the point that the cookies are read: a. successful read: -> Read AndX Request, FID: 0x1402, 172 bytes at offset 0 <- Read AndX Response, FID: 0x1402, 172 bytes The data is definitely there in this response packet. -> Trans2 Request, QUERY_FILE_INFO, FID: 0x1402, Query File Network Open Info <- Trans2 Response, FID: 0x1402, QUERY_FILE_IN...
2010 Feb 26
2
dramatic speed difference in lapply
...rop=T), function(x) lapplyFunctionRecurse(x, level+1, ...))) } } result = lapplyFunctionRecurse(data, ...) matrix2 <- do.call('rbind', lapply(result, function(x) do.call('rbind',x))) return(matrix2) } dat <- data.frame(D=sample(32000:33000, 666000, T),Fid=sample(1:10,666000,T), A=sample(1:5,666000,T)) > temp = proc.time(); ret = fedb.ddplyWrapper2(dat, c("D", "Fid"), function(x) c(sum(x[,"A"], na.rm=T), sum(x[,"A"], na.rm=T))); proc.time()-temp user system elapsed 4.616 0.006 4.630 #note in thie ca...
2012 Jul 23
2
translating IDL to R
...or j=1, nlat/2 do begin tmp = gfedmly[*,j-1] gfedmly[*,j-1] = gfedmly[*,nlat-j] gfedmly[*,nlat-j] = tmp endfor undefine, tmp ; Then, you can read daily fire fractions from the netcdf file. file1_in = string('fraction_emissions_20040121.nc') file1_in=strcompress(file1_in, /REMOVE_ALL) fid=NCDF_OPEN(file1_in) varid=NCDF_VARID(fid,'Fraction_of_Emissions') NCDF_VARGET, fid, varid, DATA NCDF_CLOSE, fid gfeddly=gfedmly*DATA ;++++++++++++++++++++ the end for daily emissions ++++++++++++++++++ ;++++++++++++++++++++ idl code to generate 3-hourly emissions ++++++ nlon=720 ; number o...