Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,070 for reportf (0.14 sec)

  1. src/cmd/compile/internal/types2/predicates.go

    		for _, f := range t.fields {
    			if !comparable(f.typ, dynamic, seen, nil) {
    				if reportf != nil {
    					reportf("struct containing %s cannot be compared", f.typ)
    				}
    				return false
    			}
    		}
    		return true
    	case *Array:
    		if !comparable(t.elem, dynamic, seen, nil) {
    			if reportf != nil {
    				reportf("%s cannot be compared", t)
    			}
    			return false
    		}
    		return true
    	case *Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/go/types/predicates.go

    		for _, f := range t.fields {
    			if !comparable(f.typ, dynamic, seen, nil) {
    				if reportf != nil {
    					reportf("struct containing %s cannot be compared", f.typ)
    				}
    				return false
    			}
    		}
    		return true
    	case *Array:
    		if !comparable(t.elem, dynamic, seen, nil) {
    			if reportf != nil {
    				reportf("%s cannot be compared", t)
    			}
    			return false
    		}
    		return true
    	case *Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    		pass.Reportf(fn.Pos(), "%s should return nothing", fnName)
    	}
    	if tparams := fn.Type.TypeParams; tparams != nil && len(tparams.List) > 0 {
    		pass.Reportf(fn.Pos(), "%s should not have type params", fnName)
    	}
    
    	if fnName == "Example" {
    		// Nothing more to do.
    		return
    	}
    
    	var (
    		exName = strings.TrimPrefix(fnName, "Example")
    		elems  = strings.SplitN(exName, "_", 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    	if err != nil {
    		return nil, err
    	}
    	for _, f := range cgofiles {
    		checkCgo(pass.Fset, f, info, pass.Reportf)
    	}
    	return nil, nil
    }
    
    func checkCgo(fset *token.FileSet, f *ast.File, info *types.Info, reportf func(token.Pos, string, ...interface{})) {
    	ast.Inspect(f, func(n ast.Node) bool {
    		call, ok := n.(*ast.CallExpr)
    		if !ok {
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    without adding a dependency to the core API, so an analysis tool pays
    only for the extensions it needs.
    
    The Report function emits a diagnostic, a message associated with a
    source position. For most analyses, diagnostics are their primary
    result.
    For convenience, Pass provides a helper method, Reportf, to report a new
    diagnostic by formatting a string.
    Diagnostic is defined as:
    
    	type Diagnostic struct {
    		Pos      token.Pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	format, idx := formatString(pass, call)
    	if idx < 0 {
    		if false {
    			pass.Reportf(call.Lparen, "can't check non-constant format in call to %s", fn.FullName())
    		}
    		return
    	}
    
    	firstArg := idx + 1 // Arguments are immediately after format string.
    	if !strings.Contains(format, "%") {
    		if len(call.Args) > firstArg {
    			pass.Reportf(call.Lparen, "%s call has arguments but no formatting directives", fn.FullName())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    // Package asmdecl defines an Analyzer that reports mismatches between
    // assembly files and Go declarations.
    package asmdecl
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/token"
    	"go/types"
    	"log"
    	"regexp"
    	"strconv"
    	"strings"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    )
    
    const Doc = "report mismatches between assembly files and Go declarations"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    			return
    		}
    		typ = obj.Type()
    	} else {
    		typ = pass.TypesInfo.Types[e].Type
    	}
    
    	if typ == nil {
    		return
    	}
    	if path := lockPath(pass.Pkg, typ, nil); path != nil {
    		pass.Reportf(e.Pos(), "range var %s copies lock: %v", analysisutil.Format(pass.Fset, e), path)
    	}
    }
    
    type typePath []string
    
    // String pretty-prints a typePath.
    func (path typePath) String() string {
    	n := len(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	}
    	// 1. generate the local report
    	localContents, err := json.MarshalIndent(report, "", " ")
    	if err != nil {
    		return "", fmt.Errorf("failed to marshal report for %s: %v", expiryDate, err)
    	}
    	// check that the report can be read back
    	// TODO(pjw): remove for production?
    	var report2 telemetry.Report
    	if err := json.Unmarshal(localContents, &report2); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pilot/pkg/status/distribution/reporter.go

    						scope.Errorf("failed to properly clean up distribution report: %v", err)
    					}
    				}
    				close(r.distributionEventQueue)
    				return
    			case <-t:
    				// TODO, check if report is necessary?  May already be handled by client
    				r.writeReport(ctx)
    			}
    		}
    	}()
    }
    
    // build a distribution report to send to status leader
    func (r *Reporter) buildReport() (Report, []status.Resource) {
    	r.mu.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top