Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for coverage (0.27 sec)

  1. src/bytes/bytes.go

    			// Experiments (using IndexPeriodic) suggest
    			// the cutover is about 16 byte skips.
    			// TODO: if large prefixes of sep are matching
    			// we should cutover at even larger average skips,
    			// because Equal becomes that much more expensive.
    			// This code does not take that effect into account.
    			j := bytealg.IndexRabinKarp(s[i:], sep)
    			if j < 0 {
    				return -1
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg runtime/cgo (openbsd-amd64-cgo), type Incomplete struct #46731
    pkg runtime/coverage, func ClearCounters() error #51430
    pkg runtime/coverage, func WriteCountersDir(string) error #51430
    pkg runtime/coverage, func WriteCounters(io.Writer) error #51430
    pkg runtime/coverage, func WriteMetaDir(string) error #51430
    pkg runtime/coverage, func WriteMeta(io.Writer) error #51430
    pkg strings, func CutPrefix(string, string) (string, bool) #42537
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. api/go1.4.txt

    pkg syscall (windows-386), func FullPath(string) (string, error)
    pkg syscall (windows-amd64), func FullPath(string) (string, error)
    
    # CL 98150043 testing: add Coverage function, Russ Cox <******@****.***>
    pkg testing, func Coverage() float64
    
    # CL 148770043 cmd/go, testing: add TestMain support, Russ Cox <******@****.***>
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  4. doc/go1.22.html

      module requirements from configuration files for other vendoring tools
      (such as <code>Gopkg.lock</code>).
    </p>
    
    <!-- CL 495447 -->
    <p>
    <code>go</code> <code>test</code> <code>-cover</code> now prints coverage summaries for covered
    packages that do not have their own test files. Prior to Go 1.22 a
    <code>go</code> <code>test</code> <code>-cover</code> run for such a package would report
    </p>
    
    <p>
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top