Common Expressions VI

 0    29 flashcards    marcinbalutpoland
download mp3 print play test yourself
 
Question Answer
Garbage Collector jest uruchamiany w określonych okolicznościach.
start learning
The Garbage Collector gets triggered under specific circumstances.
przekracza zadany próg
start learning
surpasses a given threshold
Raczej nie będzie to miało wpływu.
start learning
Will hardly be impacted.
Nieużywana pamięć nie jest prawidłowo zwalniana.
start learning
The unused memory is not properly freed.
Ma tendencję do długowieczności.
start learning
It tends to long-lived.
Powinniśmy to sprawdzać tylko raz na jakiś czas.
start learning
We should check it only every once in a while.
Sama referencja zachowuje się jak typ wartościowy.
start learning
The reference itself behaves like value type.
Zmienna referencyjna wskazuje na tę samą listę.
start learning
Reference variable points to the same list.
Zmiana jest odzwierciedlana w zmiennej.
start learning
Change is reflected in the variable.
Jest to zgodne z zasadą Open-Close.
start learning
It is in line with Open-Close principle.
Modyfikuje kolekcję, na której działa.
start learning
Modifies collection that operate on.
Każdy algorytm miał zadecydować, czy liczba powinna zostać załączona.
start learning
Each algorithm meant to decide whether a number should be included.
Wygląda na to, że działa dobrze.
start learning
Seems to be working fine.
jak się okazuje
start learning
as it turns out
Wiele razy z rzędu.
start learning
Many times in a row.
Już w momencie jego powstania.
start learning
Right at the moment of its creation.
Wymagane uprawnienia zostały przyznane.
start learning
Required permissions are granted.
Interfejsy zmieniają się znacznie rzadziej niż szczegóły implementacji.
start learning
Interfaces change much less frequently than the implementation details.
nie ma już wolnego miejsca
start learning
there is no more spare room
Będzie zgodne z SRP.
start learning
Will be in line with the Single Responsibility Principle.
pomoże to w stworzeniu dobrego interfejsu
start learning
it will help to come up with a good interface
jako taki będzie zapakowany
start learning
as such it will be boxed
Zakładając, że obiekt nie został zmodyfikowany.
start learning
Assuming the object was not modified.
Ich implementacje powinny być ujednolicone.
start learning
Their implementations should be aligned.
Funkcje hashujace powinny równomiernie rozprowadzać swoje wartości.
start learning
Hash functions should uniformly distribute their values.
Nie możemy zakładać, że hash kod będzie unikalny dla danego obiektu.
start learning
We cannot assume the hash code will be unique for a given object.
Używanie typów immutable i pure functions to zasady programowania funkcyjnego.
start learning
Using immutable types and pure functions are tenets of functional programming.
Po utworzeniu jego wartość pozostanie taka sama.
start learning
Once created it's value will remain the same.
Jeśli obiekt ma być kluczem w słowniku, powinien być immutable.
start learning
If an object is meant to be a key in a Dictionary, it should be immutable.

You must sign in to write a comment