Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for reported (0.55 sec)

  1. src/cmd/test2json/main.go

    //
    // When a benchmark runs, it typically produces a single line of output
    // giving timing results. That line is reported in an event with Action == "output"
    // and no Test field. If a benchmark logs output or reports a failure
    // (for example, by using b.Log or b.Error), that extra output is reported
    // as a sequence of events with Test set to the benchmark name, terminated
    // by a final event with Action == "bench" or "fail".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	o.UI.PrintErr(u.String())
    }
    
    // makeReport generates a report for the specified command.
    // If configEditor is not null, it is used to edit the config used for the report.
    func (ui *webInterface) makeReport(w http.ResponseWriter, req *http.Request,
    	cmd []string, configEditor func(*config)) (*report.Report, []string) {
    	cfg := currentConfig()
    	if err := cfg.applyURL(req.URL.Query()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typexpr.go

    		}()
    	}
    
    	switch e := e0.(type) {
    	case *syntax.BadExpr:
    		// ignore - error reported before
    
    	case *syntax.Name:
    		var x operand
    		check.ident(&x, e, def, true)
    
    		switch x.mode {
    		case typexpr:
    			typ := x.typ
    			setDefType(def, typ)
    			return typ
    		case invalid:
    			// ignore - error reported before
    		case novalue:
    			check.errorf(&x, NotAType, "%s used as type", &x)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/stacks.go

    import (
    	"encoding/json"
    	"html/template"
    	"net/http"
    
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/report"
    )
    
    // stackView generates the flamegraph view.
    func (ui *webInterface) stackView(w http.ResponseWriter, req *http.Request) {
    	// Get all data in a report.
    	rpt, errList := ui.makeReport(w, req, []string{"svg"}, func(cfg *config) {
    		cfg.CallTree = true
    		cfg.Trim = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeparam.go

    	// determine constraint interface
    	var ityp *Interface
    	switch u := under(bound).(type) {
    	case *Basic:
    		if !isValid(u) {
    			// error is reported elsewhere
    			return &emptyInterface
    		}
    	case *Interface:
    		if isTypeParam(bound) {
    			// error is reported in Checker.collectTypeParams
    			return &emptyInterface
    		}
    		ityp = u
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    	assert(obj.typ == nil)
    
    	// Only report a version error if we have not reported one already.
    	versionErr := false
    
    	var rhs Type
    	check.later(func() {
    		if t := asNamed(obj.typ); t != nil { // type may be invalid
    			check.validType(t)
    		}
    		// If typ is local, an error was already reported where typ is specified/defined.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check_test.go

    // error reported at that source position, and that each ERRORx pattern
    // is a regular expression matching the respective error.
    // Consecutive comments may be used to indicate multiple errors reported
    // at the same position.
    //
    // For instance, the following test source indicates that an "undeclared"
    // error should be reported for the undeclared variable x:
    //
    //	package p
    //	func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    		if n.ndeps > 0 {
    			cycle := findPath(check.objMap, n.obj, n.obj, make(map[Object]bool))
    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    			// the cycle will be broken (dependency count will be reduced
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/resolver.go

    					}
    					// merge imported scope with file scope
    					for name, obj := range imp.scope.elems {
    						// Note: Avoid eager resolve(name, obj) here, so we only
    						// resolve dot-imported objects as needed.
    
    						// A package scope may contain non-exported objects,
    						// do not import them!
    						if isExported(name) {
    							// declare dot-imported object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    	tg.grepStderrNot("symlink", "list should not have reported symlink")
    
    	tg.run("list", "example/xx/...")
    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top