Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for b4 (0.02 sec)

  1. pkg/config/validation/agent/validation_test.go

    			localities: []string{"a/b", "a/b/c"},
    			valid:      false,
    		},
    		{
    			name:       "valid localities",
    			localities: []string{"a1/*", "a2/*", "a3/b3/c3", "a4/b4", "a5/b5/*"},
    			valid:      true,
    		},
    	}
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			err := validateLocalities(c.localities)
    			if !c.valid && err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. src/go/types/issues_test.go

    			""}, // no error expected
    
    		{nil, `package b3; type S struct{}; func (S) M(); var _ interface { M() } = S{}`,
    			""}, // no error expected
    
    		{nil, `package b4; type S struct{}; func (S) M(); var _ interface { m() } = S{}`,
    			"S does not implement interface{m()} (missing method m) have M() want m()"},
    
    		{nil, `package b5; type S struct{}; func (S) M(); var _ interface { n() } = S{}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    			""}, // no error expected
    
    		{nil, `package b3; type S struct{}; func (S) M(); var _ interface { M() } = S{}`,
    			""}, // no error expected
    
    		{nil, `package b4; type S struct{}; func (S) M(); var _ interface { m() } = S{}`,
    			"S does not implement interface{m()} (missing method m) have M() want m()"},
    
    		{nil, `package b5; type S struct{}; func (S) M(); var _ interface { n() } = S{}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top