- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 674 for processM (0.22 sec)
-
docs/pt/docs/deployment/server-workers.md
``` </div> //// A única opção nova aqui é `--workers` informando ao Uvicorn para iniciar 4 processos de trabalho. Você também pode ver que ele mostra o **PID** de cada processo, `27365` para o processo pai (este é o **gerenciador de processos**) e um para cada processo de trabalho: `27368`, `27369`, `27370` e `27367`. ## Conceitos de Implantação
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:01:03 UTC 2024 - 9K bytes - Viewed (0) -
cmd/metrics-v3-system-process.go
processIOReadBytesMD = NewCounterMD(processIOReadBytes, "Total bytes read by the process from the underlying storage system, /proc/[pid]/io read_bytes")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 20 17:55:03 UTC 2024 - 6.5K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
try { Process process = new ProcessBuilder().command(args).start(); CountDownLatch latch = new CountDownLatch(2); ByteArrayOutputStream stdout = connectStream(process.getInputStream(), latch); ByteArrayOutputStream stderr = connectStream(process.getErrorStream(), latch); process.waitFor(1, TimeUnit.MINUTES);
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
docs/pt/docs/deployment/concepts.md
Isso ainda é verdade. Então, para poder ter **vários processos** ao mesmo tempo, tem que haver um **único processo escutando em uma porta** que então transmite a comunicação para cada processo de trabalho de alguma forma. ### Memória por Processo
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:04:50 UTC 2024 - 19.7K bytes - Viewed (0) -
docs/pt/docs/deployment/manually.md
Esta é a ideia básica. Mas você provavelmente vai querer cuidar de algumas coisas adicionais, como: * Segurança - HTTPS * Executando na inicialização * Reinicializações * Replicação (o número de processos em execução) * Memória * Passos anteriores antes de começar
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:10:02 UTC 2024 - 8.2K bytes - Viewed (0) -
SECURITY.md
## Untrusted inputs during training and prediction TensorFlow supports a wide range of input data formats. For example it can process images, audio, videos, and text. There are several modules specialized in taking those formats, modifying them, and/or converting them to intermediate formats that can be processed by TensorFlow. These modifications and conversions are handled by a variety of libraries that
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 16:10:43 UTC 2024 - 9.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/background-tasks.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.3K bytes - Viewed (0) -
docs/en/docs/deployment/concepts.md
### Multiple Processes - An Example In this example, there's a **Manager Process** that starts and controls two **Worker Processes**. This Manager Process would probably be the one listening on the **port** in the IP. And it would transmit all the communication to the worker processes.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
ResultData target = resultData; for (final Ingester ingester : ingestFactory.getIngesters()) { try { target = ingester.process(target, responseData); } catch (final Exception e) { logger.warn("Failed to process Ingest[{}]", ingester.getClass().getSimpleName(), e); } } return target; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.3K bytes - Viewed (0) -
architecture/runtimes.md
gradlew --> daemon tapi --> daemon worker["Worker process"] daemon --> worker worker2["Worker process"] daemon --> worker2 worker3["Worker process"] daemon --> worker3 ``` These are all Java processes. Each process has a corresponding "runtime". All source code in Gradle is written to target one or more of these runtimes.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 2.3K bytes - Viewed (0)