Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StartupInfo (0.24 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunicationSpec.groovy

            def startupInfo = comm.readDiagnostics(message)
    
            then:
            startupInfo.uid == "1234"
            startupInfo.address.canonicalAddress == uuid
            startupInfo.address.port == 123
            startupInfo.address.candidates == addresses
            startupInfo.pid == 123
            startupInfo.diagnostics.pid == 123
            startupInfo.diagnostics.daemonLog == dummyFile
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows_test.go

    	// Change out of the temporary directory so that we don't inhibit its
    	// removal during test cleanup.
    	defer os.Chdir(`\`)
    
    	syscall.Getwd()
    }
    
    func TestGetStartupInfo(t *testing.T) {
    	var si syscall.StartupInfo
    	err := syscall.GetStartupInfo(&si)
    	if err != nil {
    		// see https://go.dev/issue/31316
    		t.Fatalf("GetStartupInfo: got error %v, want nil", err)
    	}
    }
    
    func FuzzUTF16FromString(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top