Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 81 for collisions (0.09 seconds)

  1. docs/fr/docs/tutorial/bigger-applications.md

    ```
    
    Pour en savoir plus sur les Packages et Modules Python, lisez [la documentation officielle de Python sur les modules](https://docs.python.org/3/tutorial/modules.html).
    
    ///
    
    ### Éviter les collisions de noms { #avoid-name-collisions }
    
    Nous importons le sous-module `items` directement, au lieu d'importer uniquement sa variable `router`.
    
    C'est parce que nous avons également une autre variable nommée `router` dans le sous-module `users`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  2. docs/fr/docs/tutorial/security/oauth2-jwt.md

    Dans ces cas, plusieurs de ces entités peuvent avoir le même identifiant, disons `foo` (un utilisateur `foo`, une voiture `foo`, et un article de blog `foo`).
    
    Donc, pour éviter les collisions d'identifiants, lors de la création du jeton JWT pour l'utilisateur, vous pouvez préfixer la valeur de la clé `sub`, par exemple avec `username:`. Ainsi, dans cet exemple, la valeur de `sub` aurait pu être : `username:johndoe`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.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
    - 89.9K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.7.md

    #### Deployments
    * [beta] Deployments uses a hashing collision avoidance mechanism that ensures new rollouts will not block on hashing collisions anymore. ([kubernetes/features#287](https://github.com/kubernetes/enhancements/issues/287))
    
    #### PodDisruptionBudget
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Click Count (1)
  5. docs/ru/docs/tutorial/bigger-applications.md

    ```
    
    Чтобы узнать больше о Python-пакетах и модулях, прочитайте [официальную документацию Python о модулях](https://docs.python.org/3/tutorial/modules.html).
    
    ///
    
    ### Избегайте конфликтов имён { #avoid-name-collisions }
    
    Мы импортируем подмодуль `items` напрямую, вместо того чтобы импортировать только его переменную `router`.
    
    Это потому, что у нас также есть другая переменная с именем `router` в подмодуле `users`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 29.7K bytes
    - Click Count (0)
  6. docs/de/docs/tutorial/bigger-applications.md

    Um mehr über Python-Packages und -Module zu erfahren, lesen Sie [die offizielle Python-Dokumentation über Module](https://docs.python.org/3/tutorial/modules.html).
    
    ///
    
    ### Namenskollisionen vermeiden { #avoid-name-collisions }
    
    Wir importieren das Submodul `items` direkt, anstatt nur seine Variable `router` zu importieren.
    
    Das liegt daran, dass wir im Submodul `users` auch eine weitere Variable namens `router` haben.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 21.9K bytes
    - Click Count (0)
  7. tensorflow/c/c_api.cc

          Node* n = g->graph.FindNodeId(i);
          if (n == nullptr) continue;
    
          // Adding the gradients to the graph can alter the prefix to prevent
          // name collisions only if this prefix has not been provided explicitly
          // by the user. If it was provided, assert that it remained intact.
          if (prefix != nullptr && !absl::StartsWith(n->name(), prefix_cmp)) {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/bigger-applications.md

    Python Packages ve Modules hakkında daha fazlası için, [Python'ın Modules ile ilgili resmi dokümantasyonunu](https://docs.python.org/3/tutorial/modules.html) okuyun.
    
    ///
    
    ### İsim Çakışmalarını Önleyin { #avoid-name-collisions }
    
    `items` submodule’ünü doğrudan import ediyoruz; sadece içindeki `router` değişkenini import etmiyoruz.
    
    Çünkü `users` submodule’ünde de `router` adlı başka bir değişken var.
    
    Eğer şöyle sırayla import etseydik:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  9. docs/uk/docs/tutorial/bigger-applications.md

    ```
    
    Щоб дізнатися більше про пакети й модулі Python, прочитайте [офіційну документацію Python про модулі](https://docs.python.org/3/tutorial/modules.html).
    
    ///
    
    ### Уникайте колізій імен { #avoid-name-collisions }
    
    Ми імпортуємо підмодуль `items` напряму, замість імпорту лише його змінної `router`.
    
    Це тому, що в підмодулі `users` також є змінна з назвою `router`.
    
    Якби ми імпортували один за одним, як:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.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
    - 89.9K bytes
    - Click Count (0)
Back to Top