Примеры в контексте "Fib - Fib"

Все варианты переводов "Fib":
fib
Примеры: Fib - Fib
This computation can be performed in a separate thread by val x = spawn fib n; The variable x is now bound to a so-called future. Это вычисление может быть произведено в отдельном потоке с помощью: val x = spawn(fib(n)); Теперь переменная x связана с так называемым будущим значением.
The only real limiting factors are the FIB table sizes and computational power of the individual devices both of which are growing yearly in leaps and bounds. Единственные реальные ограничивающие факторы - размеры таблицы FIB и вычислительное питание отдельных устройств, оба из которых растут скачками ежегодно.
At the time, this island was part of the Pictish kingdom of Fib (Fife). В то время этот остров был частью пиктского королевства Фиб (Fib), иначе Файф.
Node 5 will have exactly the inverse in its FIB: MAC 00:00:00:07:00/ vid 101 the next hop is interface/1. У узла 5 будет точная инверсия в её FIB: MAC 00:00:00:07:00/ vid 101 следующий транзитный участок - interface/1.
Node 7 will therefore have a FIB that among other things indicates: MAC 00:00:00:05:00/ vid 101 the next hop is interface/1. Поэтому узел 7 будет иметь FIB, который среди прочего указывает: MAC 00:00:00:05:00/ vid 101 следующий транзитный участок - interface/1.
Consider the naive algorithm for computing the Fibonacci numbers: fun fib 0 = 0 | fib 1 = 1 | fib n = fib(n-1) + fib(n-2); For large values of n, fib n will take a long time to compute. Рассмотрим нативный алгоритм для вычисления чисел Фибоначчи: fun fib 0 = 0 | fib 1 = 1 | fib n = fib(n-1) + fib(n-2); Для больших значений n вычисление fib n займёт много времени.