Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,295 for nDests (0.1 sec)

  1. docs/fr/docs/deployment/manually.md

    <a href="https://trio.readthedocs.io/en/stable/" class="external-link" target="_blank">Trio</a>.
    
    Néanmoins, Uvicorn n'est actuellement compatible qu'avec asyncio, et il utilise normalement <a href="https://github.
    com/MagicStack/uvloop" class="external-link" target="_blank">`uvloop`</a >, le remplaçant hautes performances de `asyncio`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/background-tasks.md

    ```Python hl_lines="13  15  22  25"
    {!../../../docs_src/background_tasks/tutorial002.py!}
    ```
    
    Neste exemplo, as mensagens serão gravadas no arquivo `log.txt` _após_ o envio da resposta.
    
    Se houver uma consulta na solicitação, ela será gravada no log em uma tarefa em segundo plano.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 09 23:44:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. src/html/template/transition_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package template
    
    import (
    	"bytes"
    	"strings"
    	"testing"
    )
    
    func TestFindEndTag(t *testing.T) {
    	tests := []struct {
    		s, tag string
    		want   int
    	}{
    		{"", "tag", -1},
    		{"hello </textarea> hello", "textarea", 6},
    		{"hello </TEXTarea> hello", "textarea", 6},
    		{"hello </textAREA>", "textarea", 6},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 30 16:22:29 UTC 2015
    - 1.7K bytes
    - Viewed (0)
  4. docs/ja/docs/benchmarks.md

        * FastAPIを使用することで、開発時間、バグ、コード行数を節約でき、使用しない場合 (あなたが全ての機能を実装し直した場合) と同じかそれ以上のパフォーマンスを得られます。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 18:43:43 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_test.go

    	// (1) In testdata, build sample.go into test-sample.<tag>
    	// (2) Run debugger gathering a history
    	// (3) Read expected history from testdata/sample.<tag>.nexts
    	// optionally, write out testdata/sample.<tag>.nexts
    
    	testbase := filepath.Join("testdata", base) + "." + tag
    	tmpbase := filepath.Join("testdata", "test-"+base+"."+tag)
    
    	// Use a temporary directory unless -f is specified
    	if !*force {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. tools/docker-builder/crane.go

    	// so we can pull them in the background
    	builds := []builder.BuildSpec{}
    	bases := sets.New[string]()
    	for _, v := range a.Variants {
    		for _, t := range a.Targets {
    			b := builder.BuildSpec{
    				Name:  t,
    				Dests: extractTags(a, t, v, hasDoubleDefault),
    			}
    			for _, arch := range a.Architectures {
    				p := a.PlanFor(arch).Find(t)
    				if p == nil {
    					continue
    				}
    				df := p.Dockerfile
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/heap_test.go

    package ld
    
    import (
    	"cmd/link/internal/loader"
    	"testing"
    )
    
    func TestHeap(t *testing.T) {
    	tests := [][]loader.Sym{
    		{10, 20, 30, 40, 50, 60, 70, 80, 90, 100},
    		{100, 90, 80, 70, 60, 50, 40, 30, 20, 10},
    		{30, 50, 80, 20, 60, 70, 10, 100, 90, 40},
    	}
    	for _, s := range tests {
    		h := heap{}
    		for _, i := range s {
    			h.push(i)
    			if !verify(&h, 0) {
    				t.Errorf("heap invariant violated: %v", h)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 19:13:42 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  8. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts

    plugins {
        id("gradlebuild.integration-tests")
    }
    
    tasks.withType<IntegrationTest>().configureEach {
        // See AbstractKotlinIntegrationTest
        "kotlinDslTestsExtraRepo".let {
            systemProperty(it, System.getProperty(it))
        }
    }
    
    dependencies {
        integTestRuntimeOnly(project(":kotlin-dsl-plugins")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 720 bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/body-nested-models.md

    Isso seria útil se você deseja receber chaves que ainda não conhece.
    
    ---
    
    Outro caso útil é quando você deseja ter chaves de outro tipo, por exemplo, `int`.
    
    É isso que vamos ver aqui.
    
    Neste caso, você aceitaria qualquer `dict`, desde que tenha chaves` int` com valores `float`:
    
    ```Python hl_lines="9"
    {!../../../docs_src/body_nested_models/tutorial009.py!}
    ```
    
    !!! tip "Dica"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            when:
            contendedAction.accept(signal)
    
            then:
            1 * lock.close()
            1 * signal.trigger()
            0 * _
        }
    
        def "lock is acquired once when a thread nests actions"() {
            def action1 = Mock(Supplier)
            def action2 = Mock(Supplier)
            def lock = Mock(FileLock)
            def signal = Mock(FileLockReleasedSignal)
            Consumer contendedAction
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top