Top "Specifications" questions

A specification (also commonly referred to as "spec") is a description of a defined technology and the resources it offers.

How Java linker works?

I want to know how Java linker works. Specifically, in which order it combines classes, interfaces, packages, methods and etc …

java linker jvm specifications
ONVIF: Authentication failure with AXIS P3301 using ONVIF protocol

After first user was created (in my case with user name “root” and password “root”), AXIS P3301 (firmware 5.11.2) returns NotAuthorized …

camera video-streaming ip specifications onvif
Java boolean |= operator

Recently I saw a code using this: boolean val = something(); val |= somethingElse(); Interesting part is |= (binary like) operator made on …

java operators specifications boolean-expression compound-assignment
Is there a Python language specification?

Is there anything in Python akin to Java's JLS or C#'s spec?

python specifications
Rspec: how to spec request.env in a helper spec?

In my helper module, I have: def abc(url) ... if request.env['HTTP_USER_AGENT'] do something end end In …

ruby-on-rails rspec request user-agent specifications
Was the misspelling of the HTTP field name Referer intentional?

I read recently (I can't recall where, or I'd return to that source) that the misspelling of HTTP header field …

http specifications misspelling
WebLogic Server :: The server does not support version 3.0 of the J2EE Web module specification

When I try running an application using the WebLogic 11g 10.3.5 server, it shows that "The server does not support version 3.0 …

java jakarta-ee web specifications weblogic11g
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 …

java operator-precedence specifications jls
Where I can find .fon format specification?

I'm thinking about making a bitmap font editor, but I'm completely unable to find any information about .fon internal structure. …

file fonts format specifications bitmap-fonts
designing actions in REST API - when is RESTful too RESTful?

I am in the process of designing a REST API for a project we are working on. That is, I …

rest specifications