Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for yi (0.02 sec)

  1. docs/yo/docs/index.md

    <small>* iṣiro yi da lori àwọn idanwo tí ẹgbẹ ìdàgbàsókè FastAPI ṣe, nígbàtí wọn kọ àwọn ohun elo iṣelọpọ kóòdù pẹ̀lú rẹ.</small>
    
    ## Àwọn onígbọ̀wọ́
    
    <!-- sponsors -->
    
    {% if sponsors %}
    {% for sponsor in sponsors.gold -%}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    		// Look under the name, but not under type parameters (go.dev/issue/60564).
    		xi := asInterface(x)
    		yi := asInterface(y)
    		// If we have two interfaces, check the type terms for equivalence,
    		// and unify common methods if possible.
    		if xi != nil && yi != nil {
    			xset := xi.typeSet()
    			yset := yi.typeSet()
    			if xset.comparable != yset.comparable {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/cookie-params.md

    # Çerez (Cookie) Parametreleri
    
    `Query` (Sorgu) ve `Path` (Yol) parametrelerini tanımladığınız şekilde çerez parametreleri tanımlayabilirsiniz.
    
    ## Import `Cookie`
    
    Öncelikle, `Cookie`'yi projenize dahil edin:
    
    === "Python 3.10+"
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/cookie_params/tutorial001_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="3"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 14 19:35:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. docs/language_names.yml

    ts: Xitsonga
    tt: татар теле
    tw: Twi
    ty: Reo Tahiti
    ug: ئۇيغۇرچە‎
    uk: українська мова
    ur: اردو
    uz: Ўзбек
    ve: Tshivenḓa
    vi: Tiếng Việt
    vo: Volapük
    wa: walon
    wo: Wollof
    xh: isiXhosa
    yi: ייִדיש
    yo: Yorùbá
    za: Saɯ cueŋƅ
    zh: 简体中文
    zh-hant: 繁體中文
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/math/big/nat.go

    	if mbits := (logM - 1) & (_W - 1); mbits != 0 {
    		mmask = (1 << mbits) - 1
    	}
    	if i > mtop {
    		i = mtop
    	}
    	advance := false
    	z = z.setWord(1)
    	for ; i >= 0; i-- {
    		yi := y[i]
    		if i == mtop {
    			yi &= mmask
    		}
    		for j := 0; j < _W; j += n {
    			if advance {
    				// Account for use of 4 bits in previous iteration.
    				// Unrolled loop for significant performance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. docs/tr/docs/tutorial/first-steps.md

    Ayrıca, API'ınızla iletişim kuracak önyüz, mobil veya IoT uygulamaları gibi istemciler için otomatik olarak kod oluşturabilirsiniz.
    
    ## Adım Adım Özetleyelim
    
    ### Adım 1: `FastAPI` Projemize Dahil Edelim
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI`, API'niz için tüm işlevselliği sağlayan bir Python sınıfıdır.
    
    !!! note "Teknik Detaylar"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Feb 08 13:10:55 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/abt/avlint32_test.go

    	return y
    }
    func alwaysNil(x, y interface{}) interface{} {
    	return nil
    }
    func smaller(x, y interface{}) interface{} {
    	xi, _ := strconv.Atoi(fmt.Sprint(x))
    	yi, _ := strconv.Atoi(fmt.Sprint(y))
    	if xi < yi {
    		return x
    	}
    	return y
    }
    func assert(t *testing.T, expected, got *T, what string) {
    	s, _ := got.wellFormed()
    	if s != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  8. src/image/jpeg/writer.go

    		sy := p.Y + j
    		if sy > ymax {
    			sy = ymax
    		}
    		for i := 0; i < 8; i++ {
    			sx := p.X + i
    			if sx > xmax {
    				sx = xmax
    			}
    			yi := m.YOffset(sx, sy)
    			ci := m.COffset(sx, sy)
    			yBlock[8*j+i] = int32(m.Y[yi])
    			cbBlock[8*j+i] = int32(m.Cb[ci])
    			crBlock[8*j+i] = int32(m.Cr[ci])
    		}
    	}
    }
    
    // scale scales the 16x16 region represented by the 4 src blocks to the 8x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. src/math/big/nat_test.go

    		} else {
    			out = natFromString(test.out64)
    		}
    
    		// t.Logf("#%d: len=%d\n", i, len(m))
    
    		// check output in table
    		xi := &Int{abs: x}
    		yi := &Int{abs: y}
    		mi := &Int{abs: m}
    		p := new(Int).Mod(new(Int).Mul(xi, new(Int).Mul(yi, new(Int).ModInverse(new(Int).Lsh(one, uint(len(m))*_W), mi))), mi)
    		if out.cmp(p.abs.norm()) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Upper <type 1>;
    const UpperCase = 0 ;
    const UpperLower = 1114112' ;
    var Vai <type 1>;
    var Variation_Selector <type 1>;
    const Version = "9.0.0";
    var Warang_Citi <type 1>;
    var White_Space <type 1>;
    var Yi <type 1>;
    var Z <type 1>;
    var Zl <type 1>;
    var Zp <type 1>;
    var Zs <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
Back to top