Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

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

    예를 들어 `app/main.py`에는 다음과 같은 줄이 있을 수 있습니다:
    
    ```
    from app.routers import items
    ```
    
    ///
    
    * `app` 디렉터리에는 모든 것이 들어 있습니다. 그리고 비어 있는 파일 `app/__init__.py`가 있어 "Python package"(“Python modules”의 모음)인 `app`이 됩니다.
    * `app/main.py` 파일이 있습니다. Python package(`__init__.py` 파일이 있는 디렉터리) 안에 있으므로, 이 package의 "module"입니다: `app.main`.
    * `app/dependencies.py` 파일도 있습니다. `app/main.py`와 마찬가지로 "module"입니다: `app.dependencies`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 21.5K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Sets.java

            return false;
          }
        }
        return false;
      }
    
      /**
       * Returns an unmodifiable view of the specified navigable set. This method allows modules to
       * provide users with "read-only" access to internal navigable sets. Query operations on the
       * returned set "read through" to the specified set, and attempts to modify the returned set,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 83K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. docs/uk/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 18:27:41 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.10.md

    * 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: Thu May 05 13:44:43 GMT 2022
    - 341.8K bytes
    - Click Count (0)
  10. docs/ja/docs/tutorial/bigger-applications.md

    ```
    
    2つ目のバージョンは「絶対インポート」です:
    
    ```Python
    from app.routers import items, users
    ```
    
    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: Fri Mar 20 14:07:17 GMT 2026
    - 22.8K bytes
    - Click Count (0)
Back to Top