Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 553 for ncmd (1.25 sec)

  1. src/cmd/link/internal/ld/macho_update_uuid.go

    		return err
    	}
    
    	// Read the load commands, looking for the LC_UUID cmd. If/when we
    	// locate it, overwrite it with a new value produced by
    	// uuidFromGoBuildId.
    	reader := loadCmdReader{next: int64(cmdOffset),
    		f: outf, order: exem.ByteOrder}
    	for i := uint32(0); i < exem.Ncmd; i++ {
    		cmd, err := reader.Next()
    		if err != nil {
    			return err
    		}
    		if cmd.Cmd == LC_UUID {
    			var u uuidCmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-discovery/app/cmd.go

    import (
    	"fmt"
    	"strings"
    	"time"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pilot/pkg/bootstrap"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/ctrlz"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/version"
    )
    
    var (
    	serverArgs     *bootstrap.PilotArgs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. hack/make-rules/test-cmd.sh

      # build kubeadm
      make all -C "${KUBE_ROOT}" WHAT=cmd/kubeadm
      # unless the user sets KUBEADM_PATH, assume that "make all..." just built it
      export KUBEADM_PATH="${KUBEADM_PATH:=$(kube::realpath "${KUBE_ROOT}")/_output/local/go/bin/kubeadm}"
      # invoke the tests
      make -C "${KUBE_ROOT}" test \
        WHAT=k8s.io/kubernetes/cmd/kubeadm/test/cmd \
        KUBE_TIMEOUT=--timeout=240s \
        KUBE_RACE=""
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. cmd/import-boss/testdata/nested-fwd/bbb/file.go

    package bbb
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-sub"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-sub"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 563 bytes
    - Viewed (0)
  5. src/crypto/purego_test.go

    // such as TinyGo. See also the "crypto/...:purego" test in cmd/dist, which
    // ensures the packages build correctly.
    func TestPureGoTag(t *testing.T) {
    	cmd := exec.Command(testenv.GoToolPath(t), "list", "-e", "crypto/...", "math/big")
    	cmd.Env = append(cmd.Env, "GOOS=linux")
    	cmd.Stderr = os.Stderr
    	out, err := cmd.Output()
    	if err != nil {
    		log.Fatalf("loading package list: %v\n%s", err, out)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/os/exec_windows.go

    // at http://daviddeley.com/autohotkey/parameters/parameters.htm#WINARGV
    func commandLineToArgv(cmd string) []string {
    	var args []string
    	for len(cmd) > 0 {
    		if cmd[0] == ' ' || cmd[0] == '\t' {
    			cmd = cmd[1:]
    			continue
    		}
    		var arg []byte
    		arg, cmd = readNextArg(cmd)
    		args = append(args, string(arg))
    	}
    	return args
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/go/scriptcmds_test.go

    	var cancel func(cmd *exec.Cmd) error
    	if interrupt != nil {
    		cancel = func(cmd *exec.Cmd) error {
    			return cmd.Process.Signal(interrupt)
    		}
    	}
    
    	cmdExec := script.Exec(cancel, waitDelay)
    	cmds["exec"] = cmdExec
    
    	add := func(name string, cmd script.Cmd) {
    		if _, ok := cmds[name]; ok {
    			panic(fmt.Sprintf("command %q is already registered", name))
    		}
    		cmds[name] = cmd
    	}
    
    	add("cc", scriptCC(cmdExec))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 18:33:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/syscall/exec_unix_test.go

    	}
    
    	executable, err := os.Executable()
    	if err != nil {
    		executable = os.Args[0]
    	}
    
    	cmd := testenv.Command(t, executable, "-test.run=^TestRlimitRestored$")
    	cmd = testenv.CleanCmdEnv(cmd)
    	cmd.Env = append(cmd.Env, "GO_WANT_HELPER_PROCESS=1")
    
    	out, err := cmd.CombinedOutput()
    	if len(out) > 0 {
    		t.Logf("%s", out)
    	}
    	if err != nil {
    		t.Fatalf("subprocess failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/upgrade/node/kubeletconfig.go

    limitations under the License.
    */
    
    package node
    
    import (
    	"fmt"
    
    	"github.com/pkg/errors"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/upgrade"
    )
    
    var (
    	kubeletConfigLongDesc = cmdutil.LongDesc(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tools/istio-clean-iptables/pkg/cmd/root.go

    // limitations under the License.
    
    package cmd
    
    import (
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pkg/flag"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/tools/istio-clean-iptables/pkg/config"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func bindCmdlineFlags(cfg *config.Config, cmd *cobra.Command) {
    	fs := cmd.Flags()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top