Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 38 for PowerShell (0.51 seconds)

  1. .github/workflows/build-reusable.yml

          #- name: Enable Long Paths
          #  if: contains(inputs.runner, 'windows-x86')
          #  run: Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1
          #  shell: powershell
    
          - name: Checkout
            uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # ratchet:actions/checkout@v4
            env:
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Mar 28 04:33:01 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  2. maven-tests/mvnw.cmd

    @IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0)
    @SET __MVNW_CMD__=
    @SET __MVNW_ERROR__=
    @SET __MVNW_PSMODULEP_SAVE=%PSModulePath%
    @SET PSModulePath=
    @FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @(
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Sep 25 18:22:49 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  3. docs/en/docs/environment-variables.md

    $ export MY_NAME="Wade Wilson"
    
    // Then you could use it with other programs, like
    $ echo "Hello $MY_NAME"
    
    Hello Wade Wilson
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    // Create an env var MY_NAME
    $ $Env:MY_NAME = "Wade Wilson"
    
    // Use it with other programs, like
    $ echo "Hello $Env:MY_NAME"
    
    Hello Wade Wilson
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  4. docs/docker/README.md

      -e "MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \
      -v /mnt/data:/data \
      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    #### Windows (custom access and secret keys)
    
    ```powershell
    docker run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio1 \
      -e "MINIO_ROOT_USER=AKIAIOSFODNN7EXAMPLE" \
      -e "MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \
      -v D:\data:/data \
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  5. docs/en/docs/virtual-environments.md

    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ Get-Command python
    
    C:\Users\user\code\awesome-project\.venv\Scripts\python
    ```
    
    </div>
    
    ////
    
    That means that the `python` program that will be used is the one **in the virtual environment**.
    
    You use `which` in Linux and macOS and `Get-Command` in Windows PowerShell.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.1K bytes
    - Click Count (0)
  6. ci/official/envs/rbe

      if [[ "$TFCI_GITHUB_ACTIONS" != "true" ]]; then
        # Docker on Windows doesn't support the `host` networking mode, and so
        # port-forwarding is required for the container to detect it's running on GCE.
        export IP_ADDR=$(powershell -command "(Get-NetIPAddress -AddressFamily IPv4 -InterfaceAlias 'vEthernet (nat)').IPAddress")
        netsh interface portproxy add v4tov4 listenaddress=$IP_ADDR listenport=80 connectaddress=169.254.169.254 connectport=80
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Mar 28 04:33:01 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  7. docs/ko/docs/environment-variables.md

    ```console
    // 환경 변수 MY_NAME을 다음과 같이 생성할 수 있습니다
    $ export MY_NAME="Wade Wilson"
    
    // 그런 다음 다른 프로그램과 함께 사용할 수 있습니다. 예:
    $ echo "Hello $MY_NAME"
    
    Hello Wade Wilson
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    // 환경 변수 MY_NAME 생성
    $ $Env:MY_NAME = "Wade Wilson"
    
    // 다른 프로그램과 함께 사용하기. 예:
    $ echo "Hello $Env:MY_NAME"
    
    Hello Wade Wilson
    ```
    
    </div>
    
    ////
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9K bytes
    - Click Count (0)
  8. ci/official/libtensorflow.sh

      # TODO(b/389744576): Remove when gsutil is made to work properly on MSYS2.
      if [[ $(uname -s) != MSYS_NT* ]]; then
        gsutil cp "$TFCI_OUTPUT_DIR"/*.tar.gz "$TFCI_ARTIFACT_STAGING_GCS_URI"
      else
        powershell -command "gsutil cp '$TFCI_OUTPUT_DIR/*.zip' '$TFCI_ARTIFACT_STAGING_GCS_URI'"
      fi
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Jan 24 20:17:08 GMT 2025
    - 2K bytes
    - Click Count (0)
  9. ci/official/utilities/setup_docker.sh

        # Stop non-essential indexing and link tracking services that
        # may lock new files or symlinks.
        # They may be causing sporadic "Permission denied" errors during Bazel builds.
        # b/461500885
        docker exec tf powershell -NoProfile -Command 'Stop-Service -Name SysMain,DiagTrack -Force -ErrorAction SilentlyContinue'
      fi
    
    fi
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Nov 20 17:33:55 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  10. ci/official/envs/windows_x86_2022

    TFCI_OUTPUT_WIN_DOCKER_DIR='C:/drive_t'
    
    # Docker on Windows doesn't support the `host` networking mode, and so
    # port-forwarding is required for the container to detect it's running on GCE.
    export IP_ADDR=$(powershell -command "(Get-NetIPAddress -AddressFamily IPv4 -InterfaceAlias 'vEthernet (nat)').IPAddress")
    netsh interface portproxy add v4tov4 listenaddress=$IP_ADDR listenport=80 connectaddress=169.254.169.254 connectport=80
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Nov 06 19:44:26 GMT 2025
    - 2.7K bytes
    - Click Count (0)
Back to Top