Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for Vb (0.04 sec)

  1. docs/tr/docs/benchmarks.md

        * Eğer Uvicorn'u karşılaştırıyorsanız, Daphne, Hypercorn, uWSGI, vb. uygulama sunucuları ile karşılaştırın.
    * **Starlette**:
        * Uvicorn'dan sonraki en iyi performansa sahip olacaktır. İşin aslı, Starlette çalışmak için Uvicorn'u kullanıyor. Dolayısıyla, daha fazla kod çalıştırmaası gerektiğinden muhtemelen Uvicorn'dan sadece "daha yavaş" olabilir.
        * Ancak yol bazlı yönlendirme vb. basit web uygulamaları oluşturmak için araçlar sağlar.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 14:10:30 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue45851.go

    type Vertex struct {
    	BaseValue Value
    	name string
    }
    func (v *Vertex) Kind() Kind {
    	return TopKind
    }
    
    func main() {
    	vA := &Vertex{name:"vA",}
    	vB := &Vertex{name:"vB",}
    	vX := &Vertex{name:"vX",}
    	vA.BaseValue = vX
    	vB.BaseValue = vX
    	_ = equalVertex(vA, vB, Flag(1))
    }
    
    var foo string
    
    //go:noinline
    func (v *Vertex) IsClosedStruct() bool {
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 17:46:12 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. docs/tr/docs/deployment/index.md

    Bu, kodu sürekli olarak değiştirdiğiniz, hata alıp hata giderdiğiniz, geliştirme sunucusunu durdurup yeniden başlattığınız vb. **geliştirme** aşamalarının tam tersidir.
    
    ## Deployment Stratejileri
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:46:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. operator/pkg/tpath/struct_test.go

    	}{
    		{
    			desc: "GetStructItem",
    			nodeYAML: `
    a: va
    b: vb
    c:
      d: vd
      e:
        f: vf
    g:
      h:
      - i: vi
        j: vj
        k:
          l:
            m: vm
            n: vn
    `,
    			path: "c",
    			wantYAML: `
    d: vd
    e:
      f: vf
    `,
    			wantFound: true,
    		},
    		{
    			desc: "GetSliceEntryItem",
    			nodeYAML: `
    a: va
    b: vb
    c:
      d: vd
      e:
        f: vf
    g:
      h:
      - i: vi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/text/tabwriter/tabwriter_test.go

    		"16b",
    		100, 100, 0, '\t', DiscardEmptyColumns,
    		"a\vb\v\vd\n" +
    			"a\vb\v\vd\ve\n" +
    			"a\n" +
    			"a\vb\vc\vd\n" +
    			"a\vb\vc\vd\ve\n",
    
    		"a\tb\td\n" +
    			"a\tb\td\te\n" +
    			"a\n" +
    			"a\tb\tc\td\n" +
    			"a\tb\tc\td\te\n",
    	},
    
    	{
    		"16b debug",
    		100, 100, 0, '\t', DiscardEmptyColumns | Debug,
    		"a\vb\v\vd\n" +
    			"a\vb\v\vd\ve\n" +
    			"a\n" +
    			"a\vb\vc\vd\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        // which will then be stretched to fit the viewport.
        const vb = svg.viewBox;
        const w1 = vb.baseVal.width;
        const w2 = initWidth / s;
        const h1 = vb.baseVal.height;
        const h2 = initHeight / s;
        vb.baseVal.width = w2;
        vb.baseVal.height = h2;
    
        // We also want to adjust vb.baseVal.x so that u.x remains at same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. docs/tr/docs/advanced/wsgi.md

    Bunun için `WSGIMiddleware` ile Flask, Django vb. WSGI uygulamanızı sarmalayabilir ve FastAPI'ya bağlayabilirsiniz.
    
    ## `WSGIMiddleware` Kullanımı
    
    `WSGIMiddleware`'ı projenize dahil edin.
    
    Ardından WSGI (örneğin Flask) uygulamanızı middleware ile sarmalayın.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:49:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. docs/tr/docs/tutorial/static-files.md

    Bu, bir `APIRouter` kullanmaktan farklıdır çünkü bağlanmış bir uygulama tamamen bağımsızdır. Ana uygulamanızın OpenAPI ve dokümanlar, bağlanmış uygulamadan hiçbir şey içermez, vb.
    
    [Advanced User Guide](../advanced/index.md){.internal-link target=_blank} bölümünde daha fazla bilgi edinebilirsiniz.
    
    ## Detaylar
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 23:57:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. docs/tr/docs/how-to/general.md

    ## OpenAPI Meta Verileri - Dokümantasyon
    
    OpenAPI şemanıza lisans, sürüm, iletişim vb. meta veriler eklemek için, [Tutorial - Metadata and Docs URLs](../tutorial/metadata.md){.internal-link target=_blank} sayfasını okuyun.
    
    ## OpenAPI Bağlantı Özelleştirme
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/math/big/int_test.go

    		temp.Set(Ub)
    		Ub.Mul(Ub, q)
    		Ub.Sub(Ua, Ub)
    		Ua.Set(temp)
    
    		// Va, Vb = Vb, Va-q*Vb
    		temp.Set(Vb)
    		Vb.Mul(Vb, q)
    		Vb.Sub(Va, Vb)
    		Va.Set(temp)
    	}
    	return A, Ua, Va
    }
    
    func checkLehmerGcd(aBytes, bBytes []byte) bool {
    	a := new(Int).SetBytes(aBytes)
    	b := new(Int).SetBytes(bBytes)
    
    	if a.Sign() <= 0 || b.Sign() <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top