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
7
votes
2 answers

Clojure: resolve declares symbol

I get some weird behaviour when checking if a symbol can be resolved. user=> ok CompilerException java.lang.RuntimeException: Unable to resolve symbol: ok in this context, compiling:(NO_SOURCE_PATH:0) user=> (resolve 'ok) nil user=> (if (resolve…
Dominik G
  • 1,459
  • 3
  • 17
  • 37
7
votes
1 answer

Is there a replacement for url.resolve for creating URLs in Node?

I read on this post that you can concatenate URLs using url.resolve: url.resolve('http://example.com/', 'image.jpg') // 'http://example.com/image.jpg' But upon reading the documentation I see that this is now deprecated. Is there a replacement…
Andrew Einhorn
  • 741
  • 8
  • 23
7
votes
3 answers

Webpack 2 resolve alias

I have a little problem regarding resolving aliases in webpack 2. No matter what i do i cant resolve this. Here is the relevant code: /* webpack.mix.js */ mix.webpackConfig({ module: { rules: [ { …
Ilija Bradaš
  • 645
  • 2
  • 9
  • 11
7
votes
1 answer

Angular 2 Resolve only works once

I'm trying to make a simple Resolve that returns a user. However, in my application I need to wrap the http component with my own class, which returns a Subject as observable. My Resolver works as expected on the first user link, but when clicking…
alreit
  • 322
  • 4
  • 10
7
votes
2 answers

Missing files libresolv.9.dylib and libxml2.dylib

I have an old Xcode project for iOS where I used libxml2.dylib and libresolv.9.dylib. After installing XCode7. I can't find the files and I don't know where to search. Can someone help me?
Lorenzo
  • 3,293
  • 4
  • 29
  • 56
7
votes
4 answers

Angularjs: How to inject dependency from resolve routeProvider

I have a problem injecting resolve parameters from the routing into the controller. I'm setting the resolve value to an object {name: 'Banner', slug: 'banner'}, but I get an error. App.js var app = angular.module('CMS', ['fields',…
6
votes
0 answers

NGINX proxy_pass returns content-type HTML instead of content-type JAVASCRIPT

I have the following NGINX config events {} http { access_log /dev/stdout; error_log /dev/stderr; resolver 1.1.1.1 1.0.0.1 valid=5s ipv6=off; # CloudFlare DNS resolver upstream myupstream { server …
Rakib
  • 12,376
  • 16
  • 77
  • 113
6
votes
2 answers

Can autofac do partial Resolve?

I seem to need this a lot. Let's say I have a class with constructor taking several arguments. Some of these can be resolved by registering components. But the rest are instances created during runtime (e.g. fetching an entity from database). Can…
Kugel
  • 19,354
  • 16
  • 71
  • 103
6
votes
4 answers

Perforce: Linux based 3-way merge/resolve tool?

I'm looking for a Linux-based tool for 3 way merging/resolving, using Perforce. I'm familiar with vim/vimdiff, but I don't know how/if they can be used for 3 way merging. In either case, do let me know what, according to you, is the best…
TCSGrad
  • 11,898
  • 14
  • 49
  • 70
6
votes
2 answers

Resolving protected resources with Flying Saucer (ITextRenderer)

I'm using Flying Saucer to create a pdf from xhtml, hosted on a tomcat server. Most of the images included in the pdf are publicly available (logos and so on), but some of them are protected behind a login (that is, they are streamed through a…
ManiSto
  • 648
  • 1
  • 8
  • 23
6
votes
3 answers

Could not resolve com.android.support:support-annotations:25.4.0

I use flutter to make an app. while I excute flutte run in console (I use Tor as http and https proxy in console cause google restrictions and USA sanctions for some countries), I get an error like this: [iraj@iraj-pc app]$ flutter run Launching…
iraj jelodari
  • 3,118
  • 3
  • 35
  • 45
6
votes
1 answer

Android: Cannot resolve symbol 'compile'

I was adding a new activity "Settings" with help from android studios Add New wizard. Right after that I get this Error:(47) A problem occurred evaluating project ':AppName'. Could not find property 'compile' on…
Jonas Borggren
  • 2,591
  • 1
  • 22
  • 40
6
votes
1 answer

Add a jar file to my Xamarin project

I am wanting to add the "universal-image-loader jar" file to my Xamarin project and am not sure what I need to do. I have had a look at this resource but would still like some help please:…
Simon
  • 7,991
  • 21
  • 83
  • 163
6
votes
2 answers

what to import to resolve "LayoutParams cannot be resolved to a variable"?

I am getting error LayoutParams cannot be resolved to a variable on a line of code which is as follows tv.setLayoutParams(new GridView.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 0.1f)); When i press ctrl+shift+o to import…
Sunil Kumar
  • 6,112
  • 6
  • 36
  • 40
6
votes
1 answer

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. However, I noticed refreshing in a later view (different…
ansorensen
  • 1,276
  • 1
  • 14
  • 29