search for: clashing

Displaying 20 results from an estimated 918 matches for "clashing".

Did you mean: flashing
2009 Nov 15
1
debian and cran2deb name clashes
Dear all Recently I noticed that there are name clashes between the packages proposed in the Debian testing repos and cran2deb. For example, Synaptic proposes to upgrade from xtable 1.5-6-1cran1 (cran2deb, up-to-date CRAN version) to 1.5.5-1 (testing, older version). Is there anything that can be done about these clashes? Liviu -- Do you know how to read?
2018 Jun 19
2
Naming clash: -DCLS=n and CLS in code
Tim Northover via llvm-dev wrote on 06/19/2018 09:22 PM: > On Tue, 19 Jun 2018 at 20:12, U.Mutlu <um at mutluit.com> wrote: >> You can find more examples by searching for "DCLS getconf LEVEL1_DCACHE_LINESIZE". > > Frankly, it all looks like cargo-cult optimization flagomancy. I'd > suggest you drop it, it's not magical I promise. Hey, I'm working on
2002 May 23
1
Samba 2.2.4 frequent mangled names clashes
Hi all, while working with Netbench I've discovered that mangled directory names clash rather frequently with Samba 2.2.4: If I take an NT box, open the cmd prompt and make the following directories on a Samba share, client100 and client121, both mangle to CLIEN~GH. If I create directories client100 through client130 I see 11 clashes altogether: CLIEN~GH: client100 client121 CLIEN~MF:
2011 Feb 16
2
Avoiding name clashes: opinion on best practice naming conventions
Dear List, I'm trying to figure out some best practice way with respect to the naming conventions when building own packages. I'd like to minimize the risk of choosing function names that might interfere with those of other packages (both available ones and those yet to come). I came up with following alternatives 1. Prefixing the actual names (e.g. myPkgfoo() instead of foo()): pretty
2010 Dec 08
2
new to wine installing "clash of nations"
I'm trying to install " Clash of Nations" the game installed ok,. and I have a icon on desktop...but when I click on it nothing happens? any ideas?
2002 Mar 11
1
Fw: Firewall and Port Forward Clash?
----- Original Message ----- From: "Tom Eastep" <teastep@shorewall.net> To: "Gary Gale" <gary@vicchi.org> Sent: Monday, March 11, 2002 11:48 AM Subject: Re: [Shorewall-users] Firewall and Port Forward Clash? > Gary, > > ----- Original Message ----- > From: "Gary Gale" <gary@vicchi.org> > To: "Shorewall Users List"
2004 Oct 09
0
symbol clash with vorbis
Hi all, Speex and the Vorbis library both define internally used functions with the names: drft_init drft_forward drft_backward drft_clear When Speex and Vorbis are used as dynmaic libs, there is no symbol clash because both libraries limit the number of functions they export to what is absolutely necessary. However, when linking static versions of these two libraries, the names
2006 Nov 22
1
Ralloc clash
Hi everyone, Have been trying to include windows.h (from MinGW) and R.h into a package and have found that Ralloc is coming up as a clash no matter which include ordering I use. In windows it has 2 arguments and is defined in objidl.h and in R.h it is 3 arguments. Any ideas of how to work round this? Have checked the web and have not seen anyone else comment on this. Many thanks Tom
2012 Sep 20
1
[PATCH] rename local variable to avoid clash with match macro
match will expand to guestfs___match, rename the local variable to avoid clash. Signed-off-by: Olaf Hering <olaf at aepfle.de> diff --git a/src/inspect-fs-unix.c b/src/inspect-fs-unix.c index 06ff96d..c30ad5a 100644 --- a/src/inspect-fs-unix.c +++ b/src/inspect-fs-unix.c @@ -1128,14 +1128,14 @@ map_md_devices(guestfs_h *g, Hash_table **map)
2016 Dec 12
0
RFC: Constructing StringRefs at compile time
Well, apparently clang has clang::StringLiteral in clang/AST/Expr.h So, our options are either: Allow this name clash (obviously the namespaces don't clash, only the names) and deal with it when it's an issue (which will be limited to clang, and even then not very often), or choose a different name. Thoughts? On Mon, Dec 12, 2016 at 11:53 AM Zachary Turner <zturner at google.com>
2008 May 15
1
proto naming clash?
Trying to learn Proto. This threw me: #startup r... > > library(proto) > a <- proto(x=10) > a$x [1] 10 > x <- proto(x=100) > x$x Error in get("x", env = x, inherits = TRUE) : invalid 'envir' argument > Do I simply need to be careful to name proto objects and proto components uniquely? Is this the desired behavior for proto objects? Thanks. -- View
2008 Jun 12
2
Wine 1.0 release date to clash with Firefox 3
According to http://wiki.winehq.org/WineReleasePlan the new release date for Wine 1.0 is set to June 17. However the Firefox 3.0 release date is also set to June 17. http://developer.mozilla.org/devnews/index.php/2008/06/11/coming-tuesday-june-17th-firefox-3/ Their release is planned to be high profile and they even plan to set a Guinness world record for downloads in a single day!
2014 Jan 15
2
[Bug 10381] New: --acls and --xattrs clash with --delete-missing-args
https://bugzilla.samba.org/show_bug.cgi?id=10381 Summary: --acls and --xattrs clash with --delete-missing-args Product: rsync Version: 3.1.0 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: blgl at
2010 Jan 30
1
Clash between r-cran-vr and r-cran-mass
[ Kevin sent this to me but agreed that it's better to have this discussed here. ] On 30 January 2010 at 11:35, Kevin Donnelly wrote: | I am using Ubuntu 9.10. Installing r-cran-latticist asks for r-cran-vr to | be installed as well, but this gives the following message: | E: /var/cache/apt/archives/r-cran-vr_7.2.47-1_i386.deb: trying to overwrite |
2006 Jul 07
8
Possible name clash?
Scenario: Table in database has two fields, id and category (table name is: categories) Controller is named category_controller.rb Model is named category.rb Helper is named category_helper.rb Form is named list.rhtml in view\category directory The code in play on the form is (from generating scaffold): <% for category in @categories %> <tr> <td><%=
2009 Aug 19
1
[PATCH libguestfs] avoid build failure due to Haskell keyword clash
I got this build failure: Guestfs.hs:1941:11: parse error on input `module' where that (generated) file looked like this: 1940 modprobe :: GuestfsH -> String -> IO () 1941 modprobe h module = do 1942 r <- withCString module $ \module -> withForeignPtr h (\p -> c_modprobe p module) 1943 if (r == -1) 1944 then do 1945 err <-
2018 Sep 03
1
ubuntu software updater clash with with cloud.r-project
This seems the most appropriate place to report this. I just updated my ubuntu to 18.04.? And installed R by adding the line to /etc/apt/source.list:?? deb ... cloud.r-project ... bionic-cran35/ R installed just fine. However, my ubuntu software update would not finish correctly any more.? Failed to access ... check internet connection?? (internet connection was just fine.) Commented out the
2006 Mar 21
0
is "Task" a reserved class name in Edge Rails? (it clashes with Rake''s Task)
Ok, so I''ll bet that lots of people would naturally have a DB table called "Tasks" and a model called Task, and this works fine in Rails 1.0. BUT, using Edge Rails things turn strange when you start visiting your Task pages because it thinks that you''re trying to use Rake (which also has a Task class). Is there any way around this? -Greg Greg Edwards CTO,
2000 Aug 15
0
crc32() clashes with zlib function of the same name
OpenSSH defines a function crc32(), and so does the zlib library. This is at best confusing (since they are different functions with different prototypes), and at worst a source of crashes. I found this problem getting OpenSSH up and running on Darwin, which turned out to be calling the wrong function. My bandaid was to include ``-Dcrc32=crcsum32'' in CFLAGS. The proper fix would be
2005 Apr 25
2
NIS schema clash
Hi list, I'm trying to set up an OpenLDAP server to provide the goodies for samba and postfix running on the same box - SUSE 9.2 Pro The trouble start fairly early, unfortunately. I'm following the idealx.org documentation, which suggest using samba.schema as well as inetorgperson.schema and nis.schema. (John Terpstra's book suggest this as well). There seems to be a conflict