- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for ten (0.01 sec)
-
guava-tests/test/com/google/common/math/BigIntegerMathTest.java
for (BigInteger x : POSITIVE_BIGINTEGER_CANDIDATES) { for (RoundingMode mode : asList(FLOOR, DOWN)) { int result = BigIntegerMath.log10(x, mode); assertTrue(TEN.pow(result).compareTo(x) <= 0); assertTrue(TEN.pow(result + 1).compareTo(x) > 0); } } } @GwtIncompatible // TODO public void testLog10Ceiling() { for (BigInteger x : POSITIVE_BIGINTEGER_CANDIDATES) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
approxPow = approxPow.divide(BigInteger.TEN); approxCmp = approxPow.compareTo(x); } while (approxCmp > 0); } else { BigInteger nextPow = BigInteger.TEN.multiply(approxPow); int nextCmp = nextPow.compareTo(x); while (nextCmp <= 0) { approxLog10++; approxPow = nextPow; approxCmp = nextCmp; nextPow = BigInteger.TEN.multiply(approxPow);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/vi/docs/virtual-environments.md
$ uv venv ``` </div> /// tip Mặc định, `uv` sẽ tạo một môi trường ảo trong một thư mục có tên `.venv`. Nhưng bạn có thể tùy chỉnh nó bằng cách thêm một đối số với tên thư mục. /// //// Lệnh này tạo một môi trường ảo mới trong một thư mục có tên `.venv`. /// details | `.venv` hoặc tên khác Bạn có thể tạo môi trường ảo trong một thư mục khác, nhưng thường người ta quy ước đặt nó là `.venv`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 07 22:19:18 UTC 2025 - 26.1K bytes - Viewed (0) -
docs/vi/docs/python-types.md
```Python hl_lines="1 4" {!> ../../docs_src/python_types/tutorial008.py!} ``` //// Điều này có nghĩa là: * Biến `prices` là một `dict`: * Khóa của `dict` này là kiểu `str` (đó là tên của mỗi vật phẩm). * Giá trị của `dict` này là kiểu `float` (đó là giá của mỗi vật phẩm). #### Union Bạn có thể khai báo rằng một biến có thể là **một vài kiểu dữ liệu" bất kì, ví dụ, một `int` hoặc một `str`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 21.5K bytes - Viewed (0) -
docs/es/docs/tutorial/query-params-str-validations.md
```Python q: str | None = None ``` Pero las versiones de `Query` lo declaran explícitamente como un parámetro de query. /// info | Información Ten en cuenta que la parte más importante para hacer un parámetro opcional es la parte: ```Python = None ``` o la parte: ```Python = Query(default=None) ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 16.5K bytes - Viewed (0) -
docs/es/docs/advanced/behind-a-proxy.md
{* ../../docs_src/behind_a_proxy/tutorial002.py hl[3] *} Pasar el `root_path` a `FastAPI` sería el equivalente a pasar la opción de línea de comandos `--root-path` a Uvicorn o Hypercorn. ### Acerca de `root_path` Ten en cuenta que el servidor (Uvicorn) no usará ese `root_path` para nada, a excepción de pasárselo a la app.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 12.1K bytes - Viewed (0) -
docs/pl/docs/features.md
`FastAPI` jest w rzeczywistości podklasą `Starlette`, więc jeśli już znasz lub używasz Starlette, większość funkcji będzie działać w ten sam sposób. Dzięki **FastAPI** otrzymujesz wszystkie funkcje **Starlette** (ponieważ FastAPI to po prostu Starlette na sterydach):
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 10.9K bytes - Viewed (0) -
src/main/resources/fess_message_pl.properties
errors.failed_to_update_jsp_file = Nie można zaktualizować pliku JSP. errors.design_file_name_is_invalid = Nazwa pliku jest nieprawidłowa. errors.design_file_is_unsupported_type = Ten typ pliku nie jest obsługiwany. errors.failed_to_create_crawling_config_at_wizard = Nie można utworzyć konfiguracji indeksowania w kreatorze. errors.design_editor_disabled = Ta funkcja jest wyłączona.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0)