Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for subprocessHash (0.09 sec)

  1. src/runtime/map_test.go

    	// both.
    	t.Run("aes", func(t *testing.T) {
    		if !*runtime.UseAeshash {
    			t.Skip("No AES")
    		}
    
    		h1 := subprocessHash(t, "")
    		t.Logf("%d", h1)
    		h2 := subprocessHash(t, "")
    		t.Logf("%d", h2)
    		h3 := subprocessHash(t, "")
    		t.Logf("%d", h3)
    
    		if h1 == h2 && h2 == h3 {
    			t.Errorf("got duplicate hash %d want unique", h1)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top