Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestContextHashCollisions (0.21 sec)

  1. src/cmd/compile/internal/types2/context_test.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    import (
    	"testing"
    )
    
    func TestContextHashCollisions(t *testing.T) {
    	if debug {
    		t.Skip("hash collisions are expected, and would fail debug assertions")
    	}
    	// Unit test the de-duplication fall-back logic in Context.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 17 04:32:02 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/go/types/context_test.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"testing"
    )
    
    func TestContextHashCollisions(t *testing.T) {
    	if debug {
    		t.Skip("hash collisions are expected, and would fail debug assertions")
    	}
    	// Unit test the de-duplication fall-back logic in Context.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top