Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 323 for coverage2 (0.24 sec)

  1. pkg/test/framework/features/README.md

    # Feature Coverage Reporting
    
    ## Overview
    
    The features package defines values that are used to track feature coverage at eng.istio.io
    
    ## Labeling a Test
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/internal/coverage/encodecounter/encode.go

    package encodecounter
    
    import (
    	"bufio"
    	"encoding/binary"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/slicewriter"
    	"internal/coverage/stringtab"
    	"internal/coverage/uleb128"
    	"io"
    	"os"
    	"slices"
    )
    
    // This package contains APIs and helpers for encoding initial portions
    // of the counter data files emitted at runtime when coverage instrumentation
    // is enabled.  Counter data files may contain multiple segments; the file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/internal/coverage/decodecounter/decodecounterfile.go

    package decodecounter
    
    import (
    	"encoding/binary"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/slicereader"
    	"internal/coverage/stringtab"
    	"io"
    	"os"
    	"strconv"
    	"unsafe"
    )
    
    // This file contains helpers for reading counter data files created
    // during the executions of a coverage-instrumented binary.
    
    type CounterDataReader struct {
    	stab     *stringtab.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/covdata/dump.go

    // and reports: "pkglist", "func",  "debugdump", "percent", and
    // "textfmt".
    
    import (
    	"flag"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/calloc"
    	"internal/coverage/cformat"
    	"internal/coverage/cmerge"
    	"internal/coverage/decodecounter"
    	"internal/coverage/decodemeta"
    	"internal/coverage/pods"
    	"os"
    	"sort"
    	"strings"
    )
    
    var textfmtoutflag *string
    var liveflag *bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/internal/coverage/pods/pods.go

    // license that can be found in the LICENSE file.
    
    package pods
    
    import (
    	"cmp"
    	"fmt"
    	"internal/coverage"
    	"os"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"strconv"
    	"strings"
    )
    
    // Pod encapsulates a set of files emitted during the executions of a
    // coverage-instrumented binary. Each pod contains a single meta-data
    // file, and then 0 or more counter data files that refer to that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/internal/fuzz/counters_unsupported.go

    // In theory, we shouldn't need this file at all: if the binary was built
    // without coverage, then _counters and _ecounters should have the same address.
    // However, this caused an init failure on aix/ppc64, so it's disabled here.
    
    // coverage returns a []byte containing unique 8-bit counters for each edge of
    // the instrumented source code. This coverage data will only be generated if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 17:10:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/internal/cov/read_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cov_test
    
    import (
    	"cmd/internal/cov"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/decodecounter"
    	"internal/coverage/decodemeta"
    	"internal/coverage/pods"
    	"internal/goexperiment"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    )
    
    // visitor implements the CovDataVisitor interface in a very stripped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_main_import_path.txt

    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Report percent lines covered.
    go tool covdata percent -i=$WORK/covdata
    stdout '\s*mainwithtest\s+coverage:'
    ! stdout 'main\s+coverage:'
    
    # Go test -cover should behave the same way.
    go test -cover .
    stdout 'ok\s+mainwithtest\s+\S+\s+coverage:'
    ! stdout 'ok\s+main\s+.*'
    
    
    -- go.mod --
    module mainwithtest
    
    go 1.20
    -- mymain.go --
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. docs/sts/.gitignore

    *.manifest
    *.spec
    
    # Installer logs
    pip-log.txt
    pip-delete-this-directory.txt
    
    # Unit test / coverage reports
    htmlcov/
    .tox/
    .coverage
    .coverage.*
    .cache
    nosetests.xml
    coverage.xml
    *.cover
    .hypothesis/
    .pytest_cache/
    
    # Translations
    *.mo
    *.pot
    
    # Django stuff:
    *.log
    local_settings.py
    db.sqlite3
    
    # Flask stuff:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 15 11:55:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/coverage/encodemeta/encodefile.go

    		tmp:    make([]byte, 64),
    	}
    	r.stab.InitWriter()
    	r.stab.Lookup("")
    	return r
    }
    
    func (m *CoverageMetaFileWriter) Write(finalHash [16]byte, blobs [][]byte, mode coverage.CounterMode, granularity coverage.CounterGranularity) error {
    	mhsz := uint64(unsafe.Sizeof(coverage.MetaFileHeader{}))
    	stSize := m.stab.Size()
    	stOffset := mhsz + uint64(16*len(blobs))
    	preambleLength := stOffset + uint64(stSize)
    
    	if m.debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top