Displaying 20 results from an estimated 56 matches for "minefield".
2010 May 01
0
Mutually assured minefields.
The specific standards process used to develop the MPEG codecs
creates patent minefields that royalty-free codecs don't generally
face. Because many knowledgeable people have heard of the problems
faced by these patent-soup standards, they may extrapolate these risk
to codecs developed under a different process where these problems
are less considerable. This is a mistake, and I...
2014 Dec 05
2
Re: [PATCH 1/8] New API: btrfs_subvolume_get_default
...> +
> + r = commandv (&out, &err, argv);
> + if (r == -1) {
> + reply_with_error ("%s: %s", mountpoint, err);
> + return -1;
> + }
> + r = xstrtol (out + 2, NULL, 10, &ret, NULL);
Unfortunately even gnulib's "xstrtol" function is a minefield, and the
code above won't work [specifically -- it's insecure] on 32 bit
machines.
Anyway, I think it's better to use sscanf here, so:
if (sscanf (out, "ID %" SCNi64, &ret) != 2) {
// error ...
}
> + if (r != LONGINT_OK) {
> + reply_with_error ("...
2004 Jul 29
1
Experiance of shipping into the UK
...recommend for somebody
importing to the UK?
Also has anybody in the UK imported any IAXy or OEM X100P - FXO PCI
Cards? I'm interested in knowing what sort of import duty they
attracted, if anybody has the TARIC classification number that would be
useful, I tried to work it out but it's a minefield.
Cheers!
Roy...
2014 Nov 23
2
R string comparisons may vary with platform (plain text)
...thread).
As a further possibility, there are choices in the UCA (in R, see
?icuSetCollate) and ICU can be compiled with different default choices.
It is not clear to me what (if any) difference ICU versions make, but
in R-devel extSoftVersion() reports that.
> In general, collation is a minefield: Some languages have the same letters in different order (e.g. Estonian with Z between S and T); accented characters sort with the unaccented counterpart in some languages but as separate characters in others; some locales sort ABab, others AaBb, yet others aAbB; sometimes punctuation is ignored, s...
2015 Jan 19
3
[PATCH] Makefile: add support for git svn clones
Hi,
On Mon, Jan 19, 2015 at 03:44:45PM -0500, Duncan Murdoch wrote:
> >>>>> git has an interface for cloning SVN repositories into git
> >>>>> which some users might decide to use. For those users'
> >>>>> surprise, the repository will always fail to build on
> >>>>> svnonly target and it will exit early.
>
2010 Jul 09
1
dash klibc DEBUG more compile trouble
once taken that stat/stat64 appart, histedit appears to be a minefield:
usr/dash/histedit.c:59: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?*? token
usr/dash/histedit.c:60: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?*? token
usr/dash/histedit.c: In function ?histedit?:
usr/dash/histedit.c:82: error: ?hist? undeclared (first us...
2006 Feb 02
2
PHP upgrade from 4.3.9 to 4.4.2 or 5.x
...s not
working). Someone has just posted in the SugarCRM forums that they had
exactly the same problems on CentOS 4.2 and they fixed them by upgrading
from PHP 4.3.9 to 5.0.5.
Being a more cautious chap, I'd like to try an upgrade to PHP 4.4.2 first
but want to make sure I'm not entering a minefield with PHP as I can't find
a friendly yum update so I would appreciate a heads-up on how best to go
about it without screwing the whole thing up - I am reading through the
notes on the PHP web site but would appreciate it if someone would outline
exactly what rpms or binaries I need to install a...
2008 Mar 15
3
Firefox 3
Hi,
I just read the release announcement for RHEL 5.2beta:
https://www.redhat.com/archives/rhelv5-announce/2008-March/msg00000.html
And something caught my eye:
--8<-----------------------------------------
* Laptop and Desktop Enhancement
+ Suspend and Hibernate improvements
+ Re-base of the top Desktop applications
- Evolution 2.12.3
- Firefox 3
- OpenOffice 2.3.0
2019 Jul 17
2
Adding the LLVM license file to the monorepo root
Hi,
The llvm-project monorepo (https://github.com/llvm/llvm-project) is
currently missing a top-level license file. It would be nice if there was
one so that anyone unfamiliar with layout of the monorepo could find it
right away.
I have put up a patch that adds a LICENSE.txt file to the monorepo root:
https://reviews.llvm.org/D64875. The file is copy of LICENSE.txt from the
llvm/ directory. Are
2004 Aug 06
2
Streaming
This may be interesting to some.
I recently discovered AllCast.com which has developed a p2p streaming
solution. Unfortunately they decided to use WMA due to it's video
capability but hopefully they could be presuaded to switch to Vorbis
later when Tarkin is available. For audio though, it appears a good way
to reduce bandwidth requirements at the broadcasting end and potentially
2014 Nov 23
2
R string comparisons may vary with platform (plain text)
On Sat, Nov 22, 2014 at 12:42 PM, Duncan Murdoch
<murdoch.duncan at gmail.com> wrote:
> On 22/11/2014, 2:59 PM, Stuart Ambler wrote:
>> A colleague?s R program behaved differently when I ran it, and we thought
>> we traced it probably to different results from string comparisons as
>> below, with different R versions. However the platforms also differed. A
>>
2010 Jun 29
3
Theora and WeBM support in Firefox and Opera
I did some tests:
### Theora support in Firefox 3.7a (missnamed as "Minefield"):
Same as since 3.5 (plays, no controls if Javascript off, no thorough
retest of buffering issues).
http://lists.xiph.org/pipermail/theora/2010-January/003369.html
http://bugzilla.mozilla.org/show_bug.cgi?id=449358
### WeBM support in Firefox 3.7a
Seems to play (controls bug of course al...
2007 Jul 17
2
Asterisk Hosting (Dedicated Servers)
Hello guys,
Does anyone has an Asterisk server hosted off-site ? Like in those data centers that do web hosting in dedicated servers ?
Is there a hosting company that has a special plan to host voip services like this, or usually is hosted in those dedicated servers like the ones I asked above ?
What about QoS ? I know that most (if not all) are connected to their switch through a
2017 May 29
4
The state of ARMConstantIslandPass in 4.0.[01]
Hi,
We at Rust are using LLVM for our codegen. Since Rust version 1.19.0,
which should ship in July 21st, we are using a slightly patched
version of LLVM 4.0.
The transition to LLVM 4.0 had been fairly pain-free on x86 (at least
excluding the standard suite of assertion failures using MSVC SEH, but
that's fairly under control), but we have encountered several scary
bugs in ARM, most
2013 Jul 02
0
[LLVMdev] [Loop Vectorize] Question on -O3
...force the dependencies
> to run regardless of the On level. Not sure how this dependency system would be
> constructed, though.
they aren't dependencies in the sense that they aren't needed for correct
functioning. They are only needed to get decent results. But then you get
into a minefield, since all kinds of optimizations can expose stuff that
causes other optimizers to do stuff that causes other optimizers to do stuff
that (... repeat many times) that ends up allowing the loop vectorizer to do
more. Anyway, since "opt" is a developer tool I think it is reasonable to
req...
2017 Sep 11
0
Re: virt-v2v stuck EDAC sbridge
...t; The virt-v2v machine is running inside openstack, so there is nested
> virtualization. To the best of my understanding all of the
> appropriate flags have been set to support nested virtualization.
Ah OK, it's likely to be a bug in nested virt. Unfortunately nested
virt is a bit of a minefield, and often has bugs. Also the bugs tend
to depend on the exact CPU vendor and model.
...
> >You could also try running without using KVM. It'll be a bit slower
> >but is usually less buggy than nested virt:
>
> > export LIBGUESTFS_BACKEND_SETTINGS=force_tcg
>
>...
2004 Aug 06
0
multicast (was streaming)
it could be a bit of a minefield - i seem to remember reading
of the requests for some fairly wide patents a couple of years
back by um, vtrails, on anything that involves browsers
http://groups.yahoo.com/group/isoc-ny/message/20
the most effective multicast sevice i've seen is swarmcast -
a slashdot thread on the topic of so...
2014 Nov 23
0
R string comparisons may vary with platform (plain text)
...amina, also look into the python question that it links to.
As I understand it, there are two potential reasons: Either the two platforms are not using the same collation table for en_US, or at least one of them is not fully implementing the Unicode Collation Algorithm.
In general, collation is a minefield: Some languages have the same letters in different order (e.g. Estonian with Z between S and T); accented characters sort with the unaccented counterpart in some languages but as separate characters in others; some locales sort ABab, others AaBb, yet others aAbB; sometimes punctuation is ignored, s...
2015 Jan 19
0
[PATCH] Makefile: add support for git svn clones
...balbi at kernel.org> wrote:
> I just thought that such a small patch which causes no visible change to
> SVN users and allow for git users to build R would be acceptable, but if
> it isn't, that's fine too.
Felipe ---
It would appear that you are unaware that you are walking a minefield
of entrenched positions and personality conflicts. For those like
myself who are mystified by the positions taken in this thread, a
partial back story may be helpful.
In 2012, Han-Tak Leung reported a problem compiling the development
version of R that he had checked out using git's svn compa...
2005 May 10
1
public-key ?
Hi,
I'm not a crypto expert, so after reading this interview with Bruce Schneier
( http://www.securityfocus.com/columnists/324 ) I'm wondering if OpenSSH has
the same problem he talks about, that is one public-key algorithm.
Doesn't OpenSSH use RSA, DSA, and DH ?
Also, is there any plan to include those new NSA standards based on ECC ?