search for: start_profil

Displaying 7 results from an estimated 7 matches for "start_profil".

Did you mean: start_profile
2006 May 08
1
metaflac: New tags to replace crossfading in players.
...you don't have to rerun metaflac if you change your chosen crossover level or replaygain settings. What should these tags look like? Should I have tags like: START_90dB=0.000s START_80dB=0.567s START_70dB=2.557s START_60dB=4.676s ... END_80db=200.678s END_90db=201.034s or something like: START_PROFILE="90=0.001,80=0.576,70=2.557,60=4.676" END_PROFILE="80=200.678,90=210.034" I don't know what the dB intervals should be or what the range should be. I'm guessing that anything less than 60db won't matter even though I typed in 90dB above. Any suggestions would be...
2003 Sep 05
1
Problem with Win95 + DFS clients (fwd)
...ha Problem with win95 + DFS*/ +static int hack_fid; + + static void overflow_attack(int len) { if( DEBUGLVL( 0 ) ) { @@ -429,8 +433,26 @@ uint32 ioctl_code = (device << 16) + function; int replysize, outsize; char *p; + int temp = 0; files_struct *fsp = file_fsp(inbuf,smb_vwv0); - START_PROFILE(SMBioctl); + int fid = SVAL(inbuf,smb_vwv0); + + DEBUG ( 4, ( " smbvwv0 before = %i ( 0x%x )\n", fid, fid)); + /* hack for Win95 + dfs . Does not give proper value of fid in request + Value taken from last open_and_X */ + if ( fid != hack_fid ) { + SSVA...
2008 Dec 23
0
[jra@samba.org: Patch to improve Samba write speeds on Linux ext3 with 3.2.x]
...fs_default.c +++ b/source/modules/vfs_default.c @@ -745,10 +745,14 @@ static int vfswrap_ftruncate(vfs_handle_struct *handle, files_struct *fsp, SMB_O SMB_STRUCT_STAT st; char c = 0; SMB_OFF_T currpos; + enum smb_strict_allocate_options sa_options = lp_strict_allocate(SNUM(fsp->conn)); START_PROFILE(syscall_ftruncate); - if (lp_strict_allocate(SNUM(fsp->conn))) { + /* Only use allocation truncate if strict allocate + * is set "on", not off or partial. + */ + if (sa_options == STRICT_ALLOCATE_ON) { result = strict_allocate_ftruncate(handle, fsp, len); END_PROFILE(sysca...
2006 Mar 10
0
WEBrick crashing
...7] INFO ruby 1.8.2 (2004-12-25) [i386-mswin32] [2006-03-10 11:51:37] INFO WEBrick::HTTPServer#start: pid=3860 port=3000 % cumulative self self total time seconds seconds calls ms/call ms/call name 138.04 3.80 3.80 1 3796.00 3796.00 Profiler__.start_profile 36.80 4.81 1.01 873 1.16 2.00 Array#include? 27.35 5.56 0.75 3966 0.19 0.19 Module#== 21.64 6.16 0.60 1 595.00 2000.00 ObjectSpace.each_object 5.71 6.31 0.16 865 0.18 0.18 Module#included_modules 5....
2006 Mar 26
4
edge and 1.8.2/1.8.4 issues
I recently upgraded to 1.8.4 to try out mongrel, and so far have been in a kind of hell where I can''t get my app working! Currently running (or trying to run): Ruby version 1.8.4 (i386-mswin32) RubyGems version 0.8.11 Rails version 1.0.0 Active Record version 1.13.2 Action Pack version 1.11.2 Action Web Service version 1.0.0 Action Mailer version 1.1.5 Active Support version
2007 Sep 18
10
Routes
hi all, I want to move some routing tasks out of the router and into the controller. The goal is to make Merb feel less like mod_rewrite and give the user more control at the controller. The new Router is simple: it takes the path_info (not the whole request) then outputs a controller class and some parameters from the path matching. The rest of the routing would be done at the controller level.
2003 Dec 01
0
No subject
...struct iovec smb_hdr[1]; int smb_com2; /*added to support sendfile end */ files_struct *fsp = file_fsp(inbuf,smb_vwv2); SMB_OFF_T startpos = IVAL(inbuf,smb_vwv3); size_t smb_maxcnt = SVAL(inbuf,smb_vwv5); size_t smb_mincnt = SVAL(inbuf,smb_vwv6); ssize_t nread = -1; char *data; START_PROFILE(SMBreadX); /* If it's an IPC, pass off the pipe handler. */ if (IS_IPC(conn)) { END_PROFILE(SMBreadX); return reply_pipe_read_and_X(inbuf,outbuf,length,bufsize); } CHECK_FSP(fsp,conn); CHECK_READ(fsp); CHECK_ERROR(fsp); set_message(outbuf,12,0,True); data = smb_buf(o...