Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for cmdLines (0.16 sec)

  1. pilot/cmd/pilot-agent/status/server_test.go

    		}
    		return nil
    	}, retry.Delay(time.Microsecond)); err != nil {
    		t.Fatalf("failed to getport: %v", err)
    	}
    
    	return server
    }
    
    func TestPprof(t *testing.T) {
    	pprofPath := "/debug/pprof/cmdline"
    	// Starts the pilot agent status server.
    	server := NewTestServer(t, Options{EnableProfiling: true})
    	client := http.Client{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    # running. A standard `Restart-Service` may fail because
    # the process is sometimes unstoppable, so this function works around it
    # by killing the processes.
    function Restart-LogService([string]$service, [string]$cmdline) {
      Stop-Service -NoWait -ErrorAction Ignore $service
    
      # Wait (if necessary) for service to stop.
      $timeout = 10
      $stopped = (Get-service $service).Status -eq 'Stopped'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    			"\nexpectedShort:\n%v\nsawShort:\n%v\n",
    		name, expected, actual,
    		expectedShort, actualShort)
    }
    
    // removeCommon removes common items from left list
    // makes compairing two cmdline (with lots of arguments) easier
    func removeCommon(left, right []string) []string {
    	origSet := sets.New(left...)
    	origSet.Delete(right...)
    	return sets.List(origSet)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    // msiexec.exe and cmd.exe (and thus, all batch files), which have a different
    // unquoting algorithm. In these or other similar cases, you can do the
    // quoting yourself and provide the full command line in SysProcAttr.CmdLine,
    // leaving Args empty.
    func Command(name string, arg ...string) *Cmd {
    	cmd := &Cmd{
    		Path: name,
    		Args: append([]string{name}, arg...),
    	}
    
    	if v := execwait.Value(); v != "" {
    		if v == "2" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    	}
    	endpoints := mustGetNewEndpoints(poolIdx, drivesPerSet, args...)
    	return []PoolEndpoints{{
    		SetCount:     setCount,
    		DrivesPerSet: drivesPerSet,
    		Endpoints:    endpoints,
    		CmdLine:      strings.Join(args, " "),
    	}}
    }
    
    func mustGetNewEndpoints(poolIdx int, drivesPerSet int, args ...string) (endpoints Endpoints) {
    	endpoints, err := NewEndpoints(args...)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ReverseProxy.ModifyResponse", Field, 8},
    		{"ReverseProxy.Rewrite", Field, 20},
    		{"ReverseProxy.Transport", Field, 0},
    		{"ServerConn", Type, 0},
    	},
    	"net/http/pprof": {
    		{"Cmdline", Func, 0},
    		{"Handler", Func, 0},
    		{"Index", Func, 0},
    		{"Profile", Func, 0},
    		{"Symbol", Func, 0},
    		{"Trace", Func, 5},
    	},
    	"net/mail": {
    		{"(*Address).String", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top