The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
119 views

Dependent name resolution & namespace std / Standard Library

While answering this SO question (better read this "duplicate"), I came up with the following solution to dependent name resolution of an operator: [temp.dep.res]/1: In resolving dependent names, ...
0
votes
1answer
42 views

Local Name Resolution without Port - MAMP Pro

This has been bothering me for a while, within MAMP Pro, I've got a few sites setup with "Local Name Resolution", however they only work with a port number. I've noticed many people are able to get ...
1
vote
4answers
79 views

namespace detection [duplicate]

I'm trying to write a log library which would use an external tool To make the library more natural to use, i would like to be able to detect the namespace in which cout is used. concretly the ...
7
votes
1answer
125 views

Declaration of method changes meaning of symbol

For the following code: struct foo {}; struct A { typedef foo foo_type; void foo(); }; GCC gives a compiler error: test.cpp:7:14: error: declaration of 'void A::foo()' [-fpermissive] ...
-1
votes
2answers
44 views

How can I call a member from a templated base class on a templated derived class? [closed]

With this setup: template<int N> struct Base { void foo(); }; class Derived : Base<1> { static void bar(Derived *d) { //No syntax errors here ...
0
votes
1answer
55 views

Eclipse IDE not resolving my src classnames

Seemingly out of the blue (although I think it happened inexplicably after an ant build) my Eclipse IDE stopped resolving the Java class names of those I have created inside my project, giving me a ...
0
votes
0answers
35 views

Resolution of Anaphora Procedure (RAP) ERROR‏

i want to do the name co-reference (named resolution) I have download your TOOL that is available in you website Resolution of Anaphora Procedure (RAP) ...
10
votes
3answers
142 views

Wrong name resolution when parent and inner class have the same name

I have an odd case with Visual Studio 2003. For somewhat legitimate reasons, I have the following hierarchy: class A {}; class B : public A { public: class A {}; }; class C : public B::A {}; ...
0
votes
1answer
105 views

Effective measurement of dns lookup and site content download duration

I am implementing a Java method that measures a number of metrics while loading a webpage. The metrics include : resolve time, the connect time and download time. The challenge seems to be the name ...
0
votes
1answer
136 views

How to make a website accessible by entering a simple name in the URL for the Local Area Network (Intranet)

I have seen certain web applications where we can access by typing a simple name such as "accounts" in the URL field rather than typing a complete domain name "www.xxx.yyy\accounts". I have a local ...
0
votes
1answer
130 views

Name resolution of inner classes in Java

I'm currently trying to make a plugin for Jenkins CI. I'm trying to create a new Project type and I'm running into some issues with compiling my code. I see the following work in the Jenkins code ...
3
votes
3answers
224 views

Reserved names in the global namespace

Rising from my answer in this question and as a follow up to this question apparently _(Upercase Letter) is reserved in the global namespace. 17.4.3.2.1 Global names [lib.global.names] ...
0
votes
2answers
82 views

Using 'property' as the name of a method in a python class

Is this possible in Python? class MyClass(object): @property def property(self): return self._property That is, I want to have a property named 'property'. It actually runs fine, ...
12
votes
4answers
283 views

.NET2 DNS rejects hostnames over 126 characters as “too long”

While working on a program I recently found that hostnames in .net (or at least in the ping class) are not supposed to have more than 126 characters. The ping class throws an exception if a hostname ...
14
votes
3answers
215 views

The actual result of name resolution in the class template is different from the c++ 03 standard

I test the code in the c++ standard ISO/IEC 14882-03 14.6.1/9 on Xcode 4.1 and Visual Studio 2008. The outputs of the two compiler are both different from the expected result of the standard. The ...
1
vote
1answer
656 views

Universal local network name resolution method without DNS?

I'm writing TCP/IP code for a DHCP enabled network device. Is there a universal way this device can announce its hostname in-the-wild that pretty much all web browsers (on osx/linux/win) can access ...
26
votes
1answer
1k views

List of C++ name resolution (and overloading) rules

Where I can find a list of the rules that a C++ compliant compiler must apply in order to perform names resolution (including overloading)? I'd like something like a natural-language algorithm or ...
2
votes
2answers
720 views

Rails app accessible from LAN machine using IP address, but not Bonjour name?

I'm developing a web-based application for iOS devices and want to access it from my Home Screen (via an icon). I'm able to see the site from an external device by going to http://10.0.1.4:3000, ...
0
votes
1answer
92 views

Templates :Name resolution -->IS this statement is true while inheritance?

This is the statement from ISO C++ Standard 14.6/6: Within the definition of a class template or within the definition of a member of a class template, the keyword typename is not required when ...
4
votes
1answer
206 views

Inter-module exception name resolution through boost python does not work?

Here is my problem: I have two C++ modules, A and B, which are built as dynamically-linked libraries. A offers basic math functions, and custom exception types. B is a higher level module that uses ...
0
votes
2answers
2k views

Create local Linked Server using Server Name or IP Address?

Based on the answer I received on this question (http://stackoverflow.com/questions/1911969/...) I have set up a Linked Server on SQL Server 2008 to a Pervasive database. Since both databases are on ...
1
vote
4answers
1k views

linux: adding hosts programmatically?

Is there a way to programmatically add hosts to the local name resolver under Linux? I would rather avoid fiddling with /etc/hosts dynamically... Example: add the name foo and bind it to the local ...
0
votes
1answer
517 views

PNRP Name Resolution Problem

I am trying to get PNRP connectivity working between a Windows XP machine and a Windows Vista machine on my internal network (as a first step to getting it working from outside my network). I have ...