Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for say_hi (0.18 sec)

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

    ```Python
    say_hi()  # Oh, nein, das löst einen Fehler aus! 😱
    ```
    
    Der `name` Parameter wird **immer noch benötigt** (nicht *optional*), weil er keinen Default-Wert hat. `name` akzeptiert aber dennoch `None` als Wert:
    
    ```Python
    say_hi(name=None)  # Das funktioniert, None is gültig 🎉
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. docs/bn/docs/python-types.md

    ```Python
    say_hi()  # ওহ না, এটি একটি ত্রুটি নিক্ষেপ করবে! 😱
    ```
    
    `name` প্যারামিটারটি **এখনও আবশ্যিক** (নন-অপশনাল) কারণ এটির কোনো ডিফল্ট মান নেই। তবুও, `name` এর মান হিসেবে `None` গ্রহণযোগ্য:
    
    ```Python
    say_hi(name=None)  # এটি কাজ করে, None বৈধ 🎉
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 15:34:37 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. docs/en/docs/python-types.md

    ```Python
    say_hi()  # Oh, no, this throws an error! 😱
    ```
    
    The `name` parameter is **still required** (not *optional*) because it doesn't have a default value. Still, `name` accepts `None` as the value:
    
    ```Python
    say_hi(name=None)  # This works, None is valid 🎉
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. docs/vi/docs/python-types.md

    ```Python
    say_hi()  # Oh, no, this throws an error! 😱
    ```
    
    Tham số `name` **vẫn được yêu cầu** (không phải là *tùy chọn*) vì nó không có giá trị mặc định. Trong khi đó, `name` chấp nhận `None` như là giá trị:
    
    ```Python
    say_hi(name=None)  # This works, None is valid 🎉
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/testdata/sayhi.go

    package foo
    
    import (
    	"fmt"
    	"sync"
    )
    
    func sayhi(n int, wg *sync.WaitGroup) {
    	fmt.Println("hi", n)
    	fmt.Println("hi", n)
    	wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 19:36:41 UTC 2021
    - 137 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_lines_test.go

    	// If the blocks are reordered in a way that changes the statement order but execution flows correctly,
    	// then rearrange the expected numbers.  Register abi and not-register-abi also have different sequences,
    	// at least for now.
    
    	testDebugLinesDefault(t, "-N -l", "sayhi.go", "sayhi", []int{8, 9, 10, 11}, false)
    }
    
    func TestDebugLinesPushback(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. docs/tr/docs/fastapi-people.md

    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Cevaplanan soru sayısı: {{ user.count }}</div></div>
    {% endfor %}
    
    </div>
    {% endif %}
    
    ## Uzmanlar
    
    İşte **FastAPI Uzmanları**. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_arm.s

    TEXT armLoad64<>(SB),NOSPLIT,$0-12
    	// addr is already in R1
    
    	LDREXD	(R1), R2	// loads R2 and R3
    	DMB	MB_ISH
    
    	MOVW	R2, val_lo+4(FP)
    	MOVW	R3, val_hi+8(FP)
    	RET
    
    TEXT armStore64<>(SB),NOSPLIT,$0-12
    	// addr is already in R1
    	MOVW	val_lo+4(FP), R2
    	MOVW	val_hi+8(FP), R3
    
    store64loop:
    	LDREXD	(R1), R4	// loads R4 and R5
    
    	DMB	MB_ISHST
    
    	STREXD	R2, (R1), R0	// stores R2 and R3
    	CMP	$0, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_386.s

    	JNZ casloop
    	MOVL 	AX, ret+8(FP)
    	RET
    
    // func And64(addr *uint64, v uint64) old uint64
    TEXT ·And64(SB), NOSPLIT, $0-20
    	MOVL	ptr+0(FP), BP
    	// DI:SI = v
    	MOVL	val_lo+4(FP), SI
    	MOVL	val_hi+8(FP), DI
    	// DX:AX = *addr
    	MOVL	0(BP), AX
    	MOVL	4(BP), DX
    casloop:
    	// CX:BX = DX:AX (*addr) & DI:SI (mask)
    	MOVL	AX, BX
    	MOVL	DX, CX
    	ANDL	SI, BX
    	ANDL	DI, CX
    	LOCK
    	CMPXCHG8B	0(BP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

        @TaskAction def sayHello() {
            println(message.get())
        }
    }
    
    task sayHi(type: HelloTask) {
        group = 'Build'
        message = 'Hi!'
    }"""
    
            when:
            succeeds "tasks", "--types"
    
            then:
            output.contains("""
    Build tasks
    -----------
    sayHi (HelloTask)""")
        }
    
        def "always renders task rule running #tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top