Questions tagged [naming]

A general purpose tag to cover anything concerning naming, be it files, programming constructs, data etc.

A general purpose tag to cover anything concerning naming, be it files, programming constructs, data etc.

1723 questions
0
votes
1 answer

Naming configurable parameter for downstream module to handle latency

I'm struggling to find a good name for a configurable parameter in a testbench. The parameter is used to control how many downstream requests can be queued until we stall the upstream module. Any ideas?
user1223028
  • 523
  • 1
  • 4
  • 8
0
votes
0 answers

Name a method using the value of a variable

So say I had a variable like this: String var = "name" instead of making a method like so - Public void name{ System.out.println("This is a method called name"); } I want to create like this - Public void var{ System.out.println("This is…
Summer
  • 23
  • 1
  • 7
0
votes
1 answer

Renaming a data frame using the value of a string

Is there a way to rename a data frame using the value of a string? I'm trying to write a function in [R] that takes a vector of values, operates over them, and (among other things) returns a data frame to the global environment using the <<-…
jbaker802
  • 11
  • 4
0
votes
4 answers

Problem Naming an Interface

I have an interface named PropertyFilter which used to take a Propertyand decide if accepts it or not. And the world was good. But now the interface changed, so that implementations may choose to add additional Propertys. For example a Customer…
Jens Schauder
  • 77,657
  • 34
  • 181
  • 348
0
votes
1 answer

Unable to deploy an application in JBOSS EAP 6.3

I am trying to deploy an ear in jboss EAP 6.3 but I am getting following error: JBAS014775: New missing/unsatisfied dependencies: service jboss.naming.context.java.jdbc.mn572phOraDataSource (missing) dependents: [service…
Swaraj Shekhar
  • 187
  • 1
  • 7
  • 28
0
votes
1 answer

pattern/conventions followed by companies to name keywords

In computer programming, a naming convention is a set of rules for choosing the character sequence to be used for identifiers which denote variables, types, functions, and other entities in source code and documentation. There are several naming…
Tharif
  • 13,794
  • 9
  • 55
  • 77
0
votes
0 answers

Looking for a self-explanatory name for RAII-object lifetime management classes

Lets say, I have a class named Texture that realizes the RAII-idiom. Furthermore I have a corresponding TextureManager class, that instantiates and deletes Texture objects. Its a 1-to-1 relationship: Each TextureManager instance creates one…
theV0ID
  • 4,172
  • 9
  • 35
  • 56
0
votes
1 answer

Name for cast of Complex type to double

I have an object (in whatever language) of type Complex, as in complex number. At a certain point, my program performs a check to see if its imaginary part is zero. If this is the case, it turns the object into a double and does something with the…
William Jockusch
  • 26,513
  • 49
  • 182
  • 323
0
votes
2 answers

Java: Is creating a "System" class a bad thing?

I recently started a project in Java, that contains a class called System. This class (Luckily) contains methods for output management, so in the rare cases where I need to use the System. methods (Or the System object in general) I just reference…
DripDrop
  • 994
  • 1
  • 9
  • 18
0
votes
1 answer

Naming and grammar: getResultsCount or getResultCount?

When writing API methods that count something I always lose a tremendous amount of time thinking about how to write the thing that is being counted. Singular or plural? For instance, how would you name a function that counts results? getResultsCount…
djfm
  • 2,317
  • 1
  • 18
  • 34
0
votes
1 answer

How is the concept of "content negotiation" called outside the HTTP context?

What are different terms for "content negotiation" (when not talking about HTTP)? For example: some (remote or local) services, components, modules, are negotiating about which protocol to use and/or which content type to exchange. Service…
0
votes
0 answers

Creating list of variables from values

Using openCV I imported 4 direction images and called them (L, R, U, D), represented by arrays in uint8 format. I created a function that generates a random sequence of arrows in list form, Arrow_Seq. This consists of n uint8 arrays. Now I want to…
bsils
  • 25
  • 6
0
votes
1 answer

JBoss 6.3 EAP - define other simple namaing bindings in domain for evey server

we need to define a different file url via simple naming bindings for every server in a JBoss domain. e.g. we need for every server in the cluster an entry like
0
votes
0 answers

flexibly naming subsetted objects in R

I'm somewhat new to R so i apologize in advance if the answer to this question is obvious. I have a very long data frame (only one variable) from which i want to create multiple objects from subsets within the data frame. The code to scrape the…
pmandersen
  • 23
  • 1
  • 3
0
votes
1 answer

Is there a good way to keep track of argument variables passed into classes

public class Tester { private double length; private double width; private double height; public Tester(double ________1, double _________2, double _________3){ length = _________1 width = _________2 height =…