Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 327 for clientset (0.11 sec)

  1. docs/de/docs/deployment/concepts.md

    1. Wenn Sie eine FastAPI-Anwendung verwenden und ein Serverprogramm wie Uvicorn verwenden, kann **ein einzelner Prozess** mehrere Clients gleichzeitig bedienen.
    2.  
    3. In vielen Fällen möchten Sie jedoch mehrere Prozesse gleichzeitig ausführen.
    4.  
    5. ### Mehrere Prozesse – Worker
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    1. * los datos de cliente que se envían a través de la red
    2. * los datos enviados por tu programa para ser recibidos por el cliente a través de la red
    3. * el contenido de un archivo en disco para ser leído por el sistema y entregado al programa
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 19 18:15:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/sql-databases.md

    1. Now we create a `HeroCreate` model, this is the one that will **validate** the data from the clients.
    2.  
    3. It has the same fields as `HeroBase`, and it also has `secret_name`.
    4.  
    5. Now, when the clients **create a new hero**, they will send the `secret_name`, it will be stored in the database, but those secret names won't be returned in the API to the clients.
    6.  
    7. /// tip
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. cmd/sftp-server.go

    1. },
    2. Extensions: make(map[string]string),
    3. }, nil
    4. }
    5.  
    6. func validateKey(c ssh.ConnMetadata, clientKey ssh.PublicKey) (err error) {
    7. if caPublicKey == nil {
    8. return errors.New("public key authority validation requested but no ca public key specified.")
    9. }
    10.  
    11. cert, ok := clientKey.(*ssh.Certificate)
    12. if !ok {
    13. return errSftpPublicKeyWithoutCert
    14. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 20 20:00:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/websockets.md

    1. ///
    2.  
    3. Damit können Sie den WebSocket verbinden und dann Nachrichten senden und empfangen:
    4.  
    5. <img src="/img/tutorial/websockets/image05.png">
    6.  
    7. ## Verbindungsabbrüche und mehreren Clients handhaben
    8.  
    9. Wenn eine WebSocket-Verbindung geschlossen wird, löst `await websocket.receive_text()` eine `WebSocketDisconnect`-Exception aus, die Sie dann wie in folgendem Beispiel abfangen und behandeln können.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. internal/grid/msg.go

    1. OpConnect Op = iota + 1
    2.  
    3. // OpConnectResponse is a response to a connect request.
    4. OpConnectResponse
    5.  
    6. // OpPing is a ping request.
    7. // If a mux id is specified that mux is pinged.
    8. // Clients send ping requests.
    9. OpPing
    10.  
    11. // OpPong is a OpPing response returned by the server.
    12. OpPong
    13.  
    14. // OpConnectMux will connect a new mux with optional payload.
    15. OpConnectMux
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jul 25 21:07:21 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/query-param-models.md

    1. ///
    2.  
    3. ```Python hl_lines="11"
    4. {!> ../../docs_src/query_param_models/tutorial002.py!}
    5. ```
    6.  
    7. ////
    8.  
    9. Caso um cliente tente enviar alguns dados **extras** nos **parâmetros de consulta**, eles receberão um retorno de **erro**.
    10.  
    11. Por exemplo, se o cliente tentar enviar um parâmetro de consulta `tool` com o valor `plumbus`, como:
    12.  
    13. ```http
    14. https://example.com/items/?limit=10&tool=plumbus
    15. ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 15 09:53:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/c/eager/abstract_operation.h

    1. //
    2. // WARNING: The destructor of this class is marked as protected to disallow
    3. // clients from directly destroying this object since it may manage it's own
    4. // lifetime through ref counting. Thus this must be allocated on the heap and
    5. // clients MUST call Release() in order to destroy an instance of this class.
    6. virtual void Release() = 0;
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/concepts.md

    1. With a FastAPI application, using a server program like the `fastapi` command that runs Uvicorn, running it once in **one process** can serve multiple clients concurrently.
    2.  
    3. But in many cases, you will want to run several worker processes at the same time.
    4.  
    5. ### Multiple Processes - Workers
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Sep 18 16:09:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemUtils.java

    1. import org.eclipse.aether.util.graph.manager.ClassicDependencyManager;
    2.  
    3. /**
    4. * A utility class to assist in setting up a Maven-like repository system. Note: This component is meant to
    5. * assist those clients that employ the repository system outside of an IoC container, Maven plugins should instead
    6. * always use regular dependency injection to acquire the repository system.
    7. *
    8. * @deprecated See {@link MavenSessionBuilderSupplier}
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top