Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 137 for MODULES (0.15 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. CHANGELOG/CHANGELOG-1.9.md

    * Configurable etcd compaction frequency in GCE ([#59106](https://github.com/kubernetes/kubernetes/pull/59106), [@wojtek-t](https://github.com/wojtek-t))
    * Prevent kubelet from getting wedged if initialization of modules returns an error. ([#59020](https://github.com/kubernetes/kubernetes/pull/59020), [@brendandburns](https://github.com/brendandburns))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Click Count (0)
  2. docs/ru/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`.
    
    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)
  3. docs/zh-hant/docs/tutorial/bigger-applications.md

    ```Python
    from .routers import items, users
    ```
    
    第二種是「絕對匯入」:
    
    ```Python
    from app.routers import items, users
    ```
    
    想了解更多關於 Python 套件與模組,請閱讀[官方的模組說明文件](https://docs.python.org/3/tutorial/modules.html)。
    
    ///
    
    ### 避免名稱衝突 { #avoid-name-collisions }
    
    我們直接匯入子模組 `items`,而不是只匯入它的變數 `router`。
    
    這是因為在子模組 `users` 中也有另一個名為 `router` 的變數。
    
    如果我們像下面這樣一個接一個匯入:
    
    ```Python
    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)
  4. docs/de/docs/tutorial/bigger-applications.md

    ```Python
    from app.routers import items, users
    ```
    
    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.
    
    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)
  5. CHANGELOG/CHANGELOG-1.36.md

    - Introduces new staging modules `k8s.io/streaming` and `k8s.io/cri-streaming` for Kubernetes streaming transport and CRI streaming server code.
      
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 23:38:00 GMT 2026
    - 142.1K bytes
    - Click Count (0)
  6. docs/es/docs/tutorial/bigger-applications.md

    ```Python
    from app.routers import items, users
    ```
    
    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`.
    
    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)
  7. docs/pt/docs/tutorial/bigger-applications.md

    ```Python
    from app.routers import items, users
    ```
    
    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`.
    
    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)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Updated kube-proxy ipvs README with correct grep argument to list loaded ipvs modules ([#83677](https://github.com/kubernetes/kubernetes/pull/83677), [@pete911](https://github.com/pete911))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Click Count (1)
  9. android/guava/src/com/google/common/collect/Maps.java

          BiMap<K, V> synchronizedBiMap(BiMap<K, V> bimap) {
        return Synchronized.biMap(bimap, null);
      }
    
      /**
       * Returns an unmodifiable view of the specified bimap. This method allows modules to provide
       * users with "read-only" access to internal bimaps. Query operations on the returned bimap "read
       * through" to the specified bimap, and attempts to modify the returned map, whether direct or via
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  10. RELEASE.md

            `core/platform/ctstring.h` for string access/modification in C.
        *   `tensorflow.python`, `tensorflow.core` and `tensorflow.compiler` modules
            are now hidden. These modules are not part of TensorFlow public API.
        *   `tf.raw_ops.Max` and `tf.raw_ops.Min` no longer accept inputs of type
            `tf.complex64` or `tf.complex128`, because the behavior of these ops is
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top