Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Mettler (1.06 sec)

  1. src/cmd/go/internal/test/test.go

    The 'go test' command expects to find test, benchmark, and example functions
    in the "*_test.go" files corresponding to the package under test.
    
    A test function is one named TestXxx (where Xxx does not start with a
    lower case letter) and should have the signature,
    
    	func TestXxx(t *testing.T) { ... }
    
    A benchmark function is one named BenchmarkXxx and should have the signature,
    
    	func BenchmarkXxx(b *testing.B) { ... }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    // non-pointers in this type.
    // TODO: Currently our best solution is to find these manually and list them as
    // they come up. A better solution is desired.
    // Note: DEPRECATED. There is now a better solution. Search for incomplete in this file.
    func (c *typeConv) badPointerTypedef(dt *dwarf.TypedefType) bool {
    	if c.badCFType(dt) {
    		return true
    	}
    	if c.badJNI(dt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    				// redundant copy regardless of its version.
    				//
    				// When we read the full module graph, we include the dependencies of
    				// every root even if that root is redundant. That better preserves
    				// reproducibility if, say, some automated tool adds a redundant
    				// 'require' line and then runs 'go mod tidy' to try to make everything
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    				for _, e := range s.endRegs[b.Preds[0].b.ID] {
    					if e.v == v {
    						// Found a better spot for the spill.
    						best = b
    						bestArg = e.c
    						bestDepth = depth
    						break
    					}
    				}
    			} else {
    				for _, e := range s.startRegs[b.ID] {
    					if e.v == v {
    						// Found a better spot for the spill.
    						best = b
    						bestArg = e.c
    						bestDepth = depth
    						break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    				continue
    			case "toolchain":
    				dropToolchain = true
    				continue
    			}
    		}
    
    		// If there were no arguments, CleanPatterns returns ".". Set the raw
    		// string back to "" for better errors.
    		if len(rawArgs) == 0 {
    			q.raw = ""
    		}
    
    		// Guard against 'go get x.go', a common mistake.
    		// Note that package and module paths may end with '.go', so only print an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    			state.vars = append(state.vars, topSlot.N)
    		}
    		state.varParts[topSlot.N] = append(state.varParts[topSlot.N], SlotID(i))
    	}
    
    	// Recreate the LocalSlot for each stack-only variable.
    	// This would probably be better as an output from stackframe.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op == OpVarDef {
    				n := v.Aux.(*ir.Name)
    				if ir.IsSynthetic(n) {
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    		if p.tok == _Semi {
    			semi.pos = p.pos()
    			semi.lit = p.lit
    			p.next()
    		} else {
    			// asking for a '{' rather than a ';' here leads to a better error message
    			p.want(_Lbrace)
    			if p.tok != _Lbrace {
    				p.advance(_Lbrace, _Rbrace) // for better synchronization (e.g., go.dev/issue/22581)
    			}
    		}
    		if keyword == _For {
    			if p.tok != _Semi {
    				if p.tok == _Lbrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	// this list.
    	registerStdTestSpecially := map[string]bool{
    		// testdir can run normally as part of "go test std cmd", but because
    		// it's a very large test, we register is specially as several shards to
    		// enable better load balancing on sharded builders. Ideally the build
    		// system would know how to shard any large test package.
    		"cmd/internal/testdir": true,
    	}
    
    	// Fast path to avoid the ~1 second of `go list std cmd` when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    					// if it shares the same block and line and is eligible.
    					// The second option is v, which has a as an input.  Because aa is earlier in
    					// the data flow, it is the better choice.
    					if a.Pos.IsStmt() == src.PosIsStmt {
    						if aa.Block == a.Block && aa.Pos.Line() == a.Pos.Line() && aa.Pos.IsStmt() != src.PosNotStmt {
    							aa.Pos = aa.Pos.WithIsStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = ind - inc
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// this is better because it only require to keep ind then nxt alive while looping,
    		// while the original form keeps ind then nxt and end alive
    		start, end := v.min, v.max
    		if v.flags&indVarCountDown != 0 {
    			start, end = end, start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top