Tagged Questions
The named tag has no wiki summary.
13
votes
2answers
183 views
What rvalues have names?
@FredOverflow mentioned in the C++ chatroom that this is a rare case of rvalues that have names. The C++0x FDIS mentions under 5.1.1 [expr.prim.general] p4:
Otherwise, if a member-declarator ...
6
votes
1answer
299 views
Named Ranges in Excel OpenXML
I am trying to create named ranges in Excel with OpenXML. I am able to add a DefinedName in the DefinedNames collection, but that does not seem to do anything. I noticed a place in the ...
5
votes
2answers
723 views
Rails, routing many named routes to one action
Is there a simpler way of writing this:
map.old_site_cusom_packages '/customs_packages_options.html', :controller => :public, :action => :redirect_to_home
map.old_corporate ...
4
votes
2answers
195 views
Java named/optional parameters using annotation?
In RESTeasy this...
@GET
@Path("request")
public String requestJson(@QueryParam("arg1") @DefaultValue("") String arg1,
@QueryParam("arg2") @DefaultValue("0") Integer arg2);
...
4
votes
3answers
646 views
Python Wildcard Import Vs Named Import
Ok, I have some rather odd behavior in one of my Projects and I'm hoping someone can tell me why. My file structure looks like this:
MainApp.py
res/
__init__.py
elements/
__init__.py
...
3
votes
2answers
117 views
What are the definitions of named method and named function?
I have read the question Difference between method and function in Scala and many articles about differences between method and function. I got a feeling that a 'method' is just a "named function" ...
3
votes
1answer
560 views
Is there a downside to this Mercurial workflow: named branch “dead” head?
I love the flexibility of named branches but I have some concerns about the prolifieration of heads.
Even when the branch is closed, it still shows up in the heads. I have an idea for how to clean ...
3
votes
2answers
536 views
Why does named pipe WCF service reject Windows service clients?
On Windows 7 and .NET 4 I'm getting some very weird effects from the WCF named pipe transport when my WCF client is a Windows service.
My WCF service is hosted in a user mode app and exposed over the ...
3
votes
1answer
349 views
Routes configuration for named arguments in CakePHP
In my Cake application I have a controller "completed_projects". Its index action takes no arguments and lists some projects. Different pages can be accessed by
...
2
votes
1answer
19 views
Can an named restriction exist in OWL?
Can we define a restriction as a named class? I mean, instead of using this:
:myclass owl:equivalentClass
[ rdf:type owl:Restriction ;
owl:onProperty :hasAge ;
...
2
votes
2answers
1k views
Excel: Named range with VBA
I'm trying to define a named range in Excel using VBA.
Basically, I have a variable column number. Then a loop runs to determine the first empty cell in that particular column.
Now I want to define a ...
2
votes
3answers
278 views
replace user_id with username in show page in rails
Hell frens
I want to show a username instead of user_id in user's show page.
For example,
a usr_id 300 for a user named harry exist in database. So how to show
http://localhost:3000/harry
...
2
votes
1answer
269 views
How to avoid multiple writers in a named pipe?
I am writing a program with a named pipe with multiple readers and multiple writers. The idea is to use that named pipe to create pairs of reader/writer. That is:
A reads the pipe
B writes in the ...
2
votes
2answers
340 views
Stanford NER toolkit - lowercase entities recognition
I am a newbie to NLP and trying to figure out how a Named Entity Recognizer annotates named entities. I am experimenting with Stanford NER toolkit. When I use the NER on standard more formal datasets ...
2
votes
3answers
444 views
Free Tagged Corpus for Named Entity Recognition
I am looking for a free tagged corpus for a system to train on to for Named Entity Recognition. Most of the ones I find (like the New York Times one) are expensive and not open. Can anyone help?
2
votes
3answers
659 views
Asynchronous I/O with Named Pipes WinAPI
Ok, I have asked a few questions about different facets of trying to accomplish what I want to do. This time I'm having big issues just reading from a named pipe. I think I have harvested enough ...
2
votes
3answers
849 views
Mixing JPA annotations and XML configuration
I have a fairly large (new) project in which we have annotated many domain classes with JPA mappings. Now it is time to implement many named queries -- some entities may have as many as 15-20 named ...
2
votes
1answer
1k views
Linux C: “Interactive session” with separate read and write named pipes?
I am trying to work with "Introduction to Interprocess Communication Using Named Pipes - Full-Duplex Communication Using Named Pipes", http://developers.sun.com/solaris/articles/named_pipes.html#5 ; ...
2
votes
4answers
1k views
Are Hibernate named HQL queries (in annotations) optimised?
A new colleague has just suggested using named HQL queries in Hibernate with annotations (i.e. @NamedQuery) instead of embedding HQL in our XxxxRepository classes.
What I'd like to know is whether ...
2
votes
1answer
818 views
Hibernate named query parameter
I am having problem with named query parameter. My query is as follow:
<sql-query name="getCustomer">
<![CDATA[
select * from customer where customerId=:custId and billId in ( ...
2
votes
1answer
161 views
Delete URL for nested associations
I'm having the following many to many relationship in Rails (ActiveResource, of course):
class User < ...
has_many :channel_assignments
has_many :channels, :through => :channel_assignments
...
1
vote
3answers
111 views
Scala - null (?) as default value for named Int parameter
I'd like to do in Scala something I would do in Java like this:
public void recv(String from) {
recv(from, null);
}
public void recv(String from, Integer key) {
/* if key defined do some ...
1
vote
1answer
138 views
Injecting a named String using CDI
I want to have a configuration parameter injected this way:
public class MyManagedBean {
@Inject
public MyManagedBean(@Named("user") String user){
....
}
}
So I tried to ...
1
vote
2answers
82 views
Structuremap, odd behavior when using default instance and named instance Options
Is anybody able to explain the following behavior?
Especially why TestInitializeAndConfigure_Fails failes when TestUseAndAdd does not ... and why TestUse_Fails failes when TestUseOrderChanged does ...
1
vote
0answers
31 views
Free Chinese Named Entity Datasets or Free Chinese NER System
I want to use Stanford NER system as a NLP tool in my work. However it lacks a classifier model for Chinese Named Entity. I must train the model by myself. I did not find any free datasets that can be ...
1
vote
2answers
76 views
Named Scope/filter question
Sorry, I am still a little green with Ruby on Rails to say the least so I'd appreciate even being guided in the same direction.
So... I have three DB tables, let's call them people, jobs and hats.
I ...
1
vote
2answers
359 views
How to use Named Array Constant to fill an Active-X ComboBox in Excel
I'd like to setup my ComboBox values as a named array constant, where you go into the Name Manager and define a name and give it a value like:
={"A", "B", "C"}
I've found that ListFillRange will ...
1
vote
1answer
59 views
Java reflection not modifying my @Named bean variables
I know shouldn't use reflection, but this is a temporary solution until ...
I have 1:
@Named("PoiBean")
@SessionScoped
public class PoiBean implements ActionContext, Serializable {
private String ...
1
vote
1answer
279 views
jump to named anchor with javascript
I have a php (codeigniter) program that displays all the finished projects of and engineering company. I can click the detail page and from there I can click a link to go back to the overview page. To ...
1
vote
1answer
192 views
Is there a tool to view named pipe security DACL?
I tried using pipeacl and process explorer from sysinternals.
pipeacl gave me an error, and sysinternals does not seem to support security for named pipes.
1
vote
0answers
162 views
Problem Using Windows named pipes between Win7 and XP
I have written a C application to run on a small wireless network (linksys router). The application uses named pipes. When the server is a Win 7 machine and the client is a XP (Pro, SP3) machine the ...
1
vote
1answer
177 views
Dynamic calculation formulas in Postgres
I'd like to know if there is a possibility to create something like named calculations in Postgres? Say, I have a table:
create table foo (
bar smallint,
baz smallint
)
I can run select (bar / ...
1
vote
0answers
99 views
Questions regarding Hidden Markov Models and Conditional Random Fields
I have been looking at Hidden Markov Models and Conditional Random Fields for the tasks of Named Entity Recognition, and I seem to be stuck on a fundamental concept, which is to say: Is the goal of ...
1
vote
0answers
344 views
Create a named range in excel sheet using oledb and C#
I am attempting to create a named range in an excel sheet using c# and oledb. I do not want to use the COM object interops for this. I have not been able to find any online example of performing ...
1
vote
0answers
500 views
generate random graph with named vertices
I'm new to boost and i am trying to build up a distributed random graph generated by the erdos algorithm. All goes well since i specialize the internal_vertex_name template to work with named vertices ...
1
vote
2answers
208 views
BASH named pipe locking up
I don't understand why this is happening. I've been working with this same command for a long time and now, suddenly, it's started locking up.
mkfifo ./pipe
echo "test" >./pipe
What can I do to ...
1
vote
4answers
342 views
How to add security attributes for non admin rights account in creatnamedpipe method of win API
I am creating a named pipe in windows service running on local syastem account with security attribute as Intptr.Zero in CreateNamedPipe() method of Windows API.
The problem is that this named pipe ...
1
vote
1answer
640 views
HTML named anchor not working more than once on iPhone
The named anchor at the bottom of the page doesn't work more than once on an iPhone. Any suggestions? Thanks, Andy.
<html>
<head>
<title>anchor scroll test</title>
<meta ...
1
vote
1answer
131 views
XAML: Can I refer to a Grid row or column by name?
If I name each row and column in a grid, can I set a control's grid.row="Row_Top"? I have defined StaticResources to refer to it but is there a converter or some other method to accomplish this ...
1
vote
2answers
102 views
rails named_scope and :source
I am a beginner in Rails,
Can we use :source with named scope?
I am able to use it with has_many and other associations
Thanks
Mark
1
vote
2answers
2k views
nhibernate named queries , name not found
I'm coming from a Java side of using Hibernate and I just haven't found the proper place to put the named query in NHibernate.
Using Visual Studio 2008 , C# 2008
I have a query
<query ...
1
vote
3answers
476 views
Win32 Sockets vs. Named Pipes
Is it possible to use sockets on win32 and and not have the firewall possibly block the port you are using? Something like with unix wwere you have IF_UNIX instead of IF_INET ( named pipes instead of ...
1
vote
3answers
1k views
How to capture output of execvp
I'm developing a program which executes a program using execvp. It needs to capture the results of the child process and parse them in the main process. It seems there is a way, using named pipes, and ...
1
vote
8answers
1k views
Named constructor and inheritance
I'm working on C++ framework and would like to apply automatic memory management to a number of core classes. So far, I have the standard approach which is
class Foo
{
public:
static
...
0
votes
2answers
45 views
How to access a @Named bean in PhaseListener?
We are using JBoss 7.1, MySQL/PostgreSQL DB, JSF 2.0 with CDI beans.
I have to implement authentification based on DB by login and password. We have a managment (administration) portal. When the ...
0
votes
0answers
32 views
Local DNS server access delays [closed]
Access to a local DNS server is always delayed by ~1 second.
I enabled the DNS server on OS-X Lion and it does indeed work. However when I query it using 'dig' (or nslookup) there is a delay of ...
0
votes
0answers
64 views
HQL: Using Boolean in Named Queries
Can you please help me? I have error in querying boolean value "r.isDefault = true".
In my HQL named query:
<named-query name="RptQuery.queryDefaultByCode">
<query>
SELECT r ...
0
votes
2answers
63 views
How to programmatically read named destinations from pdfs?
How can I programmatically read the named destinations embedded in a pdf document? I'm using C# / VS 2010 on .NET 3.5 (but could switch to 4.0 if absolutely necessary). I have the Adobe Acrobat Reader ...
0
votes
2answers
122 views
Extending @Named @SessionScoped bean
I have parent class called Navigation and child class called ExtendingNavigation. Navigation is annotated as @Named("navigation") and @SessionScoped (javax.enterprise.context.SessionScoped;). In it I ...
0
votes
2answers
45 views
Start named via Cron? [closed]
How can I can check status of the named via a Cron?
And how can I start it if it is down?