Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for moduw (0.07 sec)

  1. docs/de/docs/deployment/server-workers.md

    [19515] [INFO] Application startup complete.
    ```
    
    </div>
    
    Sehen wir uns an, was jede dieser Optionen bedeutet:
    
    * `main:app`: Das ist die gleiche Syntax, die auch von Uvicorn verwendet wird. `main` bedeutet das Python-Modul mit dem Namen `main`, also eine Datei `main.py`. Und `app` ist der Name der Variable, welche die **FastAPI**-Anwendung ist.
        * Stellen Sie sich einfach vor, dass `main:app` einer Python-`import`-Anweisung wie der folgenden entspricht:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	ACNTLZWCC
    	ACRAND
    	ACRANDN
    	ACREQV
    	ACRNAND
    	ACRNOR
    	ACROR
    	ACRORN
    	ACRXOR
    	ADIVW
    	ADIVWCC
    	ADIVWVCC
    	ADIVWV
    	ADIVWU
    	ADIVWUCC
    	ADIVWUVCC
    	ADIVWUV
    	AMODUD
    	AMODUW
    	AMODSD
    	AMODSW
    	AEQV
    	AEQVCC
    	AEXTSB
    	AEXTSBCC
    	AEXTSH
    	AEXTSHCC
    	AFABS
    	AFABSCC
    	AFADD
    	AFADDCC
    	AFADDS
    	AFADDSCC
    	AFCMPO
    	AFCMPU
    	AFCTIW
    	AFCTIWCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    }
    func rewriteValuePPC64_OpMod32u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Mod32u x y)
    	// cond: buildcfg.GOPPC64 >= 9
    	// result: (MODUW x y)
    	for {
    		x := v_0
    		y := v_1
    		if !(buildcfg.GOPPC64 >= 9) {
    			break
    		}
    		v.reset(OpPPC64MODUW)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Mod32u x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/settings.md

    Der `app_name` wäre `"ChimichangApp"`.
    
    Und `items_per_user` würde seinen Standardwert von `50` behalten.
    
    ## Einstellungen in einem anderen Modul
    
    Sie könnten diese Einstellungen in eine andere Moduldatei einfügen, wie Sie in [Größere Anwendungen – mehrere Dateien](../tutorial/bigger-applications.md){.internal-link target=_blank} gesehen haben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. docs/pl/docs/index.md

    ```
    
    </div>
    
    <details markdown="1">
    <summary>O komendzie <code>uvicorn main:app --reload</code>...</summary>
    Komenda `uvicorn main:app` odnosi się do:
    
    * `main`: plik `main.py` ("moduł" w Pythonie).
    * `app`: obiekt stworzony w `main.py` w lini `app = FastAPI()`.
    * `--reload`: spraw by serwer resetował się po każdej zmianie w kodzie. Używaj tego tylko w środowisku deweloperskim.
    
    </details>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. docs/hu/docs/index.md

    ```
    
    </div>
    
    <details markdown="1">
    <summary>A parancsról <code>uvicorn main:app --reload</code>...</summary>
    
    A `uvicorn main:app` parancs a következőre utal:
    
    * `main`: fájl `main.py` (a Python "modul").
    * `app`: a `main.py`-ban a `app = FastAPI()` sorral létrehozott objektum.
    * `--reload`: kód változtatás esetén újra indítja a szervert. Csak fejlesztés közben használandó.
    
    </details>
    
    ### Ellenőrizd
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. docs/de/docs/index.md

    </div>
    
    <details markdown="1">
    <summary>Was macht der Befehl <code>uvicorn main:app --reload</code> ...</summary>
    
    Der Befehl `uvicorn main:app` bezieht sich auf:
    
    * `main`: die Datei `main.py` (das Python-„Modul“).
    * `app`: das Objekt, das innerhalb von `main.py` mit der Zeile `app = FastAPI()` erzeugt wurde.
    * `--reload`: lässt den Server nach Codeänderungen neu starten. Tun Sie das nur während der Entwicklung.
    
    </details>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/math/big/nat_test.go

    	for i, test := range tests {
    		in, _ := new(Int).SetString(test.in, 10)
    		d, _ := new(Int).SetString(test.dividend, 10)
    		out, _ := new(Int).SetString(test.out, 10)
    
    		r := in.abs.modW(d.abs[0])
    		if r != out.abs[0] {
    			t.Errorf("#%d failed: got %d want %s", i, r, out)
    		}
    	}
    }
    
    func TestModW(t *testing.T) {
    	if _W >= 32 {
    		runModWTests(t, modWTests32)
    	}
    	if _W >= 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. docs/en/data/external_links.yml

    scikit-learn-Modells mit ONNX und FastAPI - author: Felix Schürmeyer author_link: https://hellocoding.de/autor/felix-schuermeyer/ link: https://hellocoding.de/blog/coding-language/python/fastapi title: REST-API Programmieren mittels Python und dem FastAPI Modul Japanese: - author: '@bee2' author_link: https://qiita.com/bee2 link: https://qiita.com/bee2/items/75d9c0d7ba20e7a4a0e9 title: '[FastAPI] Python製のASGI Web フレームワーク FastAPIに入門する' - author: '@bee2' author_link: https://qiita.com/bee2 link: https://qi...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/math/big/natdiv.go

    		return
    	case m == 0:
    		q = z[:0] // result is 0
    		return
    	}
    	// m > 0
    	z = z.make(m)
    	r = divWVW(z, 0, x, y)
    	q = z.norm()
    	return
    }
    
    // modW returns x % d.
    func (x nat) modW(d Word) (r Word) {
    	// TODO(agl): we don't actually need to store the q value.
    	var q nat
    	q = q.make(len(x))
    	return divWVW(q, 0, x, d)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top