Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 996 for Commands (0.29 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	out, err := testenv.Command(t, run[0], run[1:]...).CombinedOutput()
    	if err != nil {
    		t.Logf("compile command: %+v", run)
    	}
    	if strings.TrimSpace(string(out)) != "" {
    		t.Logf("%s", out)
    	}
    	return dumpfile, err
    }
    
    // genExpected reads in a given Go testcase file, strips out all the
    // unindented (column 0) commands, writes them out to a new file, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. 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)
  3. docs/config/README.md

    notify_redis          publish bucket notifications to Redis datastores
    ```
    
    ### Accessing configuration
    
    All configuration changes can be made using [`mc admin config` get/set/reset/export/import commands](https://github.com/minio/mc/blob/master/docs/minio-admin-complete-guide.md).
    
    #### List all config keys available
    
    ```
    ~ mc admin config set myminio/
    ```
    
    #### Obtain help for each key
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/proxy/ipvs/ipset/ipset.go

    	GetVersion() (string, error)
    }
    
    // IPSetCmd represents the ipset util. We use ipset command for ipset execute.
    const IPSetCmd = "ipset"
    
    // EntryMemberPattern is the regular expression pattern of ipset member list.
    // The raw output of ipset command `ipset list {set}` is similar to,
    // Name: foobar
    // Type: hash:ip,port
    // Revision: 2
    // Header: family inet hashsize 1024 maxelem 65536
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K 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. CONTRIBUTING.md

    You can generate docs by running `./gradlew :docs:docs`.
    This will build the whole documentation locally in [platforms/documentation](./platforms/documentation).
    For more commands and examples, including local development,
    see [this guide](./platforms/documentation/docs/README.md).
    
    ### Creating commits and writing commit messages
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. 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)
Back to top