Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for runCommand (0.04 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GitWrapper.java

         */
        public Map<String, String> listRemotes() {
            return runCommand("git", "remote", "-v").lines()
                .filter(l -> l.contains("(fetch)"))
                .map(line -> line.split("\\s+"))
                .collect(Collectors.toMap(parts -> parts[0], parts -> parts[1]));
        }
    
        String runCommand(String... args) {
            final ByteArrayOutputStream stdout = new ByteArrayOutputStream();
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 3K bytes
    - Click Count (0)
  2. helm/minio/templates/_helper_custom_command.txt

      return 0
    }
    
    # runCommand ($@)
    # Run custom mc command
    runCommand() {
      ${MC} "$@"
      return $?
    }
    
    # Try connecting to MinIO instance
    {{- if .Values.tls.enabled }}
    scheme=https
    {{- else }}
    scheme=http
    {{- end }}
    connectToMinio $scheme
    
    {{ if .Values.customCommands }}
    # Run custom commands
    {{- range .Values.customCommands }}
    runCommand {{ .command }}
    {{- end }}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sat Feb 19 20:34:14 GMT 2022
    - 1.4K bytes
    - Click Count (0)
Back to Top