Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,847 for ncmd (2.42 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		t.Fatal(err)
    	}
    
    	cmd := exec.Command("go", "tool", "cgo",
    		"-objdir", objDir,
    		"-exportheader", header)
    	cmd.Args = append(cmd.Args, files...)
    	t.Log(cmd.Args)
    	if out, err := cmd.CombinedOutput(); err != nil {
    		t.Logf("%s", out)
    		t.Fatal(err)
    	}
    }
    
    func testInstall(t *testing.T, exe, libgoa, libgoh string, buildcmd ...string) {
    	t.Helper()
    	cmd := exec.Command(buildcmd[0], buildcmd[1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/config.go

    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/features"
    	"k8s.io/kubernetes/cmd/kubeadm/app/images"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    	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
    - 18.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/help.go

    		base.SetExitStatus(2) // failed at 'go help cmd'
    		base.Exit()
    	}
    
    	if len(cmd.Commands) > 0 {
    		PrintUsage(os.Stdout, cmd)
    	} else {
    		tmpl(os.Stdout, helpTemplate, cmd)
    	}
    	// not exit 2: succeeded at 'go help cmd'.
    	return
    }
    
    var usageTemplate = `{{.Long | trim}}
    
    Usage:
    
    	{{.UsageLine}} <command> [arguments]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator_test.go

    		},
    	}
    
    	cmd := "operator dump --hub " + odArgs.common.hub
    	cmd += " --tag " + odArgs.common.tag
    	cmd += " --imagePullSecrets " + strings.Join(odArgs.common.imagePullSecrets, ",")
    	cmd += " --operatorNamespace " + odArgs.common.operatorNamespace
    	cmd += " --watchedNamespaces " + odArgs.common.watchedNamespaces
    	cmd += " --manifests=" + string(snapshotCharts)
    	cmd += " --output " + odArgs.common.outputFormat
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. cmd/import-boss/testdata/inverse/aaa/file.go

    package aaa
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/allowed"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/allowed/a1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/forbidden"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/forbidden/f1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/neither"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/neither/n1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 436 bytes
    - Viewed (0)
  6. cmd/import-boss/testdata/transitive/aaa/file.go

    package aaa
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/allowed"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/allowed/a1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/forbidden"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/forbidden/f1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/neither"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/neither/n1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 454 bytes
    - Viewed (0)
  7. src/cmd/go/internal/fmtcmd/fmt.go

    // Package fmtcmd implements the “go fmt” command.
    package fmtcmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"os"
    	"path/filepath"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/internal/sys"
    )
    
    func init() {
    	base.AddBuildFlagsNX(&CmdFmt.Flag)
    	base.AddChdirFlag(&CmdFmt.Flag)
    	base.AddModFlag(&CmdFmt.Flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. pkg/proxy/kubemark/.import-restrictions

    rules:
      # override pkg/ import restriction on cmd/ for kubemark
      - selectorRegexp: k8s[.]io/kubernetes/cmd
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:47:54 UTC 2023
    - 176 bytes
    - Viewed (0)
  9. cmd/import-boss/testdata/simple-fwd/aaa/file.go

    package aaa
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed/a1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/forbidden"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/forbidden/f1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/neither"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/neither/n1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 454 bytes
    - Viewed (0)
  10. istioctl/pkg/tag/tag.go

    `,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) != 0 {
    				return fmt.Errorf("unknown subcommand %q", args[0])
    			}
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			cmd.HelpFunc()(cmd, args)
    			return nil
    		},
    	}
    
    	cmd.AddCommand(tagSetCommand(ctx))
    	cmd.AddCommand(tagGenerateCommand(ctx))
    	cmd.AddCommand(tagListCommand(ctx))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top