Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,847 for ncmd (0.32 sec)

  1. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	"github.com/spf13/cobra"
    
    	"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"
    	etcdphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/etcd"
    	markcontrolplanephase "k8s.io/kubernetes/cmd/kubeadm/app/phases/markcontrolplane"
    	etcdutil "k8s.io/kubernetes/cmd/kubeadm/app/util/etcd"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    func (f *RecordFlags) AddFlags(cmd *cobra.Command) {
    	if f == nil {
    		return
    	}
    
    	if f.Record != nil {
    		cmd.Flags().BoolVar(f.Record, "record", *f.Record, "Record current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/cshared_test.go

    			}
    
    			dstBin := dir.Join(name)
    			cmd, err := cc(config.cFlags...)
    			if err != nil {
    				t.Fatal(err)
    			}
    			cmd.Args = append(cmd.Args, config.ldFlags...)
    			cmd.Args = append(cmd.Args, "-o", dstBin, cSrc, lib)
    			mustRun(t, cmd)
    
    			cmd = hangProneCmd(dstBin)
    			replaceEnv(cmd, "LD_LIBRARY_PATH", ".")
    			mustRun(t, cmd)
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-replace.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.0.0-replace"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 397 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testgodefs/testgodefs_test.go

    		t.Fatal(err)
    	}
    
    	for _, fp := range filePrefixes {
    		cmd := exec.Command("go", "tool", "cgo",
    			"-godefs",
    			"-srcdir", testdata,
    			"-objdir", dir,
    			fp+".go")
    		cmd.Stderr = new(bytes.Buffer)
    
    		out, err := cmd.Output()
    		if err != nil {
    			t.Fatalf("%s: %v\n%s", strings.Join(cmd.Args, " "), err, cmd.Stderr)
    		}
    
    		fn := fp + "_defs.go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. src/net/interface_linux_test.go

    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "link", "add", ti.name, "type", "dummy"},
    	})
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
    	})
    	ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
    		Path: xname,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 00:05:32 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/fcntl.go

    func fcntl(fd int, cmd, arg int) (int, error) {
    	valptr, _, errno := Syscall(fcntl64Syscall, uintptr(fd), uintptr(cmd), uintptr(arg))
    	var err error
    	if errno != 0 {
    		err = errno
    	}
    	return int(valptr), err
    }
    
    // FcntlInt performs a fcntl syscall on fd with the provided command and argument.
    func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
    	return fcntl(int(fd), cmd, arg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/vcs.go

    func (r *vcsRepo) loadBranches(ctx context.Context) {
    	if r.cmd.branches == nil {
    		return
    	}
    
    	out, err := Run(ctx, r.dir, r.cmd.branches(r.remote))
    	if err != nil {
    		return
    	}
    
    	r.branches = make(map[string]bool)
    	for _, branch := range r.cmd.branchRE.FindAllString(string(out), -1) {
    		if r.cmd.badLocalRevRE != nil && r.cmd.badLocalRevRE.MatchString(branch) {
    			continue
    		}
    		r.branches[branch] = true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	"k8s.io/klog/v2"
    
    	kubeadmapiv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/features"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/initsystem"
    	utilruntime "k8s.io/kubernetes/cmd/kubeadm/app/util/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/engine.go

    			start = i
    		}
    	}
    
    	if cmd.name == "" {
    		if cmd.want != "" || len(cmd.conds) > 0 || len(cmd.rawArgs) > 0 || cmd.background {
    			// The line contains a command prefix or suffix, but no actual command.
    			return nil, errors.New("missing command")
    		}
    
    		// The line is blank, or contains only a comment.
    		return nil, nil
    	}
    
    	if n := len(cmd.rawArgs); n > 0 {
    		last := cmd.rawArgs[n-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top