Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,167 for command1 (0.13 sec)

  1. 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 }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 19 20:34:14 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho_update_uuid.go

    	}
    
    	// Locate the portion of the binary containing the load commands.
    	cmdOffset := unsafe.Sizeof(exem.FileHeader)
    	if is64bit := exem.Magic == macho.Magic64; is64bit {
    		// mach_header_64 has one extra uint32.
    		cmdOffset += unsafe.Sizeof(exem.Magic)
    	}
    	if _, err := outf.Seek(int64(cmdOffset), 0); err != nil {
    		return err
    	}
    
    	// Read the load commands, looking for the LC_UUID cmd. If/when we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/CommandLineActionCreator.java

    /**
     * A factory for creating {@link Action}s from CLI commands.
     */
    public interface CommandLineActionCreator {
        /**
         * Configures the given action creator with a command-line parser.
         */
        void configureCommandLineParser(CommandLineParser parser);
    
        /**
         * Creates an executable action from the given command-line args.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/dist/main.go

    list [-json] [-broken]  list all supported platforms
    test [-h]               run Go test(s)
    version                 print Go version
    
    All commands take -v flags to emit extra information.
    `)
    	xexit(2)
    }
    
    // commands records the available commands.
    var commands = map[string]func(){
    	"banner":    cmdbanner,
    	"bootstrap": cmdbootstrap,
    	"clean":     cmdclean,
    	"env":       cmdenv,
    	"install":   cmdinstall,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. docs/fr/docs/contributing.md

    Lorsque vous utilisez le script à `./scripts/docs.py` avec la commande `live`, il n'affiche que les fichiers et les traductions disponibles pour la langue courante.
    
    Mais une fois que vous avez terminé, vous pouvez tester le tout comme il le ferait en ligne.
    
    Pour ce faire, il faut d'abord construire tous les documents :
    
    <div class="termy">
    
    ```console
    // Use the command "build-all", this will take a bit
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/util/documentation.go

    import (
    	"strings"
    )
    
    var (
    	// AlphaDisclaimer to be places at the end of description of commands in alpha release
    	AlphaDisclaimer = `
    		Alpha Disclaimer: this command is currently alpha.
    	`
    
    	// MacroCommandLongDescription provide a standard description for "macro" commands
    	MacroCommandLongDescription = LongDesc(`
    		This command is not meant to be run on its own. See list of available subcommands.
    	`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/completion_test.go

    	for _, shell := range shells {
    		test := TestCase{
    			name: "valid: test shell " + shell,
    			args: []string{shell},
    		}
    		testCases = append(testCases, test)
    	}
    
    	// use dummy cobra commands
    	parentCmd := &cobra.Command{}
    	cmd := &cobra.Command{}
    	parentCmd.AddCommand(cmd)
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			if err := RunCompletion(&out, "", cmd, tc.args); (err != nil) != tc.expectedError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 06 02:59:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. pkg/test/helm/helm.go

    	command := fmt.Sprintf("helm delete %s --namespace %s --kubeconfig %s", name, namespace, h.kubeConfig)
    	_, err := execCommand(command)
    	return err
    }
    
    // Template runs the template command and applies the generated file with kubectl
    func (h *Helm) Template(name, chartPath, namespace, templateFile string, timeout time.Duration, args ...string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 19:25:43 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/interface.go

    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    // Dependencies is used as abstraction for the commands used from the operating system
    type Dependencies interface {
    	// Run runs a command
    	Run(cmd constants.IptablesCmd, iptVer *IptablesVersion, stdin io.ReadSeeker, args ...string) error
    	// RunQuietlyAndIgnore runs a command quietly and ignores errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/local.go

    import (
    	"internal/goversion"
    	"runtime"
    	"strconv"
    )
    
    // TestVersion is initialized in the go command test binary
    // to be $TESTGO_VERSION, to allow tests to override the
    // go command's idea of its own version as returned by Local.
    var TestVersion string
    
    // Local returns the local Go version, the one implemented by this go command.
    func Local() string {
    	v, _ := local()
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top