Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for cout (0.65 sec)

  1. src/cmd/compile/internal/syntax/parser_test.go

    					verifyPrint(t, filename, ast)
    				}
    				results <- parseResult{filename, ast.EOF.Line()}
    			})
    		}
    	}()
    
    	var count, lines uint
    	for res := range results {
    		count++
    		lines += res.lines
    		if testing.Verbose() {
    			fmt.Printf("%5d  %s (%d lines)\n", count, res.filename, res.lines)
    		}
    	}
    
    	dt := time.Since(start)
    	var m2 runtime.MemStats
    	runtime.ReadMemStats(&m2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. chainable_api.go

    			clause.Expression = nil
    			tx.Statement.Clauses["SELECT"] = clause
    		}
    	case string:
    		if strings.Count(v, "?") >= len(args) && len(args) > 0 {
    			tx.Statement.AddClause(clause.Select{
    				Distinct:   db.Statement.Distinct,
    				Expression: clause.Expr{SQL: v, Vars: args},
    			})
    		} else if strings.Count(v, "@") > 0 && len(args) > 0 {
    			tx.Statement.AddClause(clause.Select{
    				Distinct:   db.Statement.Distinct,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/config.go

    	fp64RegMask    regMask        // floating point register mask
    	specialRegMask regMask        // special register mask
    	intParamRegs   []int8         // register numbers of integer param (in/out) registers
    	floatParamRegs []int8         // register numbers of floating param (in/out) registers
    	ABI1           *abi.ABIConfig // "ABIInternal" under development // TODO change comment when this becomes current
    	ABI0           *abi.ABIConfig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    // issue 3261
    
    func testLibgcc(t *testing.T) {
    	var table = []struct {
    		in, out C.int
    	}{
    		{0, 0},
    		{1, 1},
    		{-42, 42},
    		{1000300, 1000300},
    		{1 - 1<<31, 1<<31 - 1},
    	}
    	for _, v := range table {
    		if o := C.vabs(v.in); o != v.out {
    			t.Fatalf("abs(%d) got %d, should be %d", v.in, o, v.out)
    			return
    		}
    	}
    }
    
    // issue 3729
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/dwarfgen/dwinl.go

    		// pre-inlined decls, and set the "IsInAbstract" flag
    		// appropriately. In addition: parameter and local variable
    		// names are given "middle dot" version numbers as part of the
    		// writing them out to export data (see issue 4326). If DWARF
    		// inlined routine generation is turned on, we want to undo
    		// this versioning, since DWARF variables in question will be
    		// parented by the inlined routine and not the top-level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/operand.go

    	// x.expr may not be set if x is invalid
    	if x.expr == nil {
    		return nopos
    	}
    	return x.expr.Pos()
    }
    
    // Operand string formats
    // (not all "untyped" cases can appear due to the type system,
    // but they fall out naturally here)
    //
    // mode       format
    //
    // invalid    <expr> (               <mode>                    )
    // novalue    <expr> (               <mode>                    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/expr.go

    	appendWalkStmt(init, ir.NewAssignStmt(base.Pos, l, n))
    	return l
    }
    
    func walkAddString(n *ir.AddStringExpr, init *ir.Nodes) ir.Node {
    	c := len(n.List)
    
    	if c < 2 {
    		base.Fatalf("walkAddString count %d too small", c)
    	}
    
    	buf := typecheck.NodNil()
    	if n.Esc() == ir.EscNone {
    		sz := int64(0)
    		for _, n1 := range n.List {
    			if n1.Op() == ir.OLITERAL {
    				sz += int64(len(ir.StringVal(n1)))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    	return base.DebugHashMatchPkgFunc(sym.Pkg.Path, sym.Name)
    }
    
    func (f *Func) spSb() (sp, sb *Value) {
    	initpos := src.NoXPos // These are originally created with no position in ssa.go; if they are optimized out then recreated, should be the same.
    	for _, v := range f.Entry.Values {
    		if v.Op == OpSB {
    			sb = v
    		}
    		if v.Op == OpSP {
    			sp = v
    		}
    		if sb != nil && sp != nil {
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	cmd.Args = append(cmd.Args, "-o", dst, src)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		if bytes.Contains(out, []byte("-fsanitize")) &&
    			(bytes.Contains(out, []byte("unrecognized")) ||
    				bytes.Contains(out, []byte("unsupported"))) {
    			return true, errors.New(string(out))
    		}
    		return true, fmt.Errorf("%#q failed: %v\n%s", strings.Join(cmd.Args, " "), err, out)
    	}
    
    	if c.sanitizer == "fuzzer" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug_test.go

    func skipSubTest(t *testing.T, tag string, basename string, gcflags string, count int, moreargs ...string) {
    	t.Run(tag+"-"+basename, func(t *testing.T) {
    		if *force {
    			testNexting(t, basename, tag, gcflags, count, moreargs...)
    		} else {
    			t.Skip("skipping flaky test because not forced (-f)")
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top