search for: gaurantees

Displaying 20 results from an estimated 21 matches for "gaurantees".

Did you mean: gaurantee
2006 Jun 22
4
ADVICE: Generating unique identifiers for later DB insertion
All, I have an ActiveRecord object that I need to be able to uniquely identify _before_ I actually save the object (I may not end up saving the object based on conditions). This is because I want to use the ID in another context (a file name in the filesystem). Depending on conditions, I may or may not need to do a lot of stuff between the time that I generate the object ID and actually
2009 Jul 06
1
R 2.8->2.9 change that breaks some upgrade scenarios
I finally got round to look at a little problem I have - most of the time when I use R I would be using snpMatrix (now part of bioconductor, I wrote a substantial part of), so I had $HOME/.Rprofile to save some typing. Upgrading, switching versions used to work fine with R 2.8 then it broke with 2.9.. Apparently it is because most of SHLIB, INSTALL, etc used to be fairly extensive shell scripts
2009 Jun 27
1
Regression; how to get t-values for all parameters estimates
Dear all, Even after a couple of hours looking at old messages I still haven't found a solution for my problem. I'm trying to fit an additive linear regression model with 2 effects, both fixed, to some dataset. The function contrasts(effectA) <- contr.sum can gaurantee that the coefficients per parameter sum to one, and the function dummy.coef provices the estimates of all
2005 Jan 11
2
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
Michael, I've implemented a LOADABLE_MODULE feature in the makefiles: http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20050110/023147.html The approach taken is almost what you described below. However, I want to retain the distinction between a "regular" shared library and one that can be dlopened. So, if you specify SHARED_LIBRARY=1 you get a regular shared library
2016 Sep 29
2
[RFC] Require PRs for XFAILing tests
> On Sep 29, 2016, at 7:52 AM, David Blaikie <dblaikie at gmail.com> wrote: > > > > On Wed, Sep 28, 2016 at 11:58 AM Robinson, Paul via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > On 28 September 2016 at 10:08, Chris Bieneman via llvm-dev > <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>>
2004 Aug 06
0
2 Live Broadcast - 1 Feed (3DFX3500FM) - with passwords?
ok, I am really starting to love linux! I want to replace my Win2000 Media Server with Linux. We broadcast live FM Radio to 200 listeners every night. I need to gaurantee 50 slots to a certain group with a password or something similar. The other 150 can be wide open. I have icecast and liveice for xmms installed and all is good with simple feeds, but what is the best way to do this? Is icecast
2003 Jun 09
2
libtheora alpha 2 release
At long last, we've reached the alpha 2 milestone. CVS is tagged 'theora1_0_alpha_2' and a tarball is available from the website: http://www.theora.org/files/libtheora-1.0alpha2.tar.gz This includes (hopefully) all the format changes we wanted to get in, so the bitstream format has changed since the alpha 1 release. Any content you have will need to be re-encoded. Also we
2003 Jun 09
2
libtheora alpha 2 release
At long last, we've reached the alpha 2 milestone. CVS is tagged 'theora1_0_alpha_2' and a tarball is available from the website: http://www.theora.org/files/libtheora-1.0alpha2.tar.gz This includes (hopefully) all the format changes we wanted to get in, so the bitstream format has changed since the alpha 1 release. Any content you have will need to be re-encoded. Also we
2005 Dec 29
2
options_for_select order
I''m trying to create a Select box using the following code: &lt;%= select ''project'', ''status'', { "Active" =&gt; "Active", "MD" =&gt; "MD",  "HOLD" =&gt; "HOLD", "Dead" =&gt; "Dead"   }  %&gt; You''d think the select box would keep them in
2005 Jan 11
0
[Fwd: Re: [LLVMdev] Shared library building problems on Darwin]
Yep, it sounds like a good solution, and it works for me - thanks! -mike On Mon, 10 Jan 2005 20:40:34 -0800, Reid Spencer <reid at x10sys.com> wrote: > Michael, > > I've implemented a LOADABLE_MODULE feature in the makefiles: > > http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20050110/023147.html > > The approach taken is almost what you described
2011 Jul 15
2
question on compatibility and ldd
I have a number of programs I wrote on Centos 5 (x86_64) and for one of the programs I do ldd programX linux-vdso.so.1 => (0x00007fff2cb86000) libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003528600000) libm.so.6 => /lib64/libm.so.6 (0x0000003527e00000) libxml2.so.2 => /usr/lib64/libxml2.so.2 (0x0000003531400000) libz.so.1 =>
2007 Jun 29
4
Copyright notices in code
I thought about committing this change to all .c files: Removed all Copyright Timo Sirainen comments. They weren't always correct and the year numbers were rarely updated when something was changed. Copyright is owned by the creator by default in practically all countries, there's no need to advertise it everywhere. Can anyone think of reasons why this wouldn't be a good idea?
2005 Jan 05
1
Resyncing cut streams...
I'm interested to know of any player, which can properly resync after receiving a theora+vorbis stream that has been cut somewhere in the middle... ie it doesn't start at granule 0. The problem being... when streams are cut in this way, the start time, and the times of the first few packets in each stream are unknown. When working at a packet level... the first few packets will arrive
1996 Nov 14
0
Re: Re: t bit and symlinks patch
The context dependent files, as they appear to be implemented in the transname patch, looks like a source of security holes. Do not enable the transname patch without limiting its effect to a single group (a compile time option). Many of the possible exploits involve creating files with the for /targetfilepath#hostname=myhost# where myhost is the local machine. In general, if you have access to
2004 Sep 23
5
Which distribution to rollout
we are running an older version of RH (7.3) - and I am getting concerned that I may need to migrate off of it - but I dont know what I should move to. Trying to formulate ideas before it becomes a 'got to do it now' scenario. I have some reservations about fedora - I just dont know how stable it is for a production server (our services are mainly samba/ldap/ntp/ssh/rsync/clamav) - we
2002 Dec 16
1
application level write ordering guarantees?
Hi, can someone tell me whether applications can expect the write requests they make to be executed in order? For instance, suppose an application requests that a file be deleted, and then that another file be moved to an unrelated place. Will these events always happen in that order? Or to put it another way, if something unexpected happens in the meantime (say the computer crashes), is it
2006 May 23
19
LVM2 snapshots and XEN = problem :(
Hello guys Does anyone use lvm2 backends for domU storages ? I do and I wanted to use lvm''s snapshot feature to make backups of domUs in background but I got the following problem. When I create a snapshot LV and copy data from it to backup storage it works perfect. Then I do umount and then lvremove. lvremove asks me if I really want to remove the volume and then just hangs forever.
2004 Mar 21
3
New Directshow filters preview...
I have been developing some directshow filters for ogg, and vorbis and speex... currently i have an ogg demux filter and a speex/vorbis decoding filter. In this pre-release only vorbis is operational... but the speex decoder is pretty much done... i jsut need to tweak the demux filter so that it can negotiate a speex connection with the other filter. Just though some people might find them useful
2006 Jul 18
13
RANDOM
I am pretty much new at this ROR game and had what I think to be a simple question. I have a set of Sponsors that I would like to be able to select one at random and display in the my html. I have already set up the DB, scaffolded, set index controller and all is working smoothly. I know that I can display them all by doing <% for sponsor in @sponsors %> <%= sponsor.name %>
2006 May 25
13
functions calling functions
I think I may be missing a fundamental concept I hope someone can help me with. I have functions that won''t call other functions. Particularly after an Ajax request. In the following object the ajax request onComplete calls the ajaxFetched function successfully. ajaxFetched tries to call function2 but function2 does not execute. Any ideas or workarounds? thanks Kevin o =