Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 599 for ncmd (0.06 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. pkg/proxy/conntrack/conntrack_test.go

    }
    
    type testCT struct {
    	execCT
    
    	fcmd *fakeexec.FakeCmd
    }
    
    func makeCT(result fakeexec.FakeAction) *testCT {
    	fcmd := &fakeexec.FakeCmd{
    		CombinedOutputScript: []fakeexec.FakeAction{result},
    	}
    	fexec := &fakeexec.FakeExec{
    		CommandScript: []fakeexec.FakeCommandAction{
    			func(cmd string, args ...string) exec.Cmd { return fakeexec.InitFakeCmd(fcmd, cmd, args...) },
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:08:36 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/version.txt

    stdout -buildmode=exe
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    # Check the build info of a binary built from $GOROOT/src/cmd
    go build -o test2json.exe cmd/test2json
    go version -m test2json.exe
    stdout -buildmode=exe
    stdout '^test2json.exe: .+'
    stdout '^\tpath\tcmd/test2json$'
    ! stdout 'mod[^e]'
    
    # Repeat the test with -buildmode=pie and default linking.
    [!buildmode:pie] stop
    [pielinkext] [!cgo] stop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/runtime/runtime-gdb_unix_test.go

    	}
    	defer r.Close()
    
    	// Start the test binary.
    	cmd = testenv.Command(t, "./a.exe", "-pipe-fd=3")
    	cmd.Dir = dir
    	cmd.ExtraFiles = []*os.File{w}
    	var output bytes.Buffer
    	cmd.Stdout = &output // for test logging
    	cmd.Stderr = &output
    
    	if err := cmd.Start(); err != nil {
    		t.Fatalf("error starting test binary: %v", err)
    	}
    	w.Close()
    
    	pid := cmd.Process.Pid
    
    	// Wait for child to be ready.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top