Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for eql (0.19 sec)

  1. src/bytes/bytes_test.go

    func TestEqual(t *testing.T) {
    	// Run the tests and check for allocation at the same time.
    	allocs := testing.AllocsPerRun(10, func() {
    		for _, tt := range compareTests {
    			eql := Equal(tt.a, tt.b)
    			if eql != (tt.i == 0) {
    				t.Errorf(`Equal(%q, %q) = %v`, tt.a, tt.b, eql)
    			}
    		}
    	})
    	if allocs > 0 {
    		t.Errorf("Equal allocated %v times", allocs)
    	}
    }
    
    func TestEqualExhaustive(t *testing.T) {
    	var size = 128
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg go/token, const DEFAULT Token
    pkg go/token, const DEFER Token
    pkg go/token, const DEFINE Token
    pkg go/token, const ELLIPSIS Token
    pkg go/token, const ELSE Token
    pkg go/token, const EOF Token
    pkg go/token, const EQL Token
    pkg go/token, const FALLTHROUGH Token
    pkg go/token, const FLOAT Token
    pkg go/token, const FOR Token
    pkg go/token, const FUNC Token
    pkg go/token, const GEQ Token
    pkg go/token, const GO Token
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  3. api/go1.1.txt

    pkg go/token, const DEFAULT = 66
    pkg go/token, const DEFER = 67
    pkg go/token, const DEFINE = 47
    pkg go/token, const ELLIPSIS = 48
    pkg go/token, const ELSE = 68
    pkg go/token, const EOF = 1
    pkg go/token, const EQL = 39
    pkg go/token, const FALLTHROUGH = 69
    pkg go/token, const FLOAT = 6
    pkg go/token, const FOR = 70
    pkg go/token, const FUNC = 71
    pkg go/token, const GEQ = 46
    pkg go/token, const GO = 72
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top