Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for describe (0.48 sec)

  1. .github/ISSUE_TEMPLATE/11-language-change.yml

          description: If so, how does this proposal differ?
          placeholder: |
           Yes or No
    
           If yes, 
            1. Mention the related proposals 
            2. then describe how this proposal differs       
        validations:
          required: true
    
      - type: textarea
        id: error-handling-proposal
        attributes:
          label: Does this affect error handling?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    // describe returns a string describing the type typ contained within the type
    // set of inType. If non-empty, inName is used as the name of inType (this is
    // necessary so that we can use alias type names that may not be reachable from
    // inType itself).
    func describe(typ, inType types.Type, inName string) string {
    	name := inName
    	if typ != inType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    //
    // The protocol required by 'go vet -vettool=...' is that the tool must support:
    //
    //	-flags          describe flags in JSON
    //	-V=full         describe executable for build caching
    //	foo.cfg         perform separate modular analyze on the single
    //	                unit described by a JSON config file foo.cfg.
    func Main(analyzers ...*analysis.Analyzer) {
    	progname := filepath.Base(os.Args[0])
    	log.SetFlags(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/vendor.go

    				}
    			} else if vr != rNewCanonical {
    				vendErrorf(r.Old, "is replaced by %s in %s, but marked as replaced by %s in vendor/modules.txt", describe(rNew), base.ShortPath(replacementSource), describe(vr))
    			}
    		}
    	}
    	for _, modFile := range modFiles {
    		checkReplace(modFile.Replace)
    	}
    	if MainModules.workFile != nil {
    		checkReplace(MainModules.workFile.Replace)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	// exceeds the module zip size limit or if the zip file itself exceeds the
    	// limit.
    	SizeError error
    }
    
    // Err returns an error if [CheckedFiles] does not describe a valid module zip
    // file. [CheckedFiles.SizeError] is returned if that field is set.
    // A [FileErrorList] is returned
    // if there are one or more invalid files. Other errors may be returned in the
    // future.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/git.go

    	info, err := r.Stat(ctx, rev)
    	if err != nil {
    		return "", err
    	}
    	rev = info.Name // expand hash prefixes
    
    	// describe sets tag and err using 'git for-each-ref' and reports whether the
    	// result is definitive.
    	describe := func() (definitive bool) {
    		var out []byte
    		out, err = Run(ctx, r.dir, "git", "for-each-ref", "--format", "%(refname)", "refs/tags", "--merged", rev)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    	default:
    		return float64(value), toUnit
    	}
    }
    
    // Label returns the label used to describe a certain measurement.
    func Label(value int64, unit string) string {
    	return ScaledLabel(value, unit, "auto")
    }
    
    // ScaledLabel scales the passed-in measurement (if necessary) and
    // returns the label used to describe a float measurement.
    func ScaledLabel(value int64, fromUnit, toUnit string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug_lines_test.go

    // this matches e.g.                            `   v123456789   000007   (+9876654310) MOVUPS	X15, ""..autotmp_2-32(SP)`
    
    // Matches lines in genssa output that describe an inlined file.
    // Note it expects an unadventurous choice of basename.
    var sepRE = regexp.QuoteMeta(string(filepath.Separator))
    var inlineLine *regexp.Regexp = regexp.MustCompile(`^#\s.*` + sepRE + `[-\w]+\.go:(\d+)`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/intervals.go

    //  4        abc.f1 = 2
    //  5        xyz.f3 = 9
    //  6        if q goto B4
    //  7 B3:    z = xyz.x
    //  8        goto B5
    //  9 B4:    z = abc.x
    //           // fallthrough
    // 10 B5:    z++
    //
    // To describe the lifetime of the variables above we might use these
    // intervals:
    //
    //    "abc"   [1,7), [9,10)
    //    "xyz"   [3,8)
    //
    // Clients can construct an Intervals object from a given IR sequence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/edit.go

    func allowedVersionArg(arg string) bool {
    	return !modfile.MustQuote(arg)
    }
    
    // parsePathVersionOptional parses path[@version], using adj to
    // describe any errors.
    func parsePathVersionOptional(adj, arg string, allowDirPath bool) (path, version string, err error) {
    	before, after, found := strings.Cut(arg, "@")
    	if !found {
    		path = arg
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top