Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for data_format (0.41 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    package upload
    
    import (
    	"bytes"
    	"net/http"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    	"time"
    )
    
    var (
    	dateRE     = regexp.MustCompile(`(\d\d\d\d-\d\d-\d\d)[.]json$`)
    	dateFormat = "2006-01-02"
    	// TODO(rfindley): use dateFormat throughout.
    )
    
    // uploadReportDate returns the date component of the upload file name, or "" if the
    // date was unmatched.
    func (u *uploader) uploadReportDate(fname string) time.Time {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top