Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 215 for noposn (0.13 sec)

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

    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    				if !c.identical(xtparam.bound, ybound, p) {
    					return false
    				}
    			}
    
    			yparams = check.subst(nopos, y.params, smap, nil, ctxt).(*Tuple)
    			yresults = check.subst(nopos, y.results, smap, nil, ctxt).(*Tuple)
    		}
    
    		return x.variadic == y.variadic &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/go/types/eval.go

    func CheckExpr(fset *token.FileSet, pkg *Package, pos token.Pos, expr ast.Expr, info *Info) (err error) {
    	// determine scope
    	var scope *Scope
    	if pkg == nil {
    		scope = Universe
    		pos = nopos
    	} else if !pos.IsValid() {
    		scope = pkg.scope
    	} else {
    		// The package scope extent (position information) may be
    		// incorrect (files spread across a wide range of fset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/BUILD

        name = "all_tests",
        data = [
            ":debug_info_files",
            ":test_utilities",
        ],
        driver = "@llvm-project//mlir:run_lit.sh",
        tags_override = {
            "error-message-with-source-info.pbtxt": ["no_oss"],  # TODO(b/150946057): to be fixed on oss.
        },
        test_file_exts = ["pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/rangefunc/rewrite.go

    var runtimePkg = func() *types2.Package {
    	var nopos syntax.Pos
    	pkg := types2.NewPackage("runtime", "runtime")
    	anyType := types2.Universe.Lookup("any").Type()
    	intType := types2.Universe.Lookup("int").Type()
    
    	// func deferrangefunc() unsafe.Pointer
    	obj := types2.NewFunc(nopos, pkg, "deferrangefunc", types2.NewSignatureType(nil, nil, nil, nil, types2.NewTuple(types2.NewParam(nopos, pkg, "extra", anyType)), false))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/cmd/internal/src/pos.go

    // to that directive. A position base in turn contains the position at which it
    // was introduced in the current file.
    type Pos struct {
    	base *PosBase
    	lico
    }
    
    // NoPos is a valid unknown position.
    var NoPos Pos
    
    // MakePos creates a new Pos value with the given base, and (file-absolute)
    // line and column.
    func MakePos(base *PosBase, line, col uint) Pos {
    	return Pos{base, makeLico(line, col)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/builtin.go

    	typs[107] = types.NewArray(typs[0], 3)
    	typs[108] = types.NewStruct([]*types.Field{types.NewField(src.NoXPos, Lookup("enabled"), typs[6]), types.NewField(src.NoXPos, Lookup("pad"), typs[107]), types.NewField(src.NoXPos, Lookup("cgo"), typs[6]), types.NewField(src.NoXPos, Lookup("alignme"), typs[24])})
    	typs[109] = newSig(params(typs[1], typs[3], typs[3]), nil)
    	typs[110] = newSig(params(typs[1], typs[3]), nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/universe.go

    	IsComplex[TCOMPLEX64] = true
    	IsComplex[TCOMPLEX128] = true
    }
    
    func makeErrorInterface() *Type {
    	sig := NewSignature(FakeRecv(), nil, []*Field{
    		NewField(src.NoXPos, nil, Types[TSTRING]),
    	})
    	method := NewField(src.NoXPos, LocalPkg.Lookup("Error"), sig)
    	return NewInterface([]*Field{method})
    }
    
    // makeComparableInterface makes the predefined "comparable" interface in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/BUILD

        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        # TODO: b/288344501 - Enable OSS tests again when stable-quant-opt works well.
        default_tags = [
            "no_oss",
            "no_pip",
        ],
        driver = "//tensorflow/compiler/mlir/quantization/stablehlo:run_lit.sh",
        size_override = {
        },
        tags_override = {
        },
        test_file_exts = ["mlir"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/go/scanner/scanner.go

    // and thus relative to the file set.
    func (s *Scanner) Scan() (pos token.Pos, tok token.Token, lit string) {
    scanAgain:
    	if s.nlPos.IsValid() {
    		// Return artificial ';' token after /*...*/ comment
    		// containing newline, at position of first newline.
    		pos, tok, lit = s.nlPos, token.SEMICOLON, "\n"
    		s.nlPos = token.NoPos
    		return
    	}
    
    	s.skipWhitespace()
    
    	// current token start
    	pos = s.file.Pos(s.offset)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    			if p.indentList(s.Results) {
    				p.print(indent)
    				// Use NoPos so that a newline never goes before
    				// the results (see issue #32854).
    				p.exprList(token.NoPos, s.Results, 1, noIndent, token.NoPos, false)
    				p.print(unindent)
    			} else {
    				p.exprList(token.NoPos, s.Results, 1, 0, token.NoPos, false)
    			}
    		}
    
    	case *ast.BranchStmt:
    		p.print(s.Tok)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top