Questions tagged [resolve]

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

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.

The mechanism in this simple form would place a large operating burden on the root servers, with every search for an address starting by querying one of them.

Being as critical as they are to the overall function of the system, such heavy use would create an insurmountable bottleneck for trillions of queries placed every day. In practice caching is used in DNS servers to overcome this problem, and as a result, root nameservers actually are involved with very little of the total traffic.

652 questions
6
votes
2 answers

.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 manually, trying to send an email to them causes…
oscilatingcretin
  • 10,457
  • 39
  • 119
  • 206
5
votes
3 answers

InetAddress.getByName fails behind proxy

I'm trying to resolve a host name to its' corresponding IP. My environment is a mac in a corporate network behind a proxy server, which is configured with a .pac file via the system preferences (automatic proxy configuration). So far everything is…
Benjamin
  • 217
  • 2
  • 10
5
votes
1 answer

K3S Rancher - Debian based docker images not resolving dns properly

I am facing strange problem. What I've done: I deployed Rancher K3S cluster and there is a problem in dns resolving with debian based images. Domains are not resolved properly - it adds suffix to it with one of ours domain. What I've found: Debian…
Zoidik
  • 91
  • 5
5
votes
1 answer

ssh: Could not resolve hostname github.com error

I am using raspberrypi terminal using vnc viewer at window and I am trying to clone Git repository. But I am keep getting this error message. ssh: Could not resolve hostname github.com: Temporary failure in name resolution fatal: Could not read…
nova26
  • 51
  • 1
  • 1
  • 3
5
votes
1 answer

Failed to compile ./src/App.js Module not found: Can't resolve

I got following error when I start to run the local server: Failed to compile ./src/App.js Module not found: Can't resolve './Main' in '/home/sol/React/kuehnfotografie/src' import React, { Component } from 'react'; import ReactDOM from…
cmyk
  • 51
  • 1
  • 1
  • 4
5
votes
2 answers

issue with resolving activity for an intent - resolveActivityInfo()

I am using resolveActivityInfo to determine if my app was set as a home launcher: PackageManager pm = getPackageManager(); Intent intent = new Intent(Intent.ACTION_MAIN, null); intent.addCategory(Intent.CATEGORY_HOME); …
mishkin
  • 5,932
  • 8
  • 45
  • 64
5
votes
1 answer

Resolvconf does not add search domains to queries with dots

What I'm trying to do I'm using Consul for dns, with dnsmasq acting as the proxy (https://www.consul.io/docs/guides/forwarding.html). As well as querying consul directly (nslookup my.service.consul), I also want to be able to query without the…
Alastair Brayne
  • 731
  • 1
  • 9
  • 22
5
votes
3 answers

AngularJS: Returning a promise from within .then?

I have a users service. I would like to create a method which utilizes another service I have built. There are two methods on this service. getUser() and getCurrentUser(). getCurrentUser() utilizes the injected service which acquires the UID. It…
Allenph
  • 1,875
  • 27
  • 46
5
votes
3 answers

Enum can not be resolved? Java

I have 2 classed at different pages. The object class: public class Sensor { Type type; public static enum Type { PROX,SONAR,INF,CAMERA,TEMP; } public Sensor(Type type) { this.type=type; } public void TellIt() { …
CursedChico
  • 571
  • 4
  • 7
  • 17
4
votes
2 answers

Flutter device daemon Crashed

I changed the directory name in which flutter is installed. After that, an error is occurring whenever I started the android studio. The error is 'The Flutter device daemon cannot be started.' A screenshot is attached. I am using a physical device…
Muhammad Tahir
  • 77
  • 1
  • 10
4
votes
2 answers

Resolve a VS2017 GIT merge conflict

Trying to get a GIT workflow to work but have hard time using the VS2017 (v15.4.2) GIT UI. These are my steps: Creating a new WinForms project named Test and creating a local repository for it. Create a branch from the master branch…
user4363553
  • 103
  • 1
  • 8
4
votes
0 answers

FragmentActivity: cannot resolve setContentView

I'm having the problem that for the following activity public class MainActivity extends FragmentActivity implements UpdateActivity { @Override protected void onCreate(Bundle savedInstanceState) { …
toom
  • 12,864
  • 27
  • 89
  • 128
4
votes
2 answers

Android studio cannot resolve ActionBarActivity

I have tried invalidating the caches and restarting but it still shows up and will not compile and run as it used to before. I tried renaming the class file if i remember correctly and must have changed the name on something that made this how up.…
Mike Stone
  • 41
  • 1
  • 1
  • 2
4
votes
1 answer

ansible - how to pass local DNS server while running ansible-playbook to resolve hostname

I'm using ansible (ansible 1.9.0.1). I'm running ansible-playbook to perform some operations on a target / remote machine using it's hostname. My inventory file has an entry for a hostname i.e. appserver01.newdomainname.com When I run…
AKS
  • 16,482
  • 43
  • 166
  • 258
4
votes
3 answers

Two level domain suffix completion on a mac

In Ubuntu, I have this line present in /etc/resolv.conf: search example.com uk.example.com se.example.com Now when I type host svr1.uk I get the record for svr1.uk.example.com If I ping svr1.uk, I see pings from svr1.uk.example.com. However, If I…
Squeeb
  • 41
  • 3