Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 101 for dipp (1.45 sec)

  1. src/net/netip/netip.go

    func ParseAddrPort(s string) (AddrPort, error) {
    	var ipp AddrPort
    	ip, port, v6, err := splitAddrPort(s)
    	if err != nil {
    		return ipp, err
    	}
    	port16, err := strconv.ParseUint(port, 10, 16)
    	if err != nil {
    		return ipp, errors.New("invalid port " + strconv.Quote(port) + " parsing " + strconv.Quote(s))
    	}
    	ipp.port = uint16(port16)
    	ipp.ip, err = ParseAddr(ip)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. docs/de/docs/deployment/manually.md

        <div class="termy">
    
        ```console
        $ pip install "uvicorn[standard]"
    
        ---> 100%
        ```
    
        </div>
    
        !!! tip "Tipp"
            Durch das Hinzufügen von `standard` installiert und verwendet Uvicorn einige empfohlene zusätzliche Abhängigkeiten.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    						if pos+2 > len(src) {
    							return truncated(src, mode)
    						}
    						mem.Disp = int64(binary.LittleEndian.Uint16(src[pos:]))
    						pos += 2
    					}
    
    					// Consume disp8 if present.
    					if mod == 1 {
    						if pos >= len(src) {
    							return truncated(src, mode)
    						}
    						mem.Disp = int64(int8(src[pos]))
    						pos++
    					}
    				}
    			} else {
    				haveMem = mod != 3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    				// Don't know why, sometimes this comes out with slashes, not backslashes.
    				wdir := strings.ReplaceAll(dir, "\\", "/")
    				out = replacePrefix(out, wdir, reldir)
    			}
    		}
    		dirP := filepath.Dir(dir)
    		if dir == dirP {
    			break
    		}
    		dir = dirP
    	}
    
    	// Fix up output referring to cgo-generated code to be more readable.
    	// Replace x.go:19[/tmp/.../x.cgo1.go:18] with x.go:19.
    	// Replace *[100]_Ctype_foo with *[100]C.foo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/body-updates.md

        {!> ../../../docs_src/body_updates/tutorial002_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="30-37"
        {!> ../../../docs_src/body_updates/tutorial002.py!}
        ```
    
    !!! tip "Tipp"
        Sie können tatsächlich die gleiche Technik mit einer HTTP `PUT` Operation verwenden.
    
        Aber dieses Beispiel verwendet `PATCH`, da dieses für solche Anwendungsfälle geschaffen wurde.
    
    !!! note "Hinweis"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/body.md

    <img src="/img/tutorial/body/image05.png">
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/first-steps.md

    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    Oder die exotischeren:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    !!! tip "Tipp"
        Es steht Ihnen frei, jede Operation (HTTP-Methode) so zu verwenden, wie Sie es möchten.
    
        **FastAPI** erzwingt keine bestimmte Bedeutung.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:16:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/body-nested-models.md

        {!> ../../../docs_src/body_nested_models/tutorial009_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/body_nested_models/tutorial009.py!}
        ```
    
    !!! tip "Tipp"
        Bedenken Sie, dass JSON nur `str` als Schlüssel unterstützt.
    
        Aber Pydantic hat automatische Datenkonvertierung.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func impl_Dirfd(dirp uintptr) (fd int, err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_DIRFD<<4, uintptr(dirp))
    	runtime.ExitSyscall()
    	fd = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_DirfdAddr() *(func(dirp uintptr) (fd int, err error))
    
    var Dirfd = enter_Dirfd
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/generate-clients.md

    <img src="/img/tutorial/generate-clients/image02.png">
    
    Sie erhalten außerdem automatische Vervollständigung für die zu sendende Payload:
    
    <img src="/img/tutorial/generate-clients/image03.png">
    
    !!! tip "Tipp"
        Beachten Sie die automatische Vervollständigung für `name` und `price`, welche in der FastAPI-Anwendung im `Item`-Modell definiert wurden.
    
    Sie erhalten Inline-Fehlerberichte für die von Ihnen gesendeten Daten:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top