Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
196 views

Inheriting a trait twice

This doesn't work: trait Trait class Class extends Trait with Trait Compiler complains: <console>:8: error: trait Trait is inherited twice class Class extends Trait with Trait ...
2
votes
2answers
68 views

Does .NET have a check-and-set operator?

Where are the basic concurrency primitives in .Net? Specifically I want to use a Check and Set operator.
2
votes
1answer
96 views

In Scala how can I advise my own methods?

I want to do this: trait Renderable { def render: String } trait Parens extends Renderable { abstract override def render = "(" + super.render + ")" } object Foo extends Renderable with ...
2
votes
2answers
1k views

Stream linearized PDF from servlet to browser (fast web view)

I'm running a web app that provides a servlet. this servlet opens a pdf file from a Network File System and finally streams it to the requesting browser. All the pdf files are linearized by adobe ...
2
votes
3answers
641 views

Numbering Regex Submatches

Is there a canonical ordering of submatch expressions in a regular expression? For example: What is the order of the submatches in "(([0-9]{3}).([0-9]{3}).([0-9]{3}).([0-9]{3}))\s+([A-Z]+)" ? a. ...
0
votes
0answers
21 views

understanding the need of linearizable in distributed system

I need a good example that illustrate the need of linearizable in distributed system (when we have multiple replica), and why this property is called linearizable?
0
votes
1answer
45 views

Determination of Linearization order

How exactly is linearization order determined. How can it be said that Linearization order of the following code is the order in which released by wait(). How can it be checked whether the code is ...
0
votes
2answers
87 views

Is a method with no linearization points always not linearizable?

If you can definitely prove that a method has no linearization points, does it necessarily mean that that method is not linearizable? Also, as a sub question, how can you prove that a method has no ...
0
votes
1answer
483 views

Quickly adding a cover page to a pre-linearized PDF for streaming to browser?

Question 298829 describes how linearizing your PDFs lets them stream page-by-page into the user's browser, so the user doesn't have to wait for the whole document to download before starting to view ...