Questions tagged [resolver]

363 questions
0
votes
1 answer

Ivy resolve issue rev="1.0.+"

In ivy.xml in ivy settings:
Shweta
  • 924
  • 14
  • 23
0
votes
1 answer

bad mapping after adding the XmlViewResolver to the project

My project worked very well before i add a controller which extends the AbstractController, then I always get the famous 404 page when i try to open the "/" root page. I integrated spring-security in my project so i must see the login form…
Souad
  • 4,856
  • 15
  • 80
  • 140
0
votes
0 answers

Name resolver libraries for Linux

Can someone guide me about what are the libraries available for the name resolution other than glibc's getaddrinfo for Linux.
theB
  • 2,048
  • 2
  • 20
  • 29
0
votes
1 answer

Get all CDI beans

I want to retrieve all CDI beans from container as map which bean names as keys and beans as values. How could I achieve this? I need this to add CDI beans to thymeleaf expression resolver.
gandalfml
  • 908
  • 1
  • 10
  • 23
0
votes
1 answer

Replication Custom resolver changes empty strings to NULLs

We have an C# application which posts to a database which is replicated to another database (using merge-replication) and has one custom resolver which is a stored procedure. This was working fine under SQL Server 2000 , but when testing under SQL…
sgmoore
  • 15,694
  • 5
  • 43
  • 67
0
votes
1 answer

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...
0
votes
1 answer

XMLViewresolver gives a 404: Not found exception

I'm trying to get familiar with the XMLViewResolver, so I included the following into m *-servlet.xml:
bethlis
  • 55
  • 1
  • 3
  • 15
0
votes
1 answer

dnsPython - answer from dns.resolver.query

I need some help with getting nameserver (NS) records from specific domains. So far i had no problem with my script but now I realised that it has problem getting answer from domains like this: fpv.ukf.sk With simple domain like google.com, ukf.sk…
user1610458
  • 311
  • 1
  • 5
  • 18
0
votes
0 answers

How to resolve a URLinto an IP (v4), port in ActionScript3?

I look for something alike boost::asio::ip::tcp::resolver resolver that would take a url like google.com in and return a list of IP adresses and ports pairs mapped to that URL. How to do such thing in ActionScript3?
myWallJSON
  • 9,110
  • 22
  • 78
  • 149
0
votes
2 answers

Use of resolv.h

I'm trying to find out my DNS server address by reading it from resolv.h's _res struct. According to man 3 resolver the setup code should be. #include #include #include extern struct state _res; and then…
McEnroe
  • 633
  • 3
  • 7
  • 17
-1
votes
1 answer

how to implemet a grpc resolver with etcd in C++?

2 problems: i've built and install grpc with guide https://github.com/grpc/grpc/blob/master/BUILDING.md, grpc tag is v1.41.0. but i can't find resolver.h nor balancer.h in /usr/local/include/grpc++/, but in grpc source code its in…
-1
votes
1 answer

C# Json.NET hide objects (not properties) when serializing

I want to hide objects (not properties) when serializing with Json.Net. The situation is: In a list of images, there are many images, including attributes such as Class, Name, and Layers. Within the same layer, there are many shape objects,…
Ricky Chen
  • 55
  • 6
-1
votes
1 answer

Check if GraphQL query returned any row

I have following simple selection query in GraphQL which checks if in dataDictionary table any record exists with name field dataDict101. query dataDictionary($where : DataDictionaryWhereUniqueInput!){ dataDictionary(where: $where){ id …
Data_Geek
  • 11
  • 4
-1
votes
1 answer

How to implement delays in microcontroller firmware

I am programming a Texas Instruments TMS320F28335 Digital Signal Controller (DSC) and I am writing the communication with a resolver model AD2S1205 (datasheet: https://www.analog.com/media/en/technical-documentation/data-sheets/AD2S1205.pdf). I have…
Ingen
  • 19
  • 3
-1
votes
2 answers

Should return how many letters repeated consecutively 3 times in a string,without using regex...use only core concepts

Example : If I pass "BAAABA" should return 1, as we see that "A" is repeated immediate 3 times. When I pass "BAABAA" should return 0, as we don't have any letter repeated immediate 3 times. when I pass "BBBAAABBAA" should return 2. Code which I…
jadhu
  • 1
  • 2
1 2 3
24
25