Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 392 for Commands (0.2 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    		},
    	}
    	waypointListCmd.PersistentFlags().BoolVarP(&allNamespaces, "all-namespaces", "A", false, "List all waypoints in all namespaces")
    
    	waypointCmd := &cobra.Command{
    		Use:   "waypoint",
    		Short: "Manage waypoint configuration",
    		Long:  "A group of commands used to manage waypoint configuration",
    		Example: `  # Apply a waypoint to the current namespace
      istioctl waypoint apply
    
      # Generate a waypoint as yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/os/exec/exec_test.go

    // (This prevents stale commands from accreting if tests are removed or
    // refactored over time.)
    func registerHelperCommand(name string, f func(...string)) {
    	if helperCommands[name] != nil {
    		panic("duplicate command registered: " + name)
    	}
    	helperCommands[name] = f
    }
    
    // maySkipHelperCommand records that the test that uses the named helper command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    It is part of the `org.gradle.process.internal` package and is typically used in custom tasks or plugins to run command-line tools or scripts as part of the build process.
    
    You can obtain an instance of `ExecOperations` using the `project.exec` property.
    Here's a simple example demonstrating how to use `ExecOperations` to execute a command:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/kubelet/lifecycle/handlers_test.go

    				Exec: &v1.ExecAction{
    					Command: command,
    				},
    			},
    		},
    	}
    
    	pod := v1.Pod{}
    	pod.ObjectMeta.Name = "podFoo"
    	pod.ObjectMeta.Namespace = "nsFoo"
    	pod.Spec.Containers = []v1.Container{container}
    	expectedErrMsg := fmt.Sprintf("Exec lifecycle hook (%s) for Container %q in Pod %q failed - error: %v, message: %q", command, containerName, format.Pod(&pod), expectedErr, expectedErr.Error())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/net/net_windows_test.go

    	if err != nil {
    		return nil, err
    	}
    	f.Close()
    	defer os.Remove(f.Name())
    	cmd := fmt.Sprintf(`%s | Out-File "%s" -encoding UTF8`, strings.Join(args, " "), f.Name())
    	out, err := exec.Command("powershell", "-Command", cmd).CombinedOutput()
    	if err != nil {
    		if len(out) != 0 {
    			return nil, fmt.Errorf("%s failed: %v: %q", args[0], err, string(removeUTF8BOM(out)))
    		}
    		var err2 error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/certs.go

    `)
    	generateCSRExample = cmdutil.Examples(`
    	# The following command will generate keys and CSRs for all control-plane certificates and kubeconfig files:
    	kubeadm certs generate-csr --kubeconfig-dir /tmp/etc-k8s --cert-dir /tmp/etc-k8s/pki
    `)
    )
    
    // newCmdCertsUtility returns main command for certs phase
    func newCmdCertsUtility(out io.Writer) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:     "certs",
    		Aliases: []string{"certificates"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gccgo.go

    			sh.ShowCmd(tmpdir, "%s -c -o %s %s || true", tools.compiler(), on, fn)
    			// Since this function affects later builds,
    			// and only generates temporary files,
    			// we run the command even with -n.
    		}
    		cmd := exec.Command(tools.compiler(), "-c", "-o", on, fn)
    		cmd.Dir = tmpdir
    		var buf bytes.Buffer
    		cmd.Stdout = &buf
    		cmd.Stderr = &buf
    		err = cmd.Run()
    		gccgoSupportsCgoIncomplete = err == nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        `show w'. This is free software, and you are welcome to redistribute
        it under certain conditions; type `show c' for details.
    
    The hypothetical commands `show w' and `show c' should show the
    appropriate parts of the General Public License. Of course, the commands
    you use may be called something other than `show w' and `show c'; they
    could even be mouse-clicks or menu items--whatever suits your program.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	yamlOutput    = "yaml"
    	summaryOutput = "short"
    
    	defaultProxyAdminPort = 15000
    )
    
    func ZtunnelConfig(ctx cli.Context) *cobra.Command {
    	configCmd := &cobra.Command{
    		Use:   "ztunnel-config",
    		Short: "Update or retrieve current Ztunnel configuration.",
    		Long:  "A group of commands used to update or retrieve Ztunnel configuration from a Ztunnel instance.",
    		Example: `  # Retrieve summary about workload configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/os/exec/exec.go

    // The returned Cmd's Args field is constructed from the command name
    // followed by the elements of arg, so arg should not include the
    // command name itself. For example, Command("echo", "hello").
    // Args[0] is always name, not the possibly resolved Path.
    //
    // On Windows, processes receive the whole command line as a single string
    // and do their own parsing. Command combines and quotes Args into a command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top