Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tempCoveragePath (0.2 sec)

  1. pkg/util/coverage/coverage.go

    	"os"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    )
    
    var coverageFile string
    
    // tempCoveragePath returns a temporary file to write coverage information to.
    // The file is in the same directory as the destination, ensuring os.Rename will work.
    func tempCoveragePath() string {
    	return coverageFile + ".tmp"
    }
    
    // InitCoverage is called from the dummy unit test to prepare Go's coverage framework.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 21:00:21 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top