Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,795 for checkIn (0.21 sec)

  1. src/cmd/compile/internal/types2/expr.go

    func (check *Checker) expr(T *target, x *operand, e syntax.Expr) {
    	check.rawExpr(T, x, e, nil, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    // genericExpr is like expr but the result may also be generic.
    func (check *Checker) genericExpr(x *operand, e syntax.Expr) {
    	check.rawExpr(nil, x, e, nil, true)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/signature.go

    // Implementation
    
    // funcType type-checks a function or method type.
    func (check *Checker) funcType(sig *Signature, recvPar *syntax.Field, tparams []*syntax.Field, ftyp *syntax.FuncType) {
    	check.openScope(ftyp, "function")
    	check.scope.isFunc = true
    	check.recordScope(ftyp, check.scope)
    	sig.scope = check.scope
    	defer check.closeScope()
    
    	if recvPar != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/go/types/stdlib_test.go

    		"bug398.go",      // go/types doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    		"issue11362.go",  // canonical import path check
    		"issue16369.go",  // go/types handles this correctly - not an issue
    		"issue18459.go",  // go/types doesn't check validity of //go:xxx directives
    		"issue18882.go",  // go/types doesn't check validity of //go:xxx directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/alias.go

    // rhs must not be nil.
    func (check *Checker) newAlias(obj *TypeName, rhs Type) *Alias {
    	assert(rhs != nil)
    	a := new(Alias)
    	a.obj = obj
    	a.orig = a
    	a.fromRHS = rhs
    	if obj.typ == nil {
    		obj.typ = a
    	}
    
    	// Ensure that a.actual is set at the end of type checking.
    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/go/types/errors.go

    // The positioner interface is used to extract the position of type-checker errors.
    type positioner interface {
    	Pos() token.Pos
    }
    
    func (check *Checker) error(at positioner, code Code, msg string) {
    	err := check.newError(code)
    	err.addf(at, "%s", msg)
    	err.report()
    }
    
    func (check *Checker) errorf(at positioner, code Code, format string, args ...any) {
    	err := check.newError(code)
    	err.addf(at, format, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/go/types/alias.go

    // rhs must not be nil.
    func (check *Checker) newAlias(obj *TypeName, rhs Type) *Alias {
    	assert(rhs != nil)
    	a := new(Alias)
    	a.obj = obj
    	a.orig = a
    	a.fromRHS = rhs
    	if obj.typ == nil {
    		obj.typ = a
    	}
    
    	// Ensure that a.actual is set at the end of type checking.
    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/errors.go

    }
    
    func (check *Checker) error(at poser, code Code, msg string) {
    	err := check.newError(code)
    	err.addf(at, "%s", msg)
    	err.report()
    }
    
    func (check *Checker) errorf(at poser, code Code, format string, args ...any) {
    	err := check.newError(code)
    	err.addf(at, format, args...)
    	err.report()
    }
    
    func (check *Checker) softErrorf(at poser, code Code, format string, args ...any) {
    	err := check.newError(code)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/WorkValidationExceptionChecker.groovy

        private final Set<String> problems
    
        static void check(Exception exception, boolean ignoreType = false, @DelegatesTo(value = WorkValidationExceptionChecker, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
            assert exception instanceof WorkValidationException
            def checker = new WorkValidationExceptionChecker(exception, ignoreType)
            spec.delegate = checker
            spec.resolveStrategy = Closure.DELEGATE_FIRST
            spec()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/go/types/format.go

    		strings.Repeat(".  ", check.indent),
    		sprintf(check.fset, check.qualifier, true, format, args...),
    	)
    }
    
    // dump is only needed for debugging
    func (check *Checker) dump(format string, args ...any) {
    	fmt.Println(sprintf(check.fset, check.qualifier, true, format, args...))
    }
    
    func (check *Checker) qualifier(pkg *Package) string {
    	// Qualify the package unless it's the package being type-checked.
    	if pkg != check.pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		return ""
    	}
    	if r.Err != nil {
    		return fmt.Sprintf("%v: type checking error: %v\n", r.GVK, r.Err)
    	}
    	return fmt.Sprintf("%v: %s\n", r.GVK, r.Issues)
    }
    
    // Check preforms the type check against the given policy, and format the result
    // as []ExpressionWarning that is ready to be set in policy.Status
    // The result is nil if type checking returns no warning.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top