Questions tagged as 'terminologia'

2
answers

Differences between a transpiler and a compiler [duplicate]

You've heard a lot about the term transpiler ( transpiler ) lately. However, the difference of a transpiler (Babel, for example) to a traditional compiler does not seem clear to me. The two translate code from one language to another, do no...
asked by 25.05.2017 / 22:01
1
answer

Method returns instance after definition of property [duplicate]

Is there a name for the practice or pattern for this code snippet? Example: <?php class Pessoa { //... public setNome($nome) { $this->nome = $nome; return $this; } //... }     
asked by 13.08.2016 / 19:13
1
answer

What is an Over-posting attack?

I came across the term Over- posting while following Microsoft's guide to creating applications in ASP.NET Core. I had a question regarding the use of attributes in the signature of a method, which in this case, was the Bind attribute fo...
asked by 15.11.2017 / 22:58
1
answer

Understanding directive #line

I'm trying to understand the #line directive. I read in this documentation and I was able to understand the applicability of #line hidden but not #line [any_numer]. Taking as an example a App.g.i.cs file that is...
asked by 29.09.2016 / 17:56
1
answer

Is there a canonical definition for a database schema?

Each bank seems to define schema ( schema ) in a different way. See, for example, the MySQL , the MS SQL Server , the PostgreSQL ... Is there a relevant canonical definition or does it matter only the individual definitions?     
asked by 23.12.2018 / 20:46
1
answer

What is starvation?

Some conditions can prevent the progress of running processes or threads, two of these conditions are called dead-lock and live-lock , where what I extracted from information was that dead-lock refers to processes that are blo...
asked by 04.09.2018 / 20:54
1
answer

What is marshalling and how does it work?

I was working with a device that sent some information to my software , but this information came in type IntPtr , to read it, I had to use the Marshal class .NET. What is marshalling and what happens when I convert a IntPt...
asked by 24.03.2017 / 04:11
1
answer

Is there any distinction between softwares that have databases or not?

A question that came to me while I was studying and I still have not found anything about it. We know what a software is, here is a brief definition :    A program (in English, software) is a sequence of instructions   describing a task to...
asked by 17.06.2016 / 15:28
1
answer

What is the difference between regression test and end-to-end test

I'd like to know the difference between these two tests, regression testing and end-to-end testing. I searched in some places but found material more TDD-related, and both look a bit like this. When using regression testing or end-to-end test...
asked by 29.04.2018 / 22:52
1
answer

Difference between acceptance test and system test

In practice, what is the difference between the acceptance test and the system test? And how to do them?     
asked by 18.11.2016 / 16:33