Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for a5 (0.03 sec)

  1. src/runtime/os2_aix.go

    	if resetLibcall {
    		mp.libcallsp = 0
    	}
    
    	return c.r1, c.err
    }
    
    //go:nowritebarrier
    //go:nosplit
    //go:cgo_unsafe_args
    func syscall6(fn *libFunc, a0, a1, a2, a3, a4, a5 uintptr) (r, err uintptr) {
    	gp := getg()
    	mp := gp.m
    	resetLibcall := true
    	if mp.libcallsp == 0 {
    		mp.libcallg.set(gp)
    		mp.libcallpc = getcallerpc()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. 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)
  3. src/go/types/issues_test.go

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

    			"S does not implement interface{M()} (missing method M) have m() want M()"},
    
    		{nil, `package a4; type S struct{}; func (S) m(); var _ interface { m() } = S{}`,
    			""}, // no error expected
    
    		{nil, `package a5; type S struct{}; func (S) m(); var _ interface { n() } = S{}`,
    			"S does not implement interface{n()} (missing method n)"},
    
    		// tests importing b (or nothing)
    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