Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for MacOs (0.02 sec)

  1. docs/nl/docs/environment-variables.md

    De waarde van de variabele `PATH` is een lange string die bestaat uit mappen die gescheiden worden door een dubbele punt `:` op Linux en macOS en door een puntkomma `;` op Windows.
    
    De omgevingsvariabele `PATH` zou er bijvoorbeeld zo uit kunnen zien:
    
    //// tab | Linux, macOS
    
    ```plaintext
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 20 11:13:32 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. docs/en/docs/environment-variables.md

    The value of the variable `PATH` is a long string that is made of directories separated by a colon `:` on Linux and macOS, and by a semicolon `;` on Windows.
    
    For example, the `PATH` environment variable could look like this:
    
    //// tab | Linux, macOS
    
    ```plaintext
    /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Sep 08 20:36:53 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. docs/pt/docs/environment-variables.md

    O valor da variável `PATH` é uma longa string composta por diretórios separados por dois pontos `:` no Linux e macOS, e por ponto e vírgula `;` no Windows.
    
    Por exemplo, a variável de ambiente `PATH` poderia ter esta aparência:
    
    //// tab | Linux, macOS
    
    ```plaintext
    /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:36:42 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. docs/en/docs/virtual-environments.md

    ///
    
    Activating a virtual environment adds its path `.venv/bin` (on Linux and macOS) or `.venv\Scripts` (on Windows) to the `PATH` environment variable.
    
    Let's say that before activating the environment, the `PATH` variable looked like this:
    
    //// tab | Linux, macOS
    
    ```plaintext
    /usr/bin:/bin:/usr/sbin:/sbin
    ```
    
    That means that the system would look for programs in:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 03:16:23 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. docs/ru/docs/environment-variables.md

    Значение переменной `PATH` - это длинная строка, состоящая из каталогов, разделенных двоеточием `:` в Linux и macOS, и точкой с запятой `;` в Windows.
    
    Например, переменная окружения `PATH` может выглядеть следующим образом:
    
    //// tab | Linux, macOS
    
    ```plaintext
    /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 15 11:38:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. .bazelrc

    build:android --define=xnn_enable_avxvnniint8=false
    
    # Sets the default Apple platform to macOS.
    build:macos --apple_platform_type=macos
    
    # gRPC on MacOS requires this #define
    build:macos --copt=-DGRPC_BAZEL_BUILD
    
    # Avoid hitting command line argument limit
    build:macos --features=archive_param_file
    
    # Settings for MacOS on ARM CPUs.
    build:macos_arm64 --cpu=darwin_arm64
    build:macos_arm64 --macos_minimum_os=11.0
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 28 22:02:31 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. docs/pt/docs/virtual-environments.md

    ///
    
    A ativação de um ambiente virtual adiciona seu caminho `.venv/bin` (no Linux e macOS) ou `.venv\Scripts` (no Windows) à variável de ambiente `PATH`.
    
    Digamos que antes de ativar o ambiente, a variável `PATH` estava assim:
    
    //// tab | Linux, macOS
    
    ```plaintext
    /usr/bin:/bin:/usr/sbin:/sbin
    ```
    
    Isso significa que o sistema procuraria programas em:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:37:13 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/settings.md

    Sie können Umgebungsvariablen in der Shell erstellen und verwenden, ohne Python zu benötigen:
    
    //// tab | Linux, macOS, Windows Bash
    
    <div class="termy">
    
    ```console
    // Sie könnten eine Umgebungsvariable MY_NAME erstellen mittels
    $ export MY_NAME="Wade Wilson"
    
    // Dann könnten Sie diese mit anderen Programmen verwenden, etwa
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. .gitignore

    site
    .coverage*
    coverage.xml
    .netlify
    test.db
    log.txt
    Pipfile.lock
    env3.*
    env
    docs_build
    site_build
    venv
    docs.zip
    archive.zip
    
    # vim temporary files
    *~
    .*.sw?
    .cache
    
    # macOS
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Aug 16 16:56:19 UTC 2024
    - 269 bytes
    - Viewed (0)
  10. tensorflow/BUILD

            [],
        ),
        values = {
            "apple_platform_type": "macos",
            "cpu": "darwin",
        },
    )
    
    config_setting(
        name = "macos_x86_64_crosscompile",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:macos"],
            [],
        ),
        values = {
            "apple_platform_type": "macos",
            "cpu": "darwin_x86_64",
        },
    )
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 16 05:28:35 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top