Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 51 for base_name (0.05 seconds)

  1. 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)
  2. 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)
  3. tests/connpool_test.go

    	}
    
    	tx.Rollback()
    
    	if err = db.First(&User{}, "name = ?", "transaction").Error; err == nil {
    		t.Fatalf("Should not find record after rollback, but got %v", err)
    	}
    
    	txDB := db.Where("fake_name = ?", "fake_name")
    	tx2 := txDB.Session(&gorm.Session{NewDB: true}).Begin()
    	user2 := *GetUser("transaction-2", Config{})
    	if err = tx2.Save(&user2).Error; err != nil {
    		t.Fatalf("No error should raise, but got %v", err)
    	}
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sun May 25 07:40:40 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild.generate-subprojects-info.gradle.kts

    import gradlebuild.buildutils.tasks.GenerateSubprojectsInfo
    import gradlebuild.buildutils.tasks.CheckSubprojectsInfo
    
    tasks.register<GenerateSubprojectsInfo>(GenerateSubprojectsInfo.TASK_NAME)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 254 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. src/cmd/asm/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Asm, typically invoked as “go tool asm”, assembles the source file into an object
    file named for the basename of the argument source file with a .o suffix. The
    object file can then be combined with other objects into a package archive.
    
    # Command Line
    
    Usage:
    
    	go tool asm [flags] file
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalTestArtifactExtension.java

            });
            // PolicyUtil doesn't handle classifier notation well probably.
            // Instead of fixing PoliceUtil we stick to the pattern of changing
            // the basename here to indicate its a test artifacts jar.
            BasePluginExtension pluginExtension = project.getExtensions().getByType(BasePluginExtension.class);
            project.getTasks().named(name + "Jar", Jar.class).configure(jar -> {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 29 07:15:49 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/GenerateSubprojectsInfo.kt

        @TaskAction
        fun generateSubprojectsInfo() {
            subprojectsJson.asFile.writeText(generateSubprojectsJson())
        }
    
        companion object {
            internal
            const val TASK_NAME = "generateSubprojectsInfo"
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jul 08 13:44:59 GMT 2021
    - 1.1K bytes
    - Click Count (0)
Back to Top