Tagged Questions
The specification tag has no wiki summary.
19
votes
4answers
9k views
Gem.source_index is deprecated, use Specification. Should I re-install Gem or Rails?
I'm learning RoR on Ubuntu 11. Got the following message when I was trying to generate an app. Did I install something incorrectly? Thank you so much for your help and advice.
$ rails generate ...
10
votes
1answer
329 views
Order of execution of parameters guarantees in Java?
Given the following function call in C:
fooFunc( barFunc(), bazFunc() );
the order of execution of barFunc and BazFunc is not specified, so barFunc() may be called before bazFunc(), or bazFunc() ...
7
votes
3answers
226 views
Feature Specification
I am at a starting point of a new project. We brainstormed about what features it should include. We also talked about potential customers, about similar products, which are already out there, about ...
7
votes
2answers
465 views
How to Create an Internal DSL in Scala?
I have been looking at a couple of books and resources on domain specific languages.
I think I want to build an internal DSL in Scala.
def instrument = new FXInstrument {
provider = "EuroBase"
...
7
votes
7answers
7k views
Java's L number (long) specification question
It appears that when you type in a number in java, the compiler automatically reads it as an integer, which is why when you type in (long) 6000000000 (not in Integer's range) it will complain that ...
6
votes
3answers
174 views
Android 2.1 vs 2.2
I have been developing for Android 2.2+ for the majority of the year. But when I look at the "List of Android Devices" on wikipedia, I see a substantial number of Android 2.1 devices. A lot of these ...
6
votes
2answers
146 views
Specification Pattern and Performance
I've been playing around w/ the specification pattern to handle and contain the business logic in our c#/mvc application. So far so good. I do have a question though - since we'll be creating a ...
6
votes
6answers
216 views
Access to method pointer to protected method?
This code:
class B {
protected:
void Foo(){}
}
class D : public B {
public:
void Baz() {
Foo();
}
void Bar() {
printf("%x\n", &B::Foo);
}
}
gives this error:
t.cpp: In ...
4
votes
3answers
139 views
Java specifications - what are the rules for a “valid” optimization
My understanding is that an optimization is valid if it has no observable effect that contradicts the JLS. So for example, the JIT compiler can optimize away "do nothing" code in an inner loop.
But ...
4
votes
2answers
246 views
is JAXB a specification or an implementation?
If it is a specification, how can I get a comprehensive list of implementations that conform to this specification?
4
votes
4answers
245 views
Formal Specification
Is there any library/tool for formal specification in C++, such as JML for Java, and Data Contracts in C#?
EDIT:
I am not looking for something more specific than, it's practical to use and adds ...
4
votes
2answers
368 views
Inside a while loop, is the last comma separated statement guaranteed to run last?
Consider the following (trivial) code segment:
while (i++, i <= 10) {
// some more code
}
In the general case, C++ allows comma separated statements to be evaluated in any order. In the case ...
3
votes
4answers
420 views
C#/.NET: Is `typeof(variable)` a possible language feature?
On a few separate occasions, I have tried to coax the declared type out of a variable, relatively far from its declaration, only to find out that typeof(T) only works on type names.
I was wondering ...
3
votes
1answer
2k views
What should “Software Design Specification” include?
I am supposed to give design specification document for one of the project to client. Though I have the template but I am wondering what minimum details should be there? I don't want to develop some ...
2
votes
1answer
42 views
HTML - Why does textarea has no maxlength attribute?
What is the reason why textarea before HTML5 has no maxlength attribute? There must be reason for this, did they (author of HTML) miss it or did they do it on purpose? What is the purpose? I'm not ...
2
votes
4answers
53 views
When is the variable from the calling scope altered, if using out parameters?
I cannot try rigth now, but I am sure, someone knows:
void func(out MyType A) {
A = new MyType();
// do some other stuff here
// take some time ... and return
}
When I call this in ...
2
votes
1answer
50 views
May UIComponent#getFamily() return null or not?
I would like to know wether the method UIComponent#getFamily() may return null or not? Mojarra 2.1.3 will throw an exception when returning null but MyFaces 2.1.3 not.
Does a component really need a ...
2
votes
2answers
83 views
Perl regular expression to match perl regular expression literals
Is there a specification in the form of a perl regular expression that will match all perl regular expression literals?
Failing that, is there a specification in any language for all perl regular ...
2
votes
3answers
100 views
Definition: Unfinalized versus finalizable object
In order to understand weak references in Java, I have had to consult the Java Language Specification. The following part, from section 12.6, puzzles me:
An unfinalized object has never had its ...
2
votes
2answers
114 views
VB.Net Language Specification (Dead Tree Version)
I can download the vb.net 10 Language Specification from Microsoft here
600+ Pages is a lot to print out.
So I want to know is there a Dead Tree version (A book)?
If so, where can it purchased?
2
votes
1answer
257 views
Where is the Thrift format specification?
Although Thrift format is relatively widely used (and project still alive), I haven't been able to find specification for the underlying data format. Or formats, given that there are apparently at ...
2
votes
1answer
74 views
order initializiation static parameter
Is there any specification for the order in which static readonly parameters are initialized?
In the following example, can one be sure, the array is always created with a length of 6?
public class ...
2
votes
4answers
253 views
PHP language specification?
as I know there is an official document for Java (JLS), I'd like to know if it's also the case of PHP language. I found the "Language Reference" section on the PHP manual, but it doesn't look as ...
2
votes
2answers
232 views
DOM HTMLElement className property when the element has no class name set
When you have an HTML element with no class name set, what is the value of HTMLElement className property? My first thought was that it is undefined, but I found out that in FF it is just an empty ...
2
votes
4answers
449 views
Size of an Integer in C
Does the ANSI C specification call for size of int to be equal to the word size (32 bit / 64 bit) of the system?
In other words, can I decipher the word size of the system based on the space ...
2
votes
1answer
61 views
Ideas for a TLA+ project
Please give me some suggestions regarding a project topic in the TLA+ language. I'm taking a course on the language, it's the first year I'm learning about specification and verification and I have no ...
2
votes
1answer
297 views
Specification Pattern and Boolean Operator Precedence
In our project, we have implemented the Specification Pattern with boolean operators (see DDD p 274), like so:
public abstract class Rule {
public Rule and(Rule rule) {
return new ...
2
votes
1answer
125 views
choosing licensing statement for an open standard/specification
I've started to write a file format specification for a domain-specific data type. My goal is to improve interoperability between a large number of data providers and search algorithms. I want the ...
2
votes
4answers
725 views
C Prototype scope
I learnt that
the type specifier that declares the
identifier in the list of parameter
declarations in a function prototype
(not part of a function definition),
the identifier has ...
2
votes
1answer
239 views
How is Domain Driven Design different from just using a specification?
I read that Domain Driven Design is about concentrating on the problem domain instead of concentrating on the software. They say that it is easier to solve the complexities of the problem domain than ...
2
votes
7answers
233 views
Mediums to try out algorithms?
By definition algorithms are independent from the medium they run on. E.g. I use Excel tables to play with data structures and to do some move/shuffling/marking experiments before implementing an ...
1
vote
1answer
40 views
SMTP protocol: multiple mails per connection
I need to implement support of multiple messages per one connection for my SMTP server.
Every message ends with:
data
<<content>>
.
And it's logically that protocol state should be ...
1
vote
2answers
163 views
Good examples/templates/best practices API documentation
Im creating the front end for a web service, and another company the back end. I need a good, simple and easily understandable way of making a document of API calls that we can collaborate on and edit ...
1
vote
3answers
80 views
How backwards compatible are EJB containers?
I have inherited an application that is running on JBoss 2.4.3 (which I believe is EJB spec 2.0 compatible), and I'm running into quite a few issues (like being able to use modern log4j "Logger" apis ...
1
vote
0answers
372 views
Business rules and validation with Spring AOP, Specification pattern and Strategy pattern
I really have trouble with validation and business rules programming(design) within Spring application standard architecture (controller -> service -> DAO...).
Bit by bit, service layer classes are ...
1
vote
0answers
33 views
Can anyone tell me which section of a Specifications Requirements document should I include my Sequence Diagrams?
I am using the Volere template and I have edited out the parts where I feel they are not required for my project. I have inluded my use case diagrm in the section titled project scope, is this the ...
1
vote
1answer
275 views
Relative URLs in JSP specification
I have taken below paragraphs from JSP 2.1 specification document. I'm confused and I need some help with this.
A page relative path is a path that does not start with a slash (/). It is to be ...
1
vote
1answer
169 views
Naming spec for WMI counters
Is there a specification for parsing the names of WMI performance counters? Standard names look like '\Xxxx\Yy yy\Zzzz zzz', but we are seeing some custom names that look like '\Aaaa aaa \Bb bb ...
1
vote
2answers
246 views
Specification pattern for repository?
Inspired by http://huyrua.wordpress.com/2010/08/25/specification-pattern-in-entity-framework-4-revisited i have decided to write all nontrivial queries over specifications.
But у encountered a problem ...
1
vote
2answers
430 views
OpenCL: Additional directories for header files
The OpenCL specification writes in 5.6.3 Build Options:
5.6.3.1 Preprocessor options
...
-I dir
Add the directory dir to the list of directories to be searched
for header files.
Can ...
1
vote
2answers
144 views
How to ensure interoperability with DataContractSerializer when talking to non-.NET app?
Say I have a non-.NET app which needs to write data to be deserialized by a .NET app via DataContractSerializer. Where's the specification describing the exact format necessary?
Such a spec should ...
1
vote
1answer
118 views
software design specification
Can anyone explain what is an architecture(in detail) in Technical specification documentation.
Does it mean 2 tier or 3 tier architecture if we are using client-server architecture or we does it ...
1
vote
3answers
1k views
ONVIF : How to form the device web service address from the IP address of an NVT
My question is about the ONVIF specification.
http://www.onvif.org/imwp/download.asp?ContentID=18006
In section 5.10, it says :
A service is a collection of related ports. This specification does ...
1
vote
3answers
259 views
Is it portable to reference the request parameter map after a request-cycle?
I'd like to know if its conform to the java servlet specification 2.5 to reference/save the return value of request.getParameterMap() between requests.
The final specification only states at page ...
1
vote
2answers
229 views
Does the XML specification states that parser need to convert \n\r to \n always, even when \n\r appears in a CDATA section?
I've stumbled in a problem handling the \line-feed and \carriage-return characters in xml.
I know that, according to http://www.w3.org/TR/REC-xml/#sec-line-ends, xml processors are required to replace ...
1
vote
0answers
76 views
I am wondering how the Plural-Field generic is to be rendered in the REST OpenSocial 1.0 API specification?
In the OpenSocial Data specificaiton 1.0 for a Person object (social profile data) it includes the use of a generic called Plural-Field.
The spec can be found at:
...
1
vote
2answers
308 views
What's the best way to link formal specs to JIRA enchancement requests?
What's the best way to link formal specs to JIRA enhancement requests?
I want to track changes to specifications using JIRA.
Ideally, I'd like to refer to a functional ID reference in a JIRA ticket ...
1
vote
2answers
665 views
Specifying constraints for fmin_cobyla in scipy
I use Python 2.5.
I am passing bounds to the cobyla optimisation:
import numpy
from numpy import asarray
Initial = numpy.asarray [2, 4, 5, 3] # Initial values to start with
#bounding limits ...
1
vote
4answers
720 views
Is x.224 specification freely available?
I need to implement a simple probe that uses "open" microsoft rdp protocol. But that protocol refers to x.224 specification and ITU want money in order to download it. Is it any free version of x.224 ...
1
vote
1answer
254 views
What could prevent the creation of a gem specification file?
I tried to update the specs on a gem that didn't have a .specification file.
1. cd {application_home_directory}
2. rake gems:refresh_specs
When I did, I received the recursive warning:
config.gem: ...