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

Loop over named list of dfs, test condition on df's column, if true return name of list element

I have a named list of data.frame objects (training_data). Each data.frame object will be tested based on a "x" column and if the test is passed, the name of that data.frame object is supposed to be returned. In the case below, "a" and "b" are…
Shahzad
  • 1,999
  • 6
  • 35
  • 44
0
votes
2 answers

BIND9.7. When several named processes are running, how to judge which process is providing the service?

For example, I execute "sudo named" several times, so there are several named processes running. When I use "pidof named", I get several pids. I want to calculate the CPU usage rate of the BIND process,so I need to get some parameters from…
0
votes
1 answer

regex extract/replace values from xml-like tags via named (sub)groups

Trying to create a simple text-translator in PHP. It shoult match something like: Bla bla {translator id="TEST" language="de"/} The language can be optional Blabla Here is the code: $result = preg_replace_callback( …
void
0
votes
3 answers

Bind9 and MySQL DLZ Buffer Error

I compiled Bind 9 from source (see below) and set up Bind9 with MySQL DLZ. I keep getting an error when I attempt to fetch anything from the server about buffer overflow. I've googled many times but can not find anything on how to fix this…
Travis
  • 1,143
  • 1
  • 9
  • 19
0
votes
1 answer

Pointing two sets of private nameservers to one pair of IPs

I'm in the middle of migrating servers from one provider to another due to reliability issues. Anyway, I've had the domain jeffkee.com for a while, so ns1.jeffkee.com -> xxx.xxx.xxx.x (whatever the previous IP is.. is irrelevant) ns2.jeffkee.com…
jeffkee
  • 5,106
  • 12
  • 44
  • 76
0
votes
1 answer

Naming generic collection in WCF

I'm using a third party framework which generates WCF services from a custom language. However, when using collection classes, this is the generated output: namespace MyNameSpace { using System; using System.ServiceModel; …
Jos
  • 123
  • 1
  • 1
  • 5
-1
votes
1 answer

need some advice when converting python2.7 to python3 script

I'm trying to rewrite python script from python 2.7.x on raspbian stretch to python 3.9.x on raspbian bullseye and i already check what python modules and all deb packages related to python are installed on stretch. so original script is…
ToS
  • 1
  • 1
-1
votes
1 answer

Flutter named parameter and OneSignal issue

I am working on a project which was built on Flutter 2.2.3 but I updated all the dependencies. Also, I have fixed many errors which were the result of upgrading the flutter from 2.2.3 to 2.5.2. Now i am facing an issue with two files. One issue is…
Syed Bilal
  • 63
  • 1
  • 9
-1
votes
1 answer

Nsupdate module in ansible causes an error

When i try to run the following .yml role i get an error with nsupdate. I am using centos7 and the machine is running bind. When i do nsupdate with either the original DNS server or the ansible master i can update the records, only when i use the…
ben shalev
  • 93
  • 8
-1
votes
4 answers

Named parameters of integral types through enumeration types

Consider the following code: template class Widget { public: Widget(int size); }; int main() { Widget<4> widget(12); // not easily readable if definition of Widget in some faraway header return 0; } Another try using…
Oleksa
  • 635
  • 5
  • 15
-1
votes
1 answer

How do I get a named range to appear on another sheet?

I am trying to duplicate a named range on a different worksheet but I am having problems making it work. On Sheet1, A3:A92 (90 cells) is a named range, "Employees" On Sheet2, I want to duplicate the named range, "Employees" such that when values…
Alan
  • 311
  • 6
  • 14
-1
votes
1 answer

Keep names with apply

I have a named vector like: mochila r01 r02 r03 r04 0 0 0 0 And a dataframe data req_ID effort satisfaction 1 r01 1 62 2 r02 4 55 3 r03 2 29 4 r04 …
Dragg
  • 83
  • 2
  • 11
-1
votes
1 answer

jQuery anonymous vs named function syntax

This code works to fade and loop an audio element when a button is pressed: $("#loop").click(function(){ var tone = document.getElementById("testTone"); tone.play(); $("#testTone").animate({volume: 0}, 1900); setInterval(function(){ …
drenl
  • 1,321
  • 4
  • 18
  • 32
-1
votes
1 answer

My JSF page won't work

I have a problem with my JSF page. It is supposed to convert temperatures (fahrenheit, celsius, kelvin) however it won't work for some reason. Here's the xhtml file convtemp.xhtml:
qwertz
  • 61
  • 1
  • 4
-1
votes
1 answer

merging a Named num into an existing data.frame

I am trying to merge Named Num values into an existing data.frame containing vector of equal names (and length). However the order in the data.frame is not the same order in the Named num so it is not correctly matching the value. I have been…
SarahM
  • 1
  • 1