- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 81 for collisions (0.15 seconds)
-
docs/es/docs/tutorial/bigger-applications.md
``` Para aprender más sobre Paquetes y Módulos de Python, lee [la documentación oficial de Python sobre Módulos](https://docs.python.org/3/tutorial/modules.html). /// ### Evitar colisiones de nombres { #avoid-name-collisions } Estamos importando el submódulo `items` directamente, en lugar de importar solo su variable `router`. Esto se debe a que también tenemos otra variable llamada `router` en el submódulo `users`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 20.2K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/bigger-applications.md
``` 第二種是「絕對匯入」: ```Python from app.routers import items, users ``` 想了解更多關於 Python 套件與模組,請閱讀[官方的模組說明文件](https://docs.python.org/3/tutorial/modules.html)。 /// ### 避免名稱衝突 { #avoid-name-collisions } 我們直接匯入子模組 `items`,而不是只匯入它的變數 `router`。 這是因為在子模組 `users` 中也有另一個名為 `router` 的變數。 如果我們像下面這樣一個接一個匯入: ```Python from .routers.items import router from .routers.users import router ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 18.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/bigger-applications.md
```Python from app.routers import items, users ``` Python Packages와 Modules에 대해 더 알아보려면 [Modules에 대한 Python 공식 문서](https://docs.python.org/3/tutorial/modules.html)를 읽어보세요. /// ### 이름 충돌 피하기 { #avoid-name-collisions } submodule `items`를 직접 import하고, 그 안의 `router` 변수만 import하지는 않습니다. 이는 submodule `users`에도 `router`라는 이름의 변수가 있기 때문입니다. 만약 다음처럼 순서대로 import했다면: ```Python from .routers.items import routerCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 21.5K bytes - Click Count (0) -
docs/pt/docs/tutorial/bigger-applications.md
``` Para saber mais sobre pacotes e módulos Python, leia [a documentação oficial do Python sobre módulos](https://docs.python.org/3/tutorial/modules.html). /// ### Evite colisões de nomes { #avoid-name-collisions } Estamos importando o submódulo `items` diretamente, em vez de importar apenas sua variável `router`. Isso ocorre porque também temos outra variável chamada `router` no submódulo `users`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 20.3K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/LocalCache.java
* hash functions. This is critical when the concurrent hash map uses power-of-two length hash * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper * bits. * * @param h hash code */ static int rehash(int h) { // Spread bits to regularize both segment and index locations,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 143.5K bytes - Click Count (0) -
api/go1.2.txt
pkg syscall (freebsd-386-cgo), type IfData struct, Addrlen uint8 pkg syscall (freebsd-386-cgo), type IfData struct, Baudrate uint32 pkg syscall (freebsd-386-cgo), type IfData struct, Collisions uint32 pkg syscall (freebsd-386-cgo), type IfData struct, Datalen uint8 pkg syscall (freebsd-386-cgo), type IfData struct, Epoch int32 pkg syscall (freebsd-386-cgo), type IfData struct, Hdrlen uint8
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Oct 18 04:36:59 GMT 2013 - 1.9M bytes - Click Count (1) -
guava/src/com/google/common/cache/LocalCache.java
* hash functions. This is critical when the concurrent hash map uses power-of-two length hash * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper * bits. * * @param h hash code */ static int rehash(int h) { // Spread bits to regularize both segment and index locations,
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 148.9K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.24.md
- [Kubelet Credential Provider Graduates to Beta](#kubelet-credential-provider-graduates-to-beta) - [Contextual Logging in Alpha](#contextual-logging-in-alpha) - [Avoiding Collisions in IP allocation to Services](#avoiding-collisions-in-ip-allocation-to-services) - [Urgent Upgrade Notes](#urgent-upgrade-notes) - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Aug 24 00:02:43 GMT 2023 - 473.4K bytes - Click Count (0) -
docs/ja/docs/tutorial/bigger-applications.md
```Python from app.routers import items, users ``` Python のパッケージとモジュールについて詳しくは、[公式の Python モジュールに関するドキュメント](https://docs.python.org/3/tutorial/modules.html)をご覧ください。 /// ### 名前衝突の回避 { #avoid-name-collisions } サブモジュール `items` の変数 `router` だけをインポートするのではなく、サブモジュール自体を直接インポートしています。 これは、サブモジュール `users` にも `router` という変数があるためです。 もし次のように続けてインポートした場合: ```Python from .routers.items import routerCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 22.8K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.27.md
- The API server now re-uses data encryption keys while the kms v2 plugin key ID is stable. Data encryption keys are still randomly generated on server start but an atomic counter is used to prevent nonce collisions. ([#116155](https://github.com/kubernetes/kubernetes/pull/116155), [@enj](https://github.com/enj))
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Jul 17 07:48:22 GMT 2024 - 466.3K bytes - Click Count (2)