search for: makeshift

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

2008 Mar 31
3
Vista Read/Write performance
...SP1, the best I've been able to get is 12.5 MB/s reading from the samba server. SCP gets 35-40 MB/s, and Vista to Vista transfers using SMB get 35-40 MB/s. I'm in the unfortunate position of having to recommend to my boss that we put the data on another Vista machine and use that as a makeshift file server until this problem can be ironed out. I very much do not want to tell him that. Any help anyone can offer would be greatly appreciated. Thank you, Matt Harris smb.conf excerpt below. [global] workgroup = UTOPIA server string = %h (file server) obey pam r...
2019 Apr 26
10
Automatically backing up and restoring x18 around function calls on AArch64?
...stribution - but e.g. as soon as any glibc function is called, it can end up clobbered again. The full, proper solution would of course to be rebuilding one's Linux distribution from scratch with -ffixed-x18 on every single library. But this is of course pretty much impractical. My current makeshift workaround for the matter is to reroute calls from native Windows code to Wine functions via a relay wrapper, which backs up and restores the register. This works in practice, but hasn't been accepted upstream, as it is not deemed a correct/complete solution. Also, if the emulated Windows A...
2015 Jan 28
2
"Monitor" RPMs in Repo
...manually. But did anyone build a script or something else to do this "automagically"? In my company we have a mix of self-build packages, epel-testing & rpmforge packages and some other obscure things. With something like I described above we would be sure when we could throw away the makeshift packages and transition to more or less stable packages from Base, Extra or EPEL. Cheers, Shorty -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: <http://list...
2006 May 28
0
expanding details examples?
...this method is not appropriate (it also loads the data on hide). I was thinking I could change the hide/show href each time it is clicked, or even store a value on the page and toggle it each time it''s clicked - but it seems like there must be a better solution. Here''s my makeshift .rjs template: page.replace_html "items" + params[:id].to_s, :partial => ''order_item'', :collection => @order_items page.replace_html "item_footer" + params[:id].to_s, :partial => ''order_item_form'' page.replace_html &quo...
2006 Aug 02
0
[PATCH 0/6] SCSI frontend and backend drivers
...e nice because of other SRP drivers (InfiniBand, IBM pSeries). Another issue is the limitation on the number of sg table (now 11) because I put indirect buffer in a ring buffer (like IB srp initiator driver). I will work on this too later on. The patchset includes libsrp.c, but it''s just makeshift. I will rewrite it completely. o Linux SCSI target framework (tgt) http://stgt.berlios.de/ o The old version of SCSI frontend and backend drivers http://lists.xensource.com/archives/html/xen-devel/2006-06/msg00849.html _______________________________________________ Xen-devel mailing list Xen...
2013 Aug 26
6
hShorewall 4.5.20
Shorewall 4.5.20 is now available for download. ---------------------------------------------------------------------------- I. P R O B L E M S C O R R E C T E D I N T H I S R E L E A S E ---------------------------------------------------------------------------- 1) On some distributions, the shorewall-lite and shorewall6-lite uninstallers could fail with a syntax error. 2) A
2008 Feb 18
2
Number of digits of a value for problem 7.31 RFAQ
Hello dear R users! I did not find a function which gives information about the number of digits of a value shown by R. Do you know one? I need it to solve the problem (see RFAQ 7.31)that 0.2==0.2+0.1-0.1 FALSE The solution suggested in RFAQ is to use isTRUE(all.equal(0.2,0.2+0.1-0.1)) But if I want to compare inequality: 0.2<=0.2 +0.1-0.1 TRUE but 0.2<=0.2 +0.1-0.1 FALSE bad! but in