Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for powershell (0.35 sec)

  1. src/cmd/go/testdata/script/build_acl_windows.txt

    go build -o $TMP\main.exe main.go
    
    # Read ACLs for the files.
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\exe-acl.txt
    exec powershell -Command 'Get-Acl main.go | Select -expand AccessToString'
    cp stdout $WORK\src-acl.txt
    cd $TMP
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\guest-acl.txt
    
    cd $WORK
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    Typical Gradle invocation:
    
    ----
    $ gradle build
    ----
    
    To run the Wrapper on a Linux or OSX machine:
    
    ----
    $ ./gradlew build
    ----
    
    To run the Wrapper on Windows PowerShell:
    
    ----
    $ .\gradlew.bat build
    ----
    
    The command is run in the same directory that the Wrapper is located in.
    If you want to run the command in a different directory, you must provide the relative path to the Wrapper:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_server_journal_windows.go

    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"context"
    	"fmt"
    	"os/exec"
    	"strings"
    )
    
    const powershellExe = "PowerShell.exe"
    
    // getLoggingCmd returns the powershell cmd and arguments for the given nodeLogQuery and boot
    func getLoggingCmd(n *nodeLogQuery, services []string) (string, []string, error) {
    	args := []string{
    		"-NonInteractive",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 15:54:36 UTC 2023
    - 2.5K bytes
    - Viewed (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 \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  5. mvnw.cmd

        )
        if "%MVNW_VERBOSE%" == "true" (
            echo Couldn't find %WRAPPER_JAR%, downloading it ...
            echo Downloading from: %WRAPPER_URL%
        )
    
        powershell -Command "&{"^
    		"$webclient = new-object System.Net.WebClient;"^
    		"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. cmd/kubelet/app/init_windows.go

    // (https://docs.microsoft.com/en-us/windows/win32/procthread/job-objects),
    // and specifies the priority class for the job object to the specified value.
    // A job object is used here so that any spawned processes such as powershell or
    // wmic are created at the specified thread priority class.
    // Running kubelet with above normal / high priority  can help improve
    // responsiveness on machines with high CPU utilization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 01:54:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. docs/tls/README.md

    Download and decompress the Windows version of GnuTLS from [here](http://www.gnutls.org/download.html).
    
    Use PowerShell to add the path of the extracted GnuTLS binary to the system path:
    
    ```
    setx path "%path%;C:\Users\MyUser\Downloads\gnutls-3.4.9-w64\bin"
    ```
    
    **Note:** PowerShell may need to be restarted for this change to take effect.
    
    #### 3.3.2 Generate a private key
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  8. .teamcity/mvnw.cmd

        )
        if "%MVNW_VERBOSE%" == "true" (
            echo Couldn't find %WRAPPER_JAR%, downloading it ...
            echo Downloading from: %DOWNLOAD_URL%
        )
    
        powershell -Command "&{"^
    		"$webclient = new-object System.Net.WebClient;"^
    		"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  9. src/os/exec/lp_windows.go

    			}
    			dotf, dotErr = f, &Error{file, ErrDot}
    		}
    	}
    
    	path := os.Getenv("path")
    	for _, dir := range filepath.SplitList(path) {
    		if dir == "" {
    			// Skip empty entries, consistent with what PowerShell does.
    			// (See https://go.dev/issue/61493#issuecomment-1649724826.)
    			continue
    		}
    
    		if f, err := findExecutable(filepath.Join(dir, file), exts); err == nil {
    			if dotErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. cluster/gce/windows/configure.ps1

        }
        else {
          Write-Host "Failed to retrieve value for $Key."
          return $null
        }
      }
    }
    
    # Fetches the value of $MetadataKey, saves it to C:\$Filename and imports it as
    # a PowerShell module.
    #
    # Note: this function depends on common.psm1.
    function FetchAndImport-ModuleFromMetadata {
      param (
        [parameter(Mandatory=$true)] [string]$MetadataKey,
        [parameter(Mandatory=$true)] [string]$Filename
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top