Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for dipp (0.05 sec)

  1. docs/de/docs/advanced/security/index.md

    Neben den in [Tutorial – Benutzerhandbuch: Sicherheit](../../tutorial/security/index.md){.internal-link target=_blank} behandelten Funktionen gibt es noch einige zusätzliche Funktionen zur Handhabung der Sicherheit.
    
    !!! tip "Tipp"
        Die nächsten Abschnitte sind **nicht unbedingt „fortgeschritten“**.
    
        Und es ist möglich, dass für Ihren Anwendungsfall die Lösung in einem davon liegt.
    
    ## Lesen Sie zuerst das Tutorial
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:40 UTC 2024
    - 799 bytes
    - Viewed (0)
  2. cmd/import-boss/main.go

    				if !matching {
    					continue
    				}
    				matched = true
    				klog.V(6).Infof("selector %v matches %q", rule.SelectorRegexp, imp)
    
    				disp := rule.Evaluate(imp)
    				if disp == DepAllowed {
    					decided = true
    					break // no further rules, next file
    				} else if disp == DepForbidden {
    					errs = append(errs, fmt.Errorf("%q %s %q is forbidden by %s", pkg.PkgPath, relate(imp), imp, file.path))
    					decided = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_amd64.s

    	RORXL    $25, e, y0;                  \ // y0 = e >> 25				// S1A
    	RORXL    $11, e, y1;                  \ // y1 = e >> 11				// S1B
    	;                                     \
    	ADDL     (disp + 0*4)(SP)(SRND*1), h; \ // h = k + w + h        // disp = k + w
    	ORL      c, y3;                       \ // y3 = a|c				// MAJA
    	VPALIGNR $4, XDWORD2, XDWORD3, XTMP0; \ // XTMP0 = W[-7]
    	MOVL     f, y2;                       \ // y2 = f				// CH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. docs/de/docs/how-to/graphql.md

    Sie können normale FastAPI-*Pfadoperationen* mit GraphQL in derselben Anwendung kombinieren.
    
    !!! tip "Tipp"
        **GraphQL** löst einige sehr spezifische Anwendungsfälle.
    
        Es hat **Vorteile** und **Nachteile** im Vergleich zu gängigen **Web-APIs**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. docs/de/docs/deployment/versions.md

    !!! tip "Tipp"
        Der „PATCH“ ist die letzte Zahl, zum Beispiel ist in `0.2.3` die PATCH-Version `3`.
    
    Sie sollten also in der Lage sein, eine Version wie folgt anzupinnen:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Nicht abwärtskompatible Änderungen und neue Funktionen werden in „MINOR“-Versionen hinzugefügt.
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. docs/de/docs/reference/request.md

    Sie können es direkt von `fastapi` importieren:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip "Tipp"
        Wenn Sie Abhängigkeiten definieren möchten, die sowohl mit HTTP als auch mit WebSockets kompatibel sein sollen, können Sie einen Parameter definieren, der eine `HTTPConnection` anstelle eines `Request` oder eines `WebSocket` akzeptiert.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Feb 19 15:53:18 UTC 2024
    - 596 bytes
    - Viewed (0)
  7. docs/de/docs/advanced/behind-a-proxy.md

    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy auf http://0.0.0.0:9999/api/v1/app"]
    server["Server auf http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip "Tipp"
        Die IP `0.0.0.0` wird üblicherweise verwendet, um anzudeuten, dass das Programm alle auf diesem Computer/Server verfügbaren IPs abhört.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/xfcc_authenticator.go

    	// Always trust local host addresses.
    	return netip.MustParseAddr(ip).IsLoopback()
    }
    
    func isInRange(addr, cidr string) bool {
    	if strings.Contains(cidr, "/") {
    		ipp, err := netip.ParsePrefix(cidr)
    		if err != nil {
    			return false
    		}
    
    		return ipp.Contains(netip.MustParseAddr(addr))
    	}
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/bigger-applications.md

        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="1  4-6" title="app/dependencies.py"
        {!> ../../../docs_src/bigger_applications/app/dependencies.py!}
        ```
    
    !!! tip "Tipp"
        Um dieses Beispiel zu vereinfachen, verwenden wir einen erfundenen Header.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/security/http-basic-auth.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="2  7  11"
        {!> ../../../docs_src/security/tutorial006_an.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="2  6  10"
        {!> ../../../docs_src/security/tutorial006.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top