Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for Kappen (1.22 sec)

  1. src/cmd/go/internal/work/cover.go

    // as part of the execution of action 'a'.
    func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {
    	cmdline := str.StringList(cmdargs...)
    	args := append([]string{}, cfg.BuildToolexec...)
    	args = append(args, base.Tool("covdata"))
    	args = append(args, cmdline...)
    	return b.Shell(a).runOut(a.Objdir, nil, args)
    }
    
    // BuildActionCoverMetaFile locates and returns the path of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/select.go

    			n := n.(*ir.AssignListStmt)
    			if !ir.IsBlank(n.Lhs[1]) {
    				x := ir.NewAssignStmt(base.Pos, n.Lhs[1], recvOK)
    				list.Append(typecheck.Stmt(x))
    			}
    		}
    
    		list.Append(cas.Body.Take()...)
    		list.Append(ir.NewBranchStmt(base.Pos, ir.OBREAK, nil))
    
    		var r ir.Node
    		if cond != nil {
    			cond = typecheck.Expr(cond)
    			cond = typecheck.DefaultLit(cond, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    	asanName.Class = ir.PEXTERN
    	symL.Def = asanName
    	typecheck.Target.Externs = append(typecheck.Target.Externs, asanName)
    
    	symL = lname(".asanModulename")
    	asanModulename := ir.NewNameAt(base.Pos, symL, types.Types[types.TSTRING])
    	asanModulename.Class = ir.PEXTERN
    	symL.Def = asanModulename
    	typecheck.Target.Externs = append(typecheck.Target.Externs, asanModulename)
    
    	symL = lname(".asanFilename")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/labels.go

    			// become forward jumps in the current block.
    			fwdJumps = append(fwdJumps, check.blockBranches(all, b, lstmt, s.List)...)
    
    		case *syntax.IfStmt:
    			stmtBranches(s.Then)
    			if s.Else != nil {
    				stmtBranches(s.Else)
    			}
    
    		case *syntax.SwitchStmt:
    			b := &block{b, lstmt, nil}
    			for _, s := range s.Body {
    				fwdJumps = append(fwdJumps, check.blockBranches(all, b, nil, s.Body)...)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/reflectdata/helpers.go

    	return TypePtrAt(pos, typ)
    }
    
    // AppendElemRType asserts that n is an "append" operation, and
    // returns an expression that yields the *runtime._type value
    // representing the result slice type's element type.
    func AppendElemRType(pos src.XPos, n *ir.CallExpr) ir.Node {
    	assertOp(n, ir.OAPPEND)
    	if hasRType(n, n.RType, "RType") {
    		return n.RType
    	}
    	return sliceElemRType(pos, n.Type())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_lines_test.go

    				fmt.Printf("Saw stmt# %d for submatch '%s' on dump line #%d = '%s'\n", stmt, matches[1], dumpLineNum, line)
    			}
    			gotStmts = append(gotStmts, int(stmt))
    		} else if len(gotStmts) > 0 {
    			gotStacks = append(gotStacks, gotStmts)
    			gotStmts = nil
    		}
    	}
    	if len(gotStmts) > 0 {
    		gotStacks = append(gotStacks, gotStmts)
    		gotStmts = nil
    	}
    	sortInlineStacks(gotStacks)
    	sortInlineStacks(wantStacks)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    // ExerciseIface calls mostly a1 and m1.
    //
    //go:noinline
    func ExerciseIface(iter int, a1, a2 Adder, m1, m2 mult.Multiplier) int {
    	// The call below must evaluate selectA() to determine the receiver to
    	// use. This should happen exactly once per iteration. Assert that is
    	// the case to ensure the IR manipulation does not result in over- or
    	// under-evaluation.
    	selectI := 0
    	selectA := func(gotI int) Adder {
    		if gotI != selectI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    		if crashFound {
    			name := fmt.Sprintf("minimizecount/%v.%d", pid, n)
    			if err := os.WriteFile(name, nil, 0666); err != nil {
    				t.Fatal(err)
    			}
    			n++
    		}
    		if !bytes.Equal(b, seed) {  // this should happen right away
    			crashFound = true
    			t.Error("minimize this!")
    		}
    	})
    }
    -- check_file_count.go --
    // +build ignore
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"strconv"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/type.go

    func (f exprFlags) IsType() bool          { return f&2 != 0 }
    func (f exprFlags) IsBuiltin() bool       { return f&4 != 0 } // a language builtin that resembles a function call, e.g., "make, append, new"
    func (f exprFlags) IsValue() bool         { return f&8 != 0 }
    func (f exprFlags) IsNil() bool           { return f&16 != 0 }
    func (f exprFlags) Addressable() bool     { return f&32 != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/asm/main.go

    	// Set macros for GOEXPERIMENTs so we can easily switch
    	// runtime assembly code based on them.
    	if objabi.LookupPkgSpecial(ctxt.Pkgpath).AllowAsmABI {
    		for _, exp := range buildcfg.Experiment.Enabled() {
    			flags.D = append(flags.D, "GOEXPERIMENT_"+exp)
    		}
    	}
    
    	var ok, diag bool
    	var failedFile string
    	for _, f := range flag.Args() {
    		lexer := lex.NewLexer(f)
    		parser := asm.NewParser(ctxt, architecture, lexer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top