Displaying 20 results from an estimated 1883 matches for "ambiguous".
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 --disab...
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?
...ork was stopped? If all the use cases for scalar TBAA can be
simulated using struct tbaa then that may be the easiest way to remove
the ambiguity.
[1]: I've assumed that the base type has to be a struct type node iff
it is different from access type node; without it things are even
more ambiguous. This isn't explicitly stated today, though.
For completeness, here is the C++ source that was used to generate the
IR above:
struct A { char f; };
struct B { A a; };
struct C { int f; };
int f(B *b, C *c, int *i) {
return b->a.f + c->f + *i;
}
and the metadata was:
!2 = !{!3...
2009 Jan 27
2
Inherited Methods in r-devel (for package maintainers mainly)
...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 ambiguities during package development or
revision, rather than having users encounter ambiguous method selection
later on. In that spirit, ambiguous method selection is no longer a
warning, just a message.
The new mechanism for...
2011 Mar 02
2
Ambiguous columns from related tables
...t 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 to.
One solution would be to append the desired table name to the field being passed on in search, like my_database.foo where foo was the ambiguous field. But this doesn''t seem very Rails-ish to my newbie eyes. Is there a bett...
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 column_name
FROM user_indexes i, user_ind_columns c
WHERE i.table_name = ''REGION''
AND c.index_name = i.index_name
AND i.index_name N...
2016 May 26
1
Potential ambiguity in the grammar of LLVM IR assembly
...e named? The syntax in the IR reference
> doesn't make it optional:
>
> @<GlobalVarName> = [Linkage] [Visibility] [DLLStorageClass]
> [ThreadLocal] ...
That was changed quite recently:
http://reviews.llvm.org/rL269096#c4361726
I guess that means that the grammar is not ambiguous here anymore (if it
was before).
-Manuel
> Cheers.
>
> Tim.
> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
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...
2010 Dec 16
1
Ambiguous match error for Cucumber
...Given /^that I have created a task "(.*)"$/ do |desc|
Task.create!(:description => desc)
end
When /^I go to the tasks page$/ do
visit "/tasks"
end
"
Whenever I am doing "rake cucumber:all" I am getting following error:-
".F-
(::) failed steps (::)
Ambiguous match of "I go to the tasks page":
features/step_definitions/tasklist_steps.rb:5:in `/^I go to the tasks
page$/''
features/step_definitions/web_steps.rb:19:in `/^(?:|I )go to (.+)$/''
You can run again with --guess to make Cucumber be more smart about it
(Cucumber::Ambi...
2006 Jun 18
3
Ambiguous clause error
..._to number.post.title, :controller => ''post'',
:action => ''show'', :id => post %> Ending: <%= number.post.end_date
%></li>
<% end %></ul>
I''m getting "Column ''user_id'' in where clause is ambiguous" From the
reading I''ve been doing it seems the fact that there is a "user_id"
field in both tables might be the issue. How do I work around this? Do I
have to rename one of the "user_id" columns, or is there a more elegant
way of doing this?
--
Posted via htt...
2016 May 25
4
Potential ambiguity in the grammar of LLVM IR assembly
...owing set of tokens be interpreted [1]?
declare
void
@foo()
unnamed_addr
global
i32
42
As far as I can tell, both of the following representations are valid in
the grammar [2]
declare void @foo() unnamed_addr
global i32 42
and [3]
declare void @foo()
unnamed_addr global i32 42
Is the grammar ambiguous, or is there something that I've overlooked?
Hope to hear back from you.
With kind regards,
Robin Eklind
[1]: https://github.com/mewspring/poc/blob/master/ll/a.ll
[2]: https://github.com/mewspring/poc/blob/master/ll/a1.ll
[3]: https://github.com/mewspring/poc/blob/master/ll/a2.ll
2019 Aug 15
4
[LLVM] (RFC) Addition/Support of new Vectorization Pragmas in LLVM
...wing loop
* Only trims dependencies at that loop nest level
* If the user annotates more than one loop in a loop nest, only
the ivdep on the innermost loop or loops is honored
* ivdep can be used on for (), while {}, and do { } while loops
* Primarily ivdep allows ambiguous dependencies to be ignored, examples:
* p[i] = q[j]
* a[ix[i]] = b[iy[i]]
* a[ix[i]] += 1.0
* ivdep still requires automatic detection of reductions, including
multiple homogeneous reductions on a single variable, examples:
* x = x + a[i]
* x = x + a...
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 fo...
2006 Sep 05
2
Eager loading and :order produces ambiguous column error
...ions, :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: Column ''position'' in order clause is ambiguous:
Is there a way to get round this, or do I have to make do with unordered
questions?
Thanks,
Gareth
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send...
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
...te those types through other users and copies. This means that if we decide to add an fp variant, we have to change the entire design of GISel to now handle both integer and fp types, whereas before we only cared about their size/vector structure.
Somehow do target intrinsic translation so that any ambiguous operations get split into sub-intrinsics to ensure they’re distinct. This approach has the disadvantages of requiring manual handling of these intrinsics, and that means that we can’t handle any ambiguous intrinsics automatically through the current pattern importer or the future GISel-native patte...
2011 Jan 14
1
[LLVMdev] Building Boost library failed with Clang 2.9
...ets...
...updating 6 targets...
clang-darwin.compile.c++
bin.v2/libs/iostreams/build/clang-darwin-4.2.1/release/threading-multi/mapped_file.o
In file included from libs/iostreams/src/mapped_file.cpp:18:
./boost/iostreams/device/mapped_file.hpp:416:5: error: call to member
function 'open' is ambiguous
open(p);
^~~~
./boost/iostreams/device/mapped_file.hpp:395:26: note: candidate function
[with Path = boost::iostreams::detail::path]
void mapped_file_source::open(const basic_mapped_file_params<Path>& p)
^
./boost/iostreams/device/mapped_file.hpp:410:26: n...
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
...ecorator.moc.o -MD -MP -MF .deps/decorator.moc.Tpo -c -o decorator.moc.o
decorator.moc.cpp
In file included from ../../include/decoration.h:33,
from decorator.h:41,
from decorator.moc.cpp:11:
/usr/include/X11/extensions/Xrender.h:75: error: reference to ?Bool? is
ambiguous
/usr/include/X11/Xdefs.h:49: error: candidates are: typedef int Bool
/opt/kde3/include/fixx11h.h:65: error: typedef X::XBool
X::Bool
If might not be compiz related (0.5.2 build went fine some times ago), but
maybe you can help me here. The problem is not dependent on the kde rele...