Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fuu (0.04 sec)

  1. src/log/slog/value_test.go

    		GroupValue(Bool("b", true), Int("i", 4)),
    		GroupValue(Bool("b", true), Int("j", 4)),
    		DurationValue(3 * time.Second),
    		DurationValue(2 * time.Second),
    		StringValue("foo"),
    		StringValue("fuu"),
    	}
    	for i, v1 := range vals {
    		for j, v2 := range vals {
    			got := v1.Equal(v2)
    			want := i == j
    			if got != want {
    				t.Errorf("%v.Equal(%v): got %t, want %t", v1, v2, got, want)
    			}
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top