Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 537 for environment (0.08 sec)

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

    # Environment Variables
    
    /// tip
    
    If you already know what "environment variables" are and how to use them, feel free to skip this.
    
    ///
    
    An environment variable (also known as "**env var**") is a variable that lives **outside** of the Python code, in the **operating system**, and could be read by your Python code (or by other programs as well).
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Sep 08 20:36:53 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. docs/nl/docs/environment-variables.md

    <div class="termy">
    
    ```console
    $ C:\opt\custompython\bin\python
    ```
    
    </div>
    
    ////
    
    Deze informatie is handig wanneer je meer wilt weten over [virtuele omgevingen](virtual-environments.md){.internal-link target=_blank}.
    
    ## Conclusion
    
    Hiermee heb je basiskennis van wat **omgevingsvariabelen** zijn en hoe je ze in Python kunt gebruiken.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 20 11:13:32 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. docs/pt/docs/environment-variables.md

    <div class="termy">
    
    ```console
    $ C:\opt\custompython\bin\python
    ```
    
    </div>
    
    ////
    
    Essas informações serão úteis ao aprender sobre [Ambientes Virtuais](virtual-environments.md){.internal-link target=_blank}.
    
    ## Conclusão
    
    Com isso, você deve ter uma compreensão básica do que são **variáveis ​​de ambiente** e como usá-las em Python.
    
    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/ru/docs/environment-variables.md

    <div class="termy">
    
    ```console
    $ C:\opt\custompython\bin\python
    ```
    
    </div>
    
    ////
    
    Эта информация будет полезна при изучении [Виртуальных окружений](virtual-environments.md){.internal-link target=_blank}.
    
    ## Вывод
    
    Благодаря этому вы должны иметь базовое представление о том, что такое **переменные окружения** и как использовать их в Python.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 15 11:38:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. build-logic-settings/build-environment/src/main/kotlin/gradlebuild.build-environment.settings.gradle.kts

    Anže Sodja <******@****.***> 1721979852 +0200
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jul 26 07:44:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild.verify-build-environment.gradle.kts

    Benjamin Muskalla <******@****.***> 1607622648 +0100
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Feb 01 09:48:30 UTC 2021
    - 941 bytes
    - Viewed (0)
  7. docs/en/docs/virtual-environments.md

    </div>
    
    ////
    
    That command will create or modify some [environment variables](environment-variables.md){.internal-link target=_blank} that will be available for the next commands.
    
    One of those variables is the `PATH` variable.
    
    /// tip
    
    You can learn more about the `PATH` environment variable in the [Environment Variables](environment-variables.md#path-environment-variable){.internal-link target=_blank} section.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 03:16:23 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_env_crawler.properties

    lasta_di.smart.deploy.mode = warm
    
    # Is development environment here? (used for various purpose, you should set false if unknown)
    development.here = false
    
    # The title of environment (e.g. local or integration or production)
    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  9. src/main/resources/fess_env_thumbnail.properties

    lasta_di.smart.deploy.mode = warm
    
    # Is development environment here? (used for various purpose, you should set false if unknown)
    development.here = false
    
    # The title of environment (e.g. local or integration or production)
    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 12 13:38:57 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. ci/devinfra/docker/windows/Dockerfile

      Move-Item $zulu_extracted_path -Destination $zulu_root; \
      Remove-Item $zulu_zip; \
      $env:PATH = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\") + \";${zulu_root}\\bin\"; \
      [Environment]::SetEnvironmentVariable(\"PATH\", $env:PATH, \"Machine\"); \
      $env:JAVA_HOME = $zulu_root; \
      [Environment]::SetEnvironmentVariable(\"JAVA_HOME\", $env:JAVA_HOME, \"Machine\")
    
    # Point to the LLVM installation.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Aug 20 13:57:04 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top