Questions tagged [named]

Anything named - objects, variables, classes... Naming is a primary tool of reuse.

Anything named - objects, variables, classes...

Naming is a primary tool of reuse.

392 questions
-1
votes
1 answer

Rails generate url for match named route

How can i generate url for named match route: match '/confirm_email' => 'landing_controller#index', :as => 'frontend_confirm_url', via: [:get] using something like this: <%= link_to 'frontend_confirm_url', frontend_confirm_url_url…
kaz
  • 1,943
  • 1
  • 13
  • 19
-1
votes
2 answers

How to reregister for IO Completion ports for a handle

I have a Windows named pipe that I create with CreateFile (the server side was created using CreateNamedPipe). I use IO completion ports to read/write data asynchronously on both ends. I need to send these handles to other processes after they've…
John S
  • 19
  • 2
-1
votes
1 answer

read /etc/named.conf in shell script and get domains

i need to read etc/named.conf file , and get the domains i want just the domains , and Order the domains line up line zone "example.org" { type master; file "/var/named/example.org.db"; }; zone "example.com" { type master; file…
saba
  • 35
  • 1
  • 10
-1
votes
7 answers

has no member named c++

I have some problem. I created program with dynamic stack and when I compiling get errors: 'class stos' has no member named 'push' , 'class stos' has no member named 'pop' , 'class stos' has no member named 'destroy' , 'class stos' has no member…
user3041362
  • 1
  • 1
  • 2
-1
votes
1 answer

Python: check is named service is running

Is there a simple way to check if a named service is running, and running correctly in python? Cheers.
-2
votes
0 answers

named service cannot be started

Good day, I am trying to follow this DNS server setup [tutorial](https://www.digitalocean.com/community/tutorials/how-to-configure-bind-as-a-private-network-dns-server-on-centos-7) Here's what I was hoping to setup win10 | 192.168.1.247 ns1 |…
-2
votes
1 answer

is it possible to use named functions with gspread?

I want to use a function on a cell with gspread, how does it work? tried this: cell_b2 = worksheet.COUNT(D3,E7).value the function I want to execute using gspread does not work
-2
votes
2 answers

How can I provide a defaulted parameter without repeating preceding ones?

I've searched many resources and in the examples that they provide, it looks like this: void bar(int a = 4, char b = 'A') { } According to this resource it can be called like: bar(b : 'Z'); but it gives me an error identifier "b" is…
mihkov
  • 1,171
  • 13
  • 37
-2
votes
1 answer

How can I get a dataset annotated with Jobtitles?

I need it to do some entity extraction. How do I get an annotated dataset with JobTitles?
-2
votes
2 answers

Bind forward Unknown domains

BIND must be configured so that all of the non-existent domains redirected to internal Web server. I tried the following configuration, failed: options { ... recursion yes; forward first; forwarders { 8.8.8.8;…
Ardesh
  • 15
  • 6
-2
votes
1 answer

named Transfer failed

dig @111.1111.111.111 domain.ru. axfr ; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.30.rc1.el6_6.2 <<>> @95.85.36.112 domain.ru. axfr ; (1 server found) ;; global options: +cmd ; Transfer failed. Google already searched all. I can not understand what's…
-2
votes
1 answer

PORT 53 is closed, cant open it

I have a Centos Cloud Server and I had configured the named service for the server But I cant access it from outside. can you help me? what Im doing wrong? if I execute this from the server it works perfect: # dig @74.208.73.61 paisgdl.com ; <<>>…
Juan Carlos
  • 67
  • 1
  • 8
-2
votes
1 answer

Named Mutex Cross Process Acquisition Order

Consider the following code: private static void TestMutex() { var m = new Mutex(false, "TestYecMutex"); m.WaitOne(); Console.WriteLine("Here. Press key"); Console.ReadKey(); m.ReleaseMutex(); …
Yechiel B.D.
  • 2,011
  • 2
  • 13
  • 9
-2
votes
1 answer

DNS lookup using host IP not working

I have set up a master DNS server using isc-bind. My problem is that when I try to look up hostnames from the same computer, it works when using localhost but not when I use the IP of the host. This gives the correct answers:- dig @localhost…
user1600936
  • 101
  • 1
  • 3
  • 14
-3
votes
1 answer

Named-Named method/function arguments

How can I use 'variable'-based named arguments.. better explained by example : def blah(var, a=None, b=None, c=None): ... more precise it is : def blah(var, **kwargs): ... I want to be able to do : named = 'b' blah(55, named=66) is equivalent to…
sten
  • 7,028
  • 9
  • 41
  • 63
1 2 3
26
27