Displaying 20 results from an estimated 1883 matches for "ambiguities".
2013 Nov 26
2
[LLVMdev] LLVM compilation problem
I am using gcc 3.4.6 to build LLVM, and am encountering overloaded/ambiguous errors in several files...
% gcc -v
Reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.6/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions
2005 May 30
3
?strptime ambiguity (PR#7907)
Full_Name: Tobias Verbeke
Version: 2.1.0
OS: GNU/Linux
Submission from: (NULL) (81.247.252.229)
Would it be possible to use a non-ambiguous example
of expressing a day according to the ISO 8601 international
standard in the first sentence of the Note section of
?strptime, e.g. "2001-04-18" instead of "2001-02-03" ?
Yours,
Tobias
2016 Nov 01
2
Ambiguity in !tbaa metadata?
I was trying to add some stronger assertions in the verifier around
!tbaa metadata when I ran into an ambiguity: I think the encoding of
the metadata nodes are such that a given node can be interpreted as
either a struct type node or a scalar tbaa node. I'd like a sanity
check before I try to fix or work around this.
Consider some IR that I got from running clang over a small C++
program:
2009 Jan 27
2
Inherited Methods in r-devel (for package maintainers mainly)
...on of R-devel (47740) has introduced a new
mechanism for ordering superclasses consistently, with related changes
for selecting inherited methods.
As part of the process, a function testInheritedMethods has been
introduced that examines method selection for the relevant subclasses
and reports ambiguities.
Maintainers of packages that have methods involving multiple arguments
are encouraged to run testInheritedMethods for the relevant generic
functions (e.g., the binary operators). The new method selection is
unambiguous for single-argument selection.
It's preferable to find such ambiguit...
2011 Mar 02
2
Ambiguous columns from related tables
Hi all,
I''ve got an issue where i have a search page that passes a field which is then used as the criteria of the search. Problem is, I''ve set an AR has_many relationship in the model that joins one table to another - both tables have the same column name I''m searching on, so naturally I get an ambiguous error in sql - it doesnt know which column to apply the search
2006 Jul 04
3
OCIError: ORA-00918: column ambiguously defined
Hi all,
when I execute the command "rake db:schema:dump" i get this error in the
db/schema.rb file.
____________________________________________________
# Could not dump table "region" because of following
ActiveRecord::StatementInvalid
# OCIError: ORA-00918: column ambiguously defined:
SELECT lower(i.index_name) as index_name, i.uniqueness, lowe
r(c.column_name) as
2016 May 26
1
Potential ambiguity in the grammar of LLVM IR assembly
On 2016-05-26 02:42, Tim Northover via llvm-dev wrote:
> On 25 May 2016 at 16:10, Robin Eklind via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>> declare void @foo() unnamed_addr
>> global i32 42
>
> Doesn't a global have to be named? The syntax in the IR reference
> doesn't make it optional:
>
> @<GlobalVarName> = [Linkage]
2008 Nov 05
2
Warning: Ambiguous first argument; make sure.
Hello,
I''m getting this warning:
Warning: Ambiguous first argument; make sure.
in my unit test:
assert_match /^[a-zA-Z0-9]+$/, user.username
Does anyone know why or how to change it so it disappears?
Thanks
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2010 Dec 16
1
Ambiguous match error for Cucumber
Hi,
I am trying out the cucumber tutorial
http://www.ultrasaurus.com/sarahblog/2008/12/rails-2-day-3-behavior-driven-development/
My tasklist.feature file is like as follows
"
Feature: Tasks
In order to keep track of tasks
People should be able to
Create a list of tasks
Scenario: List Tasks
Given that I have created a task "task 1"
When I go to the tasks page
Then I should see
2006 Jun 18
3
Ambiguous clause error
I''m trying to query one table to ultimately display the relate info from
another table. I have 2 tables: "posts" and "numbers". I''m trying to do
a query like this:
@numbers = Number.find(:all,
:conditions => [ ''(user_id) = :id'',
{:id =>
2016 May 25
4
Potential ambiguity in the grammar of LLVM IR assembly
Hello everyone,
While developing a parser for LLVM IR, I seem to have stumbled upon a
potential ambiguity in the LLVM IR assembly language grammar. Most
likely there is something which I may have overlooked, so wanted to
reach out to a more experienced crowed for some feedback.
How would the following set of tokens be interpreted [1]?
declare
void
@foo()
unnamed_addr
global
i32
42
As far as
2019 Aug 15
4
[LLVM] (RFC) Addition/Support of new Vectorization Pragmas in LLVM
The ivdep pragma is designed to do exactly what the name states - ignore
vector dependencies. Cray Research first implemented this in 1978 in
their CFT compiler, and has supported it since.
This pragma is typically used by application developers who want
vectorized code when the compiler cannot automatically determine safety;
it is not equivalent to the OpenMP SIMD pragma in that the compiler is
2014 Apr 10
1
Bug#744160: xl.conf ambiguity
Package: xen-utils-common
Version: 4.1.4-3+deb7u1
Severity: minor
In the file /etc/xen/xl.conf there's a suggestion that
vif scripts should be named relative to the /etc/xen/scripts
directory, which is not the case, since absolute paths have
to be used. The manual page xl.conf(5) is also missing.
Relevant snippet:
# default vif script
#vifscript="vif-bridge"
2008 Mar 18
0
ambiguous example in as.Date() documentation (PR#10990)
<<insert bug report here>>
The note in the as.Date() documentation is ambiguous (is it referring
to February 3rd, 2001, or March 2nd, 2001?) While it is certainly true
that one could peruse the ISO 8601 standard to determine which ordering
is correct, changing the example day to one where the day value is >12
would resolve the ambiguity.
Current Note:
The default formats
2006 Sep 05
2
Eager loading and :order produces ambiguous column error
I''m sure I saw a post about this topic a while ago, but I haven''t been able to
find it again.
I have this association:
has_many :sections, :class_name => "QuestionnaireSection", :order =>
"position",
:dependent => :destroy, :include => :questions
but since the Question object has a position column, the query comes back with
Mysql::Error:
2008 Nov 05
1
ambiguous nested conditions on find
Hi, i''m trying to figure out how to do a query with an ambiguous
condition
Lets say Comment belongs_to :article and :user,
and Article :belongs_to :user
How can I find the comments by one user on articles by another user
in one query?
This doesnt work, but is kind of the idea:
Comment.find :all, :conditions => {''users.name'' =>
2019 Mar 11
4
GlobalISel: Ambiguous intrinsic semantics problem
Hi GlobalISel interested parties,
A recent bug report (https://bugs.llvm.org/show_bug.cgi?id=40968) on AArch64 exposed a problem with our modeling of intrinsic semantics when dealing with type overloaded calls. The crux of the matter is that because GlobalISel’s LowLevelTypes only carry size and vector layout information, and not any information about whether a type is integer or fp, we lose
2011 Jan 14
1
[LLVMdev] Building Boost library failed with Clang 2.9
I tried building boost 1.45 release with clang 2.9 following instructions
on
http://blog.llvm.org/2010/05/clang-builds-boost.html
but got the following result:
$ clang++ --version
clang version 2.9 (trunk 123420)
Target: x86_64-apple-darwin10
Thread model: posix
$ ./bjam toolset=clang
Building the Boost C++ Libraries.
Performing configuration checks
- has_icu builds : no
2008 May 21
2
Clients hang because imap-login discards post-login commands
Some of my IMAP clients hang when connecting to Dovecot 1.1.rc5. I
believe the problem is that imap-login reads eagerly rather than
sparingly. If a client sends
a login user password
b select Inbox
all at once, without waiting for the login reply before sending the
select, imap-login eats the second command (reads it from the socket
and does nothing with it; system call tracing confirms
2007 Oct 24
1
Compiz build error with KDE: reference to ‘Bool’ is ambiguous
Hi all.
I have the following problem building kde-window-decorator (compiz 0.5.2 and
0.6.2):
Making all in kde
make[2]: Entering directory `/usr/src/RPM/BUILD/compiz-0.6.2/kde'
Making all in window-decorator
make[3]: Entering directory
`/usr/src/RPM/BUILD/compiz-0.6.2/kde/window-decorator'
i586-openmamba-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../.. -I../../include -I/usr/include/dbus-1.0