Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LookupError (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    				if lookupErr == nil && service.lookupError != nil {
    					t.Errorf("calling Lookup expected error: %s, did not get it", *service.lookupError)
    				}
    				if lookupErr != nil && service.lookupError == nil {
    					t.Errorf("unexpected error calling Lookup got: %#v", lookupErr)
    				}
    				if lookupErr != nil && service.lookupError != nil && lookupErr.Error() != *service.lookupError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    		}
    
    		var why string
    		if isInterfacePtr(x.typ) {
    			why = check.interfacePtrError(x.typ)
    		} else {
    			alt, _, _ := lookupFieldOrMethod(x.typ, x.mode == variable, check.pkg, sel, true)
    			why = check.lookupError(x.typ, sel, alt, false)
    		}
    		check.errorf(e.Sel, MissingFieldOrMethod, "%s.%s undefined (%s)", x.expr, sel, why)
    		goto Error
    	}
    
    	// methods may not have a fully set up signature yet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/go/types/call.go

    		}
    
    		var why string
    		if isInterfacePtr(x.typ) {
    			why = check.interfacePtrError(x.typ)
    		} else {
    			alt, _, _ := lookupFieldOrMethod(x.typ, x.mode == variable, check.pkg, sel, true)
    			why = check.lookupError(x.typ, sel, alt, false)
    		}
    		check.errorf(e.Sel, MissingFieldOrMethod, "%s.%s undefined (%s)", x.expr, sel, why)
    		goto Error
    	}
    
    	// methods may not have a fully set up signature yet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top