Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for base_name (0.21 seconds)

  1. docs/ru/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    на:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Вот и всё.
    
    Это и есть «подсказки типов»:
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    Это не то же самое, что объявление значений по умолчанию, как, например:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Это другая вещь.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  2. docs/de/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    zu:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Das war's.
    
    Das sind die „Typhinweise“:
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    Das ist nicht das gleiche wie das Deklarieren von Defaultwerten, wie es hier der Fall ist:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Das ist eine andere Sache.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.6K bytes
    - Click Count (1)
  3. docs/es/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    a:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Eso es todo.
    
    Esas son las "anotaciones de tipos":
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    Eso no es lo mismo que declarar valores por defecto como sería con:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Es una cosa diferente.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 11.6K bytes
    - Click Count (1)
  4. docs/pt/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    para:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    É isso aí.
    
    Esses são os "type hints":
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    Isso não é o mesmo que declarar valores padrão como seria com:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    É uma coisa diferente.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/python-types.md

    ### 加上型別 { #add-types }
    
    我們來修改前一版中的一行。
    
    我們只要把函式參數這一段,從:
    
    ```Python
        first_name, last_name
    ```
    
    改成:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    就這樣。
    
    那些就是「型別提示」:
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    這和宣告預設值不同,例如:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    這是不同的東西。
    
    我們使用的是冒號(`:`),不是等號(`=`)。
    
    而且加上型別提示通常不會改變執行結果,和不加時是一樣的。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  6. docs/tr/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    şuna çevireceğiz:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Bu kadar.
    
    Bunlar "type hints":
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    Bu, aşağıdaki gibi default değerler bildirmekle aynı şey değildir:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Bu farklı bir şey.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  7. docs/uk/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    на:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Ось і все.
    
    Це «підказки типів»:
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    Це не те саме, що оголошення значень за замовчуванням, як це було б з:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Це зовсім інше.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  8. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

            worker = false
        }
    
        // TODO: Most of these properties are the same across projects. We should
        // compute these at the settings-level instead of the project-level.
        identity {
            baseName = "gradle-$name"
            buildTimestamp = buildTimestamp()
            promotionBuild = isPromotionBuild
    
            val finalReleaseSuffix = buildFinalRelease.map { "" }
            val rcSuffix = buildRcNumber.map { "-rc-$it" }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:46:35 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  9. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt

         */
        abstract val published: Property<Boolean>
    
    }
    
    interface ModuleIdentity {
    
        val version: Property<GradleVersion>
    
        val baseName: Property<String>
    
        val buildTimestamp: Property<String>
    
        val snapshot: Property<Boolean>
    
        val promotionBuild: Property<Boolean>
    
        val releasedVersions: Property<ReleasedVersionsDetails>
    
    }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  10. docs/fr/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    à :
    
    ```Python
        first_name: str, last_name: str
    ```
    
    C'est tout.
    
    Ce sont les « annotations de type » :
    
    {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *}
    
    Ce n'est pas la même chose que de déclarer des valeurs par défaut, ce qui serait :
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    C'est différent.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.7K bytes
    - Click Count (0)
Back to Top