Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for machines (0.23 sec)

  1. docs/sts/etcd.md

    # etcd V3 Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.
    
    ## Get started
    
    ### 1. Prerequisites
    
    - Docker 18.03 or above, refer here for [installation](https://docs.docker.com/install/).
    
    ### 2. Start etcd
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 3.4K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    Linux containers run using the same Linux kernel of the host (machine, virtual machine, cloud server, etc). This just means that they are very lightweight (compared to full virtual machines emulating an entire operating system).
    
    This way, containers consume **little resources**, an amount comparable to running the processes directly (a virtual machine would consume much more).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    ### Server Memory
    
    For example, if your code loads a Machine Learning model with **1 GB in size**, when you run one process with your API, it will consume at least 1 GB of RAM. And if you start **4 processes** (4 workers), each will consume 1 GB of RAM. So in total, your API will consume **4 GB of RAM**.
    
    And if your remote server or virtual machine only has 3 GB of RAM, trying to load more than 4 GB of RAM will cause problems. 🚨
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18K bytes
    - Viewed (0)
  4. CITATION.cff

    title: TensorFlow, Large-scale machine learning on heterogeneous systems
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 06 15:26:23 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  5. docs/integrations/veeam/README.md

    ### Create a backup job
    
    #### Backup Virtual Machines with Veeam Backup and Replication
    
    - Under Home > Jobs > Backup in Navigation Pane, click on Backup Job button in the ribbon and choose Virtual Machine. Follow the on screen wizard.
    
    - On the Storage screen, choose the Scale-out Backup Repository that was configured previously.
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 5.4K bytes
    - Viewed (0)
  6. docs/ko/docs/deployment/docker.md

    μ»¨ν…Œμ΄λ„ˆλ₯Ό μ‚¬μš©ν•˜μ§€ μ•Šκ³ μ„œλŠ”, μ–΄ν”Œλ¦¬μΌ€μ΄μ…˜μ„ κ΅¬λ™ν•˜κ³  μž¬μ‹œμž‘ν•˜λŠ” 것이 맀우 번거둭고 μ–΄λ €μšΈ 수 μžˆμŠ΅λ‹ˆλ‹€. ν•˜μ§€λ§Œ **μ»¨ν…Œμ΄λ„ˆλ₯Ό μ‚¬μš©ν•œλ‹€λ©΄** λŒ€λΆ€λΆ„μ˜ κ²½μš°μ— 이런 κΈ°λŠ₯은 기본적으둜 ν¬ν•¨λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€. ✨
    
    ## 볡제 - ν”„λ‘œμ„ΈμŠ€ 개수
    
    λ§Œμ•½ μ—¬λŸ¬λΆ„μ΄ **μΏ λ²„λ„€ν‹°μŠ€**와 λ¨Έμ‹  <abbr title="A group of machines that are configured to be connected and work together in some way.">ν΄λŸ¬μŠ€ν„°</abbr>, 도컀 μŠ€μ™ λͺ¨λ“œ, λ…Έλ§ˆλ“œ, λ˜λŠ” λ‹€λ₯Έ μ—¬λŸ¬ λ¨Έμ‹  μœ„μ— λΆ„μ‚° μ»¨ν…Œμ΄λ„ˆλ₯Ό κ΄€λ¦¬ν•˜λŠ” λ³΅μž‘ν•œ μ‹œμŠ€ν…œμ„ 닀루고 μžˆλ‹€λ©΄, μ—¬λŸ¬λΆ„μ€ 각 μ»¨ν…Œμ΄λ„ˆμ—μ„œ (μ›Œμ»€μ™€ ν•¨κ»˜ μ‚¬μš©ν•˜λŠ” Gunicorn 같은) **ν”„λ‘œμ„ΈμŠ€ λ§€λ‹ˆμ €** λŒ€μ‹  **ν΄λŸ¬μŠ€ν„° 레벨**μ—μ„œ **볡제λ₯Ό 닀루**κ³  싢을 κ²ƒμž…λ‹ˆλ‹€.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

     *
     * By orchestrating two different servers with the same port but different IP addresses, we can
     * test what OkHttp does when both are reachable, or if only one is reachable.
     *
     * This test only runs on host machines that have both IPv4 and IPv6 addresses for localhost.
     */
    @Timeout(30)
    class FastFallbackTest {
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  8. ci/official/README.md

        -   Uses `pycpp.sh`, `code_check_changed_files.sh`
    
    These "env" files match up with an environment matrix that roughly covers:
    
    -   Different Python versions
    -   Linux, MacOS, and Windows machines (these pool definitions are internal)
    -   x86 and arm64
    -   CPU-only, or with NVIDIA CUDA support (Linux only), or with TPUs
    
    ## How to Test Your Changes to TensorFlow
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  9. docs/distributed/README.md

    MinIO in distributed mode lets you pool multiple drives (even on different machines) into a single object storage server. As drives are distributed across several nodes, distributed MinIO can withstand multiple node failures and yet ensure full data protection.
    
    ## Why distributed MinIO?
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    case I can go back by railway,' she said to herself.  (Alice had
    been to the seaside once in her life, and had come to the general
    conclusion, that wherever you go to on the English coast you find
    a number of bathing machines in the sea, some children digging in
    the sand with wooden spades, then a row of lodging houses, and
    behind them a railway station.)  However, she soon made out that
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
Back to top