Domain name resolvers determine the appropriate domain name servers responsible for the domain name in question by a sequence of queries starting with the right-most (top-level) domain label
1
vote
1answer
67 views
cannot resolve symbol r android studio
In every instance in all of my classes where i reference R.id.something the R is in red and it says "cannot resolve symbol R", also every time there is R.layout.something it is underlined in red and ...
-2
votes
0answers
32 views
Android - Cannot resolve symbol 'loadUrl'
I'm fairly new to Android Development, and have been getting this error: Cannot resolve symbol 'loadUrl'. All the other answers seem to say that the issue is not importing it. I know that it IS ...
0
votes
1answer
23 views
Why is my deferred object set to resolved instead of pending when calling a function that sets a new $.Deferred multiple times?
I'm trying to get jQuery deferred to work and am having some problems.
My system is using postMessage to pass messages from and to sandboxed areas on a website. So when I request a service from a ...
0
votes
1answer
20 views
dojo Deferred callback function
I want to write a callback function using dojo Deferred. I wrote two functions, a and b
function a() {
for(var i = 0; i < 3000; i++) {
....
}
}
a need more time, ...
0
votes
3answers
106 views
R cannot be resolved (Another)
Well - it would seem over the past several days, I've read almost every threat here about the subject, but none have worked!
I've just started to develop a new app and as soon as the project was ...
0
votes
1answer
157 views
AngularJS: route resolve promise is cached
In the first sample code all works as should - on every page route change we check some conditions ($timeout) and resolve a promise:
JSFiddle Var sample code
In the second sample we move var ...
0
votes
1answer
46 views
DNS lookup failing
I have a primary and secondary domain controller that we use as our DNS servers. Users are getting mixed results with accessing websites. Some work fine, others are giving an error:
Network Access ...
0
votes
0answers
60 views
nginx proxy_pass without resolving
I got a web app running behind Apache locally, at host myapp and port 8080. For communicating the outside world I got nginx listening at port 80.
To expose my app outside I use proxy_pass with the ...
0
votes
0answers
23 views
Twitter Streaming API track shortened URLs
I want to count the twitter mentions of a url with different paths.
Therefore I am using the twitter streaming api with the track filter like:
...
1
vote
1answer
61 views
List and resolve implementations of interface [Windsor Castle]
Since Autofac is not working on Mono I'm trying to switch to Windsor IoC framework.
I want to search dll's for implementations of my interface IDataLoader and resolve all of them to instances.
here ...
0
votes
1answer
45 views
Node.js: Resolving url with port included
I want to resolve an url with a port included.
Concrete example:
mainServerURL ='localhost:8080/';
tempFilesDir ='/temp';
If I call url.resolve on these two variables, I get
...
0
votes
1answer
65 views
Negative lookahead in LR parsing algorithm
Consider such a rule in grammar for an LR-family parsing generator (e.g YACC, BISON, etc.):
Nonterminal : [ lookahead not in {Terminal1, ..., TerminalN} ] Rule ;
It's an ordinary rule, except that ...
1
vote
1answer
98 views
SharePoint: How do I resolve/search for claims using PowerShell?
I have a SharePoint (2010) web application that is set up with claims based authentication, with two claims providers (Azure ACS and ADFS). From SP Central Admin -> Manage Web Applications -> User ...
0
votes
0answers
59 views
Mono.Cecil Could not resolve assembly
I found a bug in Mono.Cecil
I open a specific dll by AssemblyDefinition.ReadAssembly(inStream) and then save it instantly by assembly.Write(outStream), it throw a BaseAssemblyResolver exception at ...
0
votes
0answers
28 views
Could not resolve and ping peers between two machine however peer can be resolved on its local machine
I register 2 peer in 2 different machine with windows 7. I can resolve and ping peers which in their local machine but when i try to resolve or ping one peer from another machine,it can not be ...
0
votes
1answer
21 views
Amazon EC2 IP not resolving on a new instance
I am creating a backup machine to run simultaneously next to my live machine. I have created a mirror copy of the instance and volume but for some unknown reason when I go to the IP address, I get a ...
1
vote
1answer
185 views
How to dynamically load an assembly from custom directory including its depencies?
I found the following code that loads a dll dynamically from a custom location:
private void Form1_Load(object sender, EventArgs e)
{
AppDomain currentDomain = AppDomain.CurrentDomain;
...
0
votes
1answer
153 views
TFS 2010 - Baseless Merge and How disable automatic resolve conflicts?
We need to make a baseless merge between two release versions.
We need a customer that have a release 2.0.1 of system and another with release 5.0.6
A bug was fixed in 2.0.1 and we need to merge in ...
0
votes
0answers
44 views
MT4j on Android. Can’t run Mt4j Android App.
I’m new on mt4j and I’m trying to work with the android version, but i’ve got some troubles.
I put on the built path all the libs and jars, and the project doest accuse any error.
But when I run the ...
0
votes
0answers
45 views
How do I prevent dnsmasq from expanding simple names?
I'm using Debian Sid and am having the same problem as in question How do I prevent dnsmasq from appending my domain name to invalid domain requests? but that question has no accepted answer and I ...
2
votes
3answers
78 views
Is it possible to recover the conflict for a file after failing to resolve it correctly?
Assume I did a rebase and 100 files have conflicts. I have to resolve them one by one. Let us say I have resolved (N-1) files and I am working on the file N. After working on it for some time, I find ...
0
votes
1answer
552 views
Unable to resolve host Android
I want to send a http request from my Android device using a local proxy.
Before to detail my problem, I want you to know this is working well on every device I tried except on the Xperia arc S, and ...
0
votes
1answer
656 views
AngularJS ng-repeat with data from service
Originally in my app, I created controllers with very basic $http calls to get a resource by getting the ID of an object from the url ($routeParams). Ng-repeat display the results correctly.
...
0
votes
2answers
113 views
Resolve a relative path in a URL with PHP
Example 1: domain.com/dir_1/dir_2/dir_3/./../../../Should resolve naturally in the browser into = domain.com/
Example 2: domain.com/dir_1/dir_2/dir_3/./../../../test/././../new_dir/
Should resolve ...
0
votes
1answer
94 views
List out all the registered component in container , Windsor?
I got this exception when tried to instantiate a component using factory.
Requested component named '<component_Name>' was not found in the container. Did you forget to register it?
There is ...
0
votes
1answer
124 views
PHP taking a long time to resolve hostnames
we're seeing a very odd issue with PHP taking a very long to resolve any hostname, which happens randomly every 5-10 attempts. We have used the following script to check it out...
<?php
$mtime = ...
0
votes
0answers
18 views
Can PHP identify what filesystem location a URL processed by mod_dav_svn will resolve to?
We have a collection of SVN repositories each of which contains several projects.
For every project URL we would like to resolve the location of the relevant repository on the filesystem. This is for ...
0
votes
1answer
113 views
Resolve system of equations with 10th degree polynomial, LSM
I have numerical problem with resolve system of equations (polynomial 10th degree) using ordinary LSM (Least Square Method). I obtained parameters with huge and very small values - therefore I can't ...
-3
votes
2answers
582 views
Script to output the resolved hostnames to a file [closed]
Im looking for a script (batch, perl, vb or whatever) that will resolve the hostnames i will give to it into IPS and output a file(optionally) with them, just as the Windows Hosts File.
So for ...
1
vote
0answers
54 views
Nokia Qt in-app purchase testing on multiple device for same user
I have integrated the QT API for Nokia OVI store in-app purchase i.e. IAPClient.
The reference to the IAPClient is here
I am able to purchase items and restore them successfully on one device (the ...
1
vote
1answer
144 views
When creating a reg-free managed COM object, how can I get the CLR to look in a directory different to the main application's executable?
This is a kind of complex question, hitting on somewhat arcane areas relating to COM, the CLR, and reg-free COM.
First, my main application is written in python. As such, it's codebase (in ...
0
votes
0answers
58 views
.NET SmtpClient: Is there a way to make sure that all emails resolve prior to sending MailMessage?
I am using SmtpClient to send an email to multiple recipients. As employees leave the company, their email addresses become invalid. Since their email addresses remain in our database until deleted ...
0
votes
2answers
858 views
Why is my layout unable to be resolved? (Android/Java)
Well, my program has been working so far, staying compilable and everything, and I tried to add a sound to it, so I created a folder "raw", and stuck in the mp3 file. Then I tried to use it, and ...
1
vote
3answers
162 views
Exception when using google guava and google collections at once
My java code is dependent on 2 libraries A and B
A has a dependency on GoogleCollections
B has a dependency GoogleGuava r10;
Now when i build my code everything works fine.But when i run i ...
3
votes
1answer
102 views
Tortoisesvn auto resolve conflicts on folder?
is it possible to set a 'rule' that tells TortoiseSVN to automatically resolve conflicts on a specific folder?
ie. we have a shared resources folder - "/shared" that we use to store our latest bin ...
2
votes
0answers
106 views
Android MMS connection ends with unable resolve host
I have app with MMS send feature, based on this http://androidbridge.blogspot.de/2011/03/how-to-send-mms-programmatically-in.html
It works and correct connection (mobile mms network) is established, ...
3
votes
1answer
123 views
Why android.os.IServiceManager in Android not resolving
I am coding for DialerDemo, But import android.os.IServiceManager;import android.os.ServiceManagerNative; import android.telephony.IPhone; are not resolving
CODE:
package ...
0
votes
1answer
531 views
Connect to XAMPP webapp over LAN with iPodTouch
XAMPP 1.7.4 is hosted on a Win7 Pro system
A webapp located C:\xampp\htdocs\webapp\ is a single index.html file.
I can connect to the site locally like this http://localhost/webapp/
An iPodTouch is ...
1
vote
2answers
61 views
DIY “Resolve” Feature
I'd like to create my own auto-"Resolve" feature. In VS, when you right-click and choose "Resolve", it gives you options and upon selecting one, it adds the necessary "using ..." statement to that ...
1
vote
0answers
142 views
Hiding Outlook LDAP-Error if Recipient not resolved (C#)
My problem is that when I try to resolve a recipient with a name that doesn't exist, Outlook opens a new window: LDAP-Error. Is there any chance to keep Outlook from doing that? I would like to show ...
0
votes
2answers
57 views
Which is faster for resolving an IP?
Has anyone done any testing to see which is faster/more efficient/better for resolving an IP address in a PHP script?
This
exec('host '. $_SERVER['REMOTE_ADDR']);
or this
...
0
votes
2answers
91 views
Strange String Behavior
I'm trying to verify that a URL input by a user is in the required format, in this case I am trying to remove the http:// if it is present but I am encountering some very strange problems...
if I ...
0
votes
1answer
312 views
Understanding the DNS lookup mechnism
The specific query that led me to try and unpick this process was:
Will a DNS lookup for a subdomain, such as assets.example.com, be faster if the parent domain, example.com, has already been ...
2
votes
2answers
565 views
How do I resolve and IP Address from a Host Name on iOS
I need to resolve an IP address from a hostname in iOS. I know this is trivial using NSHost, however NSHost resolution capability seems to only work on OSX.
Thanks in advance.
0
votes
2answers
3k views
SVN checkout without restoring
We have some company middleware and sometimes its difficult to find the correct version Im looking for so I often have to update to different versions to test them.
I usually checkout:
svn co ...
1
vote
1answer
109 views
Checking if website responds in python using a browser user agent
I am trying to come up with a script to check if a domain name resolves to its IP address via dns; using a python script I wrote.
I want to be able to do this in a few sequential loops, however ...
1
vote
6answers
188 views
Change Name of a .JSP file
I am developing a simple spring application. I have a few jsps and I would like to change the name and the URL of a jsp. I changed the controller:
@RequestMapping(value = "/simpleForm.html", method = ...
0
votes
2answers
176 views
Are address offsets resolved during compile time in C/C++? [closed]
void *p = malloc(1000);
*((int*)p) = 666;
*((int*)p+sizeof(int)) = 777;
int i;
for (i = 0; i<10; ++i)
printf("%d ", *((int*)p+sizeof(int)*i));
Is the manual offset being resolved at compile ...
0
votes
0answers
35 views
what does mean the phrase “(re)solving a type”?
I also will appreciate a comparison between statically typed languages and dynamic ones.
0
votes
0answers
492 views
Alternative to hosts file
I'm running a local web development virtual machine on Ubuntu containing all my web projects. This is using VMware Player and NAT. I'm using Apache's virtual hosts to browse to each website. The ...


