Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,273 for checkIn (0.19 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ConfigurableFileTreeIntegrationTest.groovy

            run("generate")
    
            then:
            result.assertTaskNotSkipped(":generate")
            output.count("checking") == 22 // checked twice, once to snapshot and once when the task action runs. Should be memoized when snapshotting
            outputContains("checking a/a.txt")
            outputContains("checking d/d.txt")
            file("out.txt").text == "a.txt,c.txt,d.txt"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stdlib_test.go

    		"bug398.go",      // types2 doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    		"issue11362.go",  // canonical import path check
    		"issue16369.go",  // types2 handles this correctly - not an issue
    		"issue18459.go",  // types2 doesn't check validity of //go:xxx directives
    		"issue18882.go",  // types2 doesn't check validity of //go:xxx directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/internal/types/testdata/check/decls2/decls2b.go

    // Blank methods need to be type-checked.
    // Verify by checking that errors are reported.
    func (T /* ERROR "undefined" */ ) _() {}
    func (T1) _(undefined /* ERROR "undefined" */ ) {}
    func (T1) _() int { return "foo" /* ERRORx "cannot use .* in return statement" */ }
    
    // Methods with undefined receiver type can still be checked.
    // Verify by checking that errors are reported.
    func (Foo /* ERROR "undefined" */ ) m() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/runtime/align_test.go

    	_, err = conf.Check("runtime", fset, files, &info)
    	if err != nil {
    		t.Fatalf("typechecking runtime failed: %v", err)
    	}
    
    	// Analyze all atomic.*64 callsites.
    	v := Visitor{t: t, fset: fset, types: info.Types, checked: checked}
    	ast.Walk(&v, pkg)
    }
    
    type Visitor struct {
    	fset    *token.FileSet
    	types   map[ast.Expr]types.TypeAndValue
    	checked map[string]bool
    	t       *testing.T
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top