Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for Mettler (0.86 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    		n := field.name
    		help := configHelp[n]
    		var setter func()
    		switch ptr := cfg.fieldPtr(field).(type) {
    		case *bool:
    			f := flag.Bool(n, *ptr, help)
    			setter = func() { *ptr = *f }
    		case *int:
    			f := flag.Int(n, *ptr, help)
    			setter = func() { *ptr = *f }
    		case *float64:
    			f := flag.Float64(n, *ptr, help)
    			setter = func() { *ptr = *f }
    		case *string:
    			if len(field.choices) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopbce.go

    						// Use stride to compute a better lower limit.
    						if init.AuxInt > v {
    							return false
    						}
    						v = addU(init.AuxInt, diff(v, init.AuxInt)/uint64(step)*uint64(step))
    					}
    					if addWillOverflow(v, step) {
    						return false
    					}
    					if inclusive && v != limit.AuxInt || !inclusive && v+1 != limit.AuxInt {
    						// We know a better limit than the programmer did. Use our limit instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    // between different phases. It does not override the passes
    // list above.
    type constraint struct {
    	a, b string // a must come before b
    }
    
    var passOrder = [...]constraint{
    	// "insert resched checks" uses mem, better to clean out stores first.
    	{"dse", "insert resched checks"},
    	// insert resched checks adds new blocks containing generic instructions
    	{"insert resched checks", "lower"},
    	{"insert resched checks", "tighten"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/doc/main.go

    //
    // The first item in this list that succeeds is the one whose documentation
    // is printed. If there is a symbol but no package, the package in the current
    // directory is chosen. However, if the argument begins with a capital
    // letter it is always assumed to be a symbol in the current directory.
    //
    // Two arguments:
    //
    //	go doc <pkg> <sym>[.<methodOrField>]
    //
    // Show the documentation for the package, symbol, and method or field. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    						}
    					}()
    				}
    			}
    
    			// Note: Do not use filepath.Base(file) here:
    			// editors that can jump to file:line references in the output
    			// will work better seeing the full path relative to cmd/go
    			// (where the "go test" command is usually run).
    			scripttest.Run(t, engine, s, file, bytes.NewReader(a.Comment))
    			checkCounters(t, telemetryDir)
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    	if a1.Package != nil {
    		haveDep[a1.Package.ImportPath] = true
    	}
    	for i := 0; i < len(workq); i++ {
    		a1 := workq[i]
    		for _, a2 := range a1.Deps {
    			// TODO(rsc): Find a better discriminator than the Mode strings, once the dust settles.
    			if a2.Package == nil || (a2.Mode != "build-install" && a2.Mode != "build") || haveDep[a2.Package.ImportPath] {
    				continue
    			}
    			haveDep[a2.Package.ImportPath] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/instantiate.go

    		}
    		return false
    	}
    
    	return checkComparability()
    }
    
    // mentions reports whether type T "mentions" typ in an (embedded) element or term
    // of T (whether typ is in the type set of T or not). For better error messages.
    func mentions(T, typ Type) bool {
    	switch T := T.(type) {
    	case *Interface:
    		for _, e := range T.embeddeds {
    			if mentions(e, typ) {
    				return true
    			}
    		}
    	case *Union:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    	// unified (joined) with P.
    	handles                  map[*TypeParam]*Type
    	depth                    int  // recursion depth during unification
    	enableInterfaceInference bool // use shared methods for better inference
    }
    
    // newUnifier returns a new unifier initialized with the given type parameter
    // and corresponding type argument lists. The type argument list may be shorter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typexpr.go

    			return // avoid follow-on errors
    		}
    	}
    
    	check.recordUse(e, obj)
    
    	// If we want a type but don't have one, stop right here and avoid potential problems
    	// with missing underlying types. This also gives better error messages in some cases
    	// (see go.dev/issue/65344).
    	_, gotType := obj.(*TypeName)
    	if !gotType && wantType {
    		check.errorf(e, NotAType, "%s is not a type", obj.Name())
    		// avoid "declared but not used" errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        if (!elem) {
          throw 'element not found: ' + name
        }
        return elem;
      }
    
      function makeColor(index) {
        // Rotate hue around a circle. Multiple by phi to spread things
        // out better. Use 50% saturation to make subdued colors, and
        // 80% lightness to have good contrast with black foreground text.
        const PHI = 1.618033988;
        const hue = (index+1) * PHI * 2 * Math.PI; // +1 to avoid 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top