Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 660 for wire (0.14 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    func (p *parser) readRawEvent(flags uint, ev *rawEvent) error {
    	// The number of arguments is encoded using two bits and can thus only
    	// represent the values 0–3. The value 3 (on the wire) indicates that
    	// arguments are prefixed by their byte length, to encode >=3 arguments.
    	const inlineArgs = 3
    
    	// Read event type and number of arguments (1 byte).
    	b, ok := p.readByte()
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    }
    
    // sdsPath: is the path to the mesh-wide workload sds uds path, and it is assumed that if this path is unset, that sds is
    // disabled mesh-wide
    // metadata: map of miscellaneous configuration values sent from the Envoy instance back to Pilot, could include the field
    //
    // Below is a table of potential scenarios for the gateway configuration:
    //
    // TLS mode      | Mesh-wide SDS | Ingress SDS | Resulting Configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Use-cases that are like kubelets may need to customize this.
    	RequestInfoResolver apirequest.RequestInfoResolver
    	// Serializer is required and provides the interface for serializing and converting objects to and from the wire
    	// The default (api.Codecs) usually works fine.
    	Serializer runtime.NegotiatedSerializer
    	// OpenAPIConfig will be used in generating OpenAPI spec. This is nil by default. Use DefaultOpenAPIConfig for "working" defaults.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

      3309228                     9 files
    ----
    
    Actionable tasks should be wired to lifecycle tasks so that a developer only needs to run lifecycle tasks.
    
    So far, we called our new task directly.
    Let's wire it to a lifecycle task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/settings.md

    Dann könnten Sie dieses Python-Programm aufrufen:
    
    <div class="termy">
    
    ```console
    // Hier legen wir die Umgebungsvariable noch nicht fest
    $ python main.py
    
    // Da wir die Umgebungsvariable nicht festgelegt haben, erhalten wir den Standardwert
    
    Hello World from Python
    
    // Aber wenn wir zuerst eine Umgebungsvariable erstellen
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/body-nested-models.md

    ## Bodys mit beliebigen `dict`s
    
    Sie können einen Body auch als `dict` deklarieren, mit Schlüsseln eines Typs und Werten eines anderen Typs.
    
    So brauchen Sie vorher nicht zu wissen, wie die Feld-/Attribut-Namen lauten (wie es bei Pydantic-Modellen der Fall wäre).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/path-params.md

    Sie verwenden das also wie folgt:
    
    ```Python hl_lines="6"
    {!../../../docs_src/path_params/tutorial004.py!}
    ```
    
    !!! tip "Tipp"
        Der Parameter könnte einen führenden Schrägstrich (`/`) haben, wie etwa in `/home/johndoe/myfile.txt`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:59 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/server-workers.md

    ```
    
    </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:
    
            ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/security/oauth2-jwt.md

    Wie Sie sie verwenden und wie sie in **FastAPI** integriert sind, erfahren Sie später im **Handbuch für fortgeschrittene Benutzer**.
    
    ## Zusammenfassung
    
    Mit dem, was Sie bis hier gesehen haben, können Sie eine sichere **FastAPI**-Anwendung mithilfe von Standards wie OAuth2 und JWT einrichten.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:06 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/security/simple-oauth2.md

    * Eine optionale `client_id` (benötigen wir für unser Beispiel nicht).
    * Ein optionales `client_secret` (benötigen wir für unser Beispiel nicht).
    
    !!! info
        `OAuth2PasswordRequestForm` ist keine spezielle Klasse für **FastAPI**, so wie `OAuth2PasswordBearer`.
    
        `OAuth2PasswordBearer` lässt **FastAPI** wissen, dass es sich um ein Sicherheitsschema handelt. Daher wird es auf diese Weise zu OpenAPI hinzugefügt.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top