Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for pawn (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	if s.UnprotectedDebugSocket != nil {
    		go func() {
    			defer utilruntime.HandleCrash()
    			klog.Error(s.UnprotectedDebugSocket.Run(stopCh))
    		}()
    	}
    
    	// spawn a new goroutine for closing the MuxAndDiscoveryComplete signal
    	// registration happens during construction of the generic api server
    	// the last server in the chain aggregates signals from the previous instances
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    	cmd.Env = append(cmd.Env, "GO_WANT_HELPER_PROCESS=1")
    	cmd.Env = append(cmd.Env, "TMP="+newtmp)
    	cmd.Env = append(cmd.Env, "TEMP="+newtmp)
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    	if want, have := newtmp, string(output); have != want {
    		t.Fatalf("unexpected child process output %q, want %q", have, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    // (This test hung on a gomote with -count=100 after only a few iterations.)
    func TestConcurrentExec(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    
    	// This test will spawn nHangs subprocesses that hang reading from stdin,
    	// and nExits subprocesses that exit immediately.
    	//
    	// When issue #61080 was present, a long-lived "hang" subprocess would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top