Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 654 for cores (0.02 seconds)

  1. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/ParallelDetector.java

                                if (name.equals("physical id")) {
                                    currentID = value;
                                }
                                // Number of cores not including hyper-threading
                                if (name.equals("cpu cores")) {
                                    assert currentID.isEmpty() == false;
                                    socketToCore.put("currentID", Integer.valueOf(value));
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Aug 09 07:39:30 GMT 2021
    - 3.6K bytes
    - Click Count (0)
  2. benchmarks/README.md

    * Ensure to run enough warmup iterations to get the benchmark into a stable state. If you are unsure, don't change the defaults.
    * Avoid CPU migrations by pinning your benchmarks to specific CPU cores. On Linux you can use `taskset`.
    * Fix the CPU frequency to avoid Turbo Boost from kicking in and skewing your results. On Linux you can use `cpufreq-set` and the
      `performance` CPU governor.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon May 03 15:30:50 GMT 2021
    - 5.9K bytes
    - Click Count (0)
  3. docs/en/docs/deployment/server-workers.md

    When deploying applications you will probably want to have some **replication of processes** to take advantage of **multiple cores** and to be able to handle more requests.
    
    As you saw in the previous chapter about [Deployment Concepts](concepts.md), there are multiple strategies you can use.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  4. docs/compression/README.md

    streaming compression due to its stability and performance.
    
    This algorithm is specifically optimized for machine generated content.
    Write throughput is typically at least 500MB/s per CPU core,
    and scales with the number of available CPU cores.
    Decompression speed is typically at least 1GB/s.
    
    This means that in cases where raw IO is below these numbers
    compression will not only reduce disk usage but also help increase system throughput.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  5. docs/pt/docs/how-to/configure-swagger-ui.md

    {* ../../docs_src/configure_swagger_ui/tutorial002_py310.py hl[3] *}
    
    Essa configuração alteraria o tema de cores de destaque de sintaxe:
    
    <img src="/img/tutorial/extending-openapi/image04.png">
    
    ## Alterar parâmetros de UI padrão do Swagger { #change-default-swagger-ui-parameters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  6. docs/tr/docs/deployment/server-workers.md

    Uygulamaları deploy ederken, çok çekirdekten (multiple cores) faydalanmak ve daha fazla request'i karşılayabilmek için büyük olasılıkla process replikasyonu (birden fazla process) isteyeceksiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  7. docs/fr/docs/advanced/additional-status-codes.md

    # Codes HTTP supplémentaires { #additional-status-codes }
    
    Par défaut, **FastAPI** renverra les réponses à l'aide d'une structure de données `JSONResponse`, en plaçant la réponse de votre  *chemin d'accès* à l'intérieur de cette `JSONResponse`.
    
    Il utilisera le code HTTP par défaut ou celui que vous avez défini dans votre *chemin d'accès*.
    
    ## Codes HTTP supplémentaires { #additional-status-codes_1 }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/cors.md

    ## Mais informações { #more-info }
    
    Para mais informações sobre <abbr title="Cross-Origin Resource Sharing">CORS</abbr>, consulte a [documentação do CORS da Mozilla](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS).
    
    /// note | Detalhes Técnicos
    
    Você também pode usar `from starlette.middleware.cors import CORSMiddleware`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/cors.md

    * `max_age` - 設定瀏覽器快取 CORS 回應的最長秒數。預設為 `600`。
    
    此中介軟體會回應兩種特定的 HTTP 請求類型...
    
    ### CORS 預檢請求 { #cors-preflight-requests }
    
    任何帶有 `Origin` 與 `Access-Control-Request-Method` 標頭的 `OPTIONS` 請求。
    
    在這種情況下,中介軟體會攔截傳入的請求並回應適當的 CORS 標頭,並回傳 `200` 或 `400`(僅供資訊參考)。
    
    ### 簡單請求 { #simple-requests }
    
    任何帶有 `Origin` 標頭的請求。在這種情況下,中介軟體會如常將請求往下傳遞,但會在回應上加入適當的 CORS 標頭。
    
    ## 更多資訊 { #more-info }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5K bytes
    - Click Count (0)
  10. docs/en/docs/advanced/additional-status-codes.md

    # Additional Status Codes { #additional-status-codes }
    
    By default, **FastAPI** will return the responses using a `JSONResponse`, putting the content you return from your *path operation* inside of that `JSONResponse`.
    
    It will use the default status code or the one you set in your *path operation*.
    
    ## Additional status codes { #additional-status-codes_1 }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2K bytes
    - Click Count (0)
Back to Top