The named tag has no wiki summary.
0
votes
1answer
16 views
mkfifo read and write error
I am not understanding what am I doing wrong, kindly help me in pointing out. I am just giving here the input what i am trying do exactly in the program so that it's easy to understand. I have created ...
1
vote
4answers
48 views
naming a list when returning values from data.table
When returning items to data.table, it would be nice if they automatically took on the names of the variables. How does one do this? This is what I mean:
require(data.table)
x = data.table(a=1:10, ...
1
vote
0answers
60 views
how to run external program in php
I need regular reload named zones from external clients.
But all "remote execution" functions are disabled (system, exec, shell_exec etc.)
I have script like this (with basic http auth):
$ip = ...
0
votes
0answers
41 views
How can I use Selenium IDE to populate dynamically named fields?
I am using Selenium to populate a set of templates, in this case a dropdown field with multiple selections.
However, some of the fields in those templates get dynamically named where the field id ...
2
votes
1answer
49 views
Microsoft Z3 naming assertions
I need to name some assertions im my z3 model so that it is able to generate unsat cores.
I can do this manually like this:
(assert (! (assertion) :named x))
I just need to do it using the .NET ...
1
vote
2answers
240 views
Excel VBA assign value to named range from user defined function fails error 1004
I have a function in a module. The function is defined as follows:
Public Function CourseSetup(ByVal SROfferId As Integer) as string
When the function called, The following line fails:
...
1
vote
1answer
74 views
CLASSIC: named set in MDX top 2 by dimension
SSAS 2012 Multidimensional DW has
Measures: Line total,
Dimension with hierarchy: [Division] - [Sales
Person].
I am trying to make set of top 2 salespersons by divisions.
This code sample gives ...
0
votes
1answer
59 views
Linking Domain Name to Server
So I've delved into the world of running a server without a control panel for the first time, doing everything through the terminal and occasionally logging into the desktop gui if I need to.
I've ...
0
votes
1answer
163 views
AAAA DNS query on ipv4 interface
We use RH5.8 with ipv6 disabled.
named(bind) service is in forward mode (cache enabled)
options {
directory "/var/named";
listen-on { 127.0.0.1; };
forwarders {10.10.12.1;};
forward ...
3
votes
1answer
62 views
In R from a named number how do I extract just the number (without the name)?
I am looking for just the value of the B1(newx) linear model coefficient, not the name.
I just want the 0.5 value. I do not want the name "newx"
newx<-c(0.5,1.5.2.5)
newy<-c(2,3,4)
...
1
vote
2answers
52 views
Can I pass a named function in a place where a “block” is asked for?
For example, to call authenticateHandler
@property(nonatomic, copy) void(^authenticateHandler)(UIViewController *viewController, NSError *error)
The little hat thing ^(UIViewController ...
0
votes
1answer
31 views
Create Object named by String
Is it possible to create a method that can create objects named by String?
private static int a = 0;
public static void CreateNew() {
Object ("number" + a) = new Object();
a++;
}
If you ...
0
votes
0answers
157 views
jquery mobile: content going behind fixed header with named anchor
I am working on a mobile website using jQuery Mobile (versions 1.1.1 & 1.3.0) for a fixed header. When a link to a named anchor is clicked, it brings the anchor point to the top of the page ...
0
votes
0answers
19 views
Named pipe default transport quotas
I use a client/server windows application (written in C, 15 years old). It uses named pipes for communication.
It works perfectly on computers, where there are no strict policies, 'corporate' ...
0
votes
0answers
38 views
write file before named pipe client connected
i have two apps, one is server, one is client. The server creates the named pipe first, then client connect it. But sometimes, the server may writeFile before the client connect, which will lost the ...
0
votes
1answer
240 views
bind / named error
I got an error I somehow can't get rid of.
Maybe smbd can help me work this out.
I got Plesk 11 running on an Ubuntu machine.
The DNS is up running and working, but whenever I wanna restart it, I ...
0
votes
1answer
48 views
Namedpipe writeFIle questions Win32
I am writing a win32 app which is using the namedpipe for inter-process communication. When one process is trying to writeFile, it will write the structure (tell other process how many bytes and other ...
0
votes
0answers
389 views
BIND named DNS with static and dynamic dns in conjunction with Samba 4
I have successfully set up a linux server running Debian 6.06, hosting a Samba4 Active Directory server running in Bind9 file mode (not DLZ). This is a large home network with mixed Windows & ...
0
votes
1answer
179 views
VBA how to pass named range Name into a formula rather than a cell content
I have 3 ranges, "AA", "AB", and "AC".
The names of these ranges are on sheet 1 in column A.. so....
Cell A1 contains two letters "AA"
Cell A2 contains AB
Cell A3 contains AC
I need a formula to ...
0
votes
1answer
595 views
VBA: looping through a list of named ranges and pasting them to another sheet based on an address reference
I am making some VBA code to help me do the following:
Paste a list of all named ranges
Loop through the list and copy/select ranges based on the list
Each selection will be pasted on another sheet ...
0
votes
0answers
70 views
How to log client DNS instead of their IP address in Bind 9 query log
I have successfully set up a DNS caching server with Bind 9, and activated the query log. It nicely records the date, time and client IP address making the request, as well as the name being looked ...
0
votes
0answers
81 views
Eclipse - Weblogic server stops immediately when debug placed on @Named entity
Eclipse: Version: 3.7.2
Weblogic: 11gr1 (10.3.5)
WTP: 3.3.2
I have a managed bean annotated with the @javax.inject.Named annotation (used for a DAO).
No problems when run as part of a built EAR on ...
1
vote
0answers
61 views
How to restart BIND9 in C language(linux)?
I written a program to see whether the named process has dead or not,just like that:
char *cmd = "pidof named | wc -l";
if((fp = popen(cmd , "r")) == NULL)
{
throw;
}
...
0
votes
1answer
52 views
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 ...
2
votes
4answers
232 views
How to use named pipes in PHP between different functions or even different processes without fork?
I want to write an Ajax web application, a game to be specific. Two web clients have to communicate with each other via the PHP server. My approach to solve this is to use Ajax between client and ...
3
votes
1answer
331 views
Using dynamic named range in VBA for scatter chart labeling
I'm trying to make a macro that will change the data labels on a scatter chart to the title of each point. Eg:
In this case I would like the data labels to show the movie title. The code I used ...
2
votes
1answer
783 views
NS: got insecure response; parent indicates it should be secure
I'm trying to run Bind on Centos 6.3 on my school network and I'm having trouble getting external queries to work.
I can dig/query my own zones running on my server, but once I dig for an external ...
-4
votes
2answers
55 views
How to create an empty array named by variable and use it only by referring to it thru the variable name?
How to create an empty array named by variable and use it only by referring to it thru the variable name?
e.g. array named empty
$empty = @()
$empty -is [array]
True
versus:
$arrayname='empty'
...
0
votes
1answer
563 views
Bind named service high cpu load
named service under CentOs 6 is using more 100% of all 4 processors. I tried to play around with the configuration files. I currently have like 10 websites. below is a sample
$TTL 14400
@ IN ...
3
votes
3answers
548 views
Named pipes performance issues
I'm using named pipes for interprocedural communication between C# and Delphi. C# uses the "System.IO.Pipes" package, whereas Delphi makes use of "Libby's pipes.pas". Unforunatley, the commincation is ...
0
votes
0answers
163 views
dns server bind is not work [closed]
I just installed bind on RHEL 6 and point a domain to that server. but actually when i ping domain it returns error 1214:
Here is my named.conf:
//
// named.conf
//
// Provided by Red Hat bind ...
0
votes
1answer
221 views
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 ...
1
vote
2answers
295 views
HQL sorting by sum of collection items' property value
I hope someone can point me in the right direction with a Hibernate named query.
I want to sort a result based on a property of a collection item. Think it is easiest by example:
I have 2 classes: A ...
1
vote
1answer
1k views
Powershell: Replacing regex named groups with variables
Say I have a regular expression like the following, but I loaded it from a file into a variable $regex, and so have no idea at design time what its contents are, but at runtime I can discover that it ...
0
votes
1answer
64 views
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 ...
0
votes
0answers
111 views
SSAS and SSRS reporting - column grouping and named sets
I got a query in the named sets. I created a named set TwoYearsRolling- CREATE DYNAMIC SET CURRENTCUBE.[TwoYearsRolling] AS [Date].[Year].&[2010]:[Date].[Year].&[2012]; It is acting as a ...
1
vote
2answers
4k views
How to enabled named/bind/DNS full logging?
I am trying to find the perfect logging clause in named.conf that would help me enable full-level logs for named service. Can someone give an example here? My current clause is given below, but this ...
0
votes
2answers
100 views
Is it possible to read intermittently-sent data through a named pipe using redirection to stdin?
Is it possible to read intermittently-sent data through a named pipe using redirection to stdin?
What I'd like to do is this:
$ mkfifo pipe
$ ./test < pipe
In another terminal:
$ cat datafile ...
2
votes
1answer
234 views
Perl: sysopen() hangs while opening named pipe
I'm using the following code to open a named pipe located at '/tmp/xyz' for read only access:
#!/usr/bin/perl
use strict;
use Fcntl;
...
sysopen(FIFO, "/tmp/xyz", O_RDONLY) or die ("opening named ...
3
votes
1answer
317 views
On Windows, Can I use Named Pipes As Files?
I create a named pipe server with my .NET app, and its name is "TSPipe". I then open Notepad and try to save the file to "\.\pipe\TSPipe". I then want to be able to read what notepad wrote to that ...
0
votes
1answer
2k views
Error in named query (QuerySyntaxException: unexpected token)
I am currently working on a utility project which will help me to manage the users of an application (a user has one or more role, and a role has one or more rights).
I am new to Hibernate, and I ...
3
votes
1answer
1k views
What is the default scope of a Named CDI bean?
Is there any default scope for a @Named CDI bean without additional @...Scoped annotations? I have not found any relevant information in the official Weld documentation.
A @Named bean can be accessed ...
0
votes
1answer
86 views
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;
...
-1
votes
1answer
205 views
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.
0
votes
1answer
185 views
Stanford NER: extracting separate lists of entities?
I can get a string annotated with Named Entities with the following code.
String NEString = classifier.classifyWithInlineXML(fileContents)
I'm wondering if there is any method to call so that I ...
0
votes
1answer
825 views
www in domain not working in nginx
I'm new to using nginx, well, new to using anything that's not cpanel... I'm having problems getting domains to work using nginx when you include www. in the url.
www.mydomain.com > not work 404
...
0
votes
2answers
527 views
Get max number of elements in a collection with jpql
I have the following two entities (1:N) :
@Entity
public class Job {
@ManyToOne
private User user
}
and
@Entity
public class User {
@OneToMany
private Collection<Job> jobs;
}
now i ...
2
votes
1answer
341 views
JPA named query to get size of a collection
I have the following two entities:
@Entity
class Relation{
@ManyToOne
private User user;
//some other fields
...
}
The user entity has a collection of other entities:
@Entity
class User {
...
0
votes
1answer
235 views
Overlapped message named pipe, ERROR_MORE_DATA and CancelIoEx
I am using $SUB for the first time and have come across this problem. Both, client and server use overlapped operations and here is the specific situation I have a problem with.
Client
C1. Connects ...
0
votes
1answer
375 views
Named Query Hibernate
I have a query something like this
select emp from EMP emp where emp. empno like :emp_var and emp. empname like : empname_var and emp. empDate = :empdate_var
In the above query, all the three ...